body {

  font-family: Rubik;

}

.display-1 {

  font-family: 'Rubik', sans-serif;

  font-size: 4.25rem;

  font-display: swap;

}

.display-1 > .mbr-iconfont {

  font-size: 6.8rem;

}

.display-2 {

  font-family: 'Rubik', sans-serif;

  font-size: 3rem;

  font-display: swap;

}

.display-2 > .mbr-iconfont {

  font-size: 4.8rem;

}

.display-4 {

  font-family: 'Rubik', sans-serif;

  font-size: 0.8rem;

  font-display: swap;

}

.display-4 > .mbr-iconfont {

  font-size: 1.28rem;

}

.display-5 {

  font-family: 'Rubik', sans-serif;

  font-size: 1.5rem;

  font-display: swap;

}

.display-5 > .mbr-iconfont {

  font-size: 2.4rem;

}

.display-7 {

  font-family: 'Rubik', sans-serif;

  font-size: 1rem;

  font-display: swap;

}

.display-7 > .mbr-iconfont {

  font-size: 1.6rem;

}

/* ---- Fluid typography for mobile devices ---- */

/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */

/* 100vw - current viewport width */

/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */

/* 0.65 - min scale variable, may vary */

@media (max-width: 768px) {

  .display-1 {

    font-size: 3.4rem;

    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));

    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));

  }

  .display-2 {

    font-size: 2.4rem;

    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));

    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));

  }

  .display-4 {

    font-size: 0.64rem;

    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));

    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));

  }

  .display-5 {

    font-size: 1.2rem;

    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));

    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));

  }

}

/* Buttons */

.btn {

  padding: 1rem 3rem;

  border-radius: 3px;

}

.btn-sm {

  padding: 0.6rem 1.5rem;

  border-radius: 3px;

}

.btn-md {

  padding: 1rem 3rem;

  border-radius: 3px;

}

.btn-lg {

  padding: 1.2rem 3.2rem;

  border-radius: 3px;

}

.bg-primary {

  background-color: #efefef !important;

}

.bg-success {

  background-color: #f7ed4a !important;

}

.bg-info {

  background-color: #82786e !important;

}

.bg-warning {

  background-color: #879a9f !important;

}

.bg-danger {

  background-color: #000000 !important;

}

.btn-primary,

.btn-primary:active {

  background-color: #efefef !important;

  border-color: #efefef !important;

  color: #707070 !important;

}

.btn-primary:hover,

.btn-primary:focus,

.btn-primary.focus,

.btn-primary.active {

  color: #707070 !important;

  background-color: #c9c9c9 !important;

  border-color: #c9c9c9 !important;

}

.btn-primary.disabled,

.btn-primary:disabled {

  color: #707070 !important;

  background-color: #c9c9c9 !important;

  border-color: #c9c9c9 !important;

}

.btn-secondary,

.btn-secondary:active {

  background-color: #000000 !important;

  border-color: #000000 !important;

  color: #ffffff !important;

}

.btn-secondary:hover,

.btn-secondary:focus,

.btn-secondary.focus,

.btn-secondary.active {

  color: #ffffff !important;

  background-color: #000000 !important;

  border-color: #000000 !important;

}

.btn-secondary.disabled,

.btn-secondary:disabled {

  color: #ffffff !important;

  background-color: #000000 !important;

  border-color: #000000 !important;

}

.btn-info,

.btn-info:active {

  background-color: #82786e !important;

  border-color: #82786e !important;

  color: #ffffff !important;

}

.btn-info:hover,

.btn-info:focus,

.btn-info.focus,

.btn-info.active {

  color: #ffffff !important;

  background-color: #59524b !important;

  border-color: #59524b !important;

}

.btn-info.disabled,

.btn-info:disabled {

  color: #ffffff !important;

  background-color: #59524b !important;

  border-color: #59524b !important;

}

.btn-success,

.btn-success:active {

  background-color: #f7ed4a !important;

  border-color: #f7ed4a !important;

  color: #3f3c03 !important;

}

.btn-success:hover,

.btn-success:focus,

.btn-success.focus,

.btn-success.active {

  color: #3f3c03 !important;

  background-color: #eadd0a !important;

  border-color: #eadd0a !important;

}

.btn-success.disabled,

.btn-success:disabled {

  color: #3f3c03 !important;

  background-color: #eadd0a !important;

  border-color: #eadd0a !important;

}

.btn-warning,

.btn-warning:active {

  background-color: #879a9f !important;

  border-color: #879a9f !important;

  color: #ffffff !important;

}

.btn-warning:hover,

.btn-warning:focus,

.btn-warning.focus,

.btn-warning.active {

  color: #ffffff !important;

  background-color: #617479 !important;

  border-color: #617479 !important;

}

.btn-warning.disabled,

.btn-warning:disabled {

  color: #ffffff !important;

  background-color: #617479 !important;

  border-color: #617479 !important;

}

.btn-danger,

.btn-danger:active {

  background-color: #000000 !important;

  border-color: #000000 !important;

  color: #ffffff !important;

}

.btn-danger:hover,

.btn-danger:focus,

.btn-danger.focus,

.btn-danger.active {

  color: #ffffff !important;

  background-color: #000000 !important;

  border-color: #000000 !important;

}

.btn-danger.disabled,

.btn-danger:disabled {

  color: #ffffff !important;

  background-color: #000000 !important;

  border-color: #000000 !important;

}

.btn-white {

  color: #333333 !important;

}

.btn-white,

.btn-white:active {

  background-color: #ffffff !important;

  border-color: #ffffff !important;

  color: #808080 !important;

}

.btn-white:hover,

.btn-white:focus,

.btn-white.focus,

.btn-white.active {

  color: #808080 !important;

  background-color: #d9d9d9 !important;

  border-color: #d9d9d9 !important;

}

.btn-white.disabled,

.btn-white:disabled {

  color: #808080 !important;

  background-color: #d9d9d9 !important;

  border-color: #d9d9d9 !important;

}

.btn-black,

.btn-black:active {

  background-color: #000000 !important;

  border-color: #333333 !important;

  color: #ffffff !important;

}

.btn-black:hover,

.btn-black:focus,

.btn-black.focus,

.btn-black.active {

  color: #ffffff !important;

  background-color: #0d0d0d !important;

  border-color: #0d0d0d !important;

}

.btn-black.disabled,

.btn-black:disabled {

  color: #ffffff !important;

  background-color: #0d0d0d !important;

  border-color: #0d0d0d !important;

}

.btn-primary-outline,

.btn-primary-outline:active {

  background: none;

  border-color: #bcbcbc;

  color: #bcbcbc;

}

.btn-primary-outline:hover,

.btn-primary-outline:focus,

.btn-primary-outline.focus,

.btn-primary-outline.active {

  color: #707070;

  background-color: #efefef;

  border-color: #efefef;

}

.btn-primary-outline.disabled,

.btn-primary-outline:disabled {

  color: #707070 !important;

  background-color: #efefef !important;

  border-color: #efefef !important;

}

.btn-secondary-outline,

.btn-secondary-outline:active {

  background: none;

  border-color: #000000;

  color: #000000;

}

.btn-secondary-outline:hover,

.btn-secondary-outline:focus,

.btn-secondary-outline.focus,

.btn-secondary-outline.active {

  color: #ffffff;

  background-color: #000000;

  border-color: #000000;

}

.btn-secondary-outline.disabled,

.btn-secondary-outline:disabled {

  color: #ffffff !important;

  background-color: #000000 !important;

  border-color: #000000 !important;

}

.btn-info-outline,

.btn-info-outline:active {

  background: none;

  border-color: #4b453f;

  color: #4b453f;

}

.btn-info-outline:hover,

.btn-info-outline:focus,

.btn-info-outline.focus,

.btn-info-outline.active {

  color: #ffffff;

  background-color: #82786e;

  border-color: #82786e;

}

.btn-info-outline.disabled,

.btn-info-outline:disabled {

  color: #ffffff !important;

  background-color: #82786e !important;

  border-color: #82786e !important;

}

.btn-success-outline,

.btn-success-outline:active {

  background: none;

  border-color: #d2c609;

  color: #d2c609;

}

.btn-success-outline:hover,

.btn-success-outline:focus,

.btn-success-outline.focus,

.btn-success-outline.active {

  color: #3f3c03;

  background-color: #f7ed4a;

  border-color: #f7ed4a;

}

.btn-success-outline.disabled,

.btn-success-outline:disabled {

  color: #3f3c03 !important;

  background-color: #f7ed4a !important;

  border-color: #f7ed4a !important;

}

.btn-warning-outline,

.btn-warning-outline:active {

  background: none;

  border-color: #55666b;

  color: #55666b;

}

.btn-warning-outline:hover,

.btn-warning-outline:focus,

.btn-warning-outline.focus,

.btn-warning-outline.active {

  color: #ffffff;

  background-color: #879a9f;

  border-color: #879a9f;

}

.btn-warning-outline.disabled,

.btn-warning-outline:disabled {

  color: #ffffff !important;

  background-color: #879a9f !important;

  border-color: #879a9f !important;

}

.btn-danger-outline,

.btn-danger-outline:active {

  background: none;

  border-color: #000000;

  color: #000000;

}

.btn-danger-outline:hover,

.btn-danger-outline:focus,

.btn-danger-outline.focus,

.btn-danger-outline.active {

  color: #ffffff;

  background-color: #000000;

  border-color: #000000;

}

.btn-danger-outline.disabled,

.btn-danger-outline:disabled {

  color: #ffffff !important;

  background-color: #000000 !important;

  border-color: #000000 !important;

}

.btn-black-outline,

.btn-black-outline:active {

  background: none;

  border-color: #000000;

  color: #000000;

}

.btn-black-outline:hover,

.btn-black-outline:focus,

.btn-black-outline.focus,

.btn-black-outline.active {

  color: #ffffff;

  background-color: #333333;

  border-color: #333333;

}

.btn-black-outline.disabled,

.btn-black-outline:disabled {

  color: #ffffff !important;

  background-color: #333333 !important;

  border-color: #333333 !important;

}

.btn-white-outline,

.btn-white-outline:active,

.btn-white-outline.active {

  background: none;

  border-color: #ffffff;

  color: #ffffff;

}

.btn-white-outline:hover,

.btn-white-outline:focus,

.btn-white-outline.focus {

  color: #333333;

  background-color: #ffffff;

  border-color: #ffffff;

}

.text-primary {

  color: #efefef !important;

}

.text-secondary {

  color: #000000 !important;

}

.text-success {

  color: #f7ed4a !important;

}

.text-info {

  color: #82786e !important;

}

.text-warning {

  color: #879a9f !important;

}

.text-danger {

  color: #000000 !important;

}

.text-white {

  color: #ffffff !important;

}

.text-black {

  color: #000000 !important;

}

a.text-primary:hover,

a.text-primary:focus {

  color: #bcbcbc !important;

}

a.text-secondary:hover,

a.text-secondary:focus {

  color: #000000 !important;

}

a.text-success:hover,

a.text-success:focus {

  color: #d2c609 !important;

}

a.text-info:hover,

a.text-info:focus {

  color: #4b453f !important;

}

a.text-warning:hover,

a.text-warning:focus {

  color: #55666b !important;

}

a.text-danger:hover,

a.text-danger:focus {

  color: #000000 !important;

}

a.text-white:hover,

a.text-white:focus {

  color: #b3b3b3 !important;

}

a.text-black:hover,

a.text-black:focus {

  color: #4d4d4d !important;

}

.alert-success {

  background-color: #70c770;

}

.alert-info {

  background-color: #82786e;

}

.alert-warning {

  background-color: #879a9f;

}

.alert-danger {

  background-color: #000000;

}

.mbr-section-btn a.btn:not(.btn-form) {

  border-radius: 100px;

}

.mbr-section-btn a.btn:not(.btn-form):hover,

.mbr-section-btn a.btn:not(.btn-form):focus {

  box-shadow: none !important;

}

.mbr-section-btn a.btn:not(.btn-form):hover,

.mbr-section-btn a.btn:not(.btn-form):focus {

  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;

  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;

}

.mbr-gallery-filter li a {

  border-radius: 100px !important;

}

.mbr-gallery-filter li.active .btn {

  background-color: #efefef;

  border-color: #efefef;

  color: #7c7c7c;

}

.mbr-gallery-filter li.active .btn:focus {

  box-shadow: none;

}

.nav-tabs .nav-link {

  border-radius: 100px !important;

}

a,

a:hover {

  color: #efefef;

}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,

.mbr-plan-header.bg-primary .mbr-plan-price-desc {

  color: #ffffff;

}

.mbr-plan-header.bg-success .mbr-plan-subtitle,

.mbr-plan-header.bg-success .mbr-plan-price-desc {

  color: #ffffff;

}

.mbr-plan-header.bg-info .mbr-plan-subtitle,

.mbr-plan-header.bg-info .mbr-plan-price-desc {

  color: #beb8b2;

}

.mbr-plan-header.bg-warning .mbr-plan-subtitle,

.mbr-plan-header.bg-warning .mbr-plan-price-desc {

  color: #ced6d8;

}

.mbr-plan-header.bg-danger .mbr-plan-subtitle,

.mbr-plan-header.bg-danger .mbr-plan-price-desc {

  color: #b3b3b3;

}

/* Scroll to top button*/

#scrollToTop a {

  border-radius: 100px;

}

.form-control {

  font-family: 'Rubik', sans-serif;

  font-size: 1rem;

  font-display: swap;

}

.form-control > .mbr-iconfont {

  font-size: 1.6rem;

}

blockquote {

  border-color: #efefef;

}

/* Forms */

.mbr-form .btn {

  margin: .4rem 0;

}

.mbr-form .input-group-btn a.btn {

  border-radius: 100px !important;

}

.mbr-form .input-group-btn a.btn:hover {

  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);

}

.mbr-form .input-group-btn button[type="submit"] {

  border-radius: 100px !important;

  padding: 1rem 3rem;

}

.mbr-form .input-group-btn button[type="submit"]:hover {

  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);

}

@media (max-width: 767px) {

  .btn {

    font-size: .75rem !important;

  }

  .btn .mbr-iconfont {

    font-size: 1rem !important;

  }

}

/* Footer */

.mbr-footer-content li::before,

.mbr-footer .mbr-contacts li::before {

  background: #efefef;

}

.mbr-footer-content li a:hover,

.mbr-footer .mbr-contacts li a:hover {

  color: #efefef;

}

.footer3 input[type="email"],

.footer4 input[type="email"] {

  border-radius: 100px !important;

}

.footer3 .input-group-btn a.btn,

.footer4 .input-group-btn a.btn {

  border-radius: 100px !important;

}

.footer3 .input-group-btn button[type="submit"],

.footer4 .input-group-btn button[type="submit"] {

  border-radius: 100px !important;

}

/* Headers*/

.header13 .form-inline input[type="email"],

.header14 .form-inline input[type="email"] {

  border-radius: 100px;

}

.header13 .form-inline input[type="text"],

.header14 .form-inline input[type="text"] {

  border-radius: 100px;

}

.header13 .form-inline input[type="tel"],

.header14 .form-inline input[type="tel"] {

  border-radius: 100px;

}

.header13 .form-inline a.btn,

.header14 .form-inline a.btn {

  border-radius: 100px;

}

.header13 .form-inline button,

.header14 .form-inline button {

  border-radius: 100px !important;

}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {

  .card-wrapper {

    flex: auto !important;

  }

}

.jq-selectbox li:hover,

.jq-selectbox li.selected {

  background-color: #efefef;

  color: #000000;

}

.jq-selectbox .jq-selectbox__trigger-arrow,

.jq-number__spin.minus:after,

.jq-number__spin.plus:after {

  transition: 0.4s;

  border-top-color: currentColor;

  border-bottom-color: currentColor;

}

.jq-selectbox:hover .jq-selectbox__trigger-arrow,

.jq-number__spin.minus:hover:after,

.jq-number__spin.plus:hover:after {

  border-top-color: #efefef;

  border-bottom-color: #efefef;

}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {

  color: #000000 !important;

  background-color: #efefef !important;

  box-shadow: none !important;

}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {

  color: #ffffff !important;

  background: #000000 !important;

  box-shadow: none !important;

}

.lazy-bg {

  background-image: none !important;

}

.lazy-placeholder:not(section),

.lazy-none {

  display: block;

  position: relative;

  padding-bottom: 56.25%;

}

iframe.lazy-placeholder,

.lazy-placeholder:after {

  content: '';

  position: absolute;

  width: 100px;

  height: 100px;

  background: transparent no-repeat center;

  background-size: contain;

  top: 50%;

  left: 50%;

  transform: translateX(-50%) translateY(-50%);

  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23efefef' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");

}

section.lazy-placeholder:after {

  opacity: 0.3;

}

#custom-html-t5 {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-t5 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t5 body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-t5 article,

#custom-html-t5 aside,

#custom-html-t5 details,

#custom-html-t5 figcaption,

#custom-html-t5 figure,

#custom-html-t5 footer,

#custom-html-t5 header,

#custom-html-t5 hgroup,

#custom-html-t5 main,

#custom-html-t5 menu,

#custom-html-t5 nav,

#custom-html-t5 section,

#custom-html-t5 summary {

  display: block;

}

#custom-html-t5 audio,

#custom-html-t5 canvas,

#custom-html-t5 progress,

#custom-html-t5 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t5 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t5 [hidden],

#custom-html-t5 template {

  display: none;

}

#custom-html-t5 a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-t5 a:active,

#custom-html-t5 a:hover {

  outline: 0;

}

#custom-html-t5 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t5 b,

#custom-html-t5 strong {

  font-weight: 700;

}

#custom-html-t5 dfn {

  font-style: italic;

}

#custom-html-t5 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t5 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t5 small {

  font-size: 80%;

}

#custom-html-t5 sub,

#custom-html-t5 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t5 sup {

  top: -0.5em;

}

#custom-html-t5 sub {

  bottom: -0.25em;

}

#custom-html-t5 img {

  border: 0;

  vertical-align: middle;

}

#custom-html-t5 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t5 figure {

  margin: 0;

}

#custom-html-t5 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t5 pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t5 code,

#custom-html-t5 kbd,

#custom-html-t5 pre,

#custom-html-t5 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-t5 button,

#custom-html-t5 input,

#custom-html-t5 optgroup,

#custom-html-t5 select,

#custom-html-t5 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t5 button {

  overflow: visible;

}

#custom-html-t5 button,

#custom-html-t5 select {

  text-transform: none;

}

#custom-html-t5 button,

#custom-html-t5 html input[type=button],

#custom-html-t5 input[type=reset],

#custom-html-t5 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t5 button[disabled],

#custom-html-t5 html input[disabled] {

  cursor: default;

}

#custom-html-t5 button::-moz-focus-inner,

#custom-html-t5 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t5 input {

  line-height: normal;

}

#custom-html-t5 input[type=checkbox],

#custom-html-t5 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t5 input[type=number]::-webkit-inner-spin-button,

#custom-html-t5 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t5 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-t5 input[type=search]::-webkit-search-cancel-button,

#custom-html-t5 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t5 fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-t5 legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t5 textarea {

  overflow: auto;

}

#custom-html-t5 optgroup {

  font-weight: 700;

}

#custom-html-t5 table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-t5 td,

#custom-html-t5 th {

  padding: 0;

}

@media print {

  #custom-html-t5 *,

  #custom-html-t5 :after,

  #custom-html-t5 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t5 a,

  #custom-html-t5 a:visited {

    text-decoration: underline;

  }

  #custom-html-t5 a[href]:after {

    content: "" !important;

  }

  #custom-html-t5 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t5 a[href^="#"]:after,

  #custom-html-t5 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t5 blockquote,

  #custom-html-t5 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t5 thead {

    display: table-header-group;

  }

  #custom-html-t5 img,

  #custom-html-t5 tr {

    page-break-inside: avoid;

  }

  #custom-html-t5 img {

    max-width: 100% !important;

  }

  #custom-html-t5 h2,

  #custom-html-t5 h3,

  #custom-html-t5 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t5 h2,

  #custom-html-t5 h3 {

    page-break-after: avoid;

  }

  #custom-html-t5 .navbar {

    display: none;

  }

  #custom-html-t5 .btn > .caret,

  #custom-html-t5 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t5 .label {

    border: 1px solid #000000;

  }

  #custom-html-t5 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t5 .table td,

  #custom-html-t5 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t5 .table-bordered td,

  #custom-html-t5 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-t5 .visible-print {

    display: block !important;

  }

  #custom-html-t5 table.visible-print {

    display: table !important;

  }

  #custom-html-t5 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t5 td.visible-print,

  #custom-html-t5 th.visible-print {

    display: table-cell !important;

  }

  #custom-html-t5 .visible-print-block {

    display: block !important;

  }

  #custom-html-t5 .visible-print-inline {

    display: inline !important;

  }

  #custom-html-t5 .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-t5 .hidden-print {

    display: none !important;

  }

  #custom-html-t5 #main-menu,

  #custom-html-t5 #top-nav,

  #custom-html-t5 .header-lined,

  #custom-html-t5 .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t5 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t5 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t5 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t5 .glyphicon-eur:before,

#custom-html-t5 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t5 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t5 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t5 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t5 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t5 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t5 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t5 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t5 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-t5 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t5 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t5 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t5 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t5 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t5 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t5 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t5 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t5 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t5 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t5 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t5 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t5 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t5 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t5 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t5 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t5 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t5 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t5 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t5 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t5 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t5 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t5 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t5 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t5 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t5 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t5 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t5 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t5 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t5 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t5 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t5 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t5 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t5 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t5 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t5 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t5 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t5 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t5 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t5 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t5 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t5 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t5 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t5 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t5 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t5 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t5 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t5 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t5 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t5 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t5 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t5 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t5 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t5 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t5 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t5 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t5 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t5 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t5 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t5 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t5 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t5 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t5 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t5 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t5 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t5 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t5 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t5 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t5 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t5 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t5 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t5 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t5 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t5 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t5 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t5 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t5 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t5 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t5 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t5 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t5 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t5 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t5 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t5 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t5 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t5 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t5 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t5 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t5 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t5 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t5 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t5 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t5 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t5 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t5 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t5 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t5 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t5 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t5 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t5 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t5 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t5 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t5 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t5 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t5 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t5 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t5 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t5 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t5 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t5 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t5 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t5 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t5 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-t5 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t5 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t5 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t5 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t5 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t5 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t5 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t5 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t5 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t5 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t5 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t5 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t5 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t5 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t5 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t5 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t5 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t5 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t5 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t5 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t5 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t5 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t5 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t5 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t5 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t5 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t5 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t5 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t5 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t5 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-t5 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t5 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t5 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t5 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t5 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t5 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t5 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t5 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t5 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t5 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t5 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t5 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t5 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t5 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t5 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t5 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t5 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t5 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t5 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t5 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t5 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t5 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t5 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t5 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t5 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t5 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t5 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t5 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t5 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t5 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t5 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t5 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t5 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t5 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t5 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t5 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t5 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t5 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t5 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t5 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t5 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t5 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t5 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t5 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t5 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t5 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t5 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t5 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t5 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t5 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t5 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t5 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t5 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t5 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t5 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t5 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t5 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t5 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t5 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t5 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t5 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t5 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t5 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t5 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t5 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t5 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t5 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-t5 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t5 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t5 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t5 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t5 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t5 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t5 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t5 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t5 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t5 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t5 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t5 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t5 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t5 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t5 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t5 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t5 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t5 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t5 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t5 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t5 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t5 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t5 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t5 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t5 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t5 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t5 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t5 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t5 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t5 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t5 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t5 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t5 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t5 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t5 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t5 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t5 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t5 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t5 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t5 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t5 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t5 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t5 :after,

#custom-html-t5 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t5 button,

#custom-html-t5 input,

#custom-html-t5 select,

#custom-html-t5 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t5 a:focus,

#custom-html-t5 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t5 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t5 .carousel-inner > .item > a > img,

#custom-html-t5 .carousel-inner > .item > img,

#custom-html-t5 .img-responsive,

#custom-html-t5 .thumbnail a > img,

#custom-html-t5 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t5 .img-rounded {

  border-radius: 6px;

}

#custom-html-t5 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t5 .img-circle {

  border-radius: 50%;

}

#custom-html-t5 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t5 .sr-only-focusable:active,

#custom-html-t5 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t5 [role=button] {

  cursor: pointer;

}

#custom-html-t5 .h1,

#custom-html-t5 .h2,

#custom-html-t5 .h3,

#custom-html-t5 .h4,

#custom-html-t5 .h5,

#custom-html-t5 .h6,

#custom-html-t5 h1,

#custom-html-t5 h2,

#custom-html-t5 h3,

#custom-html-t5 h4,

#custom-html-t5 h5,

#custom-html-t5 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t5 .h1 .small,

#custom-html-t5 .h1 small,

#custom-html-t5 .h2 .small,

#custom-html-t5 .h2 small,

#custom-html-t5 .h3 .small,

#custom-html-t5 .h3 small,

#custom-html-t5 .h4 .small,

#custom-html-t5 .h4 small,

#custom-html-t5 .h5 .small,

#custom-html-t5 .h5 small,

#custom-html-t5 .h6 .small,


#custom-html-t5 .h6 small,

#custom-html-t5 h1 .small,

#custom-html-t5 h1 small,

#custom-html-t5 h2 .small,

#custom-html-t5 h2 small,

#custom-html-t5 h3 .small,

#custom-html-t5 h3 small,

#custom-html-t5 h4 .small,

#custom-html-t5 h4 small,

#custom-html-t5 h5 .small,

#custom-html-t5 h5 small,

#custom-html-t5 h6 .small,

#custom-html-t5 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t5 .h1,

#custom-html-t5 .h2,

#custom-html-t5 .h3,

#custom-html-t5 h1,

#custom-html-t5 h2,

#custom-html-t5 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t5 .h1 .small,

#custom-html-t5 .h1 small,

#custom-html-t5 .h2 .small,

#custom-html-t5 .h2 small,

#custom-html-t5 .h3 .small,

#custom-html-t5 .h3 small,

#custom-html-t5 h1 .small,

#custom-html-t5 h1 small,

#custom-html-t5 h2 .small,

#custom-html-t5 h2 small,

#custom-html-t5 h3 .small,

#custom-html-t5 h3 small {

  font-size: 65%;

}

#custom-html-t5 .h4,

#custom-html-t5 .h5,

#custom-html-t5 .h6,

#custom-html-t5 h4,

#custom-html-t5 h5,

#custom-html-t5 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t5 .h4 .small,

#custom-html-t5 .h4 small,

#custom-html-t5 .h5 .small,

#custom-html-t5 .h5 small,

#custom-html-t5 .h6 .small,

#custom-html-t5 .h6 small,

#custom-html-t5 h4 .small,

#custom-html-t5 h4 small,

#custom-html-t5 h5 .small,

#custom-html-t5 h5 small,

#custom-html-t5 h6 .small,

#custom-html-t5 h6 small {

  font-size: 75%;

}

#custom-html-t5 .h1,

#custom-html-t5 h1 {

  font-size: 36px;

}

#custom-html-t5 .h2,

#custom-html-t5 h2 {

  font-size: 30px;

}

#custom-html-t5 .h3,

#custom-html-t5 h3 {

  font-size: 24px;

}

#custom-html-t5 .h4,

#custom-html-t5 h4 {

  font-size: 18px;

}

#custom-html-t5 .h5,

#custom-html-t5 h5 {

  font-size: 14px;

}

#custom-html-t5 .h6,

#custom-html-t5 h6 {

  font-size: 12px;

}

#custom-html-t5 p {

  margin: 0 0 10px;

}

#custom-html-t5 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t5 .lead {

    font-size: 21px;

  }

  #custom-html-t5 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t5 .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-t5 .container {

    width: 750px;

  }

  #custom-html-t5 .col-sm-1,

  #custom-html-t5 .col-sm-10,

  #custom-html-t5 .col-sm-11,

  #custom-html-t5 .col-sm-12,

  #custom-html-t5 .col-sm-2,

  #custom-html-t5 .col-sm-3,

  #custom-html-t5 .col-sm-4,

  #custom-html-t5 .col-sm-5,

  #custom-html-t5 .col-sm-6,

  #custom-html-t5 .col-sm-7,

  #custom-html-t5 .col-sm-8,

  #custom-html-t5 .col-sm-9 {

    float: left;

  }

  #custom-html-t5 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t5 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t5 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t5 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t5 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t5 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t5 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t5 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t5 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t5 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t5 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t5 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t5 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t5 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t5 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t5 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t5 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t5 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t5 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t5 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t5 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t5 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-t5 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t5 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t5 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t5 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t5 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t5 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t5 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t5 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t5 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t5 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t5 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t5 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t5 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t5 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t5 .col-sm-push-1 {


    left: 8.33333333%;

  }

  #custom-html-t5 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t5 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t5 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t5 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t5 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t5 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t5 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t5 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t5 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t5 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t5 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t5 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t5 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t5 .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-t5 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t5 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t5 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t5 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t5 .form-inline .input-group .form-control,

  #custom-html-t5 .form-inline .input-group .input-group-addon,

  #custom-html-t5 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t5 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t5 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t5 .form-inline .checkbox,

  #custom-html-t5 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t5 .form-inline .checkbox label,

  #custom-html-t5 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t5 .form-inline .checkbox input[type=checkbox],

  #custom-html-t5 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t5 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t5 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-t5 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-t5 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-t5 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

    z-index: 100;

  }

  #custom-html-t5 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-t5 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t5 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t5 .nav-tabs.nav-justified > .active > a,

  #custom-html-t5 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t5 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t5 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t5 .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-t5 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t5 .nav-tabs-justified > .active > a,

  #custom-html-t5 .nav-tabs-justified > .active > a:focus,

  #custom-html-t5 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t5 .navbar {

    border-radius: 4px;

  }

  #custom-html-t5 .navbar-header {

    float: left;

  }

  #custom-html-t5 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t5 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t5 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t5 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t5 .navbar-fixed-top .navbar-collapse,

  #custom-html-t5 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-t5 .container-fluid > .navbar-collapse,

  #custom-html-t5 .container-fluid > .navbar-header,

  #custom-html-t5 .container > .navbar-collapse,

  #custom-html-t5 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-t5 .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-t5 .navbar-fixed-bottom,

  #custom-html-t5 .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-t5 .navbar > .container .navbar-brand,

  #custom-html-t5 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-t5 .navbar-toggle {

    display: none;

  }

  #custom-html-t5 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t5 .navbar-nav > li {

    float: left;

  }

  #custom-html-t5 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-t5 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t5 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t5 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t5 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t5 .navbar-form .input-group .form-control,

  #custom-html-t5 .navbar-form .input-group .input-group-addon,

  #custom-html-t5 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t5 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t5 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t5 .navbar-form .checkbox,

  #custom-html-t5 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t5 .navbar-form .checkbox label,

  #custom-html-t5 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t5 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t5 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t5 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t5 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t5 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-t5 .navbar-left {

    float: left !important;

  }

  #custom-html-t5 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t5 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-t5 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t5 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t5 .modal-sm {

    width: 300px;

  }

  #custom-html-t5 .pull-sm-left {

    float: left;

  }

  #custom-html-t5 .pull-sm-right {

    float: right;

  }

  #custom-html-t5 .text-right-sm {

    text-align: right;

  }

  #custom-html-t5 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t5 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-t5 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t5 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t5 .email-verification .button {

    float: right;

  }

  #custom-html-t5 .email-verification .far,

  #custom-html-t5 .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-t5 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t5 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-t5 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t5 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t5 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t5 .small,

#custom-html-t5 small {

  font-size: 85%;

}

#custom-html-t5 .mark,

#custom-html-t5 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t5 .text-left {

  text-align: left;

}

#custom-html-t5 .text-right {

  text-align: right;

}

#custom-html-t5 .text-center {

  text-align: center;

}

#custom-html-t5 .text-justify {

  text-align: justify;

}

#custom-html-t5 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t5 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t5 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t5 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t5 .text-muted {

  color: #777777;

}

#custom-html-t5 .text-primary {

  color: #000000;

}

#custom-html-t5 a.text-primary:focus,

#custom-html-t5 a.text-primary:hover {

  color: #000000;

}

#custom-html-t5 .text-success {

  color: #3c763d;

}

#custom-html-t5 a.text-success:focus,

#custom-html-t5 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t5 .text-info {

  color: #31708f;

}

#custom-html-t5 a.text-info:focus,

#custom-html-t5 a.text-info:hover {

  color: #000000;

}

#custom-html-t5 .text-warning {

  color: #8a6d3b;

}

#custom-html-t5 a.text-warning:focus,

#custom-html-t5 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t5 .text-danger {

  color: #a94442;

}

#custom-html-t5 a.text-danger:focus,

#custom-html-t5 a.text-danger:hover {

  color: #843534;

}

#custom-html-t5 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t5 a.bg-primary:focus,

#custom-html-t5 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t5 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t5 a.bg-success:focus,

#custom-html-t5 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t5 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t5 a.bg-info:focus,

#custom-html-t5 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t5 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t5 a.bg-warning:focus,

#custom-html-t5 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t5 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t5 a.bg-danger:focus,

#custom-html-t5 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t5 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t5 ol,

#custom-html-t5 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t5 ol ol,

#custom-html-t5 ol ul,

#custom-html-t5 ul ol,

#custom-html-t5 ul ul {

  margin-bottom: 0;

}

#custom-html-t5 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t5 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t5 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t5 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t5 dd,

#custom-html-t5 dt {

  line-height: 1.42857143;

}

#custom-html-t5 dt {

  font-weight: 700;

}

#custom-html-t5 dd {

  margin-left: 0;

}

#custom-html-t5 abbr[data-original-title],

#custom-html-t5 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t5 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t5 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t5 blockquote ol:last-child,

#custom-html-t5 blockquote p:last-child,

#custom-html-t5 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t5 blockquote .small,

#custom-html-t5 blockquote footer,

#custom-html-t5 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;


  color: #777777;

}

#custom-html-t5 blockquote .small:before,

#custom-html-t5 blockquote footer:before,

#custom-html-t5 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t5 .blockquote-reverse,

#custom-html-t5 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t5 .blockquote-reverse .small:before,

#custom-html-t5 .blockquote-reverse footer:before,

#custom-html-t5 .blockquote-reverse small:before,

#custom-html-t5 blockquote.pull-right .small:before,

#custom-html-t5 blockquote.pull-right footer:before,

#custom-html-t5 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t5 .blockquote-reverse .small:after,

#custom-html-t5 .blockquote-reverse footer:after,

#custom-html-t5 .blockquote-reverse small:after,

#custom-html-t5 blockquote.pull-right .small:after,

#custom-html-t5 blockquote.pull-right footer:after,

#custom-html-t5 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t5 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t5 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t5 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t5 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t5 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t5 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t5 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-t5 .container {

    width: 970px;

  }

  #custom-html-t5 .col-md-1,

  #custom-html-t5 .col-md-10,

  #custom-html-t5 .col-md-11,

  #custom-html-t5 .col-md-12,

  #custom-html-t5 .col-md-2,

  #custom-html-t5 .col-md-3,

  #custom-html-t5 .col-md-4,

  #custom-html-t5 .col-md-5,

  #custom-html-t5 .col-md-6,

  #custom-html-t5 .col-md-7,

  #custom-html-t5 .col-md-8,

  #custom-html-t5 .col-md-9 {

    float: left;

  }

  #custom-html-t5 .col-md-12 {

    width: 100%;

  }

  #custom-html-t5 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t5 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t5 .col-md-9 {

    width: 75%;

  }

  #custom-html-t5 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t5 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t5 .col-md-6 {

    width: 50%;

  }

  #custom-html-t5 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t5 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t5 .col-md-3 {

    width: 25%;

  }

  #custom-html-t5 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t5 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t5 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t5 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t5 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t5 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t5 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t5 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t5 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t5 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t5 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t5 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t5 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t5 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t5 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t5 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t5 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t5 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t5 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t5 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t5 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t5 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t5 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t5 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t5 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-t5 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t5 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t5 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t5 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t5 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t5 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t5 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t5 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t5 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t5 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t5 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t5 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t5 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t5 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t5 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t5 .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-t5 .modal-lg {

    width: 900px;

  }

  #custom-html-t5 .pull-md-left {

    float: left;

  }

  #custom-html-t5 .pull-md-right {

    float: right;

  }

  #custom-html-t5 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t5 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t5 .container {

    width: 1170px;

  }

  #custom-html-t5 .col-lg-1,

  #custom-html-t5 .col-lg-10,

  #custom-html-t5 .col-lg-11,

  #custom-html-t5 .col-lg-12,

  #custom-html-t5 .col-lg-2,

  #custom-html-t5 .col-lg-3,

  #custom-html-t5 .col-lg-4,

  #custom-html-t5 .col-lg-5,

  #custom-html-t5 .col-lg-6,

  #custom-html-t5 .col-lg-7,

  #custom-html-t5 .col-lg-8,

  #custom-html-t5 .col-lg-9 {

    float: left;

  }

  #custom-html-t5 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t5 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t5 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t5 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t5 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t5 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t5 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t5 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t5 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t5 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t5 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t5 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t5 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t5 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t5 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t5 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t5 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t5 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t5 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t5 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t5 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t5 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-t5 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t5 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t5 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t5 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t5 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t5 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t5 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t5 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t5 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t5 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t5 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t5 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t5 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t5 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t5 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t5 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t5 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t5 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t5 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t5 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t5 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t5 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t5 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t5 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t5 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t5 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t5 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t5 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t5 .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-t5 .visible-lg {

    display: block !important;

  }

  #custom-html-t5 table.visible-lg {

    display: table !important;

  }

  #custom-html-t5 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t5 td.visible-lg,

  #custom-html-t5 th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-t5 .visible-lg-block {

    display: block !important;

  }

  #custom-html-t5 .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-t5 .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-t5 .hidden-lg {

    display: none !important;

  }

  #custom-html-t5 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t5 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t5 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t5 .col-lg-1,

#custom-html-t5 .col-lg-10,

#custom-html-t5 .col-lg-11,

#custom-html-t5 .col-lg-12,

#custom-html-t5 .col-lg-2,

#custom-html-t5 .col-lg-3,

#custom-html-t5 .col-lg-4,

#custom-html-t5 .col-lg-5,

#custom-html-t5 .col-lg-6,

#custom-html-t5 .col-lg-7,

#custom-html-t5 .col-lg-8,

#custom-html-t5 .col-lg-9,

#custom-html-t5 .col-md-1,

#custom-html-t5 .col-md-10,

#custom-html-t5 .col-md-11,

#custom-html-t5 .col-md-12,

#custom-html-t5 .col-md-2,

#custom-html-t5 .col-md-3,

#custom-html-t5 .col-md-4,

#custom-html-t5 .col-md-5,

#custom-html-t5 .col-md-6,

#custom-html-t5 .col-md-7,

#custom-html-t5 .col-md-8,

#custom-html-t5 .col-md-9,

#custom-html-t5 .col-sm-1,

#custom-html-t5 .col-sm-10,

#custom-html-t5 .col-sm-11,

#custom-html-t5 .col-sm-12,

#custom-html-t5 .col-sm-2,

#custom-html-t5 .col-sm-3,

#custom-html-t5 .col-sm-4,

#custom-html-t5 .col-sm-5,

#custom-html-t5 .col-sm-6,

#custom-html-t5 .col-sm-7,

#custom-html-t5 .col-sm-8,

#custom-html-t5 .col-sm-9,

#custom-html-t5 .col-xs-1,

#custom-html-t5 .col-xs-10,

#custom-html-t5 .col-xs-11,

#custom-html-t5 .col-xs-12,

#custom-html-t5 .col-xs-2,

#custom-html-t5 .col-xs-3,

#custom-html-t5 .col-xs-4,

#custom-html-t5 .col-xs-5,

#custom-html-t5 .col-xs-6,

#custom-html-t5 .col-xs-7,

#custom-html-t5 .col-xs-8,

#custom-html-t5 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t5 .col-xs-1,

#custom-html-t5 .col-xs-10,

#custom-html-t5 .col-xs-11,

#custom-html-t5 .col-xs-12,

#custom-html-t5 .col-xs-2,

#custom-html-t5 .col-xs-3,

#custom-html-t5 .col-xs-4,

#custom-html-t5 .col-xs-5,

#custom-html-t5 .col-xs-6,

#custom-html-t5 .col-xs-7,

#custom-html-t5 .col-xs-8,

#custom-html-t5 .col-xs-9 {

  float: left;

}

#custom-html-t5 .col-xs-12 {

  width: 100%;

}

#custom-html-t5 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t5 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t5 .col-xs-9 {

  width: 75%;

}

#custom-html-t5 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t5 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t5 .col-xs-6 {

  width: 50%;

}

#custom-html-t5 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t5 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-t5 .col-xs-3 {

  width: 25%;

}

#custom-html-t5 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t5 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t5 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t5 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t5 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t5 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t5 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t5 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t5 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t5 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t5 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t5 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t5 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t5 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t5 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t5 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t5 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t5 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t5 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t5 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t5 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t5 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t5 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t5 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t5 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t5 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t5 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t5 .col-xs-push-0 {

  left: auto;

}

#custom-html-t5 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t5 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t5 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t5 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t5 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t5 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t5 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t5 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t5 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t5 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t5 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t5 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t5 .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-t5 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t5 th {

  text-align: left;

}

#custom-html-t5 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t5 .table > tbody > tr > td,

#custom-html-t5 .table > tbody > tr > th,

#custom-html-t5 .table > tfoot > tr > td,

#custom-html-t5 .table > tfoot > tr > th,

#custom-html-t5 .table > thead > tr > td,

#custom-html-t5 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t5 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t5 .table > caption + thead > tr:first-child > td,

#custom-html-t5 .table > caption + thead > tr:first-child > th,

#custom-html-t5 .table > colgroup + thead > tr:first-child > td,

#custom-html-t5 .table > colgroup + thead > tr:first-child > th,

#custom-html-t5 .table > thead:first-child > tr:first-child > td,

#custom-html-t5 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t5 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t5 .table .table {

  background-color: #ffffff;

}

#custom-html-t5 .table-condensed > tbody > tr > td,

#custom-html-t5 .table-condensed > tbody > tr > th,

#custom-html-t5 .table-condensed > tfoot > tr > td,

#custom-html-t5 .table-condensed > tfoot > tr > th,

#custom-html-t5 .table-condensed > thead > tr > td,

#custom-html-t5 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t5 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t5 .table-bordered > tbody > tr > td,

#custom-html-t5 .table-bordered > tbody > tr > th,

#custom-html-t5 .table-bordered > tfoot > tr > td,

#custom-html-t5 .table-bordered > tfoot > tr > th,

#custom-html-t5 .table-bordered > thead > tr > td,

#custom-html-t5 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t5 .table-bordered > thead > tr > td,

#custom-html-t5 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t5 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t5 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t5 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t5 table td[class*=col-],

#custom-html-t5 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t5 .table > tbody > tr.active > td,

#custom-html-t5 .table > tbody > tr.active > th,

#custom-html-t5 .table > tbody > tr > td.active,

#custom-html-t5 .table > tbody > tr > th.active,

#custom-html-t5 .table > tfoot > tr.active > td,

#custom-html-t5 .table > tfoot > tr.active > th,

#custom-html-t5 .table > tfoot > tr > td.active,

#custom-html-t5 .table > tfoot > tr > th.active,

#custom-html-t5 .table > thead > tr.active > td,

#custom-html-t5 .table > thead > tr.active > th,

#custom-html-t5 .table > thead > tr > td.active,

#custom-html-t5 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t5 .table-hover > tbody > tr.active:hover > td,

#custom-html-t5 .table-hover > tbody > tr.active:hover > th,

#custom-html-t5 .table-hover > tbody > tr:hover > .active,

#custom-html-t5 .table-hover > tbody > tr > td.active:hover,

#custom-html-t5 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t5 .table > tbody > tr.success > td,

#custom-html-t5 .table > tbody > tr.success > th,

#custom-html-t5 .table > tbody > tr > td.success,

#custom-html-t5 .table > tbody > tr > th.success,

#custom-html-t5 .table > tfoot > tr.success > td,

#custom-html-t5 .table > tfoot > tr.success > th,

#custom-html-t5 .table > tfoot > tr > td.success,

#custom-html-t5 .table > tfoot > tr > th.success,

#custom-html-t5 .table > thead > tr.success > td,

#custom-html-t5 .table > thead > tr.success > th,

#custom-html-t5 .table > thead > tr > td.success,

#custom-html-t5 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t5 .table-hover > tbody > tr.success:hover > td,

#custom-html-t5 .table-hover > tbody > tr.success:hover > th,

#custom-html-t5 .table-hover > tbody > tr:hover > .success,

#custom-html-t5 .table-hover > tbody > tr > td.success:hover,

#custom-html-t5 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t5 .table > tbody > tr.info > td,

#custom-html-t5 .table > tbody > tr.info > th,

#custom-html-t5 .table > tbody > tr > td.info,

#custom-html-t5 .table > tbody > tr > th.info,

#custom-html-t5 .table > tfoot > tr.info > td,

#custom-html-t5 .table > tfoot > tr.info > th,

#custom-html-t5 .table > tfoot > tr > td.info,

#custom-html-t5 .table > tfoot > tr > th.info,

#custom-html-t5 .table > thead > tr.info > td,

#custom-html-t5 .table > thead > tr.info > th,

#custom-html-t5 .table > thead > tr > td.info,

#custom-html-t5 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t5 .table-hover > tbody > tr.info:hover > td,

#custom-html-t5 .table-hover > tbody > tr.info:hover > th,

#custom-html-t5 .table-hover > tbody > tr:hover > .info,

#custom-html-t5 .table-hover > tbody > tr > td.info:hover,

#custom-html-t5 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t5 .table > tbody > tr.warning > td,

#custom-html-t5 .table > tbody > tr.warning > th,

#custom-html-t5 .table > tbody > tr > td.warning,

#custom-html-t5 .table > tbody > tr > th.warning,

#custom-html-t5 .table > tfoot > tr.warning > td,

#custom-html-t5 .table > tfoot > tr.warning > th,

#custom-html-t5 .table > tfoot > tr > td.warning,

#custom-html-t5 .table > tfoot > tr > th.warning,

#custom-html-t5 .table > thead > tr.warning > td,

#custom-html-t5 .table > thead > tr.warning > th,

#custom-html-t5 .table > thead > tr > td.warning,

#custom-html-t5 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t5 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t5 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t5 .table-hover > tbody > tr:hover > .warning,


#custom-html-t5 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t5 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t5 .table > tbody > tr.danger > td,

#custom-html-t5 .table > tbody > tr.danger > th,

#custom-html-t5 .table > tbody > tr > td.danger,

#custom-html-t5 .table > tbody > tr > th.danger,

#custom-html-t5 .table > tfoot > tr.danger > td,

#custom-html-t5 .table > tfoot > tr.danger > th,

#custom-html-t5 .table > tfoot > tr > td.danger,

#custom-html-t5 .table > tfoot > tr > th.danger,

#custom-html-t5 .table > thead > tr.danger > td,

#custom-html-t5 .table > thead > tr.danger > th,

#custom-html-t5 .table > thead > tr > td.danger,

#custom-html-t5 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t5 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t5 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t5 .table-hover > tbody > tr:hover > .danger,

#custom-html-t5 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t5 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t5 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t5 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t5 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t5 .table-responsive > .table > tbody > tr > td,

  #custom-html-t5 .table-responsive > .table > tbody > tr > th,

  #custom-html-t5 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t5 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t5 .table-responsive > .table > thead > tr > td,

  #custom-html-t5 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t5 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t5 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t5 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t5 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t5 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t5 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t5 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t5 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t5 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t5 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-t5 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t5 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t5 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t5 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t5 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t5 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t5 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-t5 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t5 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t5 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t5 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-t5 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t5 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t5 input[type=file] {

  display: block;

}

#custom-html-t5 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-t5 select[multiple],

#custom-html-t5 select[size] {

  height: auto;

}

#custom-html-t5 input[type=checkbox]:focus,

#custom-html-t5 input[type=file]:focus,

#custom-html-t5 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t5 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t5 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t5 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t5 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t5 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t5 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t5 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t5 .form-control[disabled],

#custom-html-t5 .form-control[readonly],

#custom-html-t5 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t5 .form-control[disabled],

#custom-html-t5 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t5 textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t5 input[type=date].form-control,

  #custom-html-t5 input[type=datetime-local].form-control,

  #custom-html-t5 input[type=month].form-control,

  #custom-html-t5 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t5 .input-group-sm input[type=date],

  #custom-html-t5 .input-group-sm input[type=datetime-local],

  #custom-html-t5 .input-group-sm input[type=month],

  #custom-html-t5 .input-group-sm input[type=time],

  #custom-html-t5 input[type=date].input-sm,

  #custom-html-t5 input[type=datetime-local].input-sm,

  #custom-html-t5 input[type=month].input-sm,

  #custom-html-t5 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t5 .input-group-lg input[type=date],

  #custom-html-t5 .input-group-lg input[type=datetime-local],

  #custom-html-t5 .input-group-lg input[type=month],

  #custom-html-t5 .input-group-lg input[type=time],

  #custom-html-t5 input[type=date].input-lg,

  #custom-html-t5 input[type=datetime-local].input-lg,

  #custom-html-t5 input[type=month].input-lg,

  #custom-html-t5 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t5 .form-group {

  margin-bottom: 15px;

}

#custom-html-t5 .checkbox,

#custom-html-t5 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t5 .checkbox label,

#custom-html-t5 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t5 .checkbox input[type=checkbox],

#custom-html-t5 .checkbox-inline input[type=checkbox],

#custom-html-t5 .radio input[type=radio],

#custom-html-t5 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t5 .checkbox + .checkbox,

#custom-html-t5 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t5 .checkbox-inline,

#custom-html-t5 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t5 .checkbox-inline + .checkbox-inline,

#custom-html-t5 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t5 fieldset[disabled] input[type=checkbox],

#custom-html-t5 fieldset[disabled] input[type=radio],

#custom-html-t5 input[type=checkbox].disabled,

#custom-html-t5 input[type=checkbox][disabled],

#custom-html-t5 input[type=radio].disabled,

#custom-html-t5 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t5 .checkbox-inline.disabled,

#custom-html-t5 .radio-inline.disabled,

#custom-html-t5 fieldset[disabled] .checkbox-inline,

#custom-html-t5 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t5 .checkbox.disabled label,

#custom-html-t5 .radio.disabled label,

#custom-html-t5 fieldset[disabled] .checkbox label,

#custom-html-t5 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t5 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t5 .form-control-static.input-lg,

#custom-html-t5 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t5 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t5 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t5 select[multiple].input-sm,

#custom-html-t5 textarea.input-sm {

  height: auto;

}

#custom-html-t5 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t5 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t5 .form-group-sm select[multiple].form-control,

#custom-html-t5 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t5 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t5 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t5 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t5 select[multiple].input-lg,

#custom-html-t5 textarea.input-lg {

  height: auto;

}

#custom-html-t5 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t5 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-t5 .form-group-lg select[multiple].form-control,

#custom-html-t5 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t5 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t5 .has-feedback {

  position: relative;

}

#custom-html-t5 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t5 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t5 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t5 .input-group-lg + .form-control-feedback,

#custom-html-t5 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t5 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t5 .input-group-sm + .form-control-feedback,

#custom-html-t5 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t5 .has-success .checkbox,

#custom-html-t5 .has-success .checkbox-inline,

#custom-html-t5 .has-success .control-label,

#custom-html-t5 .has-success .help-block,

#custom-html-t5 .has-success .radio,

#custom-html-t5 .has-success .radio-inline,

#custom-html-t5 .has-success.checkbox label,

#custom-html-t5 .has-success.checkbox-inline label,

#custom-html-t5 .has-success.radio label,

#custom-html-t5 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t5 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t5 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t5 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t5 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t5 .has-warning .checkbox,

#custom-html-t5 .has-warning .checkbox-inline,

#custom-html-t5 .has-warning .control-label,

#custom-html-t5 .has-warning .help-block,

#custom-html-t5 .has-warning .radio,

#custom-html-t5 .has-warning .radio-inline,

#custom-html-t5 .has-warning.checkbox label,

#custom-html-t5 .has-warning.checkbox-inline label,

#custom-html-t5 .has-warning.radio label,

#custom-html-t5 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t5 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t5 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t5 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t5 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t5 .has-error .checkbox,

#custom-html-t5 .has-error .checkbox-inline,

#custom-html-t5 .has-error .control-label,

#custom-html-t5 .has-error .help-block,

#custom-html-t5 .has-error .radio,

#custom-html-t5 .has-error .radio-inline,

#custom-html-t5 .has-error.checkbox label,

#custom-html-t5 .has-error.checkbox-inline label,

#custom-html-t5 .has-error.radio label,

#custom-html-t5 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t5 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t5 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t5 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t5 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t5 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t5 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t5 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-t5 .form-horizontal .checkbox,

#custom-html-t5 .form-horizontal .checkbox-inline,

#custom-html-t5 .form-horizontal .radio,

#custom-html-t5 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t5 .form-horizontal .checkbox,

#custom-html-t5 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t5 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t5 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-t5 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-t5 .btn.active.focus,

#custom-html-t5 .btn.active:focus,

#custom-html-t5 .btn.focus,

#custom-html-t5 .btn:active.focus,

#custom-html-t5 .btn:active:focus,

#custom-html-t5 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t5 .btn.focus,

#custom-html-t5 .btn:focus,

#custom-html-t5 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t5 .btn.active,

#custom-html-t5 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t5 .btn.disabled,

#custom-html-t5 .btn[disabled],

#custom-html-t5 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t5 a.btn.disabled,

#custom-html-t5 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t5 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t5 .btn-default.focus,

#custom-html-t5 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t5 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t5 .btn-default.active,

#custom-html-t5 .btn-default:active,

#custom-html-t5 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-t5 .btn-default.active.focus,

#custom-html-t5 .btn-default.active:focus,

#custom-html-t5 .btn-default.active:hover,

#custom-html-t5 .btn-default:active.focus,

#custom-html-t5 .btn-default:active:focus,

#custom-html-t5 .btn-default:active:hover,

#custom-html-t5 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t5 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t5 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t5 .btn-default.disabled.focus,

#custom-html-t5 .btn-default.disabled:focus,

#custom-html-t5 .btn-default.disabled:hover,

#custom-html-t5 .btn-default[disabled].focus,

#custom-html-t5 .btn-default[disabled]:focus,

#custom-html-t5 .btn-default[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-default.focus,

#custom-html-t5 fieldset[disabled] .btn-default:focus,

#custom-html-t5 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t5 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t5 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t5 .btn-primary.focus,

#custom-html-t5 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t5 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t5 .btn-primary.active,

#custom-html-t5 .btn-primary:active,

#custom-html-t5 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-t5 .btn-primary.active.focus,

#custom-html-t5 .btn-primary.active:focus,

#custom-html-t5 .btn-primary.active:hover,

#custom-html-t5 .btn-primary:active.focus,

#custom-html-t5 .btn-primary:active:focus,

#custom-html-t5 .btn-primary:active:hover,

#custom-html-t5 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t5 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t5 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t5 .btn-primary.disabled.focus,

#custom-html-t5 .btn-primary.disabled:focus,

#custom-html-t5 .btn-primary.disabled:hover,

#custom-html-t5 .btn-primary[disabled].focus,

#custom-html-t5 .btn-primary[disabled]:focus,

#custom-html-t5 .btn-primary[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-primary.focus,

#custom-html-t5 fieldset[disabled] .btn-primary:focus,

#custom-html-t5 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t5 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t5 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t5 .btn-success.focus,

#custom-html-t5 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t5 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t5 .btn-success.active,

#custom-html-t5 .btn-success:active,

#custom-html-t5 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-t5 .btn-success.active.focus,

#custom-html-t5 .btn-success.active:focus,

#custom-html-t5 .btn-success.active:hover,

#custom-html-t5 .btn-success:active.focus,

#custom-html-t5 .btn-success:active:focus,

#custom-html-t5 .btn-success:active:hover,

#custom-html-t5 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t5 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t5 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t5 .btn-success.disabled.focus,

#custom-html-t5 .btn-success.disabled:focus,

#custom-html-t5 .btn-success.disabled:hover,

#custom-html-t5 .btn-success[disabled].focus,

#custom-html-t5 .btn-success[disabled]:focus,

#custom-html-t5 .btn-success[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-success.focus,

#custom-html-t5 fieldset[disabled] .btn-success:focus,

#custom-html-t5 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t5 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t5 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t5 .btn-info.focus,

#custom-html-t5 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t5 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t5 .btn-info.active,

#custom-html-t5 .btn-info:active,

#custom-html-t5 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-t5 .btn-info.active.focus,

#custom-html-t5 .btn-info.active:focus,

#custom-html-t5 .btn-info.active:hover,

#custom-html-t5 .btn-info:active.focus,

#custom-html-t5 .btn-info:active:focus,

#custom-html-t5 .btn-info:active:hover,

#custom-html-t5 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t5 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t5 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t5 .btn-info.disabled.focus,

#custom-html-t5 .btn-info.disabled:focus,

#custom-html-t5 .btn-info.disabled:hover,

#custom-html-t5 .btn-info[disabled].focus,

#custom-html-t5 .btn-info[disabled]:focus,

#custom-html-t5 .btn-info[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-info.focus,

#custom-html-t5 fieldset[disabled] .btn-info:focus,

#custom-html-t5 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t5 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t5 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t5 .btn-warning.focus,

#custom-html-t5 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t5 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t5 .btn-warning.active,

#custom-html-t5 .btn-warning:active,

#custom-html-t5 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-t5 .btn-warning.active.focus,

#custom-html-t5 .btn-warning.active:focus,

#custom-html-t5 .btn-warning.active:hover,

#custom-html-t5 .btn-warning:active.focus,

#custom-html-t5 .btn-warning:active:focus,

#custom-html-t5 .btn-warning:active:hover,

#custom-html-t5 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t5 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t5 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t5 .btn-warning.disabled.focus,

#custom-html-t5 .btn-warning.disabled:focus,

#custom-html-t5 .btn-warning.disabled:hover,

#custom-html-t5 .btn-warning[disabled].focus,

#custom-html-t5 .btn-warning[disabled]:focus,

#custom-html-t5 .btn-warning[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-warning.focus,

#custom-html-t5 fieldset[disabled] .btn-warning:focus,

#custom-html-t5 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t5 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t5 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t5 .btn-danger.focus,

#custom-html-t5 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t5 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t5 .btn-danger.active,

#custom-html-t5 .btn-danger:active,

#custom-html-t5 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-t5 .btn-danger.active.focus,

#custom-html-t5 .btn-danger.active:focus,

#custom-html-t5 .btn-danger.active:hover,

#custom-html-t5 .btn-danger:active.focus,

#custom-html-t5 .btn-danger:active:focus,

#custom-html-t5 .btn-danger:active:hover,

#custom-html-t5 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t5 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t5 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t5 .btn-danger.disabled.focus,

#custom-html-t5 .btn-danger.disabled:focus,

#custom-html-t5 .btn-danger.disabled:hover,

#custom-html-t5 .btn-danger[disabled].focus,

#custom-html-t5 .btn-danger[disabled]:focus,

#custom-html-t5 .btn-danger[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-danger.focus,

#custom-html-t5 fieldset[disabled] .btn-danger:focus,

#custom-html-t5 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t5 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t5 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t5 .btn-link,

#custom-html-t5 .btn-link.active,

#custom-html-t5 .btn-link:active,

#custom-html-t5 .btn-link[disabled],

#custom-html-t5 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t5 .btn-link,

#custom-html-t5 .btn-link:active,

#custom-html-t5 .btn-link:focus,

#custom-html-t5 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t5 .btn-link:focus,

#custom-html-t5 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t5 .btn-link[disabled]:focus,

#custom-html-t5 .btn-link[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-link:focus,

#custom-html-t5 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t5 .btn-group-lg > .btn,

#custom-html-t5 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t5 .btn-group-sm > .btn,

#custom-html-t5 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t5 .btn-group-xs > .btn,

#custom-html-t5 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t5 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t5 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t5 input[type=button].btn-block,

#custom-html-t5 input[type=reset].btn-block,

#custom-html-t5 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t5 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t5 .fade.in {

  opacity: 1;

}

#custom-html-t5 .collapse {

  display: none;

}

#custom-html-t5 .collapse.in {

  display: block;

}

#custom-html-t5 tr.collapse.in {

  display: table-row;

}

#custom-html-t5 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t5 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t5 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t5 .dropdown,

#custom-html-t5 .dropup {

  position: relative;

}

#custom-html-t5 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t5 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 900;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t5 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t5 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t5 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-t5 .dropdown-menu > li > a:focus,

#custom-html-t5 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t5 .dropdown-menu > .active > a,

#custom-html-t5 .dropdown-menu > .active > a:focus,

#custom-html-t5 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-t5 .dropdown-menu > .disabled > a,

#custom-html-t5 .dropdown-menu > .disabled > a:focus,

#custom-html-t5 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t5 .dropdown-menu > .disabled > a:focus,

#custom-html-t5 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t5 .open > .dropdown-menu {

  display: block;

}

#custom-html-t5 .open > a {

  outline: 0;

}

#custom-html-t5 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t5 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t5 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t5 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t5 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t5 .dropup .caret,

#custom-html-t5 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t5 .dropup .dropdown-menu,

#custom-html-t5 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-t5 .btn-group,

#custom-html-t5 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t5 .btn-group-vertical > .btn,

#custom-html-t5 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t5 .btn-group-vertical > .btn.active,

#custom-html-t5 .btn-group-vertical > .btn:active,

#custom-html-t5 .btn-group-vertical > .btn:focus,

#custom-html-t5 .btn-group-vertical > .btn:hover,

#custom-html-t5 .btn-group > .btn.active,

#custom-html-t5 .btn-group > .btn:active,

#custom-html-t5 .btn-group > .btn:focus,

#custom-html-t5 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t5 .btn-group .btn + .btn,

#custom-html-t5 .btn-group .btn + .btn-group,

#custom-html-t5 .btn-group .btn-group + .btn,

#custom-html-t5 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t5 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t5 .btn-toolbar .btn,

#custom-html-t5 .btn-toolbar .btn-group,

#custom-html-t5 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t5 .btn-toolbar > .btn,

#custom-html-t5 .btn-toolbar > .btn-group,

#custom-html-t5 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t5 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t5 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t5 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t5 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t5 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t5 .btn-group > .btn-group {

  float: left;

}

#custom-html-t5 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t5 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t5 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t5 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t5 .btn-group .dropdown-toggle:active,

#custom-html-t5 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t5 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t5 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t5 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t5 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t5 .btn .caret {

  margin-left: 0;

}

#custom-html-t5 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t5 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t5 .btn-group-vertical > .btn,

#custom-html-t5 .btn-group-vertical > .btn-group,

#custom-html-t5 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t5 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t5 .btn-group-vertical > .btn + .btn,

#custom-html-t5 .btn-group-vertical > .btn + .btn-group,

#custom-html-t5 .btn-group-vertical > .btn-group + .btn,

#custom-html-t5 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t5 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t5 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t5 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t5 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t5 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t5 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t5 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t5 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t5 .btn-group-justified > .btn,

#custom-html-t5 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t5 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t5 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t5 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t5 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t5 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t5 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t5 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t5 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t5 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t5 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t5 .input-group-lg > .form-control,

#custom-html-t5 .input-group-lg > .input-group-addon,

#custom-html-t5 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t5 select.input-group-lg > .form-control,

#custom-html-t5 select.input-group-lg > .input-group-addon,

#custom-html-t5 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t5 select[multiple].input-group-lg > .form-control,

#custom-html-t5 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t5 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t5 textarea.input-group-lg > .form-control,

#custom-html-t5 textarea.input-group-lg > .input-group-addon,

#custom-html-t5 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t5 .input-group-sm > .form-control,

#custom-html-t5 .input-group-sm > .input-group-addon,

#custom-html-t5 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t5 select.input-group-sm > .form-control,

#custom-html-t5 select.input-group-sm > .input-group-addon,

#custom-html-t5 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t5 select[multiple].input-group-sm > .form-control,

#custom-html-t5 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t5 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t5 textarea.input-group-sm > .form-control,

#custom-html-t5 textarea.input-group-sm > .input-group-addon,

#custom-html-t5 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t5 .input-group .form-control,

#custom-html-t5 .input-group-addon,

#custom-html-t5 .input-group-btn {

  display: table-cell;

}

#custom-html-t5 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t5 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t5 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t5 .input-group-addon,

#custom-html-t5 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t5 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t5 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t5 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t5 .input-group-addon input[type=checkbox],

#custom-html-t5 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t5 .input-group .form-control:first-child,

#custom-html-t5 .input-group-addon:first-child,

#custom-html-t5 .input-group-btn:first-child > .btn,

#custom-html-t5 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t5 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t5 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t5 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t5 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t5 .input-group .form-control:last-child,

#custom-html-t5 .input-group-addon:last-child,

#custom-html-t5 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t5 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t5 .input-group-btn:last-child > .btn,

#custom-html-t5 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t5 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t5 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t5 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t5 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t5 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t5 .input-group-btn > .btn:active,

#custom-html-t5 .input-group-btn > .btn:focus,

#custom-html-t5 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t5 .input-group-btn:first-child > .btn,

#custom-html-t5 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t5 .input-group-btn:last-child > .btn,

#custom-html-t5 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t5 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t5 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t5 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t5 .nav > li > a:focus,

#custom-html-t5 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t5 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t5 .nav > li.disabled > a:focus,

#custom-html-t5 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t5 .nav .open > a,

#custom-html-t5 .nav .open > a:focus,

#custom-html-t5 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t5 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t5 .nav > li > a > img {

  max-width: none;

}

#custom-html-t5 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t5 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t5 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t5 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t5 .nav-tabs > li.active > a,

#custom-html-t5 .nav-tabs > li.active > a:focus,

#custom-html-t5 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t5 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t5 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t5 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t5 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t5 .nav-tabs.nav-justified > .active > a,

#custom-html-t5 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t5 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t5 .nav-pills > li {

  float: left;

}

#custom-html-t5 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t5 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t5 .nav-pills > li.active > a,

#custom-html-t5 .nav-pills > li.active > a:focus,

#custom-html-t5 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t5 .nav-stacked > li {

  float: none;

}

#custom-html-t5 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t5 .nav-justified {

  width: 100%;

}

#custom-html-t5 .nav-justified > li {

  float: none;

}

#custom-html-t5 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t5 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t5 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t5 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t5 .nav-tabs-justified > .active > a,

#custom-html-t5 .nav-tabs-justified > .active > a:focus,

#custom-html-t5 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t5 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t5 .tab-content > .active {

  display: block;

}

#custom-html-t5 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t5 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-t5 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t5 .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-t5 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t5 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t5 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t5 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t5 .container-fluid > .navbar-collapse,

#custom-html-t5 .container-fluid > .navbar-header,

#custom-html-t5 .container > .navbar-collapse,

#custom-html-t5 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t5 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-t5 .navbar-fixed-bottom,

#custom-html-t5 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-t5 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t5 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t5 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t5 .navbar-brand:focus,

#custom-html-t5 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t5 .navbar-brand > img {

  display: block;

}

#custom-html-t5 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t5 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t5 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t5 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-t5 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t5 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t5 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t5 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t5 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t5 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t5 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t5 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-t5 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t5 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-t5 .visible-xs {

    display: block !important;

  }

  #custom-html-t5 table.visible-xs {

    display: table !important;

  }

  #custom-html-t5 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t5 td.visible-xs,

  #custom-html-t5 th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-t5 .visible-xs-block {

    display: block !important;

  }

  #custom-html-t5 .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-t5 .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-t5 .hidden-xs {

    display: none !important;

  }

  #custom-html-t5 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t5 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-t5 section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-t5 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t5 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t5 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t5 .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-t5 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t5 .tiles .tile:nth-child(1),

  #custom-html-t5 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-t5 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t5 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t5 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-t5 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t5 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t5 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-t5 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-t5 .promo-banner form {

    text-align: center;

  }

}

#custom-html-t5 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t5 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t5 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t5 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t5 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t5 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t5 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t5 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t5 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t5 .navbar-default .navbar-brand:focus,

#custom-html-t5 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t5 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t5 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t5 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t5 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t5 .navbar-default .navbar-nav > .active > a,

#custom-html-t5 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t5 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t5 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t5 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t5 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t5 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t5 .navbar-default .navbar-toggle:focus,

#custom-html-t5 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t5 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t5 .navbar-default .navbar-collapse,

#custom-html-t5 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t5 .navbar-default .navbar-nav > .open > a,

#custom-html-t5 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t5 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t5 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t5 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t5 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t5 .navbar-default .btn-link:focus,

#custom-html-t5 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-t5 .navbar-default .btn-link[disabled]:focus,

#custom-html-t5 .navbar-default .btn-link[disabled]:hover,

#custom-html-t5 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t5 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t5 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t5 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t5 .navbar-inverse .navbar-brand:focus,

#custom-html-t5 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t5 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t5 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t5 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t5 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t5 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t5 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t5 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t5 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t5 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t5 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t5 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t5 .navbar-inverse .navbar-toggle:focus,

#custom-html-t5 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t5 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t5 .navbar-inverse .navbar-collapse,

#custom-html-t5 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t5 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t5 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t5 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t5 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t5 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t5 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t5 .navbar-inverse .btn-link:focus,

#custom-html-t5 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t5 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t5 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t5 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t5 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t5 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t5 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t5 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t5 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t5 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-t5 .pagination > li {

  display: inline;

}

#custom-html-t5 .pagination > li > a,

#custom-html-t5 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t5 .pagination > li:first-child > a,

#custom-html-t5 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t5 .pagination > li:last-child > a,

#custom-html-t5 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t5 .pagination > li > a:focus,

#custom-html-t5 .pagination > li > a:hover,

#custom-html-t5 .pagination > li > span:focus,

#custom-html-t5 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t5 .pagination > .active > a,

#custom-html-t5 .pagination > .active > a:focus,

#custom-html-t5 .pagination > .active > a:hover,

#custom-html-t5 .pagination > .active > span,

#custom-html-t5 .pagination > .active > span:focus,

#custom-html-t5 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t5 .pagination > .disabled > a,

#custom-html-t5 .pagination > .disabled > a:focus,

#custom-html-t5 .pagination > .disabled > a:hover,

#custom-html-t5 .pagination > .disabled > span,

#custom-html-t5 .pagination > .disabled > span:focus,

#custom-html-t5 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t5 .pagination-lg > li > a,

#custom-html-t5 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t5 .pagination-lg > li:first-child > a,

#custom-html-t5 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t5 .pagination-lg > li:last-child > a,

#custom-html-t5 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t5 .pagination-sm > li > a,

#custom-html-t5 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t5 .pagination-sm > li:first-child > a,

#custom-html-t5 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t5 .pagination-sm > li:last-child > a,

#custom-html-t5 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t5 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t5 .pager li {

  display: inline;

}

#custom-html-t5 .pager li > a,

#custom-html-t5 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t5 .pager li > a:focus,

#custom-html-t5 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t5 .pager .next > a,

#custom-html-t5 .pager .next > span {

  float: right;

}

#custom-html-t5 .pager .previous > a,

#custom-html-t5 .pager .previous > span {

  float: left;

}

#custom-html-t5 .pager .disabled > a,

#custom-html-t5 .pager .disabled > a:focus,

#custom-html-t5 .pager .disabled > a:hover,

#custom-html-t5 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t5 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-t5 a.label:focus,

#custom-html-t5 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t5 .label:empty {

  display: none;

}

#custom-html-t5 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t5 .label-default {

  background-color: #777777;

}

#custom-html-t5 .label-default[href]:focus,

#custom-html-t5 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t5 .label-primary {

  background-color: #337ab7;

}

#custom-html-t5 .label-primary[href]:focus,

#custom-html-t5 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t5 .label-success {

  background-color: #5cb85c;

}

#custom-html-t5 .label-success[href]:focus,

#custom-html-t5 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t5 .label-info {

  background-color: #5bc0de;

}

#custom-html-t5 .label-info[href]:focus,

#custom-html-t5 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t5 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t5 .label-warning[href]:focus,

#custom-html-t5 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t5 .label-danger {

  background-color: #d9534f;

}

#custom-html-t5 .label-danger[href]:focus,

#custom-html-t5 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t5 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t5 .badge:empty {

  display: none;

}

#custom-html-t5 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t5 .btn-group-xs > .btn .badge,

#custom-html-t5 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t5 a.badge:focus,

#custom-html-t5 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t5 .list-group-item.active > .badge,

#custom-html-t5 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t5 .list-group-item > .badge {

  float: right;

}

#custom-html-t5 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t5 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t5 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t5 .jumbotron .h1,

#custom-html-t5 .jumbotron h1 {

  color: inherit;

}

#custom-html-t5 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t5 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t5 .container .jumbotron,

#custom-html-t5 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t5 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t5 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t5 .container .jumbotron,

  #custom-html-t5 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t5 .jumbotron .h1,

  #custom-html-t5 .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-t5 .carousel-control .glyphicon-chevron-left,

  #custom-html-t5 .carousel-control .glyphicon-chevron-right,

  #custom-html-t5 .carousel-control .icon-next,

  #custom-html-t5 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t5 .carousel-control .glyphicon-chevron-left,

  #custom-html-t5 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t5 .carousel-control .glyphicon-chevron-right,

  #custom-html-t5 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t5 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t5 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t5 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t5 .thumbnail a > img,

#custom-html-t5 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t5 a.thumbnail.active,

#custom-html-t5 a.thumbnail:focus,

#custom-html-t5 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t5 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t5 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t5 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t5 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t5 .alert > p,

#custom-html-t5 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t5 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t5 .alert-dismissable,

#custom-html-t5 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t5 .alert-dismissable .close,

#custom-html-t5 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t5 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t5 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-t5 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t5 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t5 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t5 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t5 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t5 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t5 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t5 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t5 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t5 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t5 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t5 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t5 .progress-bar-striped,

#custom-html-t5 .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t5 .progress-bar.active,

#custom-html-t5 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t5 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t5 .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t5 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t5 .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t5 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t5 .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t5 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t5 .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t5 .media {

  margin-top: 15px;

}

#custom-html-t5 .media:first-child {

  margin-top: 0;

}

#custom-html-t5 .media,

#custom-html-t5 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t5 .media-body {

  width: 10000px;

}

#custom-html-t5 .media-object {

  display: block;

}

#custom-html-t5 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t5 .media-right,

#custom-html-t5 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t5 .media-left,

#custom-html-t5 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t5 .media-body,

#custom-html-t5 .media-left,

#custom-html-t5 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t5 .media-middle {

  vertical-align: middle;

}

#custom-html-t5 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t5 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t5 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t5 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-t5 .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-t5 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t5 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t5 a.list-group-item,

#custom-html-t5 button.list-group-item {

  color: #555555;

}

#custom-html-t5 a.list-group-item .list-group-item-heading,

#custom-html-t5 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t5 a.list-group-item:focus,

#custom-html-t5 a.list-group-item:hover,

#custom-html-t5 button.list-group-item:focus,

#custom-html-t5 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t5 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t5 .list-group-item.disabled,

#custom-html-t5 .list-group-item.disabled:focus,

#custom-html-t5 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t5 .list-group-item.disabled .list-group-item-heading,

#custom-html-t5 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t5 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t5 .list-group-item.disabled .list-group-item-text,

#custom-html-t5 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t5 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t5 .list-group-item.active,

#custom-html-t5 .list-group-item.active:focus,

#custom-html-t5 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t5 .list-group-item.active .list-group-item-heading,

#custom-html-t5 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t5 .list-group-item.active .list-group-item-heading > small,

#custom-html-t5 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t5 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t5 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t5 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t5 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t5 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t5 .list-group-item.active .list-group-item-text,

#custom-html-t5 .list-group-item.active:focus .list-group-item-text,

#custom-html-t5 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t5 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t5 a.list-group-item-success,

#custom-html-t5 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t5 a.list-group-item-success .list-group-item-heading,

#custom-html-t5 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t5 a.list-group-item-success:focus,

#custom-html-t5 a.list-group-item-success:hover,

#custom-html-t5 button.list-group-item-success:focus,

#custom-html-t5 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t5 a.list-group-item-success.active,

#custom-html-t5 a.list-group-item-success.active:focus,

#custom-html-t5 a.list-group-item-success.active:hover,

#custom-html-t5 button.list-group-item-success.active,

#custom-html-t5 button.list-group-item-success.active:focus,

#custom-html-t5 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t5 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t5 a.list-group-item-info,

#custom-html-t5 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t5 a.list-group-item-info .list-group-item-heading,

#custom-html-t5 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t5 a.list-group-item-info:focus,

#custom-html-t5 a.list-group-item-info:hover,

#custom-html-t5 button.list-group-item-info:focus,

#custom-html-t5 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t5 a.list-group-item-info.active,

#custom-html-t5 a.list-group-item-info.active:focus,

#custom-html-t5 a.list-group-item-info.active:hover,

#custom-html-t5 button.list-group-item-info.active,

#custom-html-t5 button.list-group-item-info.active:focus,

#custom-html-t5 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t5 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t5 a.list-group-item-warning,

#custom-html-t5 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t5 a.list-group-item-warning .list-group-item-heading,

#custom-html-t5 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t5 a.list-group-item-warning:focus,

#custom-html-t5 a.list-group-item-warning:hover,

#custom-html-t5 button.list-group-item-warning:focus,

#custom-html-t5 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t5 a.list-group-item-warning.active,

#custom-html-t5 a.list-group-item-warning.active:focus,

#custom-html-t5 a.list-group-item-warning.active:hover,

#custom-html-t5 button.list-group-item-warning.active,

#custom-html-t5 button.list-group-item-warning.active:focus,

#custom-html-t5 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t5 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t5 a.list-group-item-danger,

#custom-html-t5 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t5 a.list-group-item-danger .list-group-item-heading,

#custom-html-t5 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t5 a.list-group-item-danger:focus,

#custom-html-t5 a.list-group-item-danger:hover,

#custom-html-t5 button.list-group-item-danger:focus,

#custom-html-t5 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t5 a.list-group-item-danger.active,

#custom-html-t5 a.list-group-item-danger.active:focus,

#custom-html-t5 a.list-group-item-danger.active:hover,

#custom-html-t5 button.list-group-item-danger.active,

#custom-html-t5 button.list-group-item-danger.active:focus,

#custom-html-t5 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t5 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t5 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t5 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-t5 .panel-body {

  padding: 10px 15px;

}

#custom-html-t5 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t5 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t5 .panel-title > .small,

#custom-html-t5 .panel-title > .small > a,

#custom-html-t5 .panel-title > a,

#custom-html-t5 .panel-title > small,

#custom-html-t5 .panel-title > small > a {

  color: inherit;

}

#custom-html-t5 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t5 .panel > .list-group,

#custom-html-t5 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t5 .panel > .list-group .list-group-item,

#custom-html-t5 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t5 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t5 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t5 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t5 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t5 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t5 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t5 .panel > .panel-collapse > .table,

#custom-html-t5 .panel > .table,

#custom-html-t5 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t5 .panel > .panel-collapse > .table caption,

#custom-html-t5 .panel > .table caption,

#custom-html-t5 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t5 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t5 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t5 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t5 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t5 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t5 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t5 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t5 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t5 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t5 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t5 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t5 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t5 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t5 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t5 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t5 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t5 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t5 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t5 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t5 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t5 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t5 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t5 .panel > .panel-body + .table,

#custom-html-t5 .panel > .panel-body + .table-responsive,

#custom-html-t5 .panel > .table + .panel-body,

#custom-html-t5 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t5 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t5 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t5 .panel > .table-bordered,

#custom-html-t5 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t5 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t5 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t5 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t5 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t5 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t5 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t5 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t5 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t5 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t5 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t5 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t5 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t5 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t5 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t5 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t5 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t5 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t5 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t5 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t5 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t5 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t5 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t5 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t5 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t5 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-t5 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t5 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t5 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t5 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t5 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t5 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t5 .panel-default {

  border-color: #dddddd;

}

#custom-html-t5 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t5 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t5 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t5 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t5 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t5 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t5 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t5 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t5 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t5 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t5 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t5 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t5 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t5 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-t5 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t5 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t5 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t5 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t5 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t5 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t5 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t5 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t5 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t5 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t5 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t5 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t5 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t5 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t5 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t5 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t5 .embed-responsive .embed-responsive-item,

#custom-html-t5 .embed-responsive embed,

#custom-html-t5 .embed-responsive iframe,

#custom-html-t5 .embed-responsive object,

#custom-html-t5 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t5 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t5 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t5 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t5 .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t5 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t5 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t5 .close {



  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t5 .close:focus,

#custom-html-t5 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t5 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t5 .modal-open {

  overflow: hidden;

}

#custom-html-t5 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t5 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t5 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t5 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t5 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t5 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t5 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t5 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t5 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t5 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t5 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t5 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t5 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t5 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t5 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t5 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t5 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t5 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-t5 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t5 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t5 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t5 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t5 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t5 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t5 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t5 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t5 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t5 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t5 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t5 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t5 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t5 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t5 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t5 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t5 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t5 .popover.top {

  margin-top: -10px;

}

#custom-html-t5 .popover.right {

  margin-left: 10px;

}

#custom-html-t5 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t5 .popover.left {

  margin-left: -10px;

}

#custom-html-t5 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t5 .popover-content {

  padding: 9px 14px;

}

#custom-html-t5 .popover > .arrow,

#custom-html-t5 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t5 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t5 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t5 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t5 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t5 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t5 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t5 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t5 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t5 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t5 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t5 .carousel {

  position: relative;

}

#custom-html-t5 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t5 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t5 .carousel-inner > .item > a > img,

#custom-html-t5 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t5 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t5 .carousel-inner > .item.active.right,

  #custom-html-t5 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t5 .carousel-inner > .item.active.left,

  #custom-html-t5 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t5 .carousel-inner > .item.active,

  #custom-html-t5 .carousel-inner > .item.next.left,

  #custom-html-t5 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t5 .carousel-inner > .active,

#custom-html-t5 .carousel-inner > .next,

#custom-html-t5 .carousel-inner > .prev {

  display: block;

}

#custom-html-t5 .carousel-inner > .active {

  left: 0;

}

#custom-html-t5 .carousel-inner > .next,

#custom-html-t5 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t5 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t5 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t5 .carousel-inner > .next.left,

#custom-html-t5 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t5 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t5 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t5 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t5 .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t5 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t5 .carousel-control:focus,

#custom-html-t5 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t5 .carousel-control .glyphicon-chevron-left,

#custom-html-t5 .carousel-control .glyphicon-chevron-right,

#custom-html-t5 .carousel-control .icon-next,

#custom-html-t5 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t5 .carousel-control .glyphicon-chevron-left,

#custom-html-t5 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t5 .carousel-control .glyphicon-chevron-right,

#custom-html-t5 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t5 .carousel-control .icon-next,

#custom-html-t5 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t5 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t5 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t5 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t5 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t5 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t5 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t5 .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-t5 .btn-group-vertical > .btn-group:after,

#custom-html-t5 .btn-group-vertical > .btn-group:before,

#custom-html-t5 .btn-toolbar:after,

#custom-html-t5 .btn-toolbar:before,

#custom-html-t5 .clearfix:after,

#custom-html-t5 .clearfix:before,

#custom-html-t5 .container-fluid:after,

#custom-html-t5 .container-fluid:before,

#custom-html-t5 .container:after,

#custom-html-t5 .container:before,

#custom-html-t5 .dl-horizontal dd:after,

#custom-html-t5 .dl-horizontal dd:before,

#custom-html-t5 .form-horizontal .form-group:after,

#custom-html-t5 .form-horizontal .form-group:before,

#custom-html-t5 .modal-footer:after,

#custom-html-t5 .modal-footer:before,

#custom-html-t5 .modal-header:after,

#custom-html-t5 .modal-header:before,

#custom-html-t5 .nav:after,

#custom-html-t5 .nav:before,

#custom-html-t5 .navbar-collapse:after,

#custom-html-t5 .navbar-collapse:before,

#custom-html-t5 .navbar-header:after,

#custom-html-t5 .navbar-header:before,

#custom-html-t5 .navbar:after,

#custom-html-t5 .navbar:before,

#custom-html-t5 .pager:after,

#custom-html-t5 .pager:before,

#custom-html-t5 .panel-body:after,

#custom-html-t5 .panel-body:before,

#custom-html-t5 .row:after,

#custom-html-t5 .row:before {

  display: table;

  content: " ";

}

#custom-html-t5 .btn-group-vertical > .btn-group:after,

#custom-html-t5 .btn-toolbar:after,

#custom-html-t5 .clearfix:after,

#custom-html-t5 .container-fluid:after,

#custom-html-t5 .container:after,

#custom-html-t5 .dl-horizontal dd:after,

#custom-html-t5 .form-horizontal .form-group:after,

#custom-html-t5 .modal-footer:after,

#custom-html-t5 .modal-header:after,

#custom-html-t5 .nav:after,

#custom-html-t5 .navbar-collapse:after,

#custom-html-t5 .navbar-header:after,

#custom-html-t5 .navbar:after,

#custom-html-t5 .pager:after,

#custom-html-t5 .panel-body:after,

#custom-html-t5 .row:after {

  clear: both;

}

#custom-html-t5 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t5 .pull-right {

  float: right !important;

}

#custom-html-t5 .pull-left {

  float: left !important;

}

#custom-html-t5 .hide {

  display: none !important;

}

#custom-html-t5 .show {

  display: block !important;

}

#custom-html-t5 .invisible {

  visibility: hidden;

}

#custom-html-t5 .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t5 .hidden {

  display: none !important;

}

#custom-html-t5 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t5 .visible-lg,

#custom-html-t5 .visible-md,

#custom-html-t5 .visible-sm,

#custom-html-t5 .visible-xs {

  display: none !important;

}

#custom-html-t5 .visible-lg-block,

#custom-html-t5 .visible-lg-inline,

#custom-html-t5 .visible-lg-inline-block,

#custom-html-t5 .visible-md-block,

#custom-html-t5 .visible-md-inline,

#custom-html-t5 .visible-md-inline-block,

#custom-html-t5 .visible-sm-block,

#custom-html-t5 .visible-sm-inline,

#custom-html-t5 .visible-sm-inline-block,

#custom-html-t5 .visible-xs-block,

#custom-html-t5 .visible-xs-inline,

#custom-html-t5 .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t5 .visible-sm {

    display: block !important;

  }

  #custom-html-t5 table.visible-sm {

    display: table !important;

  }

  #custom-html-t5 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t5 td.visible-sm,

  #custom-html-t5 th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-t5 .visible-sm-block {

    display: block !important;

  }

  #custom-html-t5 .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-t5 .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-t5 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t5 .visible-md {

    display: block !important;

  }

  #custom-html-t5 table.visible-md {

    display: table !important;

  }

  #custom-html-t5 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t5 td.visible-md,

  #custom-html-t5 th.visible-md {

    display: table-cell !important;

  }

  #custom-html-t5 .visible-md-block {

    display: block !important;

  }

  #custom-html-t5 .visible-md-inline {

    display: inline !important;

  }

  #custom-html-t5 .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-t5 .hidden-md {

    display: none !important;

  }

}

#custom-html-t5 .visible-print {

  display: none !important;

}

#custom-html-t5 .visible-print-block {

  display: none !important;

}

#custom-html-t5 .visible-print-inline {

  display: none !important;

}

#custom-html-t5 .visible-print-inline-block {

  display: none !important;

}

#custom-html-t5 .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-t5 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t5 .intl-tel-input .hide {

  display: none;

}

#custom-html-t5 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t5 .intl-tel-input input,

#custom-html-t5 .intl-tel-input input[type=tel],

#custom-html-t5 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t5 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t5 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t5 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t5 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t5 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t5 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t5 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t5 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t5 .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-t5 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t5 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t5 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t5 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t5 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t5 .intl-tel-input .country-list .country-name,

#custom-html-t5 .intl-tel-input .country-list .dial-code,

#custom-html-t5 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t5 .intl-tel-input .country-list .country-name,

#custom-html-t5 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t5 .intl-tel-input.allow-dropdown input,

#custom-html-t5 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t5 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t5 .intl-tel-input.separate-dial-code input,

#custom-html-t5 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t5 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t5 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t5 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t5 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t5 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t5 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t5 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t5 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t5 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t5 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t5 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t5 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t5 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t5 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t5 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t5 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t5 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t5 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-t5 .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t5 .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t5 .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t5 .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t5 .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-t5 .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t5 .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t5 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t5 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t5 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t5 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t5 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t5 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t5 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t5 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t5 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t5 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t5 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t5 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t5 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t5 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t5 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t5 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t5 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t5 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t5 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t5 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t5 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t5 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t5 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t5 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t5 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t5 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t5 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t5 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t5 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t5 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t5 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t5 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t5 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t5 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t5 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t5 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t5 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t5 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t5 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t5 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t5 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t5 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t5 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t5 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t5 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t5 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t5 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t5 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t5 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t5 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t5 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t5 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t5 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t5 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t5 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t5 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t5 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t5 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t5 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t5 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t5 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t5 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t5 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t5 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t5 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t5 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t5 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t5 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t5 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t5 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t5 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t5 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t5 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t5 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t5 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t5 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t5 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t5 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t5 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t5 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t5 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t5 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t5 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t5 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t5 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t5 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t5 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t5 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t5 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t5 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t5 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t5 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t5 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t5 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t5 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t5 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t5 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t5 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t5 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t5 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t5 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t5 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t5 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-t5 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t5 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t5 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t5 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t5 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t5 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t5 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t5 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t5 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t5 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t5 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t5 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t5 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t5 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t5 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t5 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t5 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t5 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t5 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t5 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t5 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t5 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t5 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t5 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t5 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t5 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t5 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t5 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t5 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t5 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t5 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t5 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t5 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t5 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t5 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t5 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t5 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t5 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t5 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t5 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t5 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t5 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t5 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t5 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t5 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t5 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t5 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t5 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t5 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t5 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t5 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t5 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t5 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t5 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t5 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t5 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t5 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t5 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t5 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t5 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t5 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t5 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t5 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t5 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t5 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t5 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t5 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t5 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t5 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t5 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t5 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t5 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t5 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t5 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t5 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t5 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t5 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t5 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t5 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t5 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t5 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t5 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t5 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t5 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t5 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t5 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t5 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t5 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t5 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t5 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t5 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t5 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t5 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t5 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t5 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t5 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t5 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t5 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t5 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t5 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t5 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t5 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t5 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t5 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t5 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t5 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t5 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t5 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t5 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t5 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t5 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t5 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t5 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t5 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t5 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t5 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t5 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t5 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t5 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-t5 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t5 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t5 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t5 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t5 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t5 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t5 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t5 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t5 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t5 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t5 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t5 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t5 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t5 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t5 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t5 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t5 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-t5 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t5 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t5 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t5 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t5 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t5 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t5 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t5 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t5 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t5 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t5 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t5 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t5 body,

#custom-html-t5 button,

#custom-html-t5 input,

#custom-html-t5 select,

#custom-html-t5 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t5 h1,

#custom-html-t5 h2,

#custom-html-t5 h3,

#custom-html-t5 h4,

#custom-html-t5 h5,

#custom-html-t5 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-t5 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t5 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t5 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t5 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t5 .navbar-main .navbar-nav > .active > a,

#custom-html-t5 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t5 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t5 .navbar-main .navbar-nav > .open > a,

#custom-html-t5 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t5 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t5 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t5 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t5 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t5 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-t5 .navbar-header {

    float: none;

  }

  #custom-html-t5 .navbar-left,

  #custom-html-t5 .navbar-right {

    float: none !important;

  }

  #custom-html-t5 .navbar-toggle {

    display: block;

  }

  #custom-html-t5 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t5 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t5 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t5 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t5 .navbar-nav > li {

    float: none;

  }

  #custom-html-t5 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t5 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-t5 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t5 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t5 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-t5 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t5 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t5 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-t5 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t5 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t5 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t5 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t5 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t5 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-t5 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t5 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-t5 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t5 a.list-group-item.active,

#custom-html-t5 a.list-group-item.active:focus,

#custom-html-t5 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t5 .dropdown-menu > li > a:focus,

#custom-html-t5 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t5 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t5 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t5 body,

#custom-html-t5 html {

  height: 100%;

}

#custom-html-t5 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t5 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t5 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t5 section#header .search {

  margin: 20px 0;

}

#custom-html-t5 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t5 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t5 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t5 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t5 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t5 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t5 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t5 section#footer {

    line-height: 32px;

  }

}

#custom-html-t5 section#footer .back-to-top {

  float: right;

}

#custom-html-t5 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t5 .adminreturndiv {

  display: none !important;

}

#custom-html-t5 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t5 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t5 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t5 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t5 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t5 .navbar-main .navbar-toggle:focus,

#custom-html-t5 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t5 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t5 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-t5 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t5 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t5 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t5 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t5 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t5 .h1,

  #custom-html-t5 h1 {

    font-size: 26px;

  }

  #custom-html-t5 .h2,

  #custom-html-t5 h2 {

    font-size: 20px;

  }

  #custom-html-t5 .h3,

  #custom-html-t5 h3 {

    font-size: 16px;

  }

  #custom-html-t5 .h4,

  #custom-html-t5 h4 {

    font-size: 14px;

  }

  #custom-html-t5 .h5,

  #custom-html-t5 h5 {

    font-size: 12px;

  }

  #custom-html-t5 .h6,

  #custom-html-t5 h6 {

    font-size: 11px;

  }

  #custom-html-t5 div.header-lined small {

    display: none;

  }

  #custom-html-t5 .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-t5 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t5 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t5 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t5 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-t5 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t5 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t5 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t5 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t5 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t5 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-t5 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t5 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t5 .margin-10 {

  margin: 10px;

}

#custom-html-t5 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t5 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t5 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t5 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t5 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t5 .input-inline {

  display: inline-block;

}

#custom-html-t5 .input-inline-100 {

  width: 100px;

}

#custom-html-t5 .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-t5 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t5 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t5 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-t5 i.icon-rss {

  color: #ff6600;

}

#custom-html-t5 section#main-menu {

  background-color: #000000;

}

#custom-html-t5 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t5 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t5 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t5 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t5 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t5 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t5 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t5 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t5 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t5 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t5 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t5 section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-t5 .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-t5 .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-t5 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t5 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t5 .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-t5 #stepResults {

    font-size: 14px;

  }

  #custom-html-t5 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t5 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-t5 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t5 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t5 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t5 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t5 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t5 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t5 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t5 .home-shortcuts li span {

  display: none;

}

#custom-html-t5 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t5 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-t5 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t5 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t5 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t5 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t5 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t5 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t5 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t5 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t5 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t5 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t5 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t5 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t5 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t5 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t5 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t5 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t5 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t5 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t5 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t5 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t5 .tiles .tile:last-child {

  border: 0;

}

#custom-html-t5 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t5 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t5 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t5 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t5 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t5 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t5 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t5 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t5 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t5 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t5 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t5 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t5 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t5 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t5 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t5 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t5 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t5 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t5 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t5 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t5 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t5 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t5 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t5 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t5 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t5 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t5 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t5 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t5 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t5 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t5 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t5 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t5 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t5 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t5 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t5 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t5 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t5 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t5 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t5 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t5 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t5 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t5 ul.top-nav > li,

#custom-html-t5 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t5 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t5 ul.top-nav > li:active > a,

#custom-html-t5 ul.top-nav > li:focus > a,

#custom-html-t5 ul.top-nav > li:hover > a,

#custom-html-t5 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t5 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t5 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t5 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t5 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-t5 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t5 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t5 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t5 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t5 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t5 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t5 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t5 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-t5 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t5 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-t5 .domain-check-availability {

  width: 100px;

}

#custom-html-t5 .domain-step-options {

  min-height: 300px;

}

#custom-html-t5 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t5 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t5 .domain-checker-invalid,

#custom-html-t5 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t5 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t5 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t5 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t5 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t5 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t5 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t5 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t5 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-t5 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t5 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t5 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t5 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t5 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t5 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t5 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t5 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t5 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t5 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t5 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t5 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t5 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t5 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t5 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t5 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t5 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t5 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t5 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t5 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t5 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t5 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t5 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t5 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t5 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t5 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t5 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t5 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t5 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t5 div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t5 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t5 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t5 .product-status-active {

  background-color: #46a546;

}

#custom-html-t5 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t5 .product-status-cancelled,

#custom-html-t5 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t5 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t5 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t5 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t5 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t5 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t5 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t5 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t5 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t5 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t5 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t5 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t5 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t5 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t5 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-t5 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t5 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t5 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t5 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t5 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t5 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t5 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t5 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t5 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t5 .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-t5 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t5 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t5 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t5 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t5 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t5 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t5 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t5 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t5 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t5 .status-pending {

  color: #d9534f;

}

#custom-html-t5 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t5 .status-active,

#custom-html-t5 .status-completed,

#custom-html-t5 .status-open {

  color: #3fad46;

}

#custom-html-t5 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t5 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t5 .status-answered,

#custom-html-t5 .status-fraud {

  color: #000000;

}

#custom-html-t5 .status-expired,

#custom-html-t5 .status-transferred.away {

  color: #004258;

}

#custom-html-t5 .status-cancelled {

  color: #87939f;

}

#custom-html-t5 .status-terminated {

  color: #666666;

}

#custom-html-t5 .status-onhold {

  color: #224488;

}

#custom-html-t5 .status-inprogress {

  color: #cc0000;

}

#custom-html-t5 .status-closed {

  color: #888888;

}

#custom-html-t5 .status-paid {

  color: #498302;

}

#custom-html-t5 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t5 .status-collections {

  color: #9a141e;

}

#custom-html-t5 .status-refunded {

  color: #319fc3;

}

#custom-html-t5 .status-delivered {

  color: #224488;

}

#custom-html-t5 .status-accepted {

  color: #498302;

}

#custom-html-t5 .status-dead,

#custom-html-t5 .status-lost {

  color: #000000;

}

#custom-html-t5 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t5 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t5 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t5 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t5 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t5 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t5 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t5 .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-t5 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t5 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t5 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t5 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t5 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t5 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t5 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t5 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t5 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t5 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t5 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t5 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t5 .ticket-reply .rating,

#custom-html-t5 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t5 .ticket-reply .rating span.star,

#custom-html-t5 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t5 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t5 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t5 .ticket-reply .rating span.star:before,

#custom-html-t5 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t5 .ticket-reply .rating span.star:hover:before,

#custom-html-t5 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t5 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t5 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t5 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t5 .ticket-reply .clear {

  clear: both;

}

#custom-html-t5 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t5 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t5 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t5 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t5 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t5 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t5 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t5 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t5 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t5 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-t5 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t5 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t5 .popover-user-notifications ul li i.far,

#custom-html-t5 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t5 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t5 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t5 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t5 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t5 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t5 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t5 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t5 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t5 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t5 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t5 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t5 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t5 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t5 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t5 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t5 div.credit-card div.end {

  clear: both;

}

#custom-html-t5 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t5 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t5 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t5 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t5 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t5 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t5 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t5 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t5 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t5 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t5 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t5 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t5 .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-t5 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t5 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t5 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t5 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t5 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t5 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t5 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t5 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t5 .kb-category a small {

  color: #888888;

}

#custom-html-t5 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t5 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t5 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t5 .kbarticles a.admin-inline-edit,

#custom-html-t5 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t5 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t5 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t5 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t5 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t5 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t5 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t5 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t5 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t5 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t5 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t5 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t5 #stepResults {

  font-size: 20px;

}

#custom-html-t5 #stepResults .label {

  font-size: 20px;

}

#custom-html-t5 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t5 h3.with-badge i,

#custom-html-t5 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t5 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-t5 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t5 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t5 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t5 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t5 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t5 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t5 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t5 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t5 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t5 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t5 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t5 .login-popover {

  font-size: 12px;

}

#custom-html-t5 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t5 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t5 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t5 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t5 .error-container {

  text-align: center;

}

#custom-html-t5 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t5 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t5 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t5 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t5 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t5 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t5 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t5 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t5 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t5 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-t5 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t5 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t5 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t5 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t5 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t5 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t5 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t5 .email-verification .btn:active,

#custom-html-t5 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t5 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t5 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t5 .email-verification .far,

#custom-html-t5 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-t5 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t5 .email-verification.success .far,

#custom-html-t5 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t5 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t5 .email-verification.failed .far,

#custom-html-t5 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t5 .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-t5 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t5 .md-editor > .md-preview,

#custom-html-t5 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t5 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t5 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t5 .small-font {

  font-size: 0.9em;

}

#custom-html-t5 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t5 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t5 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t5 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t5 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t5 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t5 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t5 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t5 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t5 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t5 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t5 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t5 .panel-heading i.fab,

#custom-html-t5 .panel-heading i.fal,

#custom-html-t5 .panel-heading i.far,

#custom-html-t5 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t5 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t5 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t5 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t5 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t5 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t5 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t5 .panel-sidebar .list-group-item.disabled,

#custom-html-t5 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t5 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t5 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t5 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t5 .panel-sidebar a.list-group-item.active,

#custom-html-t5 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t5 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t5 .panel-sidebar a.list-group-item.active i,

#custom-html-t5 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t5 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t5 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t5 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t5 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t5 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t5 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t5 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t5 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t5 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t5 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t5 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t5 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t5 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t5 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t5 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-t5 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t5 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t5 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t5 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t5 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t5 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t5 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t5 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t5 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t5 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t5 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t5 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t5 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-t5 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t5 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t5 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t5 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t5 .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-t5 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t5 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t5 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t5 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t5 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t5 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t5 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t5 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t5 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t5 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t5 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t5 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t5 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t5 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t5 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t5 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t5 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t5 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t5 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t5 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t5 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t5 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t5 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t5 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t5 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t5 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t5 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t5 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t5 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t5 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t5 .panel-mc-sso .btn,

#custom-html-t5 .panel-mc-sso .form-control,

#custom-html-t5 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t5 .panel-mc-sso small {

  display: block;

}

#custom-html-t5 .social-signin-btns {

  text-align: center;

}

#custom-html-t5 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t5 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t5 .btn-social i.far,

#custom-html-t5 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-facebook.active,

#custom-html-t5 .btn-facebook:active,

#custom-html-t5 .btn-facebook:focus,

#custom-html-t5 .btn-facebook:hover,

#custom-html-t5 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-facebook.active,

#custom-html-t5 .btn-facebook:active,

#custom-html-t5 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t5 .btn-facebook.disabled,

#custom-html-t5 .btn-facebook.disabled.active,

#custom-html-t5 .btn-facebook.disabled:active,

#custom-html-t5 .btn-facebook.disabled:focus,

#custom-html-t5 .btn-facebook.disabled:hover,

#custom-html-t5 .btn-facebook[disabled],

#custom-html-t5 .btn-facebook[disabled].active,

#custom-html-t5 .btn-facebook[disabled]:active,

#custom-html-t5 .btn-facebook[disabled]:focus,

#custom-html-t5 .btn-facebook[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-facebook,

#custom-html-t5 fieldset[disabled] .btn-facebook.active,

#custom-html-t5 fieldset[disabled] .btn-facebook:active,

#custom-html-t5 fieldset[disabled] .btn-facebook:focus,

#custom-html-t5 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-google.active,

#custom-html-t5 .btn-google:active,

#custom-html-t5 .btn-google:focus,

#custom-html-t5 .btn-google:hover,

#custom-html-t5 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-google.active,

#custom-html-t5 .btn-google:active,

#custom-html-t5 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t5 .btn-google-plus.disabled.active,

#custom-html-t5 .btn-google-plus.disabled:active,

#custom-html-t5 .btn-google-plus.disabled:focus,

#custom-html-t5 .btn-google-plus[disabled].active,

#custom-html-t5 .btn-google-plus[disabled]:active,

#custom-html-t5 .btn-google-plus[disabled]:focus,

#custom-html-t5 .btn-google-plus[disabled]:hover,

#custom-html-t5 .btn-google.disabled,

#custom-html-t5 .btn-google.disabled:hover,

#custom-html-t5 .btn-google[disabled],

#custom-html-t5 fieldset[disabled] .btn-google,

#custom-html-t5 fieldset[disabled] .btn-google-plus.active,

#custom-html-t5 fieldset[disabled] .btn-google-plus:active,

#custom-html-t5 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t5 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-twitter.active,

#custom-html-t5 .btn-twitter:active,

#custom-html-t5 .btn-twitter:focus,

#custom-html-t5 .btn-twitter:hover,

#custom-html-t5 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-twitter.active,

#custom-html-t5 .btn-twitter:active,

#custom-html-t5 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t5 .btn-twitter.disabled,

#custom-html-t5 .btn-twitter.disabled.active,

#custom-html-t5 .btn-twitter.disabled:active,

#custom-html-t5 .btn-twitter.disabled:focus,

#custom-html-t5 .btn-twitter.disabled:hover,

#custom-html-t5 .btn-twitter[disabled],

#custom-html-t5 .btn-twitter[disabled].active,

#custom-html-t5 .btn-twitter[disabled]:active,

#custom-html-t5 .btn-twitter[disabled]:focus,

#custom-html-t5 .btn-twitter[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-twitter,

#custom-html-t5 fieldset[disabled] .btn-twitter.active,

#custom-html-t5 fieldset[disabled] .btn-twitter:active,

#custom-html-t5 fieldset[disabled] .btn-twitter:focus,

#custom-html-t5 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t5 .providerLinkingFeedback {

  display: none;

}

#custom-html-t5 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t5 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t5 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t5 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t5 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t5 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t5 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t5 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t5 #registration .field,

#custom-html-t5 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t5 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t5 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t5 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t5 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t5 #registration textarea.field {

  height: auto;

}

#custom-html-t5 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t5 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t5 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t5 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t5 #registration .field[disabled],

#custom-html-t5 #registration .field[readonly],

#custom-html-t5 #registration .form-control[disabled],

#custom-html-t5 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t5 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t5 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t5 .upgrade .product-to-be-upgraded h4,

#custom-html-t5 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t5 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t5 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t5 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t5 .upgrade .products .product .current,

#custom-html-t5 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t5 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t5 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t5 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-t5 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t5 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t5 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t5 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t5 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t5 .upgrade .products .far,

#custom-html-t5 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t5 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t5 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t5 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t5 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t5 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t5 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .bootstrap-switch input[type=checkbox],

#custom-html-t5 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t5 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t5 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t5 .md-editor .md-footer,

#custom-html-t5 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t5 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t5 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t5 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t5 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t5 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t5 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t5 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t5 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t5 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t5 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t5 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t5 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t5 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t5 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t5 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t5 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t5 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t5 table.dataTable td,

#custom-html-t5 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t5 table.dataTable td.dataTables_empty,

#custom-html-t5 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t5 table.dataTable.nowrap td,

#custom-html-t5 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t5 table.dataTable thead > tr > td.sorting,

#custom-html-t5 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t5 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t5 table.dataTable thead > tr > th.sorting,

#custom-html-t5 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t5 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t5 table.dataTable thead > tr > td:active,

#custom-html-t5 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t5 table.dataTable thead .sorting,

#custom-html-t5 table.dataTable thead .sorting_asc,

#custom-html-t5 table.dataTable thead .sorting_asc_disabled,

#custom-html-t5 table.dataTable thead .sorting_desc,

#custom-html-t5 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t5 table.dataTable thead .sorting:after,

#custom-html-t5 table.dataTable thead .sorting_asc:after,

#custom-html-t5 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t5 table.dataTable thead .sorting_desc:after,

#custom-html-t5 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t5 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t5 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t5 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t5 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t5 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t5 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t5 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t5 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t5 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t5 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t5 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t5 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t5 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-t5 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t5 table.dataTable.table-condensed .sorting:after,

#custom-html-t5 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t5 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t5 table.table-bordered.dataTable td,

#custom-html-t5 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t5 table.table-bordered.dataTable td:last-child,

#custom-html-t5 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t5 table.table-bordered.dataTable tbody td,

#custom-html-t5 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t5 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t5 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t5 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t5 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t5 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t5 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t5 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t5 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t5 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t5 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t5 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t5 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t5 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t5 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t5 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t5 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t5 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t5 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t5 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t5 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t5 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t5 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t5 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t5 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t5 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-t5 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t5 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t5 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t5 .multiselect-container > li {

  padding: 0;

}

#custom-html-t5 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t5 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t5 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t5 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t5 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t5 .multiselect-container > li > a > label.checkbox,

#custom-html-t5 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t5 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t5 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t5 .form-inline .multiselect-container label.checkbox,

#custom-html-t5 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t5 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t5 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-t5 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-t5 body {

  margin: 0;

}

#custom-html-t5 article,

#custom-html-t5 aside,

#custom-html-t5 details,

#custom-html-t5 figcaption,

#custom-html-t5 figure,

#custom-html-t5 footer,

#custom-html-t5 header,

#custom-html-t5 hgroup,

#custom-html-t5 main,

#custom-html-t5 menu,

#custom-html-t5 nav,

#custom-html-t5 section,

#custom-html-t5 summary {

  display: block;

}

#custom-html-t5 audio,

#custom-html-t5 canvas,

#custom-html-t5 progress,

#custom-html-t5 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t5 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t5 [hidden],

#custom-html-t5 template {

  display: none;

}

#custom-html-t5 a {

  background-color: transparent;

}

#custom-html-t5 a:active,

#custom-html-t5 a:hover {

  outline: 0;

}

#custom-html-t5 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t5 b,

#custom-html-t5 strong {

  font-weight: 700;

}

#custom-html-t5 dfn {

  font-style: italic;

}

#custom-html-t5 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t5 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t5 small {

  font-size: 80%;

}

#custom-html-t5 sub,

#custom-html-t5 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t5 sup {

  top: -0.5em;

}

#custom-html-t5 sub {

  bottom: -0.25em;

}

#custom-html-t5 img {

  border: 0;

}

#custom-html-t5 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t5 figure {

  margin: 1em 40px;

}

#custom-html-t5 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t5 pre {

  overflow: auto;

}

#custom-html-t5 code,

#custom-html-t5 kbd,

#custom-html-t5 pre,

#custom-html-t5 samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-t5 button,

#custom-html-t5 input,

#custom-html-t5 optgroup,

#custom-html-t5 select,

#custom-html-t5 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t5 button {

  overflow: visible;

}

#custom-html-t5 button,

#custom-html-t5 select {

  text-transform: none;

}

#custom-html-t5 button,

#custom-html-t5 html input[type=button],

#custom-html-t5 input[type=reset],

#custom-html-t5 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t5 button[disabled],

#custom-html-t5 html input[disabled] {

  cursor: default;

}

#custom-html-t5 button::-moz-focus-inner,

#custom-html-t5 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t5 input {

  line-height: normal;

}

#custom-html-t5 input[type=checkbox],

#custom-html-t5 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-t5 input[type=number]::-webkit-inner-spin-button,

#custom-html-t5 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t5 input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-t5 input[type=search]::-webkit-search-cancel-button,

#custom-html-t5 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t5 fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-t5 legend {

  padding: 0;

  border: 0;

}

#custom-html-t5 textarea {

  overflow: auto;

}

#custom-html-t5 optgroup {

  font-weight: 700;

}

#custom-html-t5 table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-t5 td,

#custom-html-t5 th {

  padding: 0;

}

@media print {

  #custom-html-t5 *,

  #custom-html-t5 :after,

  #custom-html-t5 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t5 a,

  #custom-html-t5 a:visited {

    text-decoration: underline;

  }

  #custom-html-t5 a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-t5 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t5 a[href^="#"]:after,

  #custom-html-t5 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t5 blockquote,

  #custom-html-t5 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t5 thead {

    display: table-header-group;

  }

  #custom-html-t5 img,

  #custom-html-t5 tr {

    page-break-inside: avoid;

  }

  #custom-html-t5 img {

    max-width: 100% !important;

  }

  #custom-html-t5 h2,

  #custom-html-t5 h3,

  #custom-html-t5 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t5 h2,

  #custom-html-t5 h3 {

    page-break-after: avoid;

  }

  #custom-html-t5 .navbar {

    display: none;

  }

  #custom-html-t5 .btn > .caret,

  #custom-html-t5 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t5 .label {

    border: 1px solid #000000;

  }

  #custom-html-t5 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t5 .table td,

  #custom-html-t5 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t5 .table-bordered td,

  #custom-html-t5 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t5 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t5 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t5 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t5 .glyphicon-eur:before,

#custom-html-t5 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t5 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t5 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t5 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t5 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t5 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t5 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t5 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t5 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-t5 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t5 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t5 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t5 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t5 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t5 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t5 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t5 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t5 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t5 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t5 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t5 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t5 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t5 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t5 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t5 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t5 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t5 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t5 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t5 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t5 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t5 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t5 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t5 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t5 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t5 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t5 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t5 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t5 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t5 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t5 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t5 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t5 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t5 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t5 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t5 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t5 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t5 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t5 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t5 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t5 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t5 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t5 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t5 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t5 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t5 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t5 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t5 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t5 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t5 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t5 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t5 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t5 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t5 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t5 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t5 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t5 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t5 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t5 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t5 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t5 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t5 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t5 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t5 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t5 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t5 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t5 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t5 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t5 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t5 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t5 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t5 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t5 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t5 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t5 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t5 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t5 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t5 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t5 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t5 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t5 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t5 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t5 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t5 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t5 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t5 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t5 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t5 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t5 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t5 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t5 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t5 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t5 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t5 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t5 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t5 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t5 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t5 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t5 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t5 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t5 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t5 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t5 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t5 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t5 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t5 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t5 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t5 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t5 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t5 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t5 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t5 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t5 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-t5 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t5 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t5 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t5 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t5 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t5 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t5 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t5 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t5 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t5 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t5 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t5 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t5 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t5 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t5 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t5 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t5 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t5 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t5 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t5 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t5 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t5 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t5 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t5 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t5 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t5 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t5 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t5 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t5 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t5 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-t5 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t5 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t5 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t5 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t5 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t5 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t5 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t5 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t5 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t5 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t5 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t5 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t5 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t5 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t5 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t5 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t5 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t5 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t5 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t5 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t5 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t5 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t5 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t5 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t5 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t5 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t5 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t5 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t5 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t5 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t5 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t5 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t5 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t5 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t5 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t5 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t5 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t5 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t5 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t5 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t5 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t5 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t5 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t5 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t5 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t5 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t5 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t5 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t5 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t5 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t5 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t5 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t5 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t5 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t5 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t5 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t5 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t5 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t5 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t5 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t5 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t5 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t5 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t5 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t5 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t5 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t5 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-t5 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t5 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t5 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t5 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t5 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t5 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t5 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t5 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t5 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t5 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t5 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t5 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t5 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t5 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t5 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t5 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t5 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t5 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t5 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t5 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t5 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t5 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t5 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t5 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t5 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t5 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t5 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t5 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t5 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t5 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t5 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t5 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t5 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t5 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t5 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t5 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t5 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t5 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t5 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t5 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t5 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t5 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t5 :after,

#custom-html-t5 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t5 html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t5 body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-t5 button,

#custom-html-t5 input,

#custom-html-t5 select,

#custom-html-t5 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t5 a {

  color: #000;

  text-decoration: none;

}

#custom-html-t5 a:focus,

#custom-html-t5 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t5 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t5 figure {

  margin: 0;

}

#custom-html-t5 img {

  vertical-align: middle;

}

#custom-html-t5 .carousel-inner > .item > a > img,

#custom-html-t5 .carousel-inner > .item > img,

#custom-html-t5 .img-responsive,

#custom-html-t5 .thumbnail a > img,

#custom-html-t5 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t5 .img-rounded {

  border-radius: 6px;

}

#custom-html-t5 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t5 .img-circle {

  border-radius: 50%;

}

#custom-html-t5 hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t5 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t5 .sr-only-focusable:active,

#custom-html-t5 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t5 [role=button] {

  cursor: pointer;

}

#custom-html-t5 .h1,

#custom-html-t5 .h2,

#custom-html-t5 .h3,

#custom-html-t5 .h4,

#custom-html-t5 .h5,

#custom-html-t5 .h6,

#custom-html-t5 h1,

#custom-html-t5 h2,

#custom-html-t5 h3,

#custom-html-t5 h4,

#custom-html-t5 h5,

#custom-html-t5 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t5 .h1 .small,

#custom-html-t5 .h1 small,

#custom-html-t5 .h2 .small,

#custom-html-t5 .h2 small,

#custom-html-t5 .h3 .small,

#custom-html-t5 .h3 small,

#custom-html-t5 .h4 .small,

#custom-html-t5 .h4 small,

#custom-html-t5 .h5 .small,

#custom-html-t5 .h5 small,

#custom-html-t5 .h6 .small,

#custom-html-t5 .h6 small,

#custom-html-t5 h1 .small,

#custom-html-t5 h1 small,

#custom-html-t5 h2 .small,

#custom-html-t5 h2 small,

#custom-html-t5 h3 .small,

#custom-html-t5 h3 small,

#custom-html-t5 h4 .small,

#custom-html-t5 h4 small,

#custom-html-t5 h5 .small,

#custom-html-t5 h5 small,

#custom-html-t5 h6 .small,

#custom-html-t5 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t5 .h1,

#custom-html-t5 .h2,

#custom-html-t5 .h3,

#custom-html-t5 h1,

#custom-html-t5 h2,

#custom-html-t5 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t5 .h1 .small,

#custom-html-t5 .h1 small,

#custom-html-t5 .h2 .small,

#custom-html-t5 .h2 small,

#custom-html-t5 .h3 .small,

#custom-html-t5 .h3 small,

#custom-html-t5 h1 .small,

#custom-html-t5 h1 small,

#custom-html-t5 h2 .small,

#custom-html-t5 h2 small,

#custom-html-t5 h3 .small,

#custom-html-t5 h3 small {

  font-size: 65%;

}

#custom-html-t5 .h4,

#custom-html-t5 .h5,

#custom-html-t5 .h6,

#custom-html-t5 h4,

#custom-html-t5 h5,

#custom-html-t5 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t5 .h4 .small,

#custom-html-t5 .h4 small,

#custom-html-t5 .h5 .small,

#custom-html-t5 .h5 small,

#custom-html-t5 .h6 .small,

#custom-html-t5 .h6 small,

#custom-html-t5 h4 .small,

#custom-html-t5 h4 small,

#custom-html-t5 h5 .small,

#custom-html-t5 h5 small,

#custom-html-t5 h6 .small,

#custom-html-t5 h6 small {

  font-size: 75%;

}

#custom-html-t5 .h1,

#custom-html-t5 h1 {

  font-size: 36px;

}

#custom-html-t5 .h2,

#custom-html-t5 h2 {

  font-size: 30px;

}

#custom-html-t5 .h3,

#custom-html-t5 h3 {

  font-size: 24px;

}

#custom-html-t5 .h4,

#custom-html-t5 h4 {

  font-size: 18px;

}

#custom-html-t5 .h5,

#custom-html-t5 h5 {

  font-size: 14px;

}

#custom-html-t5 .h6,

#custom-html-t5 h6 {

  font-size: 12px;

}

#custom-html-t5 p {

  margin: 0 0 10px;

}

#custom-html-t5 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t5 .lead {

    font-size: 21px;

  }

}

#custom-html-t5 .small,

#custom-html-t5 small {

  font-size: 85%;

}

#custom-html-t5 .mark,

#custom-html-t5 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t5 .text-left {

  text-align: left;

}

#custom-html-t5 .text-right {

  text-align: right;

}

#custom-html-t5 .text-center {

  text-align: center;

}

#custom-html-t5 .text-justify {

  text-align: justify;

}

#custom-html-t5 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t5 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t5 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t5 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t5 .text-muted {

  color: #777777;

}

#custom-html-t5 .text-primary {

  color: #000000;

}

#custom-html-t5 a.text-primary:focus,

#custom-html-t5 a.text-primary:hover {

  color: #000000;

}

#custom-html-t5 .text-success {

  color: #3c763d;

}

#custom-html-t5 a.text-success:focus,

#custom-html-t5 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t5 .text-info {

  color: #31708f;

}

#custom-html-t5 a.text-info:focus,

#custom-html-t5 a.text-info:hover {

  color: #000000;

}

#custom-html-t5 .text-warning {

  color: #8a6d3b;

}

#custom-html-t5 a.text-warning:focus,

#custom-html-t5 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t5 .text-danger {

  color: #a94442;

}

#custom-html-t5 a.text-danger:focus,

#custom-html-t5 a.text-danger:hover {

  color: #843534;

}

#custom-html-t5 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t5 a.bg-primary:focus,

#custom-html-t5 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t5 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t5 a.bg-success:focus,

#custom-html-t5 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t5 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t5 a.bg-info:focus,

#custom-html-t5 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t5 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t5 a.bg-warning:focus,

#custom-html-t5 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t5 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t5 a.bg-danger:focus,

#custom-html-t5 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t5 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t5 ol,

#custom-html-t5 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t5 ol ol,

#custom-html-t5 ol ul,

#custom-html-t5 ul ol,

#custom-html-t5 ul ul {

  margin-bottom: 0;

}

#custom-html-t5 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t5 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t5 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t5 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t5 dd,

#custom-html-t5 dt {

  line-height: 1.42857143;

}

#custom-html-t5 dt {

  font-weight: 700;

}

#custom-html-t5 dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t5 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t5 .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-t5 abbr[data-original-title],

#custom-html-t5 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t5 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t5 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t5 blockquote ol:last-child,

#custom-html-t5 blockquote p:last-child,

#custom-html-t5 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t5 blockquote .small,

#custom-html-t5 blockquote footer,

#custom-html-t5 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-t5 blockquote .small:before,

#custom-html-t5 blockquote footer:before,

#custom-html-t5 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t5 .blockquote-reverse,

#custom-html-t5 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t5 .blockquote-reverse .small:before,

#custom-html-t5 .blockquote-reverse footer:before,

#custom-html-t5 .blockquote-reverse small:before,

#custom-html-t5 blockquote.pull-right .small:before,

#custom-html-t5 blockquote.pull-right footer:before,

#custom-html-t5 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t5 .blockquote-reverse .small:after,

#custom-html-t5 .blockquote-reverse footer:after,

#custom-html-t5 .blockquote-reverse small:after,

#custom-html-t5 blockquote.pull-right .small:after,

#custom-html-t5 blockquote.pull-right footer:after,

#custom-html-t5 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t5 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t5 code,

#custom-html-t5 kbd,

#custom-html-t5 pre,

#custom-html-t5 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-t5 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t5 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t5 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t5 pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t5 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t5 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t5 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-t5 .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-t5 .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t5 .container {

    width: 1170px;

  }

}

#custom-html-t5 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t5 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t5 .col-lg-1,

#custom-html-t5 .col-lg-10,

#custom-html-t5 .col-lg-11,

#custom-html-t5 .col-lg-12,

#custom-html-t5 .col-lg-2,

#custom-html-t5 .col-lg-3,

#custom-html-t5 .col-lg-4,

#custom-html-t5 .col-lg-5,

#custom-html-t5 .col-lg-6,

#custom-html-t5 .col-lg-7,

#custom-html-t5 .col-lg-8,

#custom-html-t5 .col-lg-9,

#custom-html-t5 .col-md-1,

#custom-html-t5 .col-md-10,

#custom-html-t5 .col-md-11,

#custom-html-t5 .col-md-12,

#custom-html-t5 .col-md-2,

#custom-html-t5 .col-md-3,

#custom-html-t5 .col-md-4,

#custom-html-t5 .col-md-5,

#custom-html-t5 .col-md-6,

#custom-html-t5 .col-md-7,

#custom-html-t5 .col-md-8,

#custom-html-t5 .col-md-9,

#custom-html-t5 .col-sm-1,

#custom-html-t5 .col-sm-10,

#custom-html-t5 .col-sm-11,

#custom-html-t5 .col-sm-12,

#custom-html-t5 .col-sm-2,

#custom-html-t5 .col-sm-3,

#custom-html-t5 .col-sm-4,

#custom-html-t5 .col-sm-5,

#custom-html-t5 .col-sm-6,

#custom-html-t5 .col-sm-7,

#custom-html-t5 .col-sm-8,

#custom-html-t5 .col-sm-9,

#custom-html-t5 .col-xs-1,

#custom-html-t5 .col-xs-10,

#custom-html-t5 .col-xs-11,

#custom-html-t5 .col-xs-12,

#custom-html-t5 .col-xs-2,

#custom-html-t5 .col-xs-3,

#custom-html-t5 .col-xs-4,

#custom-html-t5 .col-xs-5,

#custom-html-t5 .col-xs-6,

#custom-html-t5 .col-xs-7,

#custom-html-t5 .col-xs-8,

#custom-html-t5 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t5 .col-xs-1,

#custom-html-t5 .col-xs-10,

#custom-html-t5 .col-xs-11,

#custom-html-t5 .col-xs-12,

#custom-html-t5 .col-xs-2,

#custom-html-t5 .col-xs-3,

#custom-html-t5 .col-xs-4,

#custom-html-t5 .col-xs-5,

#custom-html-t5 .col-xs-6,

#custom-html-t5 .col-xs-7,

#custom-html-t5 .col-xs-8,

#custom-html-t5 .col-xs-9 {

  float: left;

}

#custom-html-t5 .col-xs-12 {

  width: 100%;

}

#custom-html-t5 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t5 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t5 .col-xs-9 {

  width: 75%;

}

#custom-html-t5 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t5 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t5 .col-xs-6 {

  width: 50%;

}

#custom-html-t5 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t5 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-t5 .col-xs-3 {

  width: 25%;

}

#custom-html-t5 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t5 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t5 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t5 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t5 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t5 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t5 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t5 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t5 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t5 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t5 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t5 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t5 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t5 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t5 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t5 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t5 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t5 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t5 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t5 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t5 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t5 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t5 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t5 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t5 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t5 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t5 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t5 .col-xs-push-0 {

  left: auto;

}

#custom-html-t5 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t5 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t5 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t5 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t5 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t5 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t5 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t5 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t5 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t5 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t5 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t5 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t5 .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t5 .col-sm-1,

  #custom-html-t5 .col-sm-10,

  #custom-html-t5 .col-sm-11,

  #custom-html-t5 .col-sm-12,

  #custom-html-t5 .col-sm-2,

  #custom-html-t5 .col-sm-3,

  #custom-html-t5 .col-sm-4,

  #custom-html-t5 .col-sm-5,

  #custom-html-t5 .col-sm-6,

  #custom-html-t5 .col-sm-7,

  #custom-html-t5 .col-sm-8,

  #custom-html-t5 .col-sm-9 {

    float: left;

  }

  #custom-html-t5 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t5 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t5 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t5 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t5 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t5 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t5 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t5 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t5 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t5 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t5 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t5 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t5 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t5 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t5 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t5 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t5 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t5 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t5 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t5 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t5 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t5 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-t5 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t5 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t5 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t5 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t5 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t5 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t5 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t5 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t5 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t5 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t5 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t5 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t5 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t5 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t5 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t5 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t5 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t5 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t5 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t5 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t5 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t5 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t5 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t5 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t5 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t5 .col-sm-offset-3 {

    margin-left: 25%;

  }


  #custom-html-t5 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t5 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t5 .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-t5 .col-md-1,

  #custom-html-t5 .col-md-10,

  #custom-html-t5 .col-md-11,

  #custom-html-t5 .col-md-12,

  #custom-html-t5 .col-md-2,

  #custom-html-t5 .col-md-3,

  #custom-html-t5 .col-md-4,

  #custom-html-t5 .col-md-5,

  #custom-html-t5 .col-md-6,

  #custom-html-t5 .col-md-7,

  #custom-html-t5 .col-md-8,

  #custom-html-t5 .col-md-9 {

    float: left;

  }

  #custom-html-t5 .col-md-12 {

    width: 100%;

  }

  #custom-html-t5 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t5 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t5 .col-md-9 {

    width: 75%;

  }

  #custom-html-t5 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t5 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t5 .col-md-6 {

    width: 50%;

  }

  #custom-html-t5 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t5 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t5 .col-md-3 {

    width: 25%;

  }

  #custom-html-t5 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t5 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t5 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t5 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t5 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t5 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t5 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t5 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t5 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t5 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t5 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t5 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t5 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t5 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t5 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t5 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t5 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t5 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t5 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t5 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t5 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t5 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t5 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t5 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t5 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-t5 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t5 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t5 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t5 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t5 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t5 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t5 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t5 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t5 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t5 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t5 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t5 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t5 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t5 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t5 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t5 .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-t5 .col-lg-1,

  #custom-html-t5 .col-lg-10,

  #custom-html-t5 .col-lg-11,

  #custom-html-t5 .col-lg-12,

  #custom-html-t5 .col-lg-2,

  #custom-html-t5 .col-lg-3,

  #custom-html-t5 .col-lg-4,

  #custom-html-t5 .col-lg-5,

  #custom-html-t5 .col-lg-6,

  #custom-html-t5 .col-lg-7,

  #custom-html-t5 .col-lg-8,

  #custom-html-t5 .col-lg-9 {

    float: left;

  }

  #custom-html-t5 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t5 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t5 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t5 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t5 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t5 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t5 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t5 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t5 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t5 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t5 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t5 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t5 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t5 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t5 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t5 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t5 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t5 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t5 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t5 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t5 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t5 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-t5 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t5 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t5 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t5 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t5 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t5 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t5 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t5 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t5 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t5 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t5 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t5 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t5 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t5 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t5 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t5 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t5 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t5 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t5 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t5 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t5 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t5 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t5 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t5 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t5 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t5 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t5 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t5 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t5 .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-t5 table {

  background-color: transparent;

}

#custom-html-t5 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t5 th {

  text-align: left;

}

#custom-html-t5 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t5 .table > tbody > tr > td,

#custom-html-t5 .table > tbody > tr > th,

#custom-html-t5 .table > tfoot > tr > td,

#custom-html-t5 .table > tfoot > tr > th,

#custom-html-t5 .table > thead > tr > td,

#custom-html-t5 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t5 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t5 .table > caption + thead > tr:first-child > td,

#custom-html-t5 .table > caption + thead > tr:first-child > th,

#custom-html-t5 .table > colgroup + thead > tr:first-child > td,

#custom-html-t5 .table > colgroup + thead > tr:first-child > th,

#custom-html-t5 .table > thead:first-child > tr:first-child > td,

#custom-html-t5 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t5 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t5 .table .table {

  background-color: #ffffff;

}

#custom-html-t5 .table-condensed > tbody > tr > td,

#custom-html-t5 .table-condensed > tbody > tr > th,

#custom-html-t5 .table-condensed > tfoot > tr > td,

#custom-html-t5 .table-condensed > tfoot > tr > th,

#custom-html-t5 .table-condensed > thead > tr > td,

#custom-html-t5 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t5 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t5 .table-bordered > tbody > tr > td,

#custom-html-t5 .table-bordered > tbody > tr > th,

#custom-html-t5 .table-bordered > tfoot > tr > td,

#custom-html-t5 .table-bordered > tfoot > tr > th,

#custom-html-t5 .table-bordered > thead > tr > td,

#custom-html-t5 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t5 .table-bordered > thead > tr > td,

#custom-html-t5 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t5 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t5 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t5 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t5 table td[class*=col-],

#custom-html-t5 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t5 .table > tbody > tr.active > td,

#custom-html-t5 .table > tbody > tr.active > th,

#custom-html-t5 .table > tbody > tr > td.active,

#custom-html-t5 .table > tbody > tr > th.active,

#custom-html-t5 .table > tfoot > tr.active > td,

#custom-html-t5 .table > tfoot > tr.active > th,

#custom-html-t5 .table > tfoot > tr > td.active,

#custom-html-t5 .table > tfoot > tr > th.active,

#custom-html-t5 .table > thead > tr.active > td,

#custom-html-t5 .table > thead > tr.active > th,

#custom-html-t5 .table > thead > tr > td.active,

#custom-html-t5 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t5 .table-hover > tbody > tr.active:hover > td,

#custom-html-t5 .table-hover > tbody > tr.active:hover > th,

#custom-html-t5 .table-hover > tbody > tr:hover > .active,

#custom-html-t5 .table-hover > tbody > tr > td.active:hover,

#custom-html-t5 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t5 .table > tbody > tr.success > td,

#custom-html-t5 .table > tbody > tr.success > th,

#custom-html-t5 .table > tbody > tr > td.success,

#custom-html-t5 .table > tbody > tr > th.success,

#custom-html-t5 .table > tfoot > tr.success > td,

#custom-html-t5 .table > tfoot > tr.success > th,

#custom-html-t5 .table > tfoot > tr > td.success,

#custom-html-t5 .table > tfoot > tr > th.success,

#custom-html-t5 .table > thead > tr.success > td,

#custom-html-t5 .table > thead > tr.success > th,

#custom-html-t5 .table > thead > tr > td.success,

#custom-html-t5 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t5 .table-hover > tbody > tr.success:hover > td,

#custom-html-t5 .table-hover > tbody > tr.success:hover > th,

#custom-html-t5 .table-hover > tbody > tr:hover > .success,

#custom-html-t5 .table-hover > tbody > tr > td.success:hover,

#custom-html-t5 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t5 .table > tbody > tr.info > td,

#custom-html-t5 .table > tbody > tr.info > th,

#custom-html-t5 .table > tbody > tr > td.info,

#custom-html-t5 .table > tbody > tr > th.info,

#custom-html-t5 .table > tfoot > tr.info > td,

#custom-html-t5 .table > tfoot > tr.info > th,

#custom-html-t5 .table > tfoot > tr > td.info,

#custom-html-t5 .table > tfoot > tr > th.info,

#custom-html-t5 .table > thead > tr.info > td,

#custom-html-t5 .table > thead > tr.info > th,

#custom-html-t5 .table > thead > tr > td.info,

#custom-html-t5 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t5 .table-hover > tbody > tr.info:hover > td,

#custom-html-t5 .table-hover > tbody > tr.info:hover > th,

#custom-html-t5 .table-hover > tbody > tr:hover > .info,

#custom-html-t5 .table-hover > tbody > tr > td.info:hover,

#custom-html-t5 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t5 .table > tbody > tr.warning > td,

#custom-html-t5 .table > tbody > tr.warning > th,

#custom-html-t5 .table > tbody > tr > td.warning,

#custom-html-t5 .table > tbody > tr > th.warning,

#custom-html-t5 .table > tfoot > tr.warning > td,

#custom-html-t5 .table > tfoot > tr.warning > th,

#custom-html-t5 .table > tfoot > tr > td.warning,

#custom-html-t5 .table > tfoot > tr > th.warning,

#custom-html-t5 .table > thead > tr.warning > td,

#custom-html-t5 .table > thead > tr.warning > th,

#custom-html-t5 .table > thead > tr > td.warning,

#custom-html-t5 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t5 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t5 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t5 .table-hover > tbody > tr:hover > .warning,

#custom-html-t5 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t5 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t5 .table > tbody > tr.danger > td,

#custom-html-t5 .table > tbody > tr.danger > th,

#custom-html-t5 .table > tbody > tr > td.danger,

#custom-html-t5 .table > tbody > tr > th.danger,

#custom-html-t5 .table > tfoot > tr.danger > td,

#custom-html-t5 .table > tfoot > tr.danger > th,

#custom-html-t5 .table > tfoot > tr > td.danger,

#custom-html-t5 .table > tfoot > tr > th.danger,

#custom-html-t5 .table > thead > tr.danger > td,

#custom-html-t5 .table > thead > tr.danger > th,

#custom-html-t5 .table > thead > tr > td.danger,

#custom-html-t5 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t5 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t5 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t5 .table-hover > tbody > tr:hover > .danger,

#custom-html-t5 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t5 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t5 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t5 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t5 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t5 .table-responsive > .table > tbody > tr > td,

  #custom-html-t5 .table-responsive > .table > tbody > tr > th,

  #custom-html-t5 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t5 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t5 .table-responsive > .table > thead > tr > td,

  #custom-html-t5 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t5 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t5 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t5 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t5 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t5 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t5 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t5 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t5 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t5 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t5 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-t5 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t5 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t5 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t5 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t5 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t5 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t5 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-t5 fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-t5 legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t5 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t5 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t5 input[type=checkbox],

#custom-html-t5 input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t5 input[type=file] {

  display: block;

}

#custom-html-t5 input[type=range] {

  display: block;

  width: 100%;


}

#custom-html-t5 select[multiple],

#custom-html-t5 select[size] {

  height: auto;

}

#custom-html-t5 input[type=checkbox]:focus,

#custom-html-t5 input[type=file]:focus,

#custom-html-t5 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t5 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t5 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t5 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t5 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t5 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t5 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t5 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t5 .form-control[disabled],

#custom-html-t5 .form-control[readonly],

#custom-html-t5 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t5 .form-control[disabled],

#custom-html-t5 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t5 textarea.form-control {

  height: auto;

}

#custom-html-t5 input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t5 input[type=date].form-control,

  #custom-html-t5 input[type=datetime-local].form-control,

  #custom-html-t5 input[type=month].form-control,

  #custom-html-t5 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t5 .input-group-sm input[type=date],

  #custom-html-t5 .input-group-sm input[type=datetime-local],

  #custom-html-t5 .input-group-sm input[type=month],

  #custom-html-t5 .input-group-sm input[type=time],

  #custom-html-t5 input[type=date].input-sm,

  #custom-html-t5 input[type=datetime-local].input-sm,

  #custom-html-t5 input[type=month].input-sm,

  #custom-html-t5 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t5 .input-group-lg input[type=date],

  #custom-html-t5 .input-group-lg input[type=datetime-local],

  #custom-html-t5 .input-group-lg input[type=month],

  #custom-html-t5 .input-group-lg input[type=time],

  #custom-html-t5 input[type=date].input-lg,

  #custom-html-t5 input[type=datetime-local].input-lg,

  #custom-html-t5 input[type=month].input-lg,

  #custom-html-t5 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t5 .form-group {

  margin-bottom: 15px;

}

#custom-html-t5 .checkbox,

#custom-html-t5 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t5 .checkbox label,

#custom-html-t5 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t5 .checkbox input[type=checkbox],

#custom-html-t5 .checkbox-inline input[type=checkbox],

#custom-html-t5 .radio input[type=radio],

#custom-html-t5 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t5 .checkbox + .checkbox,

#custom-html-t5 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t5 .checkbox-inline,

#custom-html-t5 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t5 .checkbox-inline + .checkbox-inline,

#custom-html-t5 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t5 fieldset[disabled] input[type=checkbox],

#custom-html-t5 fieldset[disabled] input[type=radio],

#custom-html-t5 input[type=checkbox].disabled,

#custom-html-t5 input[type=checkbox][disabled],

#custom-html-t5 input[type=radio].disabled,

#custom-html-t5 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t5 .checkbox-inline.disabled,

#custom-html-t5 .radio-inline.disabled,

#custom-html-t5 fieldset[disabled] .checkbox-inline,

#custom-html-t5 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t5 .checkbox.disabled label,

#custom-html-t5 .radio.disabled label,

#custom-html-t5 fieldset[disabled] .checkbox label,

#custom-html-t5 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t5 .form-control-static {

  min-height: 34px;

  padding-top: 7px;


  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t5 .form-control-static.input-lg,

#custom-html-t5 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t5 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t5 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t5 select[multiple].input-sm,

#custom-html-t5 textarea.input-sm {

  height: auto;

}

#custom-html-t5 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t5 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t5 .form-group-sm select[multiple].form-control,

#custom-html-t5 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t5 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t5 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t5 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t5 select[multiple].input-lg,

#custom-html-t5 textarea.input-lg {

  height: auto;

}

#custom-html-t5 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t5 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-t5 .form-group-lg select[multiple].form-control,

#custom-html-t5 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t5 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t5 .has-feedback {

  position: relative;

}

#custom-html-t5 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t5 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t5 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t5 .input-group-lg + .form-control-feedback,

#custom-html-t5 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t5 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t5 .input-group-sm + .form-control-feedback,

#custom-html-t5 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t5 .has-success .checkbox,

#custom-html-t5 .has-success .checkbox-inline,

#custom-html-t5 .has-success .control-label,

#custom-html-t5 .has-success .help-block,

#custom-html-t5 .has-success .radio,

#custom-html-t5 .has-success .radio-inline,

#custom-html-t5 .has-success.checkbox label,

#custom-html-t5 .has-success.checkbox-inline label,

#custom-html-t5 .has-success.radio label,

#custom-html-t5 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t5 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t5 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t5 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t5 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t5 .has-warning .checkbox,

#custom-html-t5 .has-warning .checkbox-inline,

#custom-html-t5 .has-warning .control-label,

#custom-html-t5 .has-warning .help-block,

#custom-html-t5 .has-warning .radio,

#custom-html-t5 .has-warning .radio-inline,

#custom-html-t5 .has-warning.checkbox label,

#custom-html-t5 .has-warning.checkbox-inline label,

#custom-html-t5 .has-warning.radio label,

#custom-html-t5 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t5 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t5 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t5 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t5 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t5 .has-error .checkbox,

#custom-html-t5 .has-error .checkbox-inline,

#custom-html-t5 .has-error .control-label,

#custom-html-t5 .has-error .help-block,

#custom-html-t5 .has-error .radio,

#custom-html-t5 .has-error .radio-inline,

#custom-html-t5 .has-error.checkbox label,

#custom-html-t5 .has-error.checkbox-inline label,

#custom-html-t5 .has-error.radio label,

#custom-html-t5 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t5 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t5 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t5 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t5 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t5 .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-t5 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t5 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-t5 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t5 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t5 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t5 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t5 .form-inline .input-group .form-control,

  #custom-html-t5 .form-inline .input-group .input-group-addon,

  #custom-html-t5 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t5 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t5 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t5 .form-inline .checkbox,

  #custom-html-t5 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t5 .form-inline .checkbox label,

  #custom-html-t5 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t5 .form-inline .checkbox input[type=checkbox],

  #custom-html-t5 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t5 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-t5 .form-horizontal .checkbox,

#custom-html-t5 .form-horizontal .checkbox-inline,

#custom-html-t5 .form-horizontal .radio,

#custom-html-t5 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t5 .form-horizontal .checkbox,

#custom-html-t5 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t5 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t5 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-t5 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-t5 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-t5 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-t5 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t5 .btn.active.focus,

#custom-html-t5 .btn.active:focus,

#custom-html-t5 .btn.focus,

#custom-html-t5 .btn:active.focus,

#custom-html-t5 .btn:active:focus,

#custom-html-t5 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t5 .btn.focus,

#custom-html-t5 .btn:focus,

#custom-html-t5 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t5 .btn.active,

#custom-html-t5 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t5 .btn.disabled,

#custom-html-t5 .btn[disabled],

#custom-html-t5 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t5 a.btn.disabled,

#custom-html-t5 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t5 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t5 .btn-default.focus,

#custom-html-t5 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t5 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t5 .btn-default.active,

#custom-html-t5 .btn-default:active,

#custom-html-t5 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t5 .btn-default.active.focus,

#custom-html-t5 .btn-default.active:focus,

#custom-html-t5 .btn-default.active:hover,

#custom-html-t5 .btn-default:active.focus,

#custom-html-t5 .btn-default:active:focus,

#custom-html-t5 .btn-default:active:hover,

#custom-html-t5 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t5 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t5 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t5 .btn-default.active,

#custom-html-t5 .btn-default:active,

#custom-html-t5 .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-t5 .btn-default.disabled.focus,

#custom-html-t5 .btn-default.disabled:focus,

#custom-html-t5 .btn-default.disabled:hover,

#custom-html-t5 .btn-default[disabled].focus,

#custom-html-t5 .btn-default[disabled]:focus,

#custom-html-t5 .btn-default[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-default.focus,

#custom-html-t5 fieldset[disabled] .btn-default:focus,

#custom-html-t5 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t5 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t5 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t5 .btn-primary.focus,

#custom-html-t5 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t5 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t5 .btn-primary.active,

#custom-html-t5 .btn-primary:active,

#custom-html-t5 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t5 .btn-primary.active.focus,

#custom-html-t5 .btn-primary.active:focus,

#custom-html-t5 .btn-primary.active:hover,

#custom-html-t5 .btn-primary:active.focus,

#custom-html-t5 .btn-primary:active:focus,

#custom-html-t5 .btn-primary:active:hover,

#custom-html-t5 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t5 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t5 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t5 .btn-primary.active,

#custom-html-t5 .btn-primary:active,

#custom-html-t5 .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-t5 .btn-primary.disabled.focus,

#custom-html-t5 .btn-primary.disabled:focus,

#custom-html-t5 .btn-primary.disabled:hover,

#custom-html-t5 .btn-primary[disabled].focus,

#custom-html-t5 .btn-primary[disabled]:focus,

#custom-html-t5 .btn-primary[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-primary.focus,

#custom-html-t5 fieldset[disabled] .btn-primary:focus,

#custom-html-t5 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t5 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t5 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t5 .btn-success.focus,

#custom-html-t5 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t5 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t5 .btn-success.active,

#custom-html-t5 .btn-success:active,

#custom-html-t5 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t5 .btn-success.active.focus,

#custom-html-t5 .btn-success.active:focus,

#custom-html-t5 .btn-success.active:hover,

#custom-html-t5 .btn-success:active.focus,

#custom-html-t5 .btn-success:active:focus,

#custom-html-t5 .btn-success:active:hover,

#custom-html-t5 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t5 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t5 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t5 .btn-success.active,

#custom-html-t5 .btn-success:active,

#custom-html-t5 .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-t5 .btn-success.disabled.focus,

#custom-html-t5 .btn-success.disabled:focus,

#custom-html-t5 .btn-success.disabled:hover,

#custom-html-t5 .btn-success[disabled].focus,

#custom-html-t5 .btn-success[disabled]:focus,

#custom-html-t5 .btn-success[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-success.focus,

#custom-html-t5 fieldset[disabled] .btn-success:focus,

#custom-html-t5 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t5 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t5 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t5 .btn-info.focus,

#custom-html-t5 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t5 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t5 .btn-info.active,

#custom-html-t5 .btn-info:active,

#custom-html-t5 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t5 .btn-info.active.focus,

#custom-html-t5 .btn-info.active:focus,

#custom-html-t5 .btn-info.active:hover,

#custom-html-t5 .btn-info:active.focus,

#custom-html-t5 .btn-info:active:focus,

#custom-html-t5 .btn-info:active:hover,

#custom-html-t5 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t5 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t5 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t5 .btn-info.active,

#custom-html-t5 .btn-info:active,

#custom-html-t5 .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-t5 .btn-info.disabled.focus,

#custom-html-t5 .btn-info.disabled:focus,

#custom-html-t5 .btn-info.disabled:hover,

#custom-html-t5 .btn-info[disabled].focus,

#custom-html-t5 .btn-info[disabled]:focus,

#custom-html-t5 .btn-info[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-info.focus,

#custom-html-t5 fieldset[disabled] .btn-info:focus,

#custom-html-t5 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t5 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t5 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t5 .btn-warning.focus,

#custom-html-t5 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t5 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t5 .btn-warning.active,

#custom-html-t5 .btn-warning:active,

#custom-html-t5 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t5 .btn-warning.active.focus,

#custom-html-t5 .btn-warning.active:focus,

#custom-html-t5 .btn-warning.active:hover,

#custom-html-t5 .btn-warning:active.focus,

#custom-html-t5 .btn-warning:active:focus,

#custom-html-t5 .btn-warning:active:hover,

#custom-html-t5 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t5 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t5 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t5 .btn-warning.active,

#custom-html-t5 .btn-warning:active,

#custom-html-t5 .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-t5 .btn-warning.disabled.focus,

#custom-html-t5 .btn-warning.disabled:focus,

#custom-html-t5 .btn-warning.disabled:hover,

#custom-html-t5 .btn-warning[disabled].focus,

#custom-html-t5 .btn-warning[disabled]:focus,

#custom-html-t5 .btn-warning[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-warning.focus,

#custom-html-t5 fieldset[disabled] .btn-warning:focus,

#custom-html-t5 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t5 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t5 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t5 .btn-danger.focus,

#custom-html-t5 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t5 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t5 .btn-danger.active,

#custom-html-t5 .btn-danger:active,

#custom-html-t5 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t5 .btn-danger.active.focus,

#custom-html-t5 .btn-danger.active:focus,

#custom-html-t5 .btn-danger.active:hover,

#custom-html-t5 .btn-danger:active.focus,

#custom-html-t5 .btn-danger:active:focus,

#custom-html-t5 .btn-danger:active:hover,

#custom-html-t5 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t5 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t5 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t5 .btn-danger.active,

#custom-html-t5 .btn-danger:active,

#custom-html-t5 .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-t5 .btn-danger.disabled.focus,

#custom-html-t5 .btn-danger.disabled:focus,

#custom-html-t5 .btn-danger.disabled:hover,

#custom-html-t5 .btn-danger[disabled].focus,

#custom-html-t5 .btn-danger[disabled]:focus,

#custom-html-t5 .btn-danger[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-danger.focus,

#custom-html-t5 fieldset[disabled] .btn-danger:focus,

#custom-html-t5 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t5 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t5 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t5 .btn-link,

#custom-html-t5 .btn-link.active,

#custom-html-t5 .btn-link:active,

#custom-html-t5 .btn-link[disabled],

#custom-html-t5 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t5 .btn-link,

#custom-html-t5 .btn-link:active,

#custom-html-t5 .btn-link:focus,

#custom-html-t5 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t5 .btn-link:focus,

#custom-html-t5 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t5 .btn-link[disabled]:focus,

#custom-html-t5 .btn-link[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-link:focus,

#custom-html-t5 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t5 .btn-group-lg > .btn,

#custom-html-t5 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t5 .btn-group-sm > .btn,

#custom-html-t5 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t5 .btn-group-xs > .btn,

#custom-html-t5 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t5 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t5 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t5 input[type=button].btn-block,

#custom-html-t5 input[type=reset].btn-block,

#custom-html-t5 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t5 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t5 .fade.in {

  opacity: 1;

}

#custom-html-t5 .collapse {

  display: none;

}

#custom-html-t5 .collapse.in {

  display: block;

}

#custom-html-t5 tr.collapse.in {

  display: table-row;

}

#custom-html-t5 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t5 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t5 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t5 .dropdown,

#custom-html-t5 .dropup {

  position: relative;

}

#custom-html-t5 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t5 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t5 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t5 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t5 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-t5 .dropdown-menu > li > a:focus,

#custom-html-t5 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t5 .dropdown-menu > .active > a,

#custom-html-t5 .dropdown-menu > .active > a:focus,

#custom-html-t5 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-t5 .dropdown-menu > .disabled > a,

#custom-html-t5 .dropdown-menu > .disabled > a:focus,

#custom-html-t5 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t5 .dropdown-menu > .disabled > a:focus,

#custom-html-t5 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t5 .open > .dropdown-menu {

  display: block;

}

#custom-html-t5 .open > a {

  outline: 0;

}

#custom-html-t5 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t5 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t5 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t5 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t5 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t5 .dropup .caret,

#custom-html-t5 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t5 .dropup .dropdown-menu,

#custom-html-t5 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-t5 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-t5 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-t5 .btn-group,

#custom-html-t5 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t5 .btn-group-vertical > .btn,

#custom-html-t5 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t5 .btn-group-vertical > .btn.active,

#custom-html-t5 .btn-group-vertical > .btn:active,

#custom-html-t5 .btn-group-vertical > .btn:focus,

#custom-html-t5 .btn-group-vertical > .btn:hover,

#custom-html-t5 .btn-group > .btn.active,

#custom-html-t5 .btn-group > .btn:active,

#custom-html-t5 .btn-group > .btn:focus,

#custom-html-t5 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t5 .btn-group .btn + .btn,

#custom-html-t5 .btn-group .btn + .btn-group,

#custom-html-t5 .btn-group .btn-group + .btn,

#custom-html-t5 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t5 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t5 .btn-toolbar .btn,

#custom-html-t5 .btn-toolbar .btn-group,

#custom-html-t5 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t5 .btn-toolbar > .btn,

#custom-html-t5 .btn-toolbar > .btn-group,

#custom-html-t5 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t5 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t5 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t5 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t5 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t5 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t5 .btn-group > .btn-group {

  float: left;

}

#custom-html-t5 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t5 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t5 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t5 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t5 .btn-group .dropdown-toggle:active,

#custom-html-t5 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t5 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t5 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t5 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t5 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t5 .btn .caret {

  margin-left: 0;

}

#custom-html-t5 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t5 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t5 .btn-group-vertical > .btn,

#custom-html-t5 .btn-group-vertical > .btn-group,

#custom-html-t5 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t5 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t5 .btn-group-vertical > .btn + .btn,

#custom-html-t5 .btn-group-vertical > .btn + .btn-group,

#custom-html-t5 .btn-group-vertical > .btn-group + .btn,

#custom-html-t5 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t5 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t5 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t5 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t5 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t5 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t5 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t5 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t5 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t5 .btn-group-justified > .btn,

#custom-html-t5 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t5 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t5 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t5 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t5 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t5 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t5 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t5 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t5 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t5 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t5 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t5 .input-group-lg > .form-control,

#custom-html-t5 .input-group-lg > .input-group-addon,

#custom-html-t5 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t5 select.input-group-lg > .form-control,

#custom-html-t5 select.input-group-lg > .input-group-addon,

#custom-html-t5 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t5 select[multiple].input-group-lg > .form-control,

#custom-html-t5 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t5 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t5 textarea.input-group-lg > .form-control,

#custom-html-t5 textarea.input-group-lg > .input-group-addon,

#custom-html-t5 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t5 .input-group-sm > .form-control,

#custom-html-t5 .input-group-sm > .input-group-addon,

#custom-html-t5 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t5 select.input-group-sm > .form-control,

#custom-html-t5 select.input-group-sm > .input-group-addon,

#custom-html-t5 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t5 select[multiple].input-group-sm > .form-control,

#custom-html-t5 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t5 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t5 textarea.input-group-sm > .form-control,

#custom-html-t5 textarea.input-group-sm > .input-group-addon,

#custom-html-t5 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t5 .input-group .form-control,

#custom-html-t5 .input-group-addon,

#custom-html-t5 .input-group-btn {

  display: table-cell;

}

#custom-html-t5 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t5 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t5 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t5 .input-group-addon,

#custom-html-t5 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t5 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t5 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t5 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t5 .input-group-addon input[type=checkbox],

#custom-html-t5 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t5 .input-group .form-control:first-child,

#custom-html-t5 .input-group-addon:first-child,

#custom-html-t5 .input-group-btn:first-child > .btn,

#custom-html-t5 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t5 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t5 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t5 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t5 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t5 .input-group .form-control:last-child,

#custom-html-t5 .input-group-addon:last-child,

#custom-html-t5 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t5 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t5 .input-group-btn:last-child > .btn,

#custom-html-t5 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t5 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t5 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t5 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t5 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t5 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t5 .input-group-btn > .btn:active,

#custom-html-t5 .input-group-btn > .btn:focus,

#custom-html-t5 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t5 .input-group-btn:first-child > .btn,

#custom-html-t5 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t5 .input-group-btn:last-child > .btn,

#custom-html-t5 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t5 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t5 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t5 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t5 .nav > li > a:focus,

#custom-html-t5 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t5 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t5 .nav > li.disabled > a:focus,

#custom-html-t5 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t5 .nav .open > a,

#custom-html-t5 .nav .open > a:focus,

#custom-html-t5 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t5 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t5 .nav > li > a > img {

  max-width: none;

}

#custom-html-t5 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t5 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t5 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t5 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t5 .nav-tabs > li.active > a,

#custom-html-t5 .nav-tabs > li.active > a:focus,

#custom-html-t5 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t5 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t5 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t5 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t5 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t5 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t5 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t5 .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t5 .nav-tabs.nav-justified > .active > a,

#custom-html-t5 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t5 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t5 .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t5 .nav-tabs.nav-justified > .active > a,

  #custom-html-t5 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t5 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t5 .nav-pills > li {

  float: left;

}

#custom-html-t5 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t5 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t5 .nav-pills > li.active > a,

#custom-html-t5 .nav-pills > li.active > a:focus,

#custom-html-t5 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t5 .nav-stacked > li {

  float: none;

}

#custom-html-t5 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t5 .nav-justified {

  width: 100%;

}

#custom-html-t5 .nav-justified > li {

  float: none;

}

#custom-html-t5 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t5 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t5 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t5 .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t5 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t5 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t5 .nav-tabs-justified > .active > a,

#custom-html-t5 .nav-tabs-justified > .active > a:focus,

#custom-html-t5 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t5 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t5 .nav-tabs-justified > .active > a,

  #custom-html-t5 .nav-tabs-justified > .active > a:focus,

  #custom-html-t5 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t5 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t5 .tab-content > .active {

  display: block;

}

#custom-html-t5 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t5 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-t5 .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-t5 .navbar-header {

    float: left;

  }

}

#custom-html-t5 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t5 .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-t5 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t5 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t5 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t5 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t5 .navbar-fixed-top .navbar-collapse,

  #custom-html-t5 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-t5 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t5 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t5 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t5 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t5 .container-fluid > .navbar-collapse,

#custom-html-t5 .container-fluid > .navbar-header,

#custom-html-t5 .container > .navbar-collapse,

#custom-html-t5 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t5 .container-fluid > .navbar-collapse,

  #custom-html-t5 .container-fluid > .navbar-header,

  #custom-html-t5 .container > .navbar-collapse,

  #custom-html-t5 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-t5 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-t5 .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-t5 .navbar-fixed-bottom,

#custom-html-t5 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-t5 .navbar-fixed-bottom,

  #custom-html-t5 .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-t5 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t5 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t5 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t5 .navbar-brand:focus,

#custom-html-t5 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t5 .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-t5 .navbar > .container .navbar-brand,

  #custom-html-t5 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-t5 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t5 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t5 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t5 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-t5 .navbar-toggle {

    display: none;

  }

}

#custom-html-t5 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t5 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t5 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t5 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t5 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t5 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t5 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t5 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-t5 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t5 .navbar-nav > li {

    float: left;

  }

  #custom-html-t5 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-t5 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-t5 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t5 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t5 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t5 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t5 .navbar-form .input-group .form-control,

  #custom-html-t5 .navbar-form .input-group .input-group-addon,

  #custom-html-t5 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t5 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t5 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t5 .navbar-form .checkbox,

  #custom-html-t5 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t5 .navbar-form .checkbox label,

  #custom-html-t5 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t5 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t5 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t5 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-t5 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t5 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-t5 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-t5 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t5 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t5 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t5 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t5 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t5 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-t5 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-t5 .navbar-left {

    float: left !important;

  }

  #custom-html-t5 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t5 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-t5 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t5 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t5 .navbar-default .navbar-brand:focus,

#custom-html-t5 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t5 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t5 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t5 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t5 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t5 .navbar-default .navbar-nav > .active > a,

#custom-html-t5 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t5 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t5 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t5 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t5 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t5 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t5 .navbar-default .navbar-toggle:focus,

#custom-html-t5 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t5 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t5 .navbar-default .navbar-collapse,

#custom-html-t5 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t5 .navbar-default .navbar-nav > .open > a,

#custom-html-t5 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t5 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t5 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-t5 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t5 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t5 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t5 .navbar-default .btn-link:focus,

#custom-html-t5 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-t5 .navbar-default .btn-link[disabled]:focus,

#custom-html-t5 .navbar-default .btn-link[disabled]:hover,

#custom-html-t5 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t5 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t5 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t5 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t5 .navbar-inverse .navbar-brand:focus,

#custom-html-t5 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t5 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t5 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t5 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t5 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t5 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t5 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t5 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t5 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t5 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t5 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t5 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t5 .navbar-inverse .navbar-toggle:focus,

#custom-html-t5 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t5 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t5 .navbar-inverse .navbar-collapse,

#custom-html-t5 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t5 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t5 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t5 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t5 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-t5 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t5 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t5 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t5 .navbar-inverse .btn-link:focus,

#custom-html-t5 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t5 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t5 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t5 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t5 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t5 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t5 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t5 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t5 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t5 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-t5 .pagination > li {

  display: inline;

}

#custom-html-t5 .pagination > li > a,

#custom-html-t5 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t5 .pagination > li:first-child > a,

#custom-html-t5 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t5 .pagination > li:last-child > a,

#custom-html-t5 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t5 .pagination > li > a:focus,

#custom-html-t5 .pagination > li > a:hover,

#custom-html-t5 .pagination > li > span:focus,

#custom-html-t5 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t5 .pagination > .active > a,

#custom-html-t5 .pagination > .active > a:focus,

#custom-html-t5 .pagination > .active > a:hover,

#custom-html-t5 .pagination > .active > span,

#custom-html-t5 .pagination > .active > span:focus,

#custom-html-t5 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-t5 .pagination > .disabled > a,

#custom-html-t5 .pagination > .disabled > a:focus,

#custom-html-t5 .pagination > .disabled > a:hover,

#custom-html-t5 .pagination > .disabled > span,

#custom-html-t5 .pagination > .disabled > span:focus,

#custom-html-t5 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t5 .pagination-lg > li > a,

#custom-html-t5 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t5 .pagination-lg > li:first-child > a,

#custom-html-t5 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t5 .pagination-lg > li:last-child > a,

#custom-html-t5 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t5 .pagination-sm > li > a,

#custom-html-t5 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t5 .pagination-sm > li:first-child > a,

#custom-html-t5 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t5 .pagination-sm > li:last-child > a,

#custom-html-t5 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t5 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t5 .pager li {

  display: inline;

}

#custom-html-t5 .pager li > a,

#custom-html-t5 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t5 .pager li > a:focus,

#custom-html-t5 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t5 .pager .next > a,

#custom-html-t5 .pager .next > span {

  float: right;

}

#custom-html-t5 .pager .previous > a,

#custom-html-t5 .pager .previous > span {

  float: left;

}

#custom-html-t5 .pager .disabled > a,

#custom-html-t5 .pager .disabled > a:focus,

#custom-html-t5 .pager .disabled > a:hover,

#custom-html-t5 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t5 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-t5 a.label:focus,

#custom-html-t5 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t5 .label:empty {

  display: none;

}

#custom-html-t5 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t5 .label-default {

  background-color: #777777;

}

#custom-html-t5 .label-default[href]:focus,

#custom-html-t5 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t5 .label-primary {

  background-color: #337ab7;

}

#custom-html-t5 .label-primary[href]:focus,

#custom-html-t5 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t5 .label-success {

  background-color: #5cb85c;

}

#custom-html-t5 .label-success[href]:focus,

#custom-html-t5 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t5 .label-info {

  background-color: #5bc0de;

}

#custom-html-t5 .label-info[href]:focus,

#custom-html-t5 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t5 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t5 .label-warning[href]:focus,

#custom-html-t5 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t5 .label-danger {

  background-color: #d9534f;

}

#custom-html-t5 .label-danger[href]:focus,

#custom-html-t5 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t5 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t5 .badge:empty {

  display: none;

}

#custom-html-t5 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t5 .btn-group-xs > .btn .badge,

#custom-html-t5 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t5 a.badge:focus,

#custom-html-t5 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t5 .list-group-item.active > .badge,

#custom-html-t5 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t5 .list-group-item > .badge {

  float: right;

}

#custom-html-t5 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t5 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t5 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t5 .jumbotron .h1,

#custom-html-t5 .jumbotron h1 {

  color: inherit;

}

#custom-html-t5 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t5 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t5 .container .jumbotron,

#custom-html-t5 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t5 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t5 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t5 .container .jumbotron,

  #custom-html-t5 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t5 .jumbotron .h1,

  #custom-html-t5 .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-t5 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t5 .thumbnail a > img,

#custom-html-t5 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t5 a.thumbnail.active,

#custom-html-t5 a.thumbnail:focus,

#custom-html-t5 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t5 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t5 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t5 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t5 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t5 .alert > p,

#custom-html-t5 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t5 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t5 .alert-dismissable,

#custom-html-t5 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t5 .alert-dismissable .close,

#custom-html-t5 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t5 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t5 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-t5 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t5 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t5 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t5 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t5 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t5 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t5 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t5 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t5 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t5 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t5 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t5 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t5 .progress-bar-striped,

#custom-html-t5 .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t5 .progress-bar.active,

#custom-html-t5 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t5 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t5 .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t5 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t5 .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t5 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t5 .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t5 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t5 .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t5 .media {

  margin-top: 15px;

}

#custom-html-t5 .media:first-child {

  margin-top: 0;

}

#custom-html-t5 .media,

#custom-html-t5 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t5 .media-body {

  width: 10000px;

}

#custom-html-t5 .media-object {

  display: block;

}

#custom-html-t5 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t5 .media-right,

#custom-html-t5 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t5 .media-left,

#custom-html-t5 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t5 .media-body,

#custom-html-t5 .media-left,

#custom-html-t5 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t5 .media-middle {

  vertical-align: middle;

}

#custom-html-t5 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t5 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t5 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t5 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-t5 .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t5 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t5 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t5 a.list-group-item,

#custom-html-t5 button.list-group-item {

  color: #555555;

}

#custom-html-t5 a.list-group-item .list-group-item-heading,

#custom-html-t5 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t5 a.list-group-item:focus,

#custom-html-t5 a.list-group-item:hover,

#custom-html-t5 button.list-group-item:focus,

#custom-html-t5 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t5 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t5 .list-group-item.disabled,

#custom-html-t5 .list-group-item.disabled:focus,

#custom-html-t5 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t5 .list-group-item.disabled .list-group-item-heading,

#custom-html-t5 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t5 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t5 .list-group-item.disabled .list-group-item-text,

#custom-html-t5 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t5 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t5 .list-group-item.active,

#custom-html-t5 .list-group-item.active:focus,

#custom-html-t5 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t5 .list-group-item.active .list-group-item-heading,

#custom-html-t5 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t5 .list-group-item.active .list-group-item-heading > small,

#custom-html-t5 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t5 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t5 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t5 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t5 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t5 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t5 .list-group-item.active .list-group-item-text,

#custom-html-t5 .list-group-item.active:focus .list-group-item-text,

#custom-html-t5 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t5 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t5 a.list-group-item-success,

#custom-html-t5 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t5 a.list-group-item-success .list-group-item-heading,

#custom-html-t5 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t5 a.list-group-item-success:focus,

#custom-html-t5 a.list-group-item-success:hover,

#custom-html-t5 button.list-group-item-success:focus,

#custom-html-t5 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t5 a.list-group-item-success.active,

#custom-html-t5 a.list-group-item-success.active:focus,

#custom-html-t5 a.list-group-item-success.active:hover,

#custom-html-t5 button.list-group-item-success.active,

#custom-html-t5 button.list-group-item-success.active:focus,

#custom-html-t5 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t5 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t5 a.list-group-item-info,

#custom-html-t5 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t5 a.list-group-item-info .list-group-item-heading,

#custom-html-t5 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t5 a.list-group-item-info:focus,

#custom-html-t5 a.list-group-item-info:hover,

#custom-html-t5 button.list-group-item-info:focus,

#custom-html-t5 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t5 a.list-group-item-info.active,

#custom-html-t5 a.list-group-item-info.active:focus,

#custom-html-t5 a.list-group-item-info.active:hover,

#custom-html-t5 button.list-group-item-info.active,

#custom-html-t5 button.list-group-item-info.active:focus,

#custom-html-t5 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t5 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t5 a.list-group-item-warning,

#custom-html-t5 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t5 a.list-group-item-warning .list-group-item-heading,

#custom-html-t5 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t5 a.list-group-item-warning:focus,

#custom-html-t5 a.list-group-item-warning:hover,

#custom-html-t5 button.list-group-item-warning:focus,

#custom-html-t5 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t5 a.list-group-item-warning.active,

#custom-html-t5 a.list-group-item-warning.active:focus,

#custom-html-t5 a.list-group-item-warning.active:hover,

#custom-html-t5 button.list-group-item-warning.active,

#custom-html-t5 button.list-group-item-warning.active:focus,

#custom-html-t5 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t5 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t5 a.list-group-item-danger,

#custom-html-t5 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t5 a.list-group-item-danger .list-group-item-heading,

#custom-html-t5 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t5 a.list-group-item-danger:focus,

#custom-html-t5 a.list-group-item-danger:hover,

#custom-html-t5 button.list-group-item-danger:focus,

#custom-html-t5 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t5 a.list-group-item-danger.active,

#custom-html-t5 a.list-group-item-danger.active:focus,

#custom-html-t5 a.list-group-item-danger.active:hover,

#custom-html-t5 button.list-group-item-danger.active,

#custom-html-t5 button.list-group-item-danger.active:focus,

#custom-html-t5 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t5 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t5 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t5 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t5 .panel-body {

  padding: 15px;

}

#custom-html-t5 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t5 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t5 .panel-title > .small,

#custom-html-t5 .panel-title > .small > a,

#custom-html-t5 .panel-title > a,

#custom-html-t5 .panel-title > small,

#custom-html-t5 .panel-title > small > a {

  color: inherit;

}

#custom-html-t5 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t5 .panel > .list-group,

#custom-html-t5 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t5 .panel > .list-group .list-group-item,

#custom-html-t5 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t5 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t5 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t5 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t5 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t5 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t5 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t5 .panel > .panel-collapse > .table,

#custom-html-t5 .panel > .table,

#custom-html-t5 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t5 .panel > .panel-collapse > .table caption,

#custom-html-t5 .panel > .table caption,

#custom-html-t5 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t5 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t5 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t5 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t5 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t5 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t5 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t5 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t5 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t5 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t5 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t5 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t5 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t5 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t5 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t5 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t5 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t5 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t5 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t5 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t5 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t5 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t5 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t5 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t5 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t5 .panel > .panel-body + .table,

#custom-html-t5 .panel > .panel-body + .table-responsive,

#custom-html-t5 .panel > .table + .panel-body,

#custom-html-t5 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t5 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t5 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t5 .panel > .table-bordered,

#custom-html-t5 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t5 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t5 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t5 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t5 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t5 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t5 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t5 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t5 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t5 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t5 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t5 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t5 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t5 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t5 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t5 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t5 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t5 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t5 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t5 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t5 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t5 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t5 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t5 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t5 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t5 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t5 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t5 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-t5 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t5 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t5 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t5 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t5 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t5 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t5 .panel-default {

  border-color: #dddddd;

}

#custom-html-t5 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t5 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t5 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t5 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t5 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t5 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t5 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t5 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t5 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t5 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t5 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t5 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t5 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t5 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-t5 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t5 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t5 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t5 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t5 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t5 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t5 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t5 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t5 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t5 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t5 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t5 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t5 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t5 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t5 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t5 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t5 .embed-responsive .embed-responsive-item,

#custom-html-t5 .embed-responsive embed,

#custom-html-t5 .embed-responsive iframe,

#custom-html-t5 .embed-responsive object,

#custom-html-t5 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t5 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t5 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t5 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t5 .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t5 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t5 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t5 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t5 .close:focus,

#custom-html-t5 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t5 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t5 .modal-open {

  overflow: hidden;

}

#custom-html-t5 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t5 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t5 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t5 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t5 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t5 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t5 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t5 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t5 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t5 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t5 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t5 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t5 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t5 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t5 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t5 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t5 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t5 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-t5 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t5 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t5 .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-t5 .modal-lg {

    width: 900px;

  }

}

#custom-html-t5 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t5 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t5 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t5 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t5 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t5 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t5 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t5 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t5 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t5 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t5 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t5 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t5 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t5 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t5 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t5 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t5 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t5 .popover.top {

  margin-top: -10px;

}

#custom-html-t5 .popover.right {

  margin-left: 10px;

}

#custom-html-t5 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t5 .popover.left {

  margin-left: -10px;

}

#custom-html-t5 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t5 .popover-content {

  padding: 9px 14px;

}

#custom-html-t5 .popover > .arrow,

#custom-html-t5 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t5 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t5 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t5 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t5 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t5 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t5 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t5 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t5 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t5 .popover.left > .arrow {


  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t5 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t5 .carousel {

  position: relative;

}

#custom-html-t5 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t5 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t5 .carousel-inner > .item > a > img,

#custom-html-t5 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t5 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t5 .carousel-inner > .item.active.right,

  #custom-html-t5 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t5 .carousel-inner > .item.active.left,

  #custom-html-t5 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t5 .carousel-inner > .item.active,

  #custom-html-t5 .carousel-inner > .item.next.left,

  #custom-html-t5 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t5 .carousel-inner > .active,

#custom-html-t5 .carousel-inner > .next,

#custom-html-t5 .carousel-inner > .prev {

  display: block;

}

#custom-html-t5 .carousel-inner > .active {

  left: 0;

}

#custom-html-t5 .carousel-inner > .next,

#custom-html-t5 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t5 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t5 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t5 .carousel-inner > .next.left,

#custom-html-t5 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t5 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t5 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t5 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t5 .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t5 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t5 .carousel-control:focus,

#custom-html-t5 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t5 .carousel-control .glyphicon-chevron-left,

#custom-html-t5 .carousel-control .glyphicon-chevron-right,

#custom-html-t5 .carousel-control .icon-next,

#custom-html-t5 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t5 .carousel-control .glyphicon-chevron-left,

#custom-html-t5 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t5 .carousel-control .glyphicon-chevron-right,

#custom-html-t5 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t5 .carousel-control .icon-next,

#custom-html-t5 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t5 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t5 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t5 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t5 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t5 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t5 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t5 .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-t5 .carousel-control .glyphicon-chevron-left,

  #custom-html-t5 .carousel-control .glyphicon-chevron-right,

  #custom-html-t5 .carousel-control .icon-next,

  #custom-html-t5 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t5 .carousel-control .glyphicon-chevron-left,

  #custom-html-t5 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t5 .carousel-control .glyphicon-chevron-right,

  #custom-html-t5 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t5 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t5 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t5 .btn-group-vertical > .btn-group:after,

#custom-html-t5 .btn-group-vertical > .btn-group:before,

#custom-html-t5 .btn-toolbar:after,

#custom-html-t5 .btn-toolbar:before,

#custom-html-t5 .clearfix:after,

#custom-html-t5 .clearfix:before,

#custom-html-t5 .container-fluid:after,

#custom-html-t5 .container-fluid:before,

#custom-html-t5 .container:after,

#custom-html-t5 .container:before,

#custom-html-t5 .dl-horizontal dd:after,

#custom-html-t5 .dl-horizontal dd:before,

#custom-html-t5 .form-horizontal .form-group:after,

#custom-html-t5 .form-horizontal .form-group:before,

#custom-html-t5 .modal-footer:after,

#custom-html-t5 .modal-footer:before,

#custom-html-t5 .modal-header:after,

#custom-html-t5 .modal-header:before,

#custom-html-t5 .nav:after,

#custom-html-t5 .nav:before,

#custom-html-t5 .navbar-collapse:after,

#custom-html-t5 .navbar-collapse:before,

#custom-html-t5 .navbar-header:after,

#custom-html-t5 .navbar-header:before,

#custom-html-t5 .navbar:after,

#custom-html-t5 .navbar:before,

#custom-html-t5 .pager:after,

#custom-html-t5 .pager:before,

#custom-html-t5 .panel-body:after,

#custom-html-t5 .panel-body:before,

#custom-html-t5 .row:after,

#custom-html-t5 .row:before {

  display: table;

  content: " ";

}

#custom-html-t5 .btn-group-vertical > .btn-group:after,

#custom-html-t5 .btn-toolbar:after,

#custom-html-t5 .clearfix:after,

#custom-html-t5 .container-fluid:after,

#custom-html-t5 .container:after,

#custom-html-t5 .dl-horizontal dd:after,

#custom-html-t5 .form-horizontal .form-group:after,

#custom-html-t5 .modal-footer:after,

#custom-html-t5 .modal-header:after,

#custom-html-t5 .nav:after,

#custom-html-t5 .navbar-collapse:after,

#custom-html-t5 .navbar-header:after,

#custom-html-t5 .navbar:after,

#custom-html-t5 .pager:after,

#custom-html-t5 .panel-body:after,

#custom-html-t5 .row:after {

  clear: both;

}

#custom-html-t5 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t5 .pull-right {

  float: right !important;

}

#custom-html-t5 .pull-left {

  float: left !important;

}

#custom-html-t5 .hide {

  display: none !important;

}

#custom-html-t5 .show {

  display: block !important;

}

#custom-html-t5 .invisible {

  visibility: hidden;

}

#custom-html-t5 .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t5 .hidden {

  display: none !important;

}

#custom-html-t5 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t5 .visible-lg,

#custom-html-t5 .visible-md,

#custom-html-t5 .visible-sm,

#custom-html-t5 .visible-xs {

  display: none !important;

}

#custom-html-t5 .visible-lg-block,

#custom-html-t5 .visible-lg-inline,

#custom-html-t5 .visible-lg-inline-block,

#custom-html-t5 .visible-md-block,

#custom-html-t5 .visible-md-inline,

#custom-html-t5 .visible-md-inline-block,

#custom-html-t5 .visible-sm-block,

#custom-html-t5 .visible-sm-inline,

#custom-html-t5 .visible-sm-inline-block,

#custom-html-t5 .visible-xs-block,

#custom-html-t5 .visible-xs-inline,

#custom-html-t5 .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-t5 .visible-xs {

    display: block !important;

  }

  #custom-html-t5 table.visible-xs {

    display: table !important;

  }

  #custom-html-t5 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t5 td.visible-xs,

  #custom-html-t5 th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t5 .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t5 .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t5 .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t5 .visible-sm {

    display: block !important;

  }

  #custom-html-t5 table.visible-sm {

    display: table !important;

  }

  #custom-html-t5 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t5 td.visible-sm,

  #custom-html-t5 th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t5 .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t5 .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t5 .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t5 .visible-md {

    display: block !important;

  }

  #custom-html-t5 table.visible-md {

    display: table !important;

  }

  #custom-html-t5 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t5 td.visible-md,

  #custom-html-t5 th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t5 .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t5 .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t5 .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t5 .visible-lg {

    display: block !important;

  }

  #custom-html-t5 table.visible-lg {

    display: table !important;

  }

  #custom-html-t5 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t5 td.visible-lg,

  #custom-html-t5 th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t5 .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t5 .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t5 .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t5 .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t5 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t5 .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t5 .hidden-lg {

    display: none !important;

  }

}

#custom-html-t5 .visible-print {

  display: none !important;

}

@media print {

  #custom-html-t5 .visible-print {

    display: block !important;

  }

  #custom-html-t5 table.visible-print {

    display: table !important;

  }

  #custom-html-t5 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t5 td.visible-print,

  #custom-html-t5 th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-t5 .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-t5 .visible-print-block {

    display: block !important;

  }

}

#custom-html-t5 .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-t5 .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-t5 .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-t5 .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-t5 .hidden-print {

    display: none !important;

  }

}

#custom-html-t5 .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-t5 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t5 .intl-tel-input .hide {

  display: none;

}

#custom-html-t5 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t5 .intl-tel-input input,

#custom-html-t5 .intl-tel-input input[type=tel],

#custom-html-t5 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t5 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t5 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t5 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t5 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t5 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t5 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t5 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t5 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t5 .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-t5 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t5 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t5 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t5 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t5 .intl-tel-input .country-list .country-name,

#custom-html-t5 .intl-tel-input .country-list .dial-code,

#custom-html-t5 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t5 .intl-tel-input .country-list .country-name,

#custom-html-t5 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t5 .intl-tel-input.allow-dropdown input,

#custom-html-t5 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t5 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t5 .intl-tel-input.separate-dial-code input,

#custom-html-t5 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t5 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t5 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t5 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t5 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t5 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t5 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t5 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t5 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t5 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t5 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t5 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t5 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t5 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t5 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t5 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t5 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t5 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t5 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t5 .iti-flag {

  width: 20px;

}

#custom-html-t5 .iti-flag.be {

  width: 18px;

}

#custom-html-t5 .iti-flag.ch {

  width: 15px;

}

#custom-html-t5 .iti-flag.mc {

  width: 19px;

}

#custom-html-t5 .iti-flag.ne {

  width: 18px;

}

#custom-html-t5 .iti-flag.np {

  width: 13px;

}

#custom-html-t5 .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t5 .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-t5 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t5 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t5 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t5 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t5 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t5 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t5 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t5 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t5 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t5 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t5 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t5 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t5 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t5 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t5 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t5 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t5 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t5 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t5 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t5 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t5 .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t5 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t5 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t5 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t5 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t5 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t5 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t5 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t5 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t5 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t5 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t5 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t5 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t5 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t5 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t5 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t5 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t5 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t5 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t5 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t5 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t5 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t5 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t5 .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t5 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t5 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t5 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t5 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t5 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t5 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t5 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t5 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t5 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t5 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t5 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t5 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t5 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t5 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t5 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t5 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t5 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t5 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t5 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t5 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t5 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t5 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t5 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t5 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t5 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t5 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t5 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t5 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t5 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t5 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t5 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t5 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t5 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t5 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t5 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t5 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t5 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t5 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t5 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t5 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t5 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t5 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t5 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t5 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t5 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t5 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t5 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t5 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t5 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t5 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t5 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t5 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t5 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t5 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t5 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t5 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t5 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t5 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t5 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t5 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t5 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}


#custom-html-t5 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t5 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t5 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t5 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t5 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t5 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t5 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t5 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t5 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t5 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t5 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t5 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t5 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t5 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t5 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t5 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t5 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t5 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t5 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t5 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t5 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t5 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t5 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t5 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t5 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t5 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t5 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t5 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t5 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t5 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t5 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t5 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t5 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t5 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t5 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t5 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t5 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t5 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t5 .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t5 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t5 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t5 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t5 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t5 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t5 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t5 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t5 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t5 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t5 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t5 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t5 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t5 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t5 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t5 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t5 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t5 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t5 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t5 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t5 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t5 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t5 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t5 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t5 .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t5 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t5 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t5 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t5 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t5 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t5 .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-t5 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t5 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t5 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t5 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t5 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t5 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t5 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t5 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t5 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t5 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t5 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t5 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t5 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t5 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t5 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t5 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t5 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t5 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t5 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t5 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t5 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t5 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t5 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t5 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t5 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t5 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t5 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t5 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t5 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t5 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t5 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t5 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t5 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t5 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t5 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t5 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t5 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t5 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t5 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t5 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t5 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t5 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t5 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t5 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t5 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t5 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t5 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t5 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t5 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t5 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t5 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t5 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t5 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-t5 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t5 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t5 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t5 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t5 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t5 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t5 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t5 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t5 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t5 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t5 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t5 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t5 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t5 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t5 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t5 .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-t5 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t5 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-t5 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t5 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t5 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t5 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t5 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t5 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t5 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t5 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t5 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t5 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t5 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t5 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t5 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t5 .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t5 .iti-flag.np {

  background-color: transparent;

}

#custom-html-t5 body,

#custom-html-t5 button,

#custom-html-t5 input,

#custom-html-t5 select,

#custom-html-t5 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t5 h1,

#custom-html-t5 h2,

#custom-html-t5 h3,

#custom-html-t5 h4,

#custom-html-t5 h5,

#custom-html-t5 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-t5 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t5 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t5 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t5 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-t5 .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t5 .navbar-main .navbar-nav > .active > a,

#custom-html-t5 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t5 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t5 .navbar-main .navbar-nav > .open > a,

#custom-html-t5 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t5 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t5 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t5 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t5 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t5 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t5 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-t5 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t5 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-t5 .navbar-header {

    float: none;

  }

  #custom-html-t5 .navbar-left,

  #custom-html-t5 .navbar-right {

    float: none !important;

  }

  #custom-html-t5 .navbar-toggle {

    display: block;

  }

  #custom-html-t5 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t5 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t5 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t5 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t5 .navbar-nav > li {

    float: none;

  }

  #custom-html-t5 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t5 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-t5 .panel {

  font-size: 0.9em;

}

#custom-html-t5 .list-group {

  font-size: 0.9em;

}

#custom-html-t5 .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-t5 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t5 a.list-group-item.active,

#custom-html-t5 a.list-group-item.active:focus,

#custom-html-t5 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t5 .pagination {

  font-size: 0.8em;

}

#custom-html-t5 .pagination > .active > a,

#custom-html-t5 .pagination > .active > a:focus,

#custom-html-t5 .pagination > .active > a:hover,

#custom-html-t5 .pagination > .active > span,

#custom-html-t5 .pagination > .active > span:focus,

#custom-html-t5 .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t5 .dropdown-menu > li > a:focus,

#custom-html-t5 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t5 .label {

  border-radius: 0;

}

#custom-html-t5 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t5 .list-group-item {

  padding: 7px 15px;

}

#custom-html-t5 .panel-body {

  padding: 10px 15px;

}

#custom-html-t5 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t5 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t5 .btn {

  overflow: hidden;

}

#custom-html-t5 body,

#custom-html-t5 html {

  height: 100%;

}

#custom-html-t5 body {

  background-color: #f8f8f8;

}

#custom-html-t5 h1,

#custom-html-t5 h2,

#custom-html-t5 h3,

#custom-html-t5 h4,

#custom-html-t5 h5,

#custom-html-t5 h6 {

  font-weight: 400;

}

#custom-html-t5 a {

  color: #005588;

}

#custom-html-t5 section#header {


  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t5 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t5 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t5 section#header .search {

  margin: 20px 0;

}

#custom-html-t5 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t5 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t5 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t5 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t5 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t5 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t5 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t5 section#footer {

    line-height: 32px;

  }

}

#custom-html-t5 section#footer .back-to-top {

  float: right;

}

#custom-html-t5 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t5 .adminreturndiv {

  display: none !important;

}

#custom-html-t5 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t5 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t5 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t5 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t5 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t5 .navbar-main .navbar-toggle:focus,

#custom-html-t5 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t5 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t5 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-t5 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t5 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t5 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-t5 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t5 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t5 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t5 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t5 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t5 .h1,

  #custom-html-t5 h1 {

    font-size: 26px;

  }

  #custom-html-t5 .h2,

  #custom-html-t5 h2 {

    font-size: 20px;

  }

  #custom-html-t5 .h3,

  #custom-html-t5 h3 {

    font-size: 16px;

  }

  #custom-html-t5 .h4,

  #custom-html-t5 h4 {

    font-size: 14px;

  }

  #custom-html-t5 .h5,

  #custom-html-t5 h5 {

    font-size: 12px;

  }

  #custom-html-t5 .h6,

  #custom-html-t5 h6 {

    font-size: 11px;

  }

  #custom-html-t5 div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-t5 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t5 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t5 .margin-10 {

  margin: 10px;

}

#custom-html-t5 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t5 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t5 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t5 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t5 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t5 .input-inline {

  display: inline-block;

}

#custom-html-t5 .input-inline-100 {

  width: 100px;

}

#custom-html-t5 .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-t5 .pull-md-left {

    float: left;

  }

  #custom-html-t5 .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-t5 .pull-sm-left {

    float: left;

  }

  #custom-html-t5 .pull-sm-right {

    float: right;

  }

  #custom-html-t5 .text-right-sm {

    text-align: right;

  }

}

#custom-html-t5 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t5 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t5 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-t5 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-t5 .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-t5 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t5 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t5 i.icon-rss {

  color: #ff6600;

}

#custom-html-t5 section#main-menu {

  background-color: #000000;

}

#custom-html-t5 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t5 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t5 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t5 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t5 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t5 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t5 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t5 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t5 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t5 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t5 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t5 section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-t5 section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-t5 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t5 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t5 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t5 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t5 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t5 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t5 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t5 .home-shortcuts li span {

  display: none;

}

#custom-html-t5 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t5 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-t5 .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-t5 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t5 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t5 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t5 .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-t5 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t5 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t5 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t5 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t5 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t5 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t5 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t5 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t5 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t5 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t5 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t5 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t5 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t5 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t5 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t5 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t5 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t5 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t5 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t5 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t5 .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-t5 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t5 .tiles .tile:nth-child(1),

  #custom-html-t5 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-t5 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t5 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t5 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t5 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t5 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t5 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t5 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t5 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t5 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t5 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t5 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t5 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t5 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t5 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t5 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t5 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t5 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t5 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t5 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t5 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t5 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t5 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t5 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t5 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t5 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t5 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t5 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t5 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t5 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t5 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t5 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t5 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t5 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t5 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t5 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t5 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t5 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t5 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t5 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t5 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t5 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t5 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t5 ul.top-nav > li,

#custom-html-t5 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t5 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t5 ul.top-nav > li:active > a,

#custom-html-t5 ul.top-nav > li:focus > a,

#custom-html-t5 ul.top-nav > li:hover > a,

#custom-html-t5 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t5 ul.top-nav > li.primary-action {

  padding-left: 15px;


  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t5 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t5 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t5 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-t5 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t5 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t5 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-t5 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t5 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t5 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-t5 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t5 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t5 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t5 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t5 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t5 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t5 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t5 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-t5 .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-t5 .domain-checker-container .input-group-box {

  margin: 0 auto;


  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t5 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-t5 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t5 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t5 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-t5 .domain-check-availability {

  width: 100px;

}

#custom-html-t5 .domain-step-options {

  min-height: 300px;

}

#custom-html-t5 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t5 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t5 .domain-checker-invalid,

#custom-html-t5 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t5 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t5 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t5 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t5 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t5 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t5 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t5 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t5 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t5 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-t5 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t5 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t5 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t5 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t5 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t5 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t5 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t5 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t5 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t5 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t5 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t5 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t5 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t5 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t5 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t5 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t5 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t5 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t5 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t5 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t5 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t5 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t5 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t5 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t5 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t5 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t5 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t5 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t5 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t5 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t5 div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t5 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t5 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t5 .product-status-active {

  background-color: #46a546;

}

#custom-html-t5 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t5 .product-status-cancelled,

#custom-html-t5 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t5 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t5 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t5 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t5 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t5 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t5 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-t5 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t5 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t5 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t5 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t5 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t5 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t5 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t5 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-t5 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t5 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t5 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t5 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-t5 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t5 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t5 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t5 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t5 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t5 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t5 .pagination > li > a,

#custom-html-t5 .pagination > li > span {

  color: #444444;

}

#custom-html-t5 .pagination > .active > a,

#custom-html-t5 .pagination > .active > a:focus,

#custom-html-t5 .pagination > .active > a:hover,

#custom-html-t5 .pagination > .active > span,

#custom-html-t5 .pagination > .active > span:focus,

#custom-html-t5 .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t5 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t5 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t5 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t5 .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-t5 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t5 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t5 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t5 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t5 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t5 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t5 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t5 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t5 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t5 .status-pending {

  color: #d9534f;

}

#custom-html-t5 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t5 .status-active,

#custom-html-t5 .status-completed,

#custom-html-t5 .status-open {

  color: #3fad46;

}

#custom-html-t5 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t5 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t5 .status-answered,

#custom-html-t5 .status-fraud {

  color: #000000;

}

#custom-html-t5 .status-expired,

#custom-html-t5 .status-transferred.away {

  color: #004258;

}

#custom-html-t5 .status-cancelled {

  color: #9fa29a;

}

#custom-html-t5 .status-terminated {

  color: #666666;

}

#custom-html-t5 .status-onhold {

  color: #224488;

}

#custom-html-t5 .status-inprogress {

  color: #cc0000;

}

#custom-html-t5 .status-closed {

  color: #888888;

}

#custom-html-t5 .status-paid {

  color: #498302;

}

#custom-html-t5 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t5 .status-cancelled {

  color: #87939f;

}

#custom-html-t5 .status-collections {

  color: #9a141e;

}

#custom-html-t5 .status-refunded {

  color: #319fc3;

}

#custom-html-t5 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t5 .status-delivered {

  color: #224488;

}

#custom-html-t5 .status-accepted {

  color: #498302;

}

#custom-html-t5 .status-dead,

#custom-html-t5 .status-lost {

  color: #000000;

}

#custom-html-t5 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t5 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t5 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t5 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t5 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t5 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t5 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t5 .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-t5 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t5 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t5 .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-t5 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t5 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t5 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t5 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t5 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t5 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t5 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t5 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t5 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t5 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t5 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t5 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t5 .ticket-reply .rating,

#custom-html-t5 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t5 .ticket-reply .rating span.star,

#custom-html-t5 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t5 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t5 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t5 .ticket-reply .rating span.star:before,

#custom-html-t5 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t5 .ticket-reply .rating span.star:hover:before,

#custom-html-t5 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t5 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t5 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t5 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t5 .ticket-reply .clear {

  clear: both;

}

#custom-html-t5 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t5 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t5 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t5 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t5 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t5 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t5 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t5 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t5 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t5 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-t5 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t5 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t5 .popover-user-notifications ul li i.far,

#custom-html-t5 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t5 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t5 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t5 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t5 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t5 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t5 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t5 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t5 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t5 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t5 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t5 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t5 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t5 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t5 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t5 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t5 div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-t5 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t5 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t5 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t5 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t5 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t5 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-t5 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t5 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t5 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t5 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t5 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t5 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t5 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t5 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t5 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t5 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t5 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t5 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t5 .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-t5 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t5 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t5 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t5 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t5 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t5 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-t5 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t5 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t5 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t5 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t5 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t5 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t5 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t5 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t5 .kb-category a small {

  color: #888888;

}

#custom-html-t5 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t5 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t5 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t5 .kbarticles a.admin-inline-edit,

#custom-html-t5 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t5 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t5 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t5 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t5 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t5 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t5 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t5 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t5 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t5 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t5 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t5 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t5 #stepResults {

  font-size: 20px;

}

#custom-html-t5 #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-t5 #stepResults {

    font-size: 14px;

  }

  #custom-html-t5 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t5 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-t5 #main-menu,

  #custom-html-t5 #top-nav,

  #custom-html-t5 .header-lined,

  #custom-html-t5 .sidebar {

    display: none;

  }

  #custom-html-t5 a[href]:after {

    content: "" !important;

  }

}

#custom-html-t5 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t5 h3.with-badge i,

#custom-html-t5 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t5 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-t5 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t5 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-t5 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t5 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t5 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t5 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t5 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t5 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t5 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t5 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t5 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t5 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t5 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t5 .login-popover {

  font-size: 12px;

}

#custom-html-t5 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t5 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t5 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t5 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t5 .error-container {

  text-align: center;

}

#custom-html-t5 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t5 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t5 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t5 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t5 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t5 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t5 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t5 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t5 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t5 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-t5 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t5 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-t5 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t5 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t5 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t5 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t5 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t5 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t5 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t5 .email-verification .btn:active,

#custom-html-t5 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t5 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t5 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t5 .email-verification .far,

#custom-html-t5 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-t5 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t5 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t5 .email-verification .button {

    float: right;

  }

  #custom-html-t5 .email-verification .far,

  #custom-html-t5 .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-t5 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t5 .email-verification.success .far,

#custom-html-t5 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t5 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t5 .email-verification.failed .far,

#custom-html-t5 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t5 .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-t5 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t5 .md-editor > .md-preview,

#custom-html-t5 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t5 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t5 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t5 .small-font {

  font-size: 0.9em;

}

#custom-html-t5 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t5 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t5 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t5 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t5 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t5 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t5 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t5 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t5 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t5 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t5 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t5 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t5 .panel-heading i.fab,

#custom-html-t5 .panel-heading i.fal,

#custom-html-t5 .panel-heading i.far,

#custom-html-t5 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t5 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t5 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t5 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t5 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t5 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t5 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t5 .panel-sidebar .list-group-item.disabled,

#custom-html-t5 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t5 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t5 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t5 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t5 .panel-sidebar a.list-group-item.active,

#custom-html-t5 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t5 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t5 .panel-sidebar a.list-group-item.active i,

#custom-html-t5 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t5 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t5 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t5 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t5 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t5 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t5 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t5 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t5 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t5 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t5 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t5 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t5 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t5 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t5 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t5 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-t5 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t5 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-t5 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t5 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t5 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t5 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t5 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t5 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t5 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t5 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t5 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t5 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t5 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t5 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t5 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t5 .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-t5 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t5 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t5 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t5 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t5 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t5 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t5 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t5 .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-t5 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t5 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t5 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t5 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t5 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t5 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t5 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t5 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t5 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t5 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t5 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t5 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t5 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t5 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t5 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t5 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t5 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t5 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t5 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t5 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t5 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t5 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t5 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t5 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t5 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t5 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t5 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t5 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t5 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t5 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t5 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t5 .panel-mc-sso .btn,

#custom-html-t5 .panel-mc-sso .form-control,

#custom-html-t5 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t5 .panel-mc-sso small {

  display: block;

}

#custom-html-t5 .social-signin-btns {

  text-align: center;

}

#custom-html-t5 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t5 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t5 .btn-social i.far,

#custom-html-t5 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-facebook.active,

#custom-html-t5 .btn-facebook:active,

#custom-html-t5 .btn-facebook:focus,

#custom-html-t5 .btn-facebook:hover,

#custom-html-t5 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-facebook.active,

#custom-html-t5 .btn-facebook:active,

#custom-html-t5 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t5 .btn-facebook.disabled,

#custom-html-t5 .btn-facebook.disabled.active,

#custom-html-t5 .btn-facebook.disabled:active,

#custom-html-t5 .btn-facebook.disabled:focus,

#custom-html-t5 .btn-facebook.disabled:hover,

#custom-html-t5 .btn-facebook[disabled],

#custom-html-t5 .btn-facebook[disabled].active,

#custom-html-t5 .btn-facebook[disabled]:active,

#custom-html-t5 .btn-facebook[disabled]:focus,

#custom-html-t5 .btn-facebook[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-facebook,

#custom-html-t5 fieldset[disabled] .btn-facebook.active,

#custom-html-t5 fieldset[disabled] .btn-facebook:active,

#custom-html-t5 fieldset[disabled] .btn-facebook:focus,

#custom-html-t5 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-google.active,

#custom-html-t5 .btn-google:active,

#custom-html-t5 .btn-google:focus,

#custom-html-t5 .btn-google:hover,

#custom-html-t5 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-google.active,

#custom-html-t5 .btn-google:active,

#custom-html-t5 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t5 .btn-google-plus.disabled.active,

#custom-html-t5 .btn-google-plus.disabled:active,

#custom-html-t5 .btn-google-plus.disabled:focus,

#custom-html-t5 .btn-google-plus[disabled].active,

#custom-html-t5 .btn-google-plus[disabled]:active,

#custom-html-t5 .btn-google-plus[disabled]:focus,

#custom-html-t5 .btn-google-plus[disabled]:hover,

#custom-html-t5 .btn-google.disabled,

#custom-html-t5 .btn-google.disabled:hover,

#custom-html-t5 .btn-google[disabled],

#custom-html-t5 fieldset[disabled] .btn-google,

#custom-html-t5 fieldset[disabled] .btn-google-plus.active,

#custom-html-t5 fieldset[disabled] .btn-google-plus:active,

#custom-html-t5 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t5 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-twitter.active,

#custom-html-t5 .btn-twitter:active,

#custom-html-t5 .btn-twitter:focus,

#custom-html-t5 .btn-twitter:hover,

#custom-html-t5 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .btn-twitter.active,

#custom-html-t5 .btn-twitter:active,

#custom-html-t5 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t5 .btn-twitter.disabled,

#custom-html-t5 .btn-twitter.disabled.active,

#custom-html-t5 .btn-twitter.disabled:active,

#custom-html-t5 .btn-twitter.disabled:focus,

#custom-html-t5 .btn-twitter.disabled:hover,

#custom-html-t5 .btn-twitter[disabled],

#custom-html-t5 .btn-twitter[disabled].active,

#custom-html-t5 .btn-twitter[disabled]:active,

#custom-html-t5 .btn-twitter[disabled]:focus,

#custom-html-t5 .btn-twitter[disabled]:hover,

#custom-html-t5 fieldset[disabled] .btn-twitter,

#custom-html-t5 fieldset[disabled] .btn-twitter.active,

#custom-html-t5 fieldset[disabled] .btn-twitter:active,

#custom-html-t5 fieldset[disabled] .btn-twitter:focus,

#custom-html-t5 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t5 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t5 .providerLinkingFeedback {

  display: none;

}

#custom-html-t5 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t5 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t5 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t5 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t5 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t5 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t5 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t5 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t5 #registration .field,

#custom-html-t5 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t5 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t5 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t5 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t5 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t5 #registration textarea.field {

  height: auto;

}

#custom-html-t5 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t5 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t5 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t5 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t5 #registration .field[disabled],

#custom-html-t5 #registration .field[readonly],

#custom-html-t5 #registration .form-control[disabled],

#custom-html-t5 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t5 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t5 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t5 .upgrade .product-to-be-upgraded h4,

#custom-html-t5 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t5 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t5 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t5 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t5 .upgrade .products .product .current,

#custom-html-t5 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t5 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t5 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-t5 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-t5 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t5 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t5 .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t5 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t5 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t5 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t5 .upgrade .products .far,

#custom-html-t5 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t5 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t5 .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-t5 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t5 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t5 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t5 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t5 .intl-tel-input {

  width: 100%;

}

#custom-html-t5 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t5 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .bootstrap-switch input[type=checkbox],

#custom-html-t5 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t5 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t5 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t5 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t5 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t5 .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-t5 .md-editor .md-footer,

#custom-html-t5 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t5 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t5 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t5 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t5 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t5 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t5 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t5 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t5 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t5 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t5 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t5 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t5 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t5 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t5 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t5 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t5 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t5 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t5 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t5 table.dataTable td,

#custom-html-t5 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t5 table.dataTable td.dataTables_empty,

#custom-html-t5 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t5 table.dataTable.nowrap td,

#custom-html-t5 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t5 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t5 table.dataTable thead > tr > td.sorting,

#custom-html-t5 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t5 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t5 table.dataTable thead > tr > th.sorting,

#custom-html-t5 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t5 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t5 table.dataTable thead > tr > td:active,

#custom-html-t5 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t5 table.dataTable thead .sorting,

#custom-html-t5 table.dataTable thead .sorting_asc,

#custom-html-t5 table.dataTable thead .sorting_asc_disabled,

#custom-html-t5 table.dataTable thead .sorting_desc,

#custom-html-t5 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t5 table.dataTable thead .sorting:after,

#custom-html-t5 table.dataTable thead .sorting_asc:after,

#custom-html-t5 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t5 table.dataTable thead .sorting_desc:after,

#custom-html-t5 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t5 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t5 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t5 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t5 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t5 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t5 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t5 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t5 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t5 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t5 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t5 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t5 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t5 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-t5 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t5 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t5 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t5 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-t5 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t5 table.dataTable.table-condensed .sorting:after,

#custom-html-t5 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t5 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t5 table.table-bordered.dataTable td,

#custom-html-t5 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t5 table.table-bordered.dataTable td:last-child,

#custom-html-t5 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t5 table.table-bordered.dataTable tbody td,

#custom-html-t5 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t5 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t5 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t5 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t5 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t5 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t5 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t5 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t5 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t5 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t5 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t5 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t5 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t5 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t5 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t5 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t5 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t5 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t5 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t5 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t5 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t5 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t5 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t5 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t5 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t5 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t5 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-t5 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t5 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t5 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t5 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t5 .multiselect-container > li {

  padding: 0;

}

#custom-html-t5 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t5 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t5 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t5 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t5 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t5 .multiselect-container > li > a > label.checkbox,

#custom-html-t5 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t5 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t5 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t5 .form-inline .multiselect-container label.checkbox,

#custom-html-t5 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t5 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t5 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sFM4mJjsKZ .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sFM4mJjsKZ .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sFM4mJjsKZ .divider-top::before,

.cid-sFM4mJjsKZ .divider-bottom::before,

.cid-sFM4mJjsKZ .divider-top::after,

.cid-sFM4mJjsKZ .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sFM4mJjsKZ .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sFM4mJjsKZ .divider-triangles::before {

  top: -50px;

}

.cid-sFM4mJjsKZ .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sFM4mJjsKZ .divider-halfcircle::before {

  top: -50px;

}

.cid-sFM4mJjsKZ .divider-multitriangles::before,

.cid-sFM4mJjsKZ .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sFM4mJjsKZ .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-ryYC4axtOd {

  background-color: #ffffff;

}

@media (min-width: 992px) {

  .cid-ryYC4axtOd .mbr-figure {

    padding-right: 4rem;

  }

}

@media (max-width: 991px) {

  .cid-ryYC4axtOd .mbr-figure {

    padding-bottom: 3rem;

  }

}

@media (max-width: 767px) {

  .cid-ryYC4axtOd .mbr-text {

    text-align: center;

  }

}

.cid-ryYC4axtOd H1 {

  color: #000000;

}

.cid-ryYC4axtOd .mbr-text,

.cid-ryYC4axtOd .mbr-section-btn {

  color: #000000;

}

.cid-ryYC4axtOd h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3B8qHOuQ .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3B8qHOuQ .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3B8qHOuQ .divider-top::before,

.cid-sF3B8qHOuQ .divider-bottom::before,

.cid-sF3B8qHOuQ .divider-top::after,

.cid-sF3B8qHOuQ .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3B8qHOuQ .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3B8qHOuQ .divider-triangles::before {

  top: -50px;

}

.cid-sF3B8qHOuQ .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3B8qHOuQ .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3B8qHOuQ .divider-multitriangles::before,

.cid-sF3B8qHOuQ .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3B8qHOuQ .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-s88aeCW3at {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s88aeCW3at h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s88aeCW3at p {

  color: #767676;

  text-align: left;

}

.cid-s88aeCW3at .card-box {

  padding-top: 2rem;

}

.cid-s88aeCW3at .card-wrapper {

  height: 100%;

}

.cid-svDDxWrpcs {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDDxWrpcs .content {

    text-align: center;

  }

  .cid-svDDxWrpcs .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDDxWrpcs .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDDxWrpcs .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDDxWrpcs .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDDxWrpcs .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDDxWrpcs .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDDxWrpcs .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDDxWrpcs .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDDxWrpcs .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDDxWrpcs .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDDxWrpcs .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDDxWrpcs .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDDxWrpcs .copyright > p {

  text-align: left;

}

.cid-svDDxWrpcs H5 {

  color: #000000;

}

#custom-html-t6 {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-t6 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t6 body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-t6 article,

#custom-html-t6 aside,

#custom-html-t6 details,

#custom-html-t6 figcaption,

#custom-html-t6 figure,

#custom-html-t6 footer,

#custom-html-t6 header,

#custom-html-t6 hgroup,

#custom-html-t6 main,

#custom-html-t6 menu,

#custom-html-t6 nav,

#custom-html-t6 section,

#custom-html-t6 summary {

  display: block;

}

#custom-html-t6 audio,

#custom-html-t6 canvas,

#custom-html-t6 progress,

#custom-html-t6 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t6 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t6 [hidden],

#custom-html-t6 template {

  display: none;

}

#custom-html-t6 a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-t6 a:active,

#custom-html-t6 a:hover {

  outline: 0;

}

#custom-html-t6 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t6 b,

#custom-html-t6 strong {

  font-weight: 700;

}

#custom-html-t6 dfn {

  font-style: italic;

}

#custom-html-t6 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t6 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t6 small {

  font-size: 80%;

}

#custom-html-t6 sub,

#custom-html-t6 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t6 sup {

  top: -0.5em;

}

#custom-html-t6 sub {

  bottom: -0.25em;

}

#custom-html-t6 img {

  border: 0;

  vertical-align: middle;

}

#custom-html-t6 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t6 figure {

  margin: 0;

}

#custom-html-t6 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t6 pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t6 code,

#custom-html-t6 kbd,

#custom-html-t6 pre,

#custom-html-t6 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-t6 button,

#custom-html-t6 input,

#custom-html-t6 optgroup,

#custom-html-t6 select,

#custom-html-t6 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t6 button {

  overflow: visible;

}

#custom-html-t6 button,

#custom-html-t6 select {

  text-transform: none;

}

#custom-html-t6 button,

#custom-html-t6 html input[type=button],

#custom-html-t6 input[type=reset],

#custom-html-t6 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t6 button[disabled],

#custom-html-t6 html input[disabled] {

  cursor: default;

}

#custom-html-t6 button::-moz-focus-inner,

#custom-html-t6 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t6 input {

  line-height: normal;

}

#custom-html-t6 input[type=checkbox],

#custom-html-t6 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t6 input[type=number]::-webkit-inner-spin-button,

#custom-html-t6 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t6 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-t6 input[type=search]::-webkit-search-cancel-button,

#custom-html-t6 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t6 fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-t6 legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t6 textarea {

  overflow: auto;

}

#custom-html-t6 optgroup {

  font-weight: 700;

}

#custom-html-t6 table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-t6 td,

#custom-html-t6 th {

  padding: 0;

}

@media print {

  #custom-html-t6 *,

  #custom-html-t6 :after,

  #custom-html-t6 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t6 a,

  #custom-html-t6 a:visited {

    text-decoration: underline;

  }

  #custom-html-t6 a[href]:after {

    content: "" !important;

  }

  #custom-html-t6 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t6 a[href^="#"]:after,

  #custom-html-t6 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t6 blockquote,

  #custom-html-t6 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t6 thead {

    display: table-header-group;

  }

  #custom-html-t6 img,

  #custom-html-t6 tr {

    page-break-inside: avoid;

  }

  #custom-html-t6 img {

    max-width: 100% !important;

  }

  #custom-html-t6 h2,

  #custom-html-t6 h3,

  #custom-html-t6 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t6 h2,

  #custom-html-t6 h3 {

    page-break-after: avoid;

  }

  #custom-html-t6 .navbar {

    display: none;

  }

  #custom-html-t6 .btn > .caret,

  #custom-html-t6 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t6 .label {

    border: 1px solid #000000;

  }

  #custom-html-t6 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t6 .table td,

  #custom-html-t6 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t6 .table-bordered td,

  #custom-html-t6 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-t6 .visible-print {

    display: block !important;

  }

  #custom-html-t6 table.visible-print {

    display: table !important;

  }

  #custom-html-t6 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t6 td.visible-print,

  #custom-html-t6 th.visible-print {

    display: table-cell !important;

  }

  #custom-html-t6 .visible-print-block {

    display: block !important;

  }

  #custom-html-t6 .visible-print-inline {

    display: inline !important;

  }

  #custom-html-t6 .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-t6 .hidden-print {

    display: none !important;

  }

  #custom-html-t6 #main-menu,

  #custom-html-t6 #top-nav,

  #custom-html-t6 .header-lined,

  #custom-html-t6 .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t6 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t6 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t6 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t6 .glyphicon-eur:before,

#custom-html-t6 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t6 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t6 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t6 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t6 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t6 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t6 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t6 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t6 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-t6 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t6 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t6 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t6 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t6 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t6 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t6 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t6 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t6 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t6 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t6 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t6 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t6 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t6 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t6 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t6 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t6 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t6 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t6 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t6 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t6 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t6 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t6 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t6 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t6 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t6 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t6 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t6 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t6 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t6 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t6 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t6 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t6 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t6 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t6 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t6 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t6 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t6 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t6 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t6 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t6 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t6 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t6 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t6 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t6 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t6 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t6 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t6 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t6 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t6 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t6 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t6 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t6 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t6 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t6 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t6 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t6 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t6 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t6 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t6 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t6 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t6 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t6 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t6 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t6 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t6 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t6 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t6 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t6 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t6 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t6 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t6 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t6 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t6 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t6 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t6 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t6 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t6 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t6 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t6 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t6 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t6 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t6 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t6 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t6 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t6 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t6 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t6 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t6 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t6 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t6 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t6 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t6 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t6 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t6 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t6 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t6 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t6 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t6 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t6 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t6 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t6 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t6 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t6 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t6 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t6 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t6 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t6 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t6 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t6 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t6 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t6 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t6 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-t6 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t6 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t6 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t6 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t6 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t6 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t6 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t6 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t6 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t6 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t6 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t6 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t6 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t6 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t6 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t6 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t6 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t6 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t6 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t6 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t6 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t6 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t6 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t6 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t6 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t6 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t6 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t6 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t6 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t6 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-t6 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t6 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t6 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t6 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t6 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t6 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t6 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t6 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t6 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t6 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t6 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t6 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t6 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t6 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t6 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t6 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t6 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t6 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t6 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t6 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t6 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t6 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t6 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t6 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t6 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t6 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t6 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t6 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t6 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t6 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t6 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t6 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t6 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t6 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t6 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t6 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t6 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t6 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t6 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t6 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t6 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t6 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t6 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t6 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t6 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t6 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t6 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t6 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t6 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t6 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t6 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t6 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t6 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t6 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t6 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t6 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t6 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t6 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t6 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t6 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t6 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t6 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t6 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t6 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t6 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t6 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t6 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-t6 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t6 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t6 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t6 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t6 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t6 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t6 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t6 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t6 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t6 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t6 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t6 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t6 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t6 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t6 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t6 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t6 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t6 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t6 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t6 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t6 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t6 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t6 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t6 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t6 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t6 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t6 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t6 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t6 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t6 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t6 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t6 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t6 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t6 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t6 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t6 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t6 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t6 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t6 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t6 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t6 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t6 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t6 :after,

#custom-html-t6 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t6 button,

#custom-html-t6 input,

#custom-html-t6 select,

#custom-html-t6 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t6 a:focus,

#custom-html-t6 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t6 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t6 .carousel-inner > .item > a > img,

#custom-html-t6 .carousel-inner > .item > img,

#custom-html-t6 .img-responsive,

#custom-html-t6 .thumbnail a > img,

#custom-html-t6 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t6 .img-rounded {

  border-radius: 6px;

}

#custom-html-t6 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t6 .img-circle {

  border-radius: 50%;

}

#custom-html-t6 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t6 .sr-only-focusable:active,

#custom-html-t6 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t6 [role=button] {

  cursor: pointer;

}

#custom-html-t6 .h1,

#custom-html-t6 .h2,

#custom-html-t6 .h3,

#custom-html-t6 .h4,

#custom-html-t6 .h5,

#custom-html-t6 .h6,

#custom-html-t6 h1,

#custom-html-t6 h2,

#custom-html-t6 h3,

#custom-html-t6 h4,

#custom-html-t6 h5,

#custom-html-t6 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t6 .h1 .small,

#custom-html-t6 .h1 small,

#custom-html-t6 .h2 .small,

#custom-html-t6 .h2 small,

#custom-html-t6 .h3 .small,

#custom-html-t6 .h3 small,

#custom-html-t6 .h4 .small,

#custom-html-t6 .h4 small,

#custom-html-t6 .h5 .small,

#custom-html-t6 .h5 small,

#custom-html-t6 .h6 .small,

#custom-html-t6 .h6 small,

#custom-html-t6 h1 .small,

#custom-html-t6 h1 small,

#custom-html-t6 h2 .small,

#custom-html-t6 h2 small,

#custom-html-t6 h3 .small,

#custom-html-t6 h3 small,

#custom-html-t6 h4 .small,

#custom-html-t6 h4 small,

#custom-html-t6 h5 .small,

#custom-html-t6 h5 small,

#custom-html-t6 h6 .small,

#custom-html-t6 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t6 .h1,

#custom-html-t6 .h2,

#custom-html-t6 .h3,

#custom-html-t6 h1,

#custom-html-t6 h2,

#custom-html-t6 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t6 .h1 .small,

#custom-html-t6 .h1 small,

#custom-html-t6 .h2 .small,

#custom-html-t6 .h2 small,

#custom-html-t6 .h3 .small,

#custom-html-t6 .h3 small,

#custom-html-t6 h1 .small,

#custom-html-t6 h1 small,

#custom-html-t6 h2 .small,

#custom-html-t6 h2 small,

#custom-html-t6 h3 .small,

#custom-html-t6 h3 small {

  font-size: 65%;

}

#custom-html-t6 .h4,

#custom-html-t6 .h5,

#custom-html-t6 .h6,

#custom-html-t6 h4,

#custom-html-t6 h5,

#custom-html-t6 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t6 .h4 .small,

#custom-html-t6 .h4 small,

#custom-html-t6 .h5 .small,

#custom-html-t6 .h5 small,

#custom-html-t6 .h6 .small,

#custom-html-t6 .h6 small,

#custom-html-t6 h4 .small,

#custom-html-t6 h4 small,

#custom-html-t6 h5 .small,

#custom-html-t6 h5 small,

#custom-html-t6 h6 .small,

#custom-html-t6 h6 small {

  font-size: 75%;

}

#custom-html-t6 .h1,

#custom-html-t6 h1 {

  font-size: 36px;

}

#custom-html-t6 .h2,

#custom-html-t6 h2 {

  font-size: 30px;

}

#custom-html-t6 .h3,

#custom-html-t6 h3 {

  font-size: 24px;

}

#custom-html-t6 .h4,

#custom-html-t6 h4 {

  font-size: 18px;

}

#custom-html-t6 .h5,

#custom-html-t6 h5 {

  font-size: 14px;

}

#custom-html-t6 .h6,

#custom-html-t6 h6 {

  font-size: 12px;

}

#custom-html-t6 p {

  margin: 0 0 10px;

}

#custom-html-t6 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t6 .lead {

    font-size: 21px;

  }

  #custom-html-t6 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t6 .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-t6 .container {

    width: 750px;

  }

  #custom-html-t6 .col-sm-1,

  #custom-html-t6 .col-sm-10,

  #custom-html-t6 .col-sm-11,

  #custom-html-t6 .col-sm-12,

  #custom-html-t6 .col-sm-2,

  #custom-html-t6 .col-sm-3,

  #custom-html-t6 .col-sm-4,

  #custom-html-t6 .col-sm-5,

  #custom-html-t6 .col-sm-6,

  #custom-html-t6 .col-sm-7,

  #custom-html-t6 .col-sm-8,

  #custom-html-t6 .col-sm-9 {

    float: left;

  }

  #custom-html-t6 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t6 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t6 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t6 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t6 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t6 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t6 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t6 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t6 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t6 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t6 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t6 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t6 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t6 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t6 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t6 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t6 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t6 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t6 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t6 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t6 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t6 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-t6 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t6 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t6 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t6 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t6 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t6 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t6 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t6 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t6 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t6 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t6 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t6 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t6 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t6 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t6 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t6 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t6 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t6 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t6 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t6 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t6 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t6 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t6 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t6 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t6 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t6 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t6 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t6 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t6 .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-t6 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t6 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t6 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t6 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t6 .form-inline .input-group .form-control,

  #custom-html-t6 .form-inline .input-group .input-group-addon,

  #custom-html-t6 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t6 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t6 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t6 .form-inline .checkbox,

  #custom-html-t6 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t6 .form-inline .checkbox label,

  #custom-html-t6 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t6 .form-inline .checkbox input[type=checkbox],

  #custom-html-t6 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t6 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t6 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-t6 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-t6 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-t6 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-t6 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-t6 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t6 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t6 .nav-tabs.nav-justified > .active > a,

  #custom-html-t6 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t6 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t6 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t6 .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-t6 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t6 .nav-tabs-justified > .active > a,

  #custom-html-t6 .nav-tabs-justified > .active > a:focus,

  #custom-html-t6 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t6 .navbar {

    border-radius: 4px;

  }

  #custom-html-t6 .navbar-header {

    float: left;

  }

  #custom-html-t6 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t6 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t6 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t6 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t6 .navbar-fixed-top .navbar-collapse,

  #custom-html-t6 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-t6 .container-fluid > .navbar-collapse,

  #custom-html-t6 .container-fluid > .navbar-header,

  #custom-html-t6 .container > .navbar-collapse,

  #custom-html-t6 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-t6 .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-t6 .navbar-fixed-bottom,

  #custom-html-t6 .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-t6 .navbar > .container .navbar-brand,

  #custom-html-t6 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-t6 .navbar-toggle {

    display: none;

  }

  #custom-html-t6 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t6 .navbar-nav > li {

    float: left;

  }

  #custom-html-t6 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-t6 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t6 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t6 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t6 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t6 .navbar-form .input-group .form-control,

  #custom-html-t6 .navbar-form .input-group .input-group-addon,

  #custom-html-t6 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t6 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t6 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t6 .navbar-form .checkbox,

  #custom-html-t6 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t6 .navbar-form .checkbox label,

  #custom-html-t6 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t6 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t6 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t6 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t6 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t6 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-t6 .navbar-left {

    float: left !important;

  }

  #custom-html-t6 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t6 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-t6 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t6 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t6 .modal-sm {

    width: 300px;

  }

  #custom-html-t6 .pull-sm-left {

    float: left;

  }

  #custom-html-t6 .pull-sm-right {

    float: right;

  }

  #custom-html-t6 .text-right-sm {

    text-align: right;

  }

  #custom-html-t6 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t6 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-t6 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t6 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t6 .email-verification .button {

    float: right;

  }

  #custom-html-t6 .email-verification .far,

  #custom-html-t6 .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-t6 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t6 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-t6 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t6 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t6 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t6 .small,

#custom-html-t6 small {

  font-size: 85%;

}

#custom-html-t6 .mark,

#custom-html-t6 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t6 .text-left {

  text-align: left;

}

#custom-html-t6 .text-right {

  text-align: right;

}

#custom-html-t6 .text-center {

  text-align: center;

}

#custom-html-t6 .text-justify {

  text-align: justify;

}

#custom-html-t6 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t6 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t6 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t6 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t6 .text-muted {

  color: #777777;

}

#custom-html-t6 .text-primary {

  color: #000000;

}

#custom-html-t6 a.text-primary:focus,

#custom-html-t6 a.text-primary:hover {

  color: #000000;

}

#custom-html-t6 .text-success {

  color: #3c763d;

}

#custom-html-t6 a.text-success:focus,

#custom-html-t6 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t6 .text-info {

  color: #31708f;

}

#custom-html-t6 a.text-info:focus,

#custom-html-t6 a.text-info:hover {

  color: #000000;

}

#custom-html-t6 .text-warning {

  color: #8a6d3b;

}

#custom-html-t6 a.text-warning:focus,

#custom-html-t6 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t6 .text-danger {

  color: #a94442;

}

#custom-html-t6 a.text-danger:focus,

#custom-html-t6 a.text-danger:hover {

  color: #843534;

}

#custom-html-t6 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t6 a.bg-primary:focus,

#custom-html-t6 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t6 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t6 a.bg-success:focus,

#custom-html-t6 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t6 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t6 a.bg-info:focus,

#custom-html-t6 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t6 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t6 a.bg-warning:focus,

#custom-html-t6 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t6 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t6 a.bg-danger:focus,

#custom-html-t6 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t6 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t6 ol,

#custom-html-t6 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t6 ol ol,

#custom-html-t6 ol ul,

#custom-html-t6 ul ol,

#custom-html-t6 ul ul {

  margin-bottom: 0;

}

#custom-html-t6 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t6 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t6 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t6 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t6 dd,

#custom-html-t6 dt {

  line-height: 1.42857143;

}

#custom-html-t6 dt {

  font-weight: 700;

}

#custom-html-t6 dd {

  margin-left: 0;

}

#custom-html-t6 abbr[data-original-title],

#custom-html-t6 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t6 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t6 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t6 blockquote ol:last-child,

#custom-html-t6 blockquote p:last-child,

#custom-html-t6 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t6 blockquote .small,

#custom-html-t6 blockquote footer,

#custom-html-t6 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-t6 blockquote .small:before,

#custom-html-t6 blockquote footer:before,

#custom-html-t6 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t6 .blockquote-reverse,

#custom-html-t6 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t6 .blockquote-reverse .small:before,

#custom-html-t6 .blockquote-reverse footer:before,

#custom-html-t6 .blockquote-reverse small:before,

#custom-html-t6 blockquote.pull-right .small:before,

#custom-html-t6 blockquote.pull-right footer:before,

#custom-html-t6 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t6 .blockquote-reverse .small:after,

#custom-html-t6 .blockquote-reverse footer:after,

#custom-html-t6 .blockquote-reverse small:after,

#custom-html-t6 blockquote.pull-right .small:after,

#custom-html-t6 blockquote.pull-right footer:after,

#custom-html-t6 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t6 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t6 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t6 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t6 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t6 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t6 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t6 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-t6 .container {

    width: 970px;

  }

  #custom-html-t6 .col-md-1,

  #custom-html-t6 .col-md-10,

  #custom-html-t6 .col-md-11,

  #custom-html-t6 .col-md-12,

  #custom-html-t6 .col-md-2,

  #custom-html-t6 .col-md-3,

  #custom-html-t6 .col-md-4,

  #custom-html-t6 .col-md-5,

  #custom-html-t6 .col-md-6,

  #custom-html-t6 .col-md-7,

  #custom-html-t6 .col-md-8,

  #custom-html-t6 .col-md-9 {

    float: left;

  }

  #custom-html-t6 .col-md-12 {

    width: 100%;

  }

  #custom-html-t6 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t6 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t6 .col-md-9 {

    width: 75%;

  }

  #custom-html-t6 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t6 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t6 .col-md-6 {

    width: 50%;

  }

  #custom-html-t6 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t6 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t6 .col-md-3 {

    width: 25%;

  }

  #custom-html-t6 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t6 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t6 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t6 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t6 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t6 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t6 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t6 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t6 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t6 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t6 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t6 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t6 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t6 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t6 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t6 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t6 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t6 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t6 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t6 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t6 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t6 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t6 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t6 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t6 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-t6 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t6 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t6 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t6 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t6 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t6 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t6 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t6 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t6 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t6 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t6 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t6 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t6 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t6 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t6 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t6 .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-t6 .modal-lg {

    width: 900px;

  }

  #custom-html-t6 .pull-md-left {

    float: left;

  }

  #custom-html-t6 .pull-md-right {

    float: right;

  }

  #custom-html-t6 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t6 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t6 .container {

    width: 1170px;

  }

  #custom-html-t6 .col-lg-1,

  #custom-html-t6 .col-lg-10,

  #custom-html-t6 .col-lg-11,

  #custom-html-t6 .col-lg-12,

  #custom-html-t6 .col-lg-2,

  #custom-html-t6 .col-lg-3,

  #custom-html-t6 .col-lg-4,

  #custom-html-t6 .col-lg-5,

  #custom-html-t6 .col-lg-6,

  #custom-html-t6 .col-lg-7,

  #custom-html-t6 .col-lg-8,

  #custom-html-t6 .col-lg-9 {

    float: left;

  }

  #custom-html-t6 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t6 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t6 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t6 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t6 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t6 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t6 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t6 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t6 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t6 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t6 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t6 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t6 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t6 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t6 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t6 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t6 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t6 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t6 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t6 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t6 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t6 .col-lg-pull-3 {

    right: 25%;


  }

  #custom-html-t6 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t6 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t6 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t6 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t6 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t6 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t6 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t6 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t6 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t6 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t6 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t6 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t6 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t6 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t6 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t6 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t6 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t6 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t6 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t6 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t6 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t6 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t6 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t6 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t6 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t6 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t6 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t6 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t6 .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-t6 .visible-lg {

    display: block !important;

  }

  #custom-html-t6 table.visible-lg {

    display: table !important;

  }

  #custom-html-t6 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t6 td.visible-lg,

  #custom-html-t6 th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-t6 .visible-lg-block {

    display: block !important;

  }

  #custom-html-t6 .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-t6 .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-t6 .hidden-lg {

    display: none !important;

  }

  #custom-html-t6 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t6 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t6 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t6 .col-lg-1,

#custom-html-t6 .col-lg-10,

#custom-html-t6 .col-lg-11,

#custom-html-t6 .col-lg-12,

#custom-html-t6 .col-lg-2,

#custom-html-t6 .col-lg-3,

#custom-html-t6 .col-lg-4,

#custom-html-t6 .col-lg-5,

#custom-html-t6 .col-lg-6,

#custom-html-t6 .col-lg-7,

#custom-html-t6 .col-lg-8,

#custom-html-t6 .col-lg-9,

#custom-html-t6 .col-md-1,

#custom-html-t6 .col-md-10,

#custom-html-t6 .col-md-11,

#custom-html-t6 .col-md-12,

#custom-html-t6 .col-md-2,

#custom-html-t6 .col-md-3,

#custom-html-t6 .col-md-4,

#custom-html-t6 .col-md-5,

#custom-html-t6 .col-md-6,

#custom-html-t6 .col-md-7,

#custom-html-t6 .col-md-8,

#custom-html-t6 .col-md-9,

#custom-html-t6 .col-sm-1,

#custom-html-t6 .col-sm-10,

#custom-html-t6 .col-sm-11,

#custom-html-t6 .col-sm-12,

#custom-html-t6 .col-sm-2,

#custom-html-t6 .col-sm-3,

#custom-html-t6 .col-sm-4,

#custom-html-t6 .col-sm-5,

#custom-html-t6 .col-sm-6,

#custom-html-t6 .col-sm-7,

#custom-html-t6 .col-sm-8,

#custom-html-t6 .col-sm-9,

#custom-html-t6 .col-xs-1,

#custom-html-t6 .col-xs-10,

#custom-html-t6 .col-xs-11,

#custom-html-t6 .col-xs-12,

#custom-html-t6 .col-xs-2,

#custom-html-t6 .col-xs-3,

#custom-html-t6 .col-xs-4,

#custom-html-t6 .col-xs-5,

#custom-html-t6 .col-xs-6,

#custom-html-t6 .col-xs-7,

#custom-html-t6 .col-xs-8,

#custom-html-t6 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t6 .col-xs-1,

#custom-html-t6 .col-xs-10,

#custom-html-t6 .col-xs-11,

#custom-html-t6 .col-xs-12,

#custom-html-t6 .col-xs-2,

#custom-html-t6 .col-xs-3,

#custom-html-t6 .col-xs-4,

#custom-html-t6 .col-xs-5,

#custom-html-t6 .col-xs-6,

#custom-html-t6 .col-xs-7,

#custom-html-t6 .col-xs-8,

#custom-html-t6 .col-xs-9 {

  float: left;

}

#custom-html-t6 .col-xs-12 {

  width: 100%;

}

#custom-html-t6 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t6 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t6 .col-xs-9 {

  width: 75%;

}

#custom-html-t6 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t6 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t6 .col-xs-6 {

  width: 50%;

}

#custom-html-t6 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t6 .col-xs-4 {

  width: 33.33333333%;

}


#custom-html-t6 .col-xs-3 {

  width: 25%;

}

#custom-html-t6 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t6 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t6 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t6 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t6 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t6 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t6 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t6 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t6 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t6 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t6 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t6 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t6 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t6 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t6 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t6 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t6 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t6 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t6 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t6 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t6 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t6 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t6 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t6 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t6 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t6 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t6 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t6 .col-xs-push-0 {

  left: auto;

}

#custom-html-t6 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t6 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t6 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t6 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t6 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t6 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t6 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t6 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t6 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t6 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t6 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t6 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t6 .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-t6 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t6 th {

  text-align: left;

}

#custom-html-t6 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t6 .table > tbody > tr > td,

#custom-html-t6 .table > tbody > tr > th,

#custom-html-t6 .table > tfoot > tr > td,

#custom-html-t6 .table > tfoot > tr > th,

#custom-html-t6 .table > thead > tr > td,

#custom-html-t6 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t6 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t6 .table > caption + thead > tr:first-child > td,

#custom-html-t6 .table > caption + thead > tr:first-child > th,

#custom-html-t6 .table > colgroup + thead > tr:first-child > td,

#custom-html-t6 .table > colgroup + thead > tr:first-child > th,

#custom-html-t6 .table > thead:first-child > tr:first-child > td,

#custom-html-t6 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t6 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t6 .table .table {

  background-color: #ffffff;

}

#custom-html-t6 .table-condensed > tbody > tr > td,

#custom-html-t6 .table-condensed > tbody > tr > th,

#custom-html-t6 .table-condensed > tfoot > tr > td,

#custom-html-t6 .table-condensed > tfoot > tr > th,

#custom-html-t6 .table-condensed > thead > tr > td,

#custom-html-t6 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t6 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t6 .table-bordered > tbody > tr > td,

#custom-html-t6 .table-bordered > tbody > tr > th,

#custom-html-t6 .table-bordered > tfoot > tr > td,

#custom-html-t6 .table-bordered > tfoot > tr > th,

#custom-html-t6 .table-bordered > thead > tr > td,

#custom-html-t6 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t6 .table-bordered > thead > tr > td,

#custom-html-t6 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t6 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t6 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t6 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t6 table td[class*=col-],

#custom-html-t6 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t6 .table > tbody > tr.active > td,

#custom-html-t6 .table > tbody > tr.active > th,

#custom-html-t6 .table > tbody > tr > td.active,

#custom-html-t6 .table > tbody > tr > th.active,

#custom-html-t6 .table > tfoot > tr.active > td,

#custom-html-t6 .table > tfoot > tr.active > th,

#custom-html-t6 .table > tfoot > tr > td.active,

#custom-html-t6 .table > tfoot > tr > th.active,

#custom-html-t6 .table > thead > tr.active > td,

#custom-html-t6 .table > thead > tr.active > th,

#custom-html-t6 .table > thead > tr > td.active,

#custom-html-t6 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t6 .table-hover > tbody > tr.active:hover > td,

#custom-html-t6 .table-hover > tbody > tr.active:hover > th,

#custom-html-t6 .table-hover > tbody > tr:hover > .active,

#custom-html-t6 .table-hover > tbody > tr > td.active:hover,

#custom-html-t6 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t6 .table > tbody > tr.success > td,

#custom-html-t6 .table > tbody > tr.success > th,

#custom-html-t6 .table > tbody > tr > td.success,

#custom-html-t6 .table > tbody > tr > th.success,

#custom-html-t6 .table > tfoot > tr.success > td,

#custom-html-t6 .table > tfoot > tr.success > th,

#custom-html-t6 .table > tfoot > tr > td.success,

#custom-html-t6 .table > tfoot > tr > th.success,

#custom-html-t6 .table > thead > tr.success > td,

#custom-html-t6 .table > thead > tr.success > th,

#custom-html-t6 .table > thead > tr > td.success,

#custom-html-t6 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t6 .table-hover > tbody > tr.success:hover > td,

#custom-html-t6 .table-hover > tbody > tr.success:hover > th,

#custom-html-t6 .table-hover > tbody > tr:hover > .success,

#custom-html-t6 .table-hover > tbody > tr > td.success:hover,

#custom-html-t6 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t6 .table > tbody > tr.info > td,

#custom-html-t6 .table > tbody > tr.info > th,

#custom-html-t6 .table > tbody > tr > td.info,

#custom-html-t6 .table > tbody > tr > th.info,

#custom-html-t6 .table > tfoot > tr.info > td,

#custom-html-t6 .table > tfoot > tr.info > th,

#custom-html-t6 .table > tfoot > tr > td.info,

#custom-html-t6 .table > tfoot > tr > th.info,

#custom-html-t6 .table > thead > tr.info > td,

#custom-html-t6 .table > thead > tr.info > th,

#custom-html-t6 .table > thead > tr > td.info,

#custom-html-t6 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t6 .table-hover > tbody > tr.info:hover > td,

#custom-html-t6 .table-hover > tbody > tr.info:hover > th,

#custom-html-t6 .table-hover > tbody > tr:hover > .info,

#custom-html-t6 .table-hover > tbody > tr > td.info:hover,

#custom-html-t6 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t6 .table > tbody > tr.warning > td,

#custom-html-t6 .table > tbody > tr.warning > th,

#custom-html-t6 .table > tbody > tr > td.warning,

#custom-html-t6 .table > tbody > tr > th.warning,

#custom-html-t6 .table > tfoot > tr.warning > td,

#custom-html-t6 .table > tfoot > tr.warning > th,

#custom-html-t6 .table > tfoot > tr > td.warning,

#custom-html-t6 .table > tfoot > tr > th.warning,

#custom-html-t6 .table > thead > tr.warning > td,

#custom-html-t6 .table > thead > tr.warning > th,

#custom-html-t6 .table > thead > tr > td.warning,

#custom-html-t6 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t6 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t6 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t6 .table-hover > tbody > tr:hover > .warning,

#custom-html-t6 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t6 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t6 .table > tbody > tr.danger > td,

#custom-html-t6 .table > tbody > tr.danger > th,

#custom-html-t6 .table > tbody > tr > td.danger,

#custom-html-t6 .table > tbody > tr > th.danger,

#custom-html-t6 .table > tfoot > tr.danger > td,

#custom-html-t6 .table > tfoot > tr.danger > th,

#custom-html-t6 .table > tfoot > tr > td.danger,

#custom-html-t6 .table > tfoot > tr > th.danger,

#custom-html-t6 .table > thead > tr.danger > td,

#custom-html-t6 .table > thead > tr.danger > th,

#custom-html-t6 .table > thead > tr > td.danger,

#custom-html-t6 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t6 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t6 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t6 .table-hover > tbody > tr:hover > .danger,

#custom-html-t6 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t6 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t6 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t6 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t6 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t6 .table-responsive > .table > tbody > tr > td,

  #custom-html-t6 .table-responsive > .table > tbody > tr > th,

  #custom-html-t6 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t6 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t6 .table-responsive > .table > thead > tr > td,

  #custom-html-t6 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t6 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t6 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t6 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t6 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t6 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t6 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t6 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t6 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t6 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t6 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-t6 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t6 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t6 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t6 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t6 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t6 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t6 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-t6 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t6 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t6 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t6 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-t6 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t6 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t6 input[type=file] {

  display: block;

}

#custom-html-t6 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-t6 select[multiple],

#custom-html-t6 select[size] {

  height: auto;

}

#custom-html-t6 input[type=checkbox]:focus,

#custom-html-t6 input[type=file]:focus,

#custom-html-t6 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t6 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t6 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t6 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t6 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t6 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t6 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t6 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t6 .form-control[disabled],

#custom-html-t6 .form-control[readonly],

#custom-html-t6 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t6 .form-control[disabled],

#custom-html-t6 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t6 textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t6 input[type=date].form-control,

  #custom-html-t6 input[type=datetime-local].form-control,

  #custom-html-t6 input[type=month].form-control,

  #custom-html-t6 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t6 .input-group-sm input[type=date],

  #custom-html-t6 .input-group-sm input[type=datetime-local],

  #custom-html-t6 .input-group-sm input[type=month],

  #custom-html-t6 .input-group-sm input[type=time],

  #custom-html-t6 input[type=date].input-sm,

  #custom-html-t6 input[type=datetime-local].input-sm,

  #custom-html-t6 input[type=month].input-sm,

  #custom-html-t6 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t6 .input-group-lg input[type=date],

  #custom-html-t6 .input-group-lg input[type=datetime-local],

  #custom-html-t6 .input-group-lg input[type=month],

  #custom-html-t6 .input-group-lg input[type=time],

  #custom-html-t6 input[type=date].input-lg,

  #custom-html-t6 input[type=datetime-local].input-lg,

  #custom-html-t6 input[type=month].input-lg,

  #custom-html-t6 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t6 .form-group {

  margin-bottom: 15px;

}

#custom-html-t6 .checkbox,

#custom-html-t6 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t6 .checkbox label,

#custom-html-t6 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t6 .checkbox input[type=checkbox],

#custom-html-t6 .checkbox-inline input[type=checkbox],

#custom-html-t6 .radio input[type=radio],

#custom-html-t6 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t6 .checkbox + .checkbox,

#custom-html-t6 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t6 .checkbox-inline,

#custom-html-t6 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t6 .checkbox-inline + .checkbox-inline,

#custom-html-t6 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t6 fieldset[disabled] input[type=checkbox],

#custom-html-t6 fieldset[disabled] input[type=radio],

#custom-html-t6 input[type=checkbox].disabled,

#custom-html-t6 input[type=checkbox][disabled],

#custom-html-t6 input[type=radio].disabled,

#custom-html-t6 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t6 .checkbox-inline.disabled,

#custom-html-t6 .radio-inline.disabled,

#custom-html-t6 fieldset[disabled] .checkbox-inline,

#custom-html-t6 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t6 .checkbox.disabled label,

#custom-html-t6 .radio.disabled label,

#custom-html-t6 fieldset[disabled] .checkbox label,

#custom-html-t6 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t6 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t6 .form-control-static.input-lg,

#custom-html-t6 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t6 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t6 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t6 select[multiple].input-sm,

#custom-html-t6 textarea.input-sm {

  height: auto;

}

#custom-html-t6 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t6 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t6 .form-group-sm select[multiple].form-control,

#custom-html-t6 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t6 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t6 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t6 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t6 select[multiple].input-lg,

#custom-html-t6 textarea.input-lg {

  height: auto;

}

#custom-html-t6 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t6 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}


#custom-html-t6 .form-group-lg select[multiple].form-control,

#custom-html-t6 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t6 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t6 .has-feedback {

  position: relative;

}

#custom-html-t6 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t6 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t6 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t6 .input-group-lg + .form-control-feedback,

#custom-html-t6 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t6 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t6 .input-group-sm + .form-control-feedback,

#custom-html-t6 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t6 .has-success .checkbox,

#custom-html-t6 .has-success .checkbox-inline,

#custom-html-t6 .has-success .control-label,

#custom-html-t6 .has-success .help-block,

#custom-html-t6 .has-success .radio,

#custom-html-t6 .has-success .radio-inline,

#custom-html-t6 .has-success.checkbox label,

#custom-html-t6 .has-success.checkbox-inline label,

#custom-html-t6 .has-success.radio label,

#custom-html-t6 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t6 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t6 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t6 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t6 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t6 .has-warning .checkbox,

#custom-html-t6 .has-warning .checkbox-inline,

#custom-html-t6 .has-warning .control-label,

#custom-html-t6 .has-warning .help-block,

#custom-html-t6 .has-warning .radio,

#custom-html-t6 .has-warning .radio-inline,

#custom-html-t6 .has-warning.checkbox label,

#custom-html-t6 .has-warning.checkbox-inline label,

#custom-html-t6 .has-warning.radio label,

#custom-html-t6 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t6 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t6 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t6 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t6 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t6 .has-error .checkbox,

#custom-html-t6 .has-error .checkbox-inline,

#custom-html-t6 .has-error .control-label,

#custom-html-t6 .has-error .help-block,

#custom-html-t6 .has-error .radio,

#custom-html-t6 .has-error .radio-inline,

#custom-html-t6 .has-error.checkbox label,

#custom-html-t6 .has-error.checkbox-inline label,

#custom-html-t6 .has-error.radio label,

#custom-html-t6 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t6 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t6 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t6 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t6 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t6 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t6 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t6 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-t6 .form-horizontal .checkbox,

#custom-html-t6 .form-horizontal .checkbox-inline,

#custom-html-t6 .form-horizontal .radio,

#custom-html-t6 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t6 .form-horizontal .checkbox,

#custom-html-t6 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t6 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t6 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-t6 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-t6 .btn.active.focus,

#custom-html-t6 .btn.active:focus,

#custom-html-t6 .btn.focus,

#custom-html-t6 .btn:active.focus,

#custom-html-t6 .btn:active:focus,

#custom-html-t6 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t6 .btn.focus,

#custom-html-t6 .btn:focus,

#custom-html-t6 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t6 .btn.active,

#custom-html-t6 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t6 .btn.disabled,

#custom-html-t6 .btn[disabled],

#custom-html-t6 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t6 a.btn.disabled,

#custom-html-t6 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t6 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t6 .btn-default.focus,

#custom-html-t6 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t6 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t6 .btn-default.active,

#custom-html-t6 .btn-default:active,

#custom-html-t6 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-t6 .btn-default.active.focus,

#custom-html-t6 .btn-default.active:focus,

#custom-html-t6 .btn-default.active:hover,

#custom-html-t6 .btn-default:active.focus,

#custom-html-t6 .btn-default:active:focus,

#custom-html-t6 .btn-default:active:hover,

#custom-html-t6 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t6 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t6 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t6 .btn-default.disabled.focus,

#custom-html-t6 .btn-default.disabled:focus,

#custom-html-t6 .btn-default.disabled:hover,

#custom-html-t6 .btn-default[disabled].focus,

#custom-html-t6 .btn-default[disabled]:focus,

#custom-html-t6 .btn-default[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-default.focus,

#custom-html-t6 fieldset[disabled] .btn-default:focus,

#custom-html-t6 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t6 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t6 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t6 .btn-primary.focus,

#custom-html-t6 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t6 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t6 .btn-primary.active,

#custom-html-t6 .btn-primary:active,

#custom-html-t6 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-t6 .btn-primary.active.focus,

#custom-html-t6 .btn-primary.active:focus,

#custom-html-t6 .btn-primary.active:hover,

#custom-html-t6 .btn-primary:active.focus,

#custom-html-t6 .btn-primary:active:focus,

#custom-html-t6 .btn-primary:active:hover,

#custom-html-t6 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t6 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t6 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t6 .btn-primary.disabled.focus,

#custom-html-t6 .btn-primary.disabled:focus,

#custom-html-t6 .btn-primary.disabled:hover,

#custom-html-t6 .btn-primary[disabled].focus,

#custom-html-t6 .btn-primary[disabled]:focus,

#custom-html-t6 .btn-primary[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-primary.focus,

#custom-html-t6 fieldset[disabled] .btn-primary:focus,

#custom-html-t6 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t6 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t6 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t6 .btn-success.focus,

#custom-html-t6 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t6 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t6 .btn-success.active,

#custom-html-t6 .btn-success:active,

#custom-html-t6 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-t6 .btn-success.active.focus,

#custom-html-t6 .btn-success.active:focus,

#custom-html-t6 .btn-success.active:hover,

#custom-html-t6 .btn-success:active.focus,

#custom-html-t6 .btn-success:active:focus,

#custom-html-t6 .btn-success:active:hover,

#custom-html-t6 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t6 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t6 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t6 .btn-success.disabled.focus,

#custom-html-t6 .btn-success.disabled:focus,

#custom-html-t6 .btn-success.disabled:hover,

#custom-html-t6 .btn-success[disabled].focus,

#custom-html-t6 .btn-success[disabled]:focus,

#custom-html-t6 .btn-success[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-success.focus,

#custom-html-t6 fieldset[disabled] .btn-success:focus,

#custom-html-t6 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t6 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t6 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t6 .btn-info.focus,

#custom-html-t6 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t6 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t6 .btn-info.active,

#custom-html-t6 .btn-info:active,

#custom-html-t6 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-t6 .btn-info.active.focus,

#custom-html-t6 .btn-info.active:focus,

#custom-html-t6 .btn-info.active:hover,

#custom-html-t6 .btn-info:active.focus,

#custom-html-t6 .btn-info:active:focus,

#custom-html-t6 .btn-info:active:hover,

#custom-html-t6 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t6 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t6 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t6 .btn-info.disabled.focus,

#custom-html-t6 .btn-info.disabled:focus,

#custom-html-t6 .btn-info.disabled:hover,

#custom-html-t6 .btn-info[disabled].focus,


#custom-html-t6 .btn-info[disabled]:focus,

#custom-html-t6 .btn-info[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-info.focus,

#custom-html-t6 fieldset[disabled] .btn-info:focus,

#custom-html-t6 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t6 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t6 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t6 .btn-warning.focus,

#custom-html-t6 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t6 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t6 .btn-warning.active,

#custom-html-t6 .btn-warning:active,

#custom-html-t6 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-t6 .btn-warning.active.focus,

#custom-html-t6 .btn-warning.active:focus,

#custom-html-t6 .btn-warning.active:hover,

#custom-html-t6 .btn-warning:active.focus,

#custom-html-t6 .btn-warning:active:focus,

#custom-html-t6 .btn-warning:active:hover,

#custom-html-t6 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t6 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t6 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t6 .btn-warning.disabled.focus,

#custom-html-t6 .btn-warning.disabled:focus,

#custom-html-t6 .btn-warning.disabled:hover,

#custom-html-t6 .btn-warning[disabled].focus,

#custom-html-t6 .btn-warning[disabled]:focus,

#custom-html-t6 .btn-warning[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-warning.focus,

#custom-html-t6 fieldset[disabled] .btn-warning:focus,

#custom-html-t6 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t6 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t6 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t6 .btn-danger.focus,

#custom-html-t6 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t6 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t6 .btn-danger.active,

#custom-html-t6 .btn-danger:active,

#custom-html-t6 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-t6 .btn-danger.active.focus,

#custom-html-t6 .btn-danger.active:focus,

#custom-html-t6 .btn-danger.active:hover,

#custom-html-t6 .btn-danger:active.focus,

#custom-html-t6 .btn-danger:active:focus,

#custom-html-t6 .btn-danger:active:hover,

#custom-html-t6 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t6 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t6 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t6 .btn-danger.disabled.focus,

#custom-html-t6 .btn-danger.disabled:focus,

#custom-html-t6 .btn-danger.disabled:hover,

#custom-html-t6 .btn-danger[disabled].focus,

#custom-html-t6 .btn-danger[disabled]:focus,

#custom-html-t6 .btn-danger[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-danger.focus,

#custom-html-t6 fieldset[disabled] .btn-danger:focus,

#custom-html-t6 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t6 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t6 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t6 .btn-link,

#custom-html-t6 .btn-link.active,

#custom-html-t6 .btn-link:active,

#custom-html-t6 .btn-link[disabled],

#custom-html-t6 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t6 .btn-link,

#custom-html-t6 .btn-link:active,

#custom-html-t6 .btn-link:focus,

#custom-html-t6 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t6 .btn-link:focus,

#custom-html-t6 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t6 .btn-link[disabled]:focus,

#custom-html-t6 .btn-link[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-link:focus,

#custom-html-t6 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t6 .btn-group-lg > .btn,

#custom-html-t6 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t6 .btn-group-sm > .btn,

#custom-html-t6 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t6 .btn-group-xs > .btn,

#custom-html-t6 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t6 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t6 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t6 input[type=button].btn-block,

#custom-html-t6 input[type=reset].btn-block,

#custom-html-t6 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t6 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t6 .fade.in {

  opacity: 1;

}

#custom-html-t6 .collapse {

  display: none;

}

#custom-html-t6 .collapse.in {

  display: block;

}

#custom-html-t6 tr.collapse.in {

  display: table-row;

}

#custom-html-t6 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t6 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t6 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t6 .dropdown,

#custom-html-t6 .dropup {

  position: relative;

}

#custom-html-t6 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t6 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t6 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t6 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t6 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-t6 .dropdown-menu > li > a:focus,

#custom-html-t6 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t6 .dropdown-menu > .active > a,

#custom-html-t6 .dropdown-menu > .active > a:focus,

#custom-html-t6 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-t6 .dropdown-menu > .disabled > a,

#custom-html-t6 .dropdown-menu > .disabled > a:focus,

#custom-html-t6 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t6 .dropdown-menu > .disabled > a:focus,

#custom-html-t6 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t6 .open > .dropdown-menu {

  display: block;

}

#custom-html-t6 .open > a {

  outline: 0;

}

#custom-html-t6 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t6 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t6 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t6 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t6 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t6 .dropup .caret,

#custom-html-t6 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t6 .dropup .dropdown-menu,

#custom-html-t6 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-t6 .btn-group,

#custom-html-t6 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t6 .btn-group-vertical > .btn,

#custom-html-t6 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t6 .btn-group-vertical > .btn.active,

#custom-html-t6 .btn-group-vertical > .btn:active,

#custom-html-t6 .btn-group-vertical > .btn:focus,

#custom-html-t6 .btn-group-vertical > .btn:hover,

#custom-html-t6 .btn-group > .btn.active,

#custom-html-t6 .btn-group > .btn:active,

#custom-html-t6 .btn-group > .btn:focus,

#custom-html-t6 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t6 .btn-group .btn + .btn,

#custom-html-t6 .btn-group .btn + .btn-group,

#custom-html-t6 .btn-group .btn-group + .btn,

#custom-html-t6 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t6 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t6 .btn-toolbar .btn,

#custom-html-t6 .btn-toolbar .btn-group,

#custom-html-t6 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t6 .btn-toolbar > .btn,

#custom-html-t6 .btn-toolbar > .btn-group,

#custom-html-t6 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t6 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t6 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t6 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t6 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t6 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t6 .btn-group > .btn-group {

  float: left;

}

#custom-html-t6 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t6 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t6 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t6 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t6 .btn-group .dropdown-toggle:active,

#custom-html-t6 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t6 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t6 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t6 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t6 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t6 .btn .caret {

  margin-left: 0;

}

#custom-html-t6 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t6 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t6 .btn-group-vertical > .btn,

#custom-html-t6 .btn-group-vertical > .btn-group,

#custom-html-t6 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t6 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t6 .btn-group-vertical > .btn + .btn,

#custom-html-t6 .btn-group-vertical > .btn + .btn-group,

#custom-html-t6 .btn-group-vertical > .btn-group + .btn,

#custom-html-t6 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t6 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t6 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t6 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t6 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t6 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t6 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t6 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t6 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t6 .btn-group-justified > .btn,

#custom-html-t6 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t6 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t6 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t6 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t6 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t6 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t6 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t6 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t6 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t6 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t6 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t6 .input-group-lg > .form-control,

#custom-html-t6 .input-group-lg > .input-group-addon,

#custom-html-t6 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t6 select.input-group-lg > .form-control,

#custom-html-t6 select.input-group-lg > .input-group-addon,

#custom-html-t6 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t6 select[multiple].input-group-lg > .form-control,

#custom-html-t6 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t6 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t6 textarea.input-group-lg > .form-control,

#custom-html-t6 textarea.input-group-lg > .input-group-addon,

#custom-html-t6 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t6 .input-group-sm > .form-control,

#custom-html-t6 .input-group-sm > .input-group-addon,

#custom-html-t6 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t6 select.input-group-sm > .form-control,

#custom-html-t6 select.input-group-sm > .input-group-addon,

#custom-html-t6 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t6 select[multiple].input-group-sm > .form-control,

#custom-html-t6 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t6 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t6 textarea.input-group-sm > .form-control,

#custom-html-t6 textarea.input-group-sm > .input-group-addon,

#custom-html-t6 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t6 .input-group .form-control,

#custom-html-t6 .input-group-addon,

#custom-html-t6 .input-group-btn {

  display: table-cell;

}

#custom-html-t6 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t6 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t6 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t6 .input-group-addon,

#custom-html-t6 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t6 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t6 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t6 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t6 .input-group-addon input[type=checkbox],

#custom-html-t6 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t6 .input-group .form-control:first-child,

#custom-html-t6 .input-group-addon:first-child,

#custom-html-t6 .input-group-btn:first-child > .btn,

#custom-html-t6 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t6 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t6 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t6 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t6 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t6 .input-group .form-control:last-child,

#custom-html-t6 .input-group-addon:last-child,

#custom-html-t6 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t6 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t6 .input-group-btn:last-child > .btn,

#custom-html-t6 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t6 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t6 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t6 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t6 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t6 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t6 .input-group-btn > .btn:active,

#custom-html-t6 .input-group-btn > .btn:focus,

#custom-html-t6 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t6 .input-group-btn:first-child > .btn,

#custom-html-t6 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t6 .input-group-btn:last-child > .btn,

#custom-html-t6 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t6 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t6 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t6 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t6 .nav > li > a:focus,

#custom-html-t6 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t6 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t6 .nav > li.disabled > a:focus,

#custom-html-t6 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t6 .nav .open > a,

#custom-html-t6 .nav .open > a:focus,

#custom-html-t6 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t6 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t6 .nav > li > a > img {

  max-width: none;

}

#custom-html-t6 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t6 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t6 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t6 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t6 .nav-tabs > li.active > a,

#custom-html-t6 .nav-tabs > li.active > a:focus,

#custom-html-t6 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t6 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t6 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t6 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t6 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t6 .nav-tabs.nav-justified > .active > a,

#custom-html-t6 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t6 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t6 .nav-pills > li {

  float: left;

}

#custom-html-t6 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t6 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t6 .nav-pills > li.active > a,

#custom-html-t6 .nav-pills > li.active > a:focus,

#custom-html-t6 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t6 .nav-stacked > li {

  float: none;

}

#custom-html-t6 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t6 .nav-justified {

  width: 100%;

}

#custom-html-t6 .nav-justified > li {

  float: none;

}

#custom-html-t6 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t6 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t6 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t6 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t6 .nav-tabs-justified > .active > a,

#custom-html-t6 .nav-tabs-justified > .active > a:focus,

#custom-html-t6 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t6 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t6 .tab-content > .active {

  display: block;

}

#custom-html-t6 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t6 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-t6 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t6 .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-t6 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t6 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t6 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t6 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t6 .container-fluid > .navbar-collapse,

#custom-html-t6 .container-fluid > .navbar-header,

#custom-html-t6 .container > .navbar-collapse,

#custom-html-t6 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t6 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-t6 .navbar-fixed-bottom,

#custom-html-t6 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-t6 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t6 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t6 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t6 .navbar-brand:focus,

#custom-html-t6 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t6 .navbar-brand > img {

  display: block;

}

#custom-html-t6 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t6 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t6 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t6 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-t6 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t6 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t6 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t6 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t6 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t6 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t6 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t6 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-t6 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t6 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-t6 .visible-xs {

    display: block !important;

  }

  #custom-html-t6 table.visible-xs {

    display: table !important;

  }

  #custom-html-t6 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t6 td.visible-xs,

  #custom-html-t6 th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-t6 .visible-xs-block {

    display: block !important;

  }

  #custom-html-t6 .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-t6 .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-t6 .hidden-xs {

    display: none !important;

  }

  #custom-html-t6 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t6 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-t6 section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-t6 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t6 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t6 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t6 .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-t6 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t6 .tiles .tile:nth-child(1),

  #custom-html-t6 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-t6 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t6 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t6 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-t6 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t6 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t6 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-t6 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-t6 .promo-banner form {

    text-align: center;

  }

}

#custom-html-t6 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t6 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t6 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t6 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t6 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t6 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t6 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t6 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t6 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t6 .navbar-default .navbar-brand:focus,

#custom-html-t6 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t6 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t6 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t6 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t6 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t6 .navbar-default .navbar-nav > .active > a,

#custom-html-t6 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t6 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t6 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t6 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t6 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t6 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t6 .navbar-default .navbar-toggle:focus,

#custom-html-t6 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t6 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t6 .navbar-default .navbar-collapse,

#custom-html-t6 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t6 .navbar-default .navbar-nav > .open > a,

#custom-html-t6 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t6 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t6 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t6 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t6 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t6 .navbar-default .btn-link:focus,

#custom-html-t6 .navbar-default .btn-link:hover {

  color: #333333;

}


#custom-html-t6 .navbar-default .btn-link[disabled]:focus,

#custom-html-t6 .navbar-default .btn-link[disabled]:hover,

#custom-html-t6 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t6 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t6 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t6 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t6 .navbar-inverse .navbar-brand:focus,

#custom-html-t6 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t6 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t6 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t6 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t6 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t6 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t6 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t6 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t6 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t6 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t6 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t6 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t6 .navbar-inverse .navbar-toggle:focus,

#custom-html-t6 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t6 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t6 .navbar-inverse .navbar-collapse,

#custom-html-t6 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t6 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t6 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t6 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t6 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t6 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t6 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t6 .navbar-inverse .btn-link:focus,

#custom-html-t6 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t6 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t6 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t6 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t6 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t6 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t6 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t6 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t6 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t6 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-t6 .pagination > li {

  display: inline;

}

#custom-html-t6 .pagination > li > a,

#custom-html-t6 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t6 .pagination > li:first-child > a,

#custom-html-t6 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t6 .pagination > li:last-child > a,

#custom-html-t6 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t6 .pagination > li > a:focus,

#custom-html-t6 .pagination > li > a:hover,

#custom-html-t6 .pagination > li > span:focus,

#custom-html-t6 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t6 .pagination > .active > a,

#custom-html-t6 .pagination > .active > a:focus,

#custom-html-t6 .pagination > .active > a:hover,

#custom-html-t6 .pagination > .active > span,

#custom-html-t6 .pagination > .active > span:focus,

#custom-html-t6 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t6 .pagination > .disabled > a,

#custom-html-t6 .pagination > .disabled > a:focus,

#custom-html-t6 .pagination > .disabled > a:hover,

#custom-html-t6 .pagination > .disabled > span,

#custom-html-t6 .pagination > .disabled > span:focus,

#custom-html-t6 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t6 .pagination-lg > li > a,

#custom-html-t6 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t6 .pagination-lg > li:first-child > a,

#custom-html-t6 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t6 .pagination-lg > li:last-child > a,

#custom-html-t6 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t6 .pagination-sm > li > a,

#custom-html-t6 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t6 .pagination-sm > li:first-child > a,

#custom-html-t6 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t6 .pagination-sm > li:last-child > a,

#custom-html-t6 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t6 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t6 .pager li {

  display: inline;

}

#custom-html-t6 .pager li > a,

#custom-html-t6 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t6 .pager li > a:focus,

#custom-html-t6 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t6 .pager .next > a,

#custom-html-t6 .pager .next > span {

  float: right;

}

#custom-html-t6 .pager .previous > a,

#custom-html-t6 .pager .previous > span {

  float: left;

}

#custom-html-t6 .pager .disabled > a,

#custom-html-t6 .pager .disabled > a:focus,

#custom-html-t6 .pager .disabled > a:hover,

#custom-html-t6 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t6 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-t6 a.label:focus,

#custom-html-t6 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t6 .label:empty {

  display: none;

}

#custom-html-t6 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t6 .label-default {

  background-color: #777777;

}

#custom-html-t6 .label-default[href]:focus,

#custom-html-t6 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t6 .label-primary {

  background-color: #337ab7;

}

#custom-html-t6 .label-primary[href]:focus,

#custom-html-t6 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t6 .label-success {

  background-color: #5cb85c;

}

#custom-html-t6 .label-success[href]:focus,

#custom-html-t6 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t6 .label-info {

  background-color: #5bc0de;

}

#custom-html-t6 .label-info[href]:focus,

#custom-html-t6 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t6 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t6 .label-warning[href]:focus,

#custom-html-t6 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t6 .label-danger {

  background-color: #d9534f;

}

#custom-html-t6 .label-danger[href]:focus,

#custom-html-t6 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t6 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t6 .badge:empty {

  display: none;

}

#custom-html-t6 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t6 .btn-group-xs > .btn .badge,

#custom-html-t6 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t6 a.badge:focus,

#custom-html-t6 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t6 .list-group-item.active > .badge,

#custom-html-t6 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t6 .list-group-item > .badge {

  float: right;

}

#custom-html-t6 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t6 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t6 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t6 .jumbotron .h1,

#custom-html-t6 .jumbotron h1 {

  color: inherit;

}

#custom-html-t6 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t6 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t6 .container .jumbotron,

#custom-html-t6 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t6 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t6 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t6 .container .jumbotron,

  #custom-html-t6 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t6 .jumbotron .h1,

  #custom-html-t6 .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-t6 .carousel-control .glyphicon-chevron-left,

  #custom-html-t6 .carousel-control .glyphicon-chevron-right,

  #custom-html-t6 .carousel-control .icon-next,

  #custom-html-t6 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t6 .carousel-control .glyphicon-chevron-left,

  #custom-html-t6 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t6 .carousel-control .glyphicon-chevron-right,

  #custom-html-t6 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t6 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t6 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t6 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t6 .thumbnail a > img,

#custom-html-t6 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t6 a.thumbnail.active,

#custom-html-t6 a.thumbnail:focus,

#custom-html-t6 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t6 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t6 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t6 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t6 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t6 .alert > p,

#custom-html-t6 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t6 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t6 .alert-dismissable,

#custom-html-t6 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t6 .alert-dismissable .close,

#custom-html-t6 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t6 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t6 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-t6 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t6 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t6 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t6 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t6 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t6 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t6 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t6 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t6 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t6 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t6 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t6 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t6 .progress-bar-striped,

#custom-html-t6 .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t6 .progress-bar.active,

#custom-html-t6 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t6 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t6 .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t6 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t6 .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t6 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t6 .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t6 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t6 .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t6 .media {

  margin-top: 15px;

}

#custom-html-t6 .media:first-child {

  margin-top: 0;

}

#custom-html-t6 .media,

#custom-html-t6 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t6 .media-body {

  width: 10000px;

}

#custom-html-t6 .media-object {

  display: block;

}

#custom-html-t6 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t6 .media-right,

#custom-html-t6 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t6 .media-left,

#custom-html-t6 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t6 .media-body,

#custom-html-t6 .media-left,

#custom-html-t6 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t6 .media-middle {

  vertical-align: middle;

}

#custom-html-t6 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t6 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t6 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t6 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-t6 .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-t6 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t6 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t6 a.list-group-item,

#custom-html-t6 button.list-group-item {

  color: #555555;

}

#custom-html-t6 a.list-group-item .list-group-item-heading,

#custom-html-t6 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t6 a.list-group-item:focus,

#custom-html-t6 a.list-group-item:hover,

#custom-html-t6 button.list-group-item:focus,

#custom-html-t6 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t6 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t6 .list-group-item.disabled,

#custom-html-t6 .list-group-item.disabled:focus,

#custom-html-t6 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t6 .list-group-item.disabled .list-group-item-heading,

#custom-html-t6 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t6 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t6 .list-group-item.disabled .list-group-item-text,

#custom-html-t6 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t6 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t6 .list-group-item.active,

#custom-html-t6 .list-group-item.active:focus,

#custom-html-t6 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t6 .list-group-item.active .list-group-item-heading,

#custom-html-t6 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t6 .list-group-item.active .list-group-item-heading > small,

#custom-html-t6 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t6 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t6 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t6 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t6 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t6 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t6 .list-group-item.active .list-group-item-text,

#custom-html-t6 .list-group-item.active:focus .list-group-item-text,

#custom-html-t6 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t6 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t6 a.list-group-item-success,

#custom-html-t6 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t6 a.list-group-item-success .list-group-item-heading,

#custom-html-t6 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t6 a.list-group-item-success:focus,

#custom-html-t6 a.list-group-item-success:hover,

#custom-html-t6 button.list-group-item-success:focus,

#custom-html-t6 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t6 a.list-group-item-success.active,

#custom-html-t6 a.list-group-item-success.active:focus,

#custom-html-t6 a.list-group-item-success.active:hover,

#custom-html-t6 button.list-group-item-success.active,

#custom-html-t6 button.list-group-item-success.active:focus,

#custom-html-t6 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t6 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t6 a.list-group-item-info,

#custom-html-t6 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t6 a.list-group-item-info .list-group-item-heading,

#custom-html-t6 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t6 a.list-group-item-info:focus,

#custom-html-t6 a.list-group-item-info:hover,

#custom-html-t6 button.list-group-item-info:focus,

#custom-html-t6 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t6 a.list-group-item-info.active,

#custom-html-t6 a.list-group-item-info.active:focus,

#custom-html-t6 a.list-group-item-info.active:hover,

#custom-html-t6 button.list-group-item-info.active,

#custom-html-t6 button.list-group-item-info.active:focus,

#custom-html-t6 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t6 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t6 a.list-group-item-warning,

#custom-html-t6 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t6 a.list-group-item-warning .list-group-item-heading,

#custom-html-t6 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t6 a.list-group-item-warning:focus,

#custom-html-t6 a.list-group-item-warning:hover,

#custom-html-t6 button.list-group-item-warning:focus,

#custom-html-t6 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t6 a.list-group-item-warning.active,

#custom-html-t6 a.list-group-item-warning.active:focus,

#custom-html-t6 a.list-group-item-warning.active:hover,

#custom-html-t6 button.list-group-item-warning.active,

#custom-html-t6 button.list-group-item-warning.active:focus,

#custom-html-t6 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t6 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t6 a.list-group-item-danger,

#custom-html-t6 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t6 a.list-group-item-danger .list-group-item-heading,

#custom-html-t6 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t6 a.list-group-item-danger:focus,

#custom-html-t6 a.list-group-item-danger:hover,

#custom-html-t6 button.list-group-item-danger:focus,

#custom-html-t6 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t6 a.list-group-item-danger.active,

#custom-html-t6 a.list-group-item-danger.active:focus,

#custom-html-t6 a.list-group-item-danger.active:hover,

#custom-html-t6 button.list-group-item-danger.active,

#custom-html-t6 button.list-group-item-danger.active:focus,

#custom-html-t6 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t6 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t6 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t6 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-t6 .panel-body {

  padding: 10px 15px;

}

#custom-html-t6 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t6 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t6 .panel-title > .small,

#custom-html-t6 .panel-title > .small > a,

#custom-html-t6 .panel-title > a,

#custom-html-t6 .panel-title > small,

#custom-html-t6 .panel-title > small > a {

  color: inherit;

}

#custom-html-t6 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t6 .panel > .list-group,

#custom-html-t6 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t6 .panel > .list-group .list-group-item,

#custom-html-t6 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t6 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t6 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t6 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t6 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t6 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t6 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t6 .panel > .panel-collapse > .table,

#custom-html-t6 .panel > .table,

#custom-html-t6 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t6 .panel > .panel-collapse > .table caption,

#custom-html-t6 .panel > .table caption,

#custom-html-t6 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t6 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t6 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t6 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t6 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t6 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t6 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t6 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t6 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t6 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t6 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t6 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t6 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t6 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t6 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t6 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t6 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t6 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t6 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t6 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t6 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t6 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t6 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t6 .panel > .panel-body + .table,

#custom-html-t6 .panel > .panel-body + .table-responsive,

#custom-html-t6 .panel > .table + .panel-body,

#custom-html-t6 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t6 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t6 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t6 .panel > .table-bordered,

#custom-html-t6 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t6 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t6 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t6 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t6 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t6 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t6 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t6 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t6 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t6 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t6 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t6 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t6 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t6 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t6 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t6 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t6 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t6 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t6 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t6 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t6 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t6 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t6 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t6 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t6 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t6 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-t6 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t6 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t6 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t6 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t6 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t6 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t6 .panel-default {

  border-color: #dddddd;

}

#custom-html-t6 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t6 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t6 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t6 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t6 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t6 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t6 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t6 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t6 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t6 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t6 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t6 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t6 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t6 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-t6 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t6 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t6 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t6 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t6 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t6 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t6 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t6 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t6 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t6 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t6 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t6 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t6 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t6 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t6 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t6 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t6 .embed-responsive .embed-responsive-item,

#custom-html-t6 .embed-responsive embed,

#custom-html-t6 .embed-responsive iframe,

#custom-html-t6 .embed-responsive object,

#custom-html-t6 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t6 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t6 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t6 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t6 .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t6 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t6 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t6 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t6 .close:focus,

#custom-html-t6 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t6 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t6 .modal-open {

  overflow: hidden;

}

#custom-html-t6 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t6 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t6 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t6 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t6 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t6 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t6 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t6 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t6 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t6 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t6 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t6 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t6 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t6 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t6 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t6 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t6 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t6 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-t6 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t6 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t6 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t6 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t6 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t6 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t6 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t6 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t6 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t6 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t6 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t6 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t6 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t6 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t6 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t6 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t6 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t6 .popover.top {

  margin-top: -10px;

}

#custom-html-t6 .popover.right {

  margin-left: 10px;

}

#custom-html-t6 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t6 .popover.left {

  margin-left: -10px;

}

#custom-html-t6 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t6 .popover-content {

  padding: 9px 14px;

}

#custom-html-t6 .popover > .arrow,

#custom-html-t6 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t6 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t6 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t6 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t6 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t6 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t6 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t6 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t6 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t6 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t6 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t6 .carousel {

  position: relative;

}

#custom-html-t6 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t6 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t6 .carousel-inner > .item > a > img,

#custom-html-t6 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t6 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t6 .carousel-inner > .item.active.right,

  #custom-html-t6 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t6 .carousel-inner > .item.active.left,

  #custom-html-t6 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t6 .carousel-inner > .item.active,

  #custom-html-t6 .carousel-inner > .item.next.left,

  #custom-html-t6 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t6 .carousel-inner > .active,

#custom-html-t6 .carousel-inner > .next,

#custom-html-t6 .carousel-inner > .prev {

  display: block;

}

#custom-html-t6 .carousel-inner > .active {

  left: 0;

}

#custom-html-t6 .carousel-inner > .next,

#custom-html-t6 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t6 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t6 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t6 .carousel-inner > .next.left,

#custom-html-t6 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t6 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t6 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t6 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t6 .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t6 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t6 .carousel-control:focus,

#custom-html-t6 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t6 .carousel-control .glyphicon-chevron-left,

#custom-html-t6 .carousel-control .glyphicon-chevron-right,

#custom-html-t6 .carousel-control .icon-next,

#custom-html-t6 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t6 .carousel-control .glyphicon-chevron-left,

#custom-html-t6 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t6 .carousel-control .glyphicon-chevron-right,

#custom-html-t6 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t6 .carousel-control .icon-next,

#custom-html-t6 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t6 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t6 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t6 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t6 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t6 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t6 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t6 .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-t6 .btn-group-vertical > .btn-group:after,

#custom-html-t6 .btn-group-vertical > .btn-group:before,

#custom-html-t6 .btn-toolbar:after,

#custom-html-t6 .btn-toolbar:before,

#custom-html-t6 .clearfix:after,

#custom-html-t6 .clearfix:before,

#custom-html-t6 .container-fluid:after,

#custom-html-t6 .container-fluid:before,

#custom-html-t6 .container:after,

#custom-html-t6 .container:before,

#custom-html-t6 .dl-horizontal dd:after,

#custom-html-t6 .dl-horizontal dd:before,

#custom-html-t6 .form-horizontal .form-group:after,

#custom-html-t6 .form-horizontal .form-group:before,

#custom-html-t6 .modal-footer:after,

#custom-html-t6 .modal-footer:before,

#custom-html-t6 .modal-header:after,

#custom-html-t6 .modal-header:before,

#custom-html-t6 .nav:after,

#custom-html-t6 .nav:before,

#custom-html-t6 .navbar-collapse:after,

#custom-html-t6 .navbar-collapse:before,

#custom-html-t6 .navbar-header:after,

#custom-html-t6 .navbar-header:before,

#custom-html-t6 .navbar:after,

#custom-html-t6 .navbar:before,

#custom-html-t6 .pager:after,

#custom-html-t6 .pager:before,

#custom-html-t6 .panel-body:after,

#custom-html-t6 .panel-body:before,

#custom-html-t6 .row:after,

#custom-html-t6 .row:before {

  display: table;

  content: " ";

}

#custom-html-t6 .btn-group-vertical > .btn-group:after,

#custom-html-t6 .btn-toolbar:after,

#custom-html-t6 .clearfix:after,

#custom-html-t6 .container-fluid:after,

#custom-html-t6 .container:after,

#custom-html-t6 .dl-horizontal dd:after,

#custom-html-t6 .form-horizontal .form-group:after,

#custom-html-t6 .modal-footer:after,

#custom-html-t6 .modal-header:after,

#custom-html-t6 .nav:after,

#custom-html-t6 .navbar-collapse:after,

#custom-html-t6 .navbar-header:after,

#custom-html-t6 .navbar:after,

#custom-html-t6 .pager:after,

#custom-html-t6 .panel-body:after,

#custom-html-t6 .row:after {

  clear: both;

}

#custom-html-t6 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t6 .pull-right {

  float: right !important;

}

#custom-html-t6 .pull-left {

  float: left !important;

}

#custom-html-t6 .hide {

  display: none !important;

}

#custom-html-t6 .show {

  display: block !important;

}

#custom-html-t6 .invisible {

  visibility: hidden;

}

#custom-html-t6 .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t6 .hidden {

  display: none !important;

}

#custom-html-t6 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t6 .visible-lg,

#custom-html-t6 .visible-md,

#custom-html-t6 .visible-sm,

#custom-html-t6 .visible-xs {

  display: none !important;

}

#custom-html-t6 .visible-lg-block,

#custom-html-t6 .visible-lg-inline,

#custom-html-t6 .visible-lg-inline-block,

#custom-html-t6 .visible-md-block,

#custom-html-t6 .visible-md-inline,

#custom-html-t6 .visible-md-inline-block,

#custom-html-t6 .visible-sm-block,

#custom-html-t6 .visible-sm-inline,

#custom-html-t6 .visible-sm-inline-block,

#custom-html-t6 .visible-xs-block,

#custom-html-t6 .visible-xs-inline,

#custom-html-t6 .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t6 .visible-sm {

    display: block !important;

  }

  #custom-html-t6 table.visible-sm {

    display: table !important;

  }

  #custom-html-t6 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t6 td.visible-sm,

  #custom-html-t6 th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-t6 .visible-sm-block {

    display: block !important;

  }

  #custom-html-t6 .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-t6 .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-t6 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t6 .visible-md {

    display: block !important;

  }

  #custom-html-t6 table.visible-md {

    display: table !important;

  }

  #custom-html-t6 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t6 td.visible-md,

  #custom-html-t6 th.visible-md {

    display: table-cell !important;

  }

  #custom-html-t6 .visible-md-block {

    display: block !important;

  }

  #custom-html-t6 .visible-md-inline {

    display: inline !important;

  }

  #custom-html-t6 .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-t6 .hidden-md {

    display: none !important;

  }

}

#custom-html-t6 .visible-print {

  display: none !important;

}

#custom-html-t6 .visible-print-block {

  display: none !important;

}

#custom-html-t6 .visible-print-inline {

  display: none !important;

}

#custom-html-t6 .visible-print-inline-block {

  display: none !important;

}

#custom-html-t6 .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-t6 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t6 .intl-tel-input .hide {

  display: none;

}

#custom-html-t6 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t6 .intl-tel-input input,

#custom-html-t6 .intl-tel-input input[type=tel],

#custom-html-t6 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t6 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t6 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t6 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t6 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t6 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t6 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t6 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t6 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t6 .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-t6 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t6 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t6 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t6 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t6 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t6 .intl-tel-input .country-list .country-name,

#custom-html-t6 .intl-tel-input .country-list .dial-code,

#custom-html-t6 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t6 .intl-tel-input .country-list .country-name,

#custom-html-t6 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t6 .intl-tel-input.allow-dropdown input,

#custom-html-t6 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t6 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t6 .intl-tel-input.separate-dial-code input,

#custom-html-t6 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t6 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t6 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t6 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t6 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t6 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t6 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t6 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t6 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t6 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t6 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t6 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t6 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t6 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t6 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t6 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t6 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t6 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t6 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-t6 .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t6 .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t6 .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t6 .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t6 .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-t6 .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t6 .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t6 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t6 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t6 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t6 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t6 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t6 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t6 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t6 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t6 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t6 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t6 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t6 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t6 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t6 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t6 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t6 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t6 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t6 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t6 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t6 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t6 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t6 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t6 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t6 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t6 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t6 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t6 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t6 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t6 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t6 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t6 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t6 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t6 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t6 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t6 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t6 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t6 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t6 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t6 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t6 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t6 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t6 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t6 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t6 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t6 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t6 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t6 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t6 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t6 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t6 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t6 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t6 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t6 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t6 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t6 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t6 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t6 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t6 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t6 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t6 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t6 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t6 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t6 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t6 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t6 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t6 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t6 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t6 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t6 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t6 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t6 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t6 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t6 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t6 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t6 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t6 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t6 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t6 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t6 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t6 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t6 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t6 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t6 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t6 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t6 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t6 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t6 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t6 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t6 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t6 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t6 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t6 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t6 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t6 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t6 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t6 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t6 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t6 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t6 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t6 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t6 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t6 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t6 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-t6 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t6 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t6 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t6 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t6 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t6 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t6 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t6 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t6 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t6 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t6 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t6 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t6 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t6 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t6 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t6 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t6 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t6 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t6 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t6 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t6 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t6 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t6 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t6 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t6 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t6 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t6 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t6 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t6 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t6 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t6 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t6 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t6 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t6 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t6 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t6 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t6 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t6 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t6 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t6 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t6 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t6 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t6 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t6 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t6 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t6 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t6 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t6 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t6 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t6 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t6 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t6 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t6 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t6 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t6 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t6 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t6 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t6 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t6 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t6 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t6 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t6 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t6 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t6 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t6 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t6 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t6 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t6 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t6 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t6 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t6 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t6 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t6 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t6 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t6 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t6 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t6 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t6 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t6 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t6 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t6 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t6 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t6 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t6 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t6 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t6 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t6 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t6 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t6 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t6 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t6 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t6 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t6 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t6 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t6 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t6 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t6 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t6 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t6 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t6 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t6 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t6 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t6 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t6 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t6 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t6 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t6 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t6 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t6 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t6 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t6 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t6 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t6 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t6 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t6 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t6 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t6 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t6 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t6 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-t6 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t6 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t6 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t6 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t6 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t6 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t6 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t6 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t6 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t6 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t6 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t6 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t6 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t6 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t6 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t6 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t6 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-t6 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t6 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t6 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t6 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t6 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t6 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t6 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t6 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t6 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t6 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t6 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t6 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t6 body,

#custom-html-t6 button,

#custom-html-t6 input,

#custom-html-t6 select,

#custom-html-t6 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t6 h1,

#custom-html-t6 h2,

#custom-html-t6 h3,

#custom-html-t6 h4,

#custom-html-t6 h5,

#custom-html-t6 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-t6 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t6 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t6 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t6 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t6 .navbar-main .navbar-nav > .active > a,

#custom-html-t6 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t6 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t6 .navbar-main .navbar-nav > .open > a,

#custom-html-t6 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t6 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t6 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t6 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t6 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t6 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-t6 .navbar-header {

    float: none;

  }

  #custom-html-t6 .navbar-left,

  #custom-html-t6 .navbar-right {

    float: none !important;

  }

  #custom-html-t6 .navbar-toggle {

    display: block;

  }

  #custom-html-t6 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t6 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t6 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t6 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t6 .navbar-nav > li {

    float: none;

  }

  #custom-html-t6 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t6 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-t6 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t6 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t6 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-t6 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t6 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t6 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-t6 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t6 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t6 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t6 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t6 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t6 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-t6 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t6 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-t6 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t6 a.list-group-item.active,

#custom-html-t6 a.list-group-item.active:focus,

#custom-html-t6 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t6 .dropdown-menu > li > a:focus,

#custom-html-t6 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t6 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t6 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t6 body,

#custom-html-t6 html {

  height: 100%;

}

#custom-html-t6 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t6 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t6 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t6 section#header .search {

  margin: 20px 0;

}

#custom-html-t6 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t6 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t6 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t6 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t6 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t6 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t6 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t6 section#footer {

    line-height: 32px;

  }

}

#custom-html-t6 section#footer .back-to-top {

  float: right;

}

#custom-html-t6 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t6 .adminreturndiv {

  display: none !important;

}

#custom-html-t6 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t6 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t6 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t6 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t6 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t6 .navbar-main .navbar-toggle:focus,

#custom-html-t6 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t6 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t6 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-t6 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t6 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t6 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t6 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t6 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t6 .h1,

  #custom-html-t6 h1 {

    font-size: 26px;

  }

  #custom-html-t6 .h2,

  #custom-html-t6 h2 {

    font-size: 20px;

  }

  #custom-html-t6 .h3,

  #custom-html-t6 h3 {

    font-size: 16px;

  }

  #custom-html-t6 .h4,

  #custom-html-t6 h4 {

    font-size: 14px;

  }

  #custom-html-t6 .h5,

  #custom-html-t6 h5 {

    font-size: 12px;

  }

  #custom-html-t6 .h6,

  #custom-html-t6 h6 {

    font-size: 11px;

  }

  #custom-html-t6 div.header-lined small {

    display: none;

  }

  #custom-html-t6 .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-t6 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t6 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t6 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t6 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-t6 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t6 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t6 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t6 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t6 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t6 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-t6 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t6 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t6 .margin-10 {

  margin: 10px;

}

#custom-html-t6 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t6 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t6 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t6 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t6 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t6 .input-inline {

  display: inline-block;

}

#custom-html-t6 .input-inline-100 {

  width: 100px;

}

#custom-html-t6 .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-t6 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t6 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t6 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-t6 i.icon-rss {

  color: #ff6600;

}

#custom-html-t6 section#main-menu {

  background-color: #000000;

}

#custom-html-t6 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t6 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t6 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t6 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t6 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t6 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t6 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t6 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t6 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t6 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t6 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t6 section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-t6 .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-t6 .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-t6 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t6 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t6 .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-t6 #stepResults {

    font-size: 14px;

  }

  #custom-html-t6 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t6 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-t6 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t6 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t6 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t6 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t6 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t6 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t6 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t6 .home-shortcuts li span {

  display: none;

}

#custom-html-t6 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t6 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-t6 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t6 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t6 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t6 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t6 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t6 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t6 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t6 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t6 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t6 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t6 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t6 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t6 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t6 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t6 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t6 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t6 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t6 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t6 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t6 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t6 .tiles .tile:last-child {

  border: 0;

}

#custom-html-t6 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t6 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t6 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t6 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t6 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t6 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t6 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t6 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t6 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t6 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t6 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t6 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t6 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t6 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t6 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t6 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t6 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t6 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t6 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t6 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t6 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t6 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t6 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t6 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t6 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t6 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t6 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t6 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t6 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t6 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t6 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t6 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t6 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t6 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t6 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t6 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t6 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t6 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t6 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t6 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t6 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t6 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t6 ul.top-nav > li,

#custom-html-t6 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t6 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t6 ul.top-nav > li:active > a,

#custom-html-t6 ul.top-nav > li:focus > a,

#custom-html-t6 ul.top-nav > li:hover > a,

#custom-html-t6 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t6 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t6 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t6 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t6 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-t6 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t6 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t6 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t6 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t6 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t6 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t6 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t6 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-t6 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t6 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-t6 .domain-check-availability {

  width: 100px;

}

#custom-html-t6 .domain-step-options {

  min-height: 300px;

}

#custom-html-t6 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t6 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t6 .domain-checker-invalid,

#custom-html-t6 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t6 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t6 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t6 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t6 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t6 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t6 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t6 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t6 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-t6 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t6 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t6 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t6 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t6 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t6 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t6 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t6 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t6 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t6 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t6 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t6 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t6 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t6 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t6 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t6 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t6 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t6 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t6 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t6 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t6 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t6 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t6 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t6 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t6 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t6 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t6 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t6 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t6 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t6 div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t6 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t6 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t6 .product-status-active {

  background-color: #46a546;

}

#custom-html-t6 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t6 .product-status-cancelled,

#custom-html-t6 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t6 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t6 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t6 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t6 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t6 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t6 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t6 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t6 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t6 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t6 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t6 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t6 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t6 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t6 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-t6 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t6 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t6 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t6 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t6 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t6 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t6 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t6 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t6 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t6 .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-t6 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t6 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t6 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t6 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t6 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t6 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t6 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t6 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t6 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t6 .status-pending {

  color: #d9534f;

}

#custom-html-t6 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t6 .status-active,

#custom-html-t6 .status-completed,

#custom-html-t6 .status-open {

  color: #3fad46;

}

#custom-html-t6 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t6 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t6 .status-answered,

#custom-html-t6 .status-fraud {

  color: #000000;

}

#custom-html-t6 .status-expired,

#custom-html-t6 .status-transferred.away {

  color: #004258;

}

#custom-html-t6 .status-cancelled {

  color: #87939f;

}

#custom-html-t6 .status-terminated {

  color: #666666;

}

#custom-html-t6 .status-onhold {

  color: #224488;

}

#custom-html-t6 .status-inprogress {

  color: #cc0000;

}

#custom-html-t6 .status-closed {

  color: #888888;

}

#custom-html-t6 .status-paid {

  color: #498302;

}

#custom-html-t6 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t6 .status-collections {

  color: #9a141e;

}

#custom-html-t6 .status-refunded {

  color: #319fc3;

}

#custom-html-t6 .status-delivered {

  color: #224488;

}

#custom-html-t6 .status-accepted {

  color: #498302;

}

#custom-html-t6 .status-dead,

#custom-html-t6 .status-lost {

  color: #000000;

}

#custom-html-t6 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t6 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t6 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t6 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t6 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t6 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t6 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t6 .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-t6 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t6 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t6 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t6 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t6 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t6 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t6 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t6 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t6 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t6 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t6 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t6 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t6 .ticket-reply .rating,

#custom-html-t6 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t6 .ticket-reply .rating span.star,

#custom-html-t6 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t6 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t6 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t6 .ticket-reply .rating span.star:before,

#custom-html-t6 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t6 .ticket-reply .rating span.star:hover:before,

#custom-html-t6 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t6 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t6 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t6 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t6 .ticket-reply .clear {

  clear: both;

}

#custom-html-t6 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t6 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t6 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t6 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t6 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t6 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t6 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t6 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t6 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t6 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-t6 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t6 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t6 .popover-user-notifications ul li i.far,

#custom-html-t6 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t6 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t6 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t6 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t6 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t6 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t6 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t6 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t6 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t6 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t6 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t6 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t6 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t6 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t6 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t6 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t6 div.credit-card div.end {

  clear: both;

}

#custom-html-t6 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t6 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t6 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t6 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t6 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t6 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t6 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t6 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t6 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t6 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t6 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t6 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t6 .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-t6 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t6 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t6 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t6 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t6 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t6 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t6 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t6 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t6 .kb-category a small {

  color: #888888;

}

#custom-html-t6 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t6 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t6 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t6 .kbarticles a.admin-inline-edit,

#custom-html-t6 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t6 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t6 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t6 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t6 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t6 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t6 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t6 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t6 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t6 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t6 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t6 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t6 #stepResults {

  font-size: 20px;

}

#custom-html-t6 #stepResults .label {

  font-size: 20px;

}

#custom-html-t6 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t6 h3.with-badge i,

#custom-html-t6 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t6 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-t6 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t6 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t6 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t6 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t6 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t6 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t6 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t6 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t6 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t6 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t6 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t6 .login-popover {

  font-size: 12px;

}

#custom-html-t6 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t6 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t6 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t6 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t6 .error-container {

  text-align: center;

}

#custom-html-t6 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t6 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t6 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t6 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t6 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t6 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t6 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t6 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t6 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t6 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-t6 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t6 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t6 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t6 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t6 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t6 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t6 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t6 .email-verification .btn:active,

#custom-html-t6 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t6 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t6 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t6 .email-verification .far,

#custom-html-t6 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-t6 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t6 .email-verification.success .far,

#custom-html-t6 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t6 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t6 .email-verification.failed .far,

#custom-html-t6 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t6 .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-t6 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t6 .md-editor > .md-preview,

#custom-html-t6 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t6 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t6 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t6 .small-font {

  font-size: 0.9em;

}

#custom-html-t6 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t6 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t6 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t6 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t6 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t6 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t6 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t6 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t6 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t6 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t6 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t6 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t6 .panel-heading i.fab,

#custom-html-t6 .panel-heading i.fal,

#custom-html-t6 .panel-heading i.far,

#custom-html-t6 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t6 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t6 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t6 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t6 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t6 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t6 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t6 .panel-sidebar .list-group-item.disabled,

#custom-html-t6 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t6 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t6 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t6 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t6 .panel-sidebar a.list-group-item.active,

#custom-html-t6 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t6 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t6 .panel-sidebar a.list-group-item.active i,

#custom-html-t6 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t6 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t6 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t6 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t6 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t6 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t6 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t6 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t6 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t6 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t6 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t6 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t6 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t6 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t6 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t6 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-t6 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t6 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t6 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t6 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t6 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t6 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t6 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t6 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t6 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t6 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t6 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t6 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t6 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-t6 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t6 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t6 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t6 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t6 .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-t6 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t6 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t6 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t6 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t6 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t6 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t6 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t6 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t6 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t6 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t6 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t6 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t6 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t6 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t6 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t6 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t6 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t6 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t6 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t6 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t6 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t6 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t6 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t6 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t6 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t6 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t6 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t6 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t6 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t6 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t6 .panel-mc-sso .btn,

#custom-html-t6 .panel-mc-sso .form-control,

#custom-html-t6 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t6 .panel-mc-sso small {

  display: block;

}

#custom-html-t6 .social-signin-btns {

  text-align: center;

}

#custom-html-t6 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t6 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t6 .btn-social i.far,

#custom-html-t6 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-facebook.active,

#custom-html-t6 .btn-facebook:active,

#custom-html-t6 .btn-facebook:focus,

#custom-html-t6 .btn-facebook:hover,

#custom-html-t6 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-facebook.active,

#custom-html-t6 .btn-facebook:active,

#custom-html-t6 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t6 .btn-facebook.disabled,

#custom-html-t6 .btn-facebook.disabled.active,

#custom-html-t6 .btn-facebook.disabled:active,

#custom-html-t6 .btn-facebook.disabled:focus,

#custom-html-t6 .btn-facebook.disabled:hover,

#custom-html-t6 .btn-facebook[disabled],

#custom-html-t6 .btn-facebook[disabled].active,

#custom-html-t6 .btn-facebook[disabled]:active,

#custom-html-t6 .btn-facebook[disabled]:focus,

#custom-html-t6 .btn-facebook[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-facebook,

#custom-html-t6 fieldset[disabled] .btn-facebook.active,

#custom-html-t6 fieldset[disabled] .btn-facebook:active,

#custom-html-t6 fieldset[disabled] .btn-facebook:focus,

#custom-html-t6 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-google.active,

#custom-html-t6 .btn-google:active,

#custom-html-t6 .btn-google:focus,

#custom-html-t6 .btn-google:hover,

#custom-html-t6 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-google.active,

#custom-html-t6 .btn-google:active,

#custom-html-t6 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t6 .btn-google-plus.disabled.active,

#custom-html-t6 .btn-google-plus.disabled:active,

#custom-html-t6 .btn-google-plus.disabled:focus,

#custom-html-t6 .btn-google-plus[disabled].active,

#custom-html-t6 .btn-google-plus[disabled]:active,

#custom-html-t6 .btn-google-plus[disabled]:focus,

#custom-html-t6 .btn-google-plus[disabled]:hover,

#custom-html-t6 .btn-google.disabled,

#custom-html-t6 .btn-google.disabled:hover,

#custom-html-t6 .btn-google[disabled],

#custom-html-t6 fieldset[disabled] .btn-google,

#custom-html-t6 fieldset[disabled] .btn-google-plus.active,

#custom-html-t6 fieldset[disabled] .btn-google-plus:active,

#custom-html-t6 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t6 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-twitter.active,

#custom-html-t6 .btn-twitter:active,

#custom-html-t6 .btn-twitter:focus,

#custom-html-t6 .btn-twitter:hover,

#custom-html-t6 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-twitter.active,

#custom-html-t6 .btn-twitter:active,

#custom-html-t6 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t6 .btn-twitter.disabled,

#custom-html-t6 .btn-twitter.disabled.active,

#custom-html-t6 .btn-twitter.disabled:active,

#custom-html-t6 .btn-twitter.disabled:focus,

#custom-html-t6 .btn-twitter.disabled:hover,

#custom-html-t6 .btn-twitter[disabled],

#custom-html-t6 .btn-twitter[disabled].active,

#custom-html-t6 .btn-twitter[disabled]:active,

#custom-html-t6 .btn-twitter[disabled]:focus,

#custom-html-t6 .btn-twitter[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-twitter,

#custom-html-t6 fieldset[disabled] .btn-twitter.active,

#custom-html-t6 fieldset[disabled] .btn-twitter:active,

#custom-html-t6 fieldset[disabled] .btn-twitter:focus,

#custom-html-t6 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t6 .providerLinkingFeedback {

  display: none;

}

#custom-html-t6 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t6 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t6 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t6 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t6 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t6 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t6 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t6 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t6 #registration .field,

#custom-html-t6 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t6 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t6 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t6 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t6 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t6 #registration textarea.field {

  height: auto;

}

#custom-html-t6 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t6 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t6 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t6 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t6 #registration .field[disabled],

#custom-html-t6 #registration .field[readonly],

#custom-html-t6 #registration .form-control[disabled],

#custom-html-t6 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t6 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t6 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t6 .upgrade .product-to-be-upgraded h4,

#custom-html-t6 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t6 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t6 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t6 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t6 .upgrade .products .product .current,

#custom-html-t6 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t6 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t6 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t6 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-t6 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t6 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t6 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t6 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t6 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t6 .upgrade .products .far,

#custom-html-t6 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t6 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t6 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t6 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t6 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t6 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t6 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .bootstrap-switch input[type=checkbox],

#custom-html-t6 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t6 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t6 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t6 .md-editor .md-footer,

#custom-html-t6 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t6 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t6 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t6 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t6 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t6 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t6 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t6 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t6 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t6 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t6 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t6 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t6 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t6 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t6 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t6 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t6 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t6 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t6 table.dataTable td,

#custom-html-t6 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t6 table.dataTable td.dataTables_empty,

#custom-html-t6 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t6 table.dataTable.nowrap td,

#custom-html-t6 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t6 table.dataTable thead > tr > td.sorting,

#custom-html-t6 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t6 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t6 table.dataTable thead > tr > th.sorting,

#custom-html-t6 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t6 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t6 table.dataTable thead > tr > td:active,

#custom-html-t6 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t6 table.dataTable thead .sorting,

#custom-html-t6 table.dataTable thead .sorting_asc,

#custom-html-t6 table.dataTable thead .sorting_asc_disabled,

#custom-html-t6 table.dataTable thead .sorting_desc,

#custom-html-t6 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t6 table.dataTable thead .sorting:after,

#custom-html-t6 table.dataTable thead .sorting_asc:after,

#custom-html-t6 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t6 table.dataTable thead .sorting_desc:after,

#custom-html-t6 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t6 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t6 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t6 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t6 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t6 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t6 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t6 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t6 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t6 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t6 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t6 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t6 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t6 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-t6 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t6 table.dataTable.table-condensed .sorting:after,

#custom-html-t6 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t6 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t6 table.table-bordered.dataTable td,

#custom-html-t6 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t6 table.table-bordered.dataTable td:last-child,

#custom-html-t6 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t6 table.table-bordered.dataTable tbody td,

#custom-html-t6 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t6 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t6 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t6 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t6 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t6 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t6 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t6 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t6 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t6 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t6 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t6 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t6 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t6 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t6 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t6 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t6 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t6 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t6 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t6 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t6 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t6 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t6 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t6 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t6 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t6 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-t6 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t6 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t6 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t6 .multiselect-container > li {

  padding: 0;

}

#custom-html-t6 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t6 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t6 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t6 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t6 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t6 .multiselect-container > li > a > label.checkbox,

#custom-html-t6 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t6 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t6 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t6 .form-inline .multiselect-container label.checkbox,

#custom-html-t6 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t6 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t6 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-t6 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-t6 body {

  margin: 0;

}

#custom-html-t6 article,

#custom-html-t6 aside,

#custom-html-t6 details,

#custom-html-t6 figcaption,

#custom-html-t6 figure,

#custom-html-t6 footer,

#custom-html-t6 header,

#custom-html-t6 hgroup,

#custom-html-t6 main,

#custom-html-t6 menu,

#custom-html-t6 nav,

#custom-html-t6 section,

#custom-html-t6 summary {

  display: block;

}

#custom-html-t6 audio,

#custom-html-t6 canvas,

#custom-html-t6 progress,

#custom-html-t6 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t6 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t6 [hidden],

#custom-html-t6 template {

  display: none;

}

#custom-html-t6 a {

  background-color: transparent;

}

#custom-html-t6 a:active,

#custom-html-t6 a:hover {

  outline: 0;

}

#custom-html-t6 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t6 b,

#custom-html-t6 strong {

  font-weight: 700;

}

#custom-html-t6 dfn {

  font-style: italic;

}

#custom-html-t6 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t6 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t6 small {

  font-size: 80%;

}

#custom-html-t6 sub,

#custom-html-t6 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t6 sup {

  top: -0.5em;

}

#custom-html-t6 sub {

  bottom: -0.25em;

}

#custom-html-t6 img {

  border: 0;

}

#custom-html-t6 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t6 figure {

  margin: 1em 40px;

}

#custom-html-t6 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t6 pre {

  overflow: auto;

}

#custom-html-t6 code,

#custom-html-t6 kbd,

#custom-html-t6 pre,

#custom-html-t6 samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-t6 button,

#custom-html-t6 input,

#custom-html-t6 optgroup,

#custom-html-t6 select,

#custom-html-t6 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t6 button {

  overflow: visible;

}

#custom-html-t6 button,

#custom-html-t6 select {

  text-transform: none;

}

#custom-html-t6 button,

#custom-html-t6 html input[type=button],

#custom-html-t6 input[type=reset],

#custom-html-t6 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t6 button[disabled],

#custom-html-t6 html input[disabled] {

  cursor: default;

}

#custom-html-t6 button::-moz-focus-inner,

#custom-html-t6 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t6 input {

  line-height: normal;

}

#custom-html-t6 input[type=checkbox],

#custom-html-t6 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-t6 input[type=number]::-webkit-inner-spin-button,

#custom-html-t6 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t6 input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-t6 input[type=search]::-webkit-search-cancel-button,

#custom-html-t6 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t6 fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-t6 legend {

  padding: 0;

  border: 0;

}

#custom-html-t6 textarea {

  overflow: auto;

}

#custom-html-t6 optgroup {

  font-weight: 700;

}

#custom-html-t6 table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-t6 td,

#custom-html-t6 th {

  padding: 0;

}

@media print {

  #custom-html-t6 *,

  #custom-html-t6 :after,

  #custom-html-t6 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t6 a,

  #custom-html-t6 a:visited {

    text-decoration: underline;

  }

  #custom-html-t6 a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-t6 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t6 a[href^="#"]:after,

  #custom-html-t6 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t6 blockquote,

  #custom-html-t6 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t6 thead {

    display: table-header-group;

  }

  #custom-html-t6 img,

  #custom-html-t6 tr {

    page-break-inside: avoid;

  }

  #custom-html-t6 img {

    max-width: 100% !important;

  }

  #custom-html-t6 h2,

  #custom-html-t6 h3,

  #custom-html-t6 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t6 h2,

  #custom-html-t6 h3 {

    page-break-after: avoid;

  }

  #custom-html-t6 .navbar {

    display: none;

  }

  #custom-html-t6 .btn > .caret,

  #custom-html-t6 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t6 .label {

    border: 1px solid #000000;

  }

  #custom-html-t6 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t6 .table td,

  #custom-html-t6 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t6 .table-bordered td,

  #custom-html-t6 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t6 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t6 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t6 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t6 .glyphicon-eur:before,

#custom-html-t6 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t6 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t6 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t6 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t6 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t6 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t6 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t6 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t6 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-t6 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t6 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t6 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t6 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t6 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t6 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t6 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t6 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t6 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t6 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t6 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t6 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t6 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t6 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t6 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t6 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t6 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t6 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t6 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t6 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t6 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t6 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t6 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t6 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t6 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t6 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t6 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t6 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t6 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t6 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t6 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t6 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t6 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t6 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t6 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t6 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t6 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t6 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t6 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t6 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t6 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t6 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t6 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t6 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t6 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t6 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t6 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t6 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t6 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t6 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t6 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t6 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t6 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t6 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t6 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t6 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t6 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t6 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t6 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t6 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t6 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t6 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t6 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t6 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t6 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t6 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t6 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t6 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t6 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t6 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t6 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t6 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t6 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t6 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t6 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t6 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t6 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t6 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t6 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t6 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t6 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t6 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t6 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t6 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t6 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t6 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t6 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t6 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t6 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t6 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t6 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t6 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t6 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t6 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t6 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t6 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t6 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t6 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t6 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t6 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t6 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t6 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t6 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t6 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t6 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t6 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t6 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t6 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t6 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t6 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t6 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t6 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t6 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-t6 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t6 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t6 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t6 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t6 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t6 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t6 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t6 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t6 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t6 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t6 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t6 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t6 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t6 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t6 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t6 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t6 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t6 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t6 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t6 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t6 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t6 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t6 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t6 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t6 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t6 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t6 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t6 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t6 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t6 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-t6 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t6 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t6 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t6 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t6 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t6 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t6 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t6 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t6 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t6 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t6 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t6 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t6 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t6 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t6 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t6 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t6 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t6 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t6 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t6 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t6 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t6 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t6 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t6 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t6 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t6 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t6 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t6 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t6 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t6 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t6 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t6 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t6 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t6 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t6 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t6 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t6 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t6 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t6 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t6 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t6 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t6 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t6 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t6 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t6 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t6 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t6 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t6 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t6 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t6 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t6 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t6 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t6 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t6 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t6 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t6 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t6 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t6 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t6 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t6 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t6 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t6 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t6 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t6 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t6 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t6 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t6 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-t6 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t6 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t6 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t6 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t6 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t6 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t6 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t6 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t6 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t6 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t6 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t6 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t6 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t6 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t6 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t6 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t6 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t6 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t6 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t6 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t6 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t6 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t6 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t6 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t6 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t6 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t6 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t6 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t6 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t6 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t6 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t6 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t6 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t6 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t6 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t6 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t6 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t6 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t6 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t6 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t6 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t6 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t6 :after,

#custom-html-t6 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t6 html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t6 body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-t6 button,

#custom-html-t6 input,

#custom-html-t6 select,

#custom-html-t6 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t6 a {

  color: #000;

  text-decoration: none;

}

#custom-html-t6 a:focus,

#custom-html-t6 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t6 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t6 figure {

  margin: 0;

}

#custom-html-t6 img {

  vertical-align: middle;

}

#custom-html-t6 .carousel-inner > .item > a > img,

#custom-html-t6 .carousel-inner > .item > img,

#custom-html-t6 .img-responsive,

#custom-html-t6 .thumbnail a > img,

#custom-html-t6 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t6 .img-rounded {

  border-radius: 6px;

}

#custom-html-t6 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t6 .img-circle {

  border-radius: 50%;

}

#custom-html-t6 hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t6 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t6 .sr-only-focusable:active,

#custom-html-t6 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t6 [role=button] {

  cursor: pointer;

}

#custom-html-t6 .h1,

#custom-html-t6 .h2,

#custom-html-t6 .h3,

#custom-html-t6 .h4,

#custom-html-t6 .h5,

#custom-html-t6 .h6,

#custom-html-t6 h1,

#custom-html-t6 h2,

#custom-html-t6 h3,

#custom-html-t6 h4,

#custom-html-t6 h5,

#custom-html-t6 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t6 .h1 .small,

#custom-html-t6 .h1 small,

#custom-html-t6 .h2 .small,

#custom-html-t6 .h2 small,

#custom-html-t6 .h3 .small,

#custom-html-t6 .h3 small,

#custom-html-t6 .h4 .small,

#custom-html-t6 .h4 small,

#custom-html-t6 .h5 .small,

#custom-html-t6 .h5 small,

#custom-html-t6 .h6 .small,

#custom-html-t6 .h6 small,

#custom-html-t6 h1 .small,

#custom-html-t6 h1 small,

#custom-html-t6 h2 .small,

#custom-html-t6 h2 small,

#custom-html-t6 h3 .small,

#custom-html-t6 h3 small,

#custom-html-t6 h4 .small,

#custom-html-t6 h4 small,

#custom-html-t6 h5 .small,

#custom-html-t6 h5 small,

#custom-html-t6 h6 .small,

#custom-html-t6 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t6 .h1,

#custom-html-t6 .h2,

#custom-html-t6 .h3,

#custom-html-t6 h1,

#custom-html-t6 h2,

#custom-html-t6 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t6 .h1 .small,

#custom-html-t6 .h1 small,

#custom-html-t6 .h2 .small,

#custom-html-t6 .h2 small,

#custom-html-t6 .h3 .small,

#custom-html-t6 .h3 small,

#custom-html-t6 h1 .small,

#custom-html-t6 h1 small,

#custom-html-t6 h2 .small,

#custom-html-t6 h2 small,

#custom-html-t6 h3 .small,

#custom-html-t6 h3 small {

  font-size: 65%;

}

#custom-html-t6 .h4,

#custom-html-t6 .h5,

#custom-html-t6 .h6,

#custom-html-t6 h4,

#custom-html-t6 h5,

#custom-html-t6 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t6 .h4 .small,

#custom-html-t6 .h4 small,

#custom-html-t6 .h5 .small,

#custom-html-t6 .h5 small,

#custom-html-t6 .h6 .small,

#custom-html-t6 .h6 small,

#custom-html-t6 h4 .small,

#custom-html-t6 h4 small,

#custom-html-t6 h5 .small,

#custom-html-t6 h5 small,

#custom-html-t6 h6 .small,

#custom-html-t6 h6 small {

  font-size: 75%;

}

#custom-html-t6 .h1,

#custom-html-t6 h1 {

  font-size: 36px;

}

#custom-html-t6 .h2,

#custom-html-t6 h2 {

  font-size: 30px;

}

#custom-html-t6 .h3,

#custom-html-t6 h3 {

  font-size: 24px;

}

#custom-html-t6 .h4,

#custom-html-t6 h4 {

  font-size: 18px;

}

#custom-html-t6 .h5,

#custom-html-t6 h5 {

  font-size: 14px;

}

#custom-html-t6 .h6,

#custom-html-t6 h6 {

  font-size: 12px;

}

#custom-html-t6 p {

  margin: 0 0 10px;

}

#custom-html-t6 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t6 .lead {

    font-size: 21px;

  }

}

#custom-html-t6 .small,

#custom-html-t6 small {

  font-size: 85%;

}

#custom-html-t6 .mark,

#custom-html-t6 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t6 .text-left {

  text-align: left;

}

#custom-html-t6 .text-right {

  text-align: right;

}

#custom-html-t6 .text-center {

  text-align: center;

}

#custom-html-t6 .text-justify {

  text-align: justify;

}

#custom-html-t6 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t6 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t6 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t6 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t6 .text-muted {

  color: #777777;

}

#custom-html-t6 .text-primary {

  color: #000000;

}

#custom-html-t6 a.text-primary:focus,

#custom-html-t6 a.text-primary:hover {

  color: #000000;

}

#custom-html-t6 .text-success {

  color: #3c763d;

}

#custom-html-t6 a.text-success:focus,

#custom-html-t6 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t6 .text-info {

  color: #31708f;

}

#custom-html-t6 a.text-info:focus,

#custom-html-t6 a.text-info:hover {

  color: #000000;

}

#custom-html-t6 .text-warning {

  color: #8a6d3b;

}

#custom-html-t6 a.text-warning:focus,

#custom-html-t6 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t6 .text-danger {

  color: #a94442;

}

#custom-html-t6 a.text-danger:focus,

#custom-html-t6 a.text-danger:hover {

  color: #843534;

}

#custom-html-t6 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t6 a.bg-primary:focus,

#custom-html-t6 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t6 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t6 a.bg-success:focus,

#custom-html-t6 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t6 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t6 a.bg-info:focus,

#custom-html-t6 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t6 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t6 a.bg-warning:focus,

#custom-html-t6 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t6 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t6 a.bg-danger:focus,

#custom-html-t6 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t6 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t6 ol,

#custom-html-t6 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t6 ol ol,

#custom-html-t6 ol ul,

#custom-html-t6 ul ol,

#custom-html-t6 ul ul {

  margin-bottom: 0;

}

#custom-html-t6 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t6 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t6 .list-inline > li {


  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t6 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t6 dd,

#custom-html-t6 dt {

  line-height: 1.42857143;

}

#custom-html-t6 dt {

  font-weight: 700;

}

#custom-html-t6 dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t6 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t6 .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-t6 abbr[data-original-title],

#custom-html-t6 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t6 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t6 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t6 blockquote ol:last-child,

#custom-html-t6 blockquote p:last-child,

#custom-html-t6 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t6 blockquote .small,

#custom-html-t6 blockquote footer,

#custom-html-t6 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-t6 blockquote .small:before,

#custom-html-t6 blockquote footer:before,

#custom-html-t6 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t6 .blockquote-reverse,

#custom-html-t6 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t6 .blockquote-reverse .small:before,

#custom-html-t6 .blockquote-reverse footer:before,

#custom-html-t6 .blockquote-reverse small:before,

#custom-html-t6 blockquote.pull-right .small:before,

#custom-html-t6 blockquote.pull-right footer:before,

#custom-html-t6 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t6 .blockquote-reverse .small:after,

#custom-html-t6 .blockquote-reverse footer:after,

#custom-html-t6 .blockquote-reverse small:after,

#custom-html-t6 blockquote.pull-right .small:after,

#custom-html-t6 blockquote.pull-right footer:after,

#custom-html-t6 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t6 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t6 code,

#custom-html-t6 kbd,

#custom-html-t6 pre,

#custom-html-t6 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-t6 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t6 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t6 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t6 pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t6 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t6 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t6 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-t6 .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-t6 .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t6 .container {

    width: 1170px;

  }

}

#custom-html-t6 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t6 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t6 .col-lg-1,

#custom-html-t6 .col-lg-10,

#custom-html-t6 .col-lg-11,

#custom-html-t6 .col-lg-12,

#custom-html-t6 .col-lg-2,

#custom-html-t6 .col-lg-3,

#custom-html-t6 .col-lg-4,

#custom-html-t6 .col-lg-5,

#custom-html-t6 .col-lg-6,

#custom-html-t6 .col-lg-7,

#custom-html-t6 .col-lg-8,

#custom-html-t6 .col-lg-9,

#custom-html-t6 .col-md-1,

#custom-html-t6 .col-md-10,

#custom-html-t6 .col-md-11,

#custom-html-t6 .col-md-12,

#custom-html-t6 .col-md-2,

#custom-html-t6 .col-md-3,

#custom-html-t6 .col-md-4,

#custom-html-t6 .col-md-5,

#custom-html-t6 .col-md-6,

#custom-html-t6 .col-md-7,

#custom-html-t6 .col-md-8,

#custom-html-t6 .col-md-9,

#custom-html-t6 .col-sm-1,

#custom-html-t6 .col-sm-10,

#custom-html-t6 .col-sm-11,

#custom-html-t6 .col-sm-12,

#custom-html-t6 .col-sm-2,

#custom-html-t6 .col-sm-3,

#custom-html-t6 .col-sm-4,

#custom-html-t6 .col-sm-5,

#custom-html-t6 .col-sm-6,

#custom-html-t6 .col-sm-7,

#custom-html-t6 .col-sm-8,

#custom-html-t6 .col-sm-9,

#custom-html-t6 .col-xs-1,

#custom-html-t6 .col-xs-10,

#custom-html-t6 .col-xs-11,

#custom-html-t6 .col-xs-12,

#custom-html-t6 .col-xs-2,

#custom-html-t6 .col-xs-3,

#custom-html-t6 .col-xs-4,

#custom-html-t6 .col-xs-5,

#custom-html-t6 .col-xs-6,

#custom-html-t6 .col-xs-7,

#custom-html-t6 .col-xs-8,

#custom-html-t6 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t6 .col-xs-1,

#custom-html-t6 .col-xs-10,

#custom-html-t6 .col-xs-11,

#custom-html-t6 .col-xs-12,

#custom-html-t6 .col-xs-2,

#custom-html-t6 .col-xs-3,

#custom-html-t6 .col-xs-4,

#custom-html-t6 .col-xs-5,

#custom-html-t6 .col-xs-6,

#custom-html-t6 .col-xs-7,

#custom-html-t6 .col-xs-8,

#custom-html-t6 .col-xs-9 {

  float: left;

}

#custom-html-t6 .col-xs-12 {

  width: 100%;

}

#custom-html-t6 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t6 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t6 .col-xs-9 {

  width: 75%;

}

#custom-html-t6 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t6 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t6 .col-xs-6 {

  width: 50%;

}

#custom-html-t6 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t6 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-t6 .col-xs-3 {

  width: 25%;

}

#custom-html-t6 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t6 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t6 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t6 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t6 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t6 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t6 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t6 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t6 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t6 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t6 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t6 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t6 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t6 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t6 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t6 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t6 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t6 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t6 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t6 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t6 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t6 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t6 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t6 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t6 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t6 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t6 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t6 .col-xs-push-0 {

  left: auto;

}

#custom-html-t6 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t6 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t6 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t6 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t6 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t6 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t6 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t6 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t6 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t6 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t6 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t6 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t6 .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t6 .col-sm-1,

  #custom-html-t6 .col-sm-10,

  #custom-html-t6 .col-sm-11,

  #custom-html-t6 .col-sm-12,

  #custom-html-t6 .col-sm-2,

  #custom-html-t6 .col-sm-3,

  #custom-html-t6 .col-sm-4,

  #custom-html-t6 .col-sm-5,

  #custom-html-t6 .col-sm-6,

  #custom-html-t6 .col-sm-7,

  #custom-html-t6 .col-sm-8,

  #custom-html-t6 .col-sm-9 {

    float: left;

  }

  #custom-html-t6 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t6 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t6 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t6 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t6 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t6 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t6 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t6 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t6 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t6 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t6 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t6 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t6 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t6 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t6 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t6 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t6 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t6 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t6 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t6 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t6 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t6 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-t6 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t6 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t6 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t6 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t6 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t6 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t6 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t6 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t6 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t6 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t6 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t6 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t6 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t6 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t6 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t6 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t6 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t6 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t6 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t6 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t6 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t6 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t6 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t6 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t6 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t6 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t6 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t6 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t6 .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-t6 .col-md-1,

  #custom-html-t6 .col-md-10,

  #custom-html-t6 .col-md-11,

  #custom-html-t6 .col-md-12,

  #custom-html-t6 .col-md-2,

  #custom-html-t6 .col-md-3,

  #custom-html-t6 .col-md-4,

  #custom-html-t6 .col-md-5,

  #custom-html-t6 .col-md-6,

  #custom-html-t6 .col-md-7,

  #custom-html-t6 .col-md-8,

  #custom-html-t6 .col-md-9 {

    float: left;

  }

  #custom-html-t6 .col-md-12 {

    width: 100%;

  }

  #custom-html-t6 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t6 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t6 .col-md-9 {

    width: 75%;

  }

  #custom-html-t6 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t6 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t6 .col-md-6 {

    width: 50%;

  }

  #custom-html-t6 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t6 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t6 .col-md-3 {

    width: 25%;

  }

  #custom-html-t6 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t6 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t6 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t6 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t6 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t6 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t6 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t6 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t6 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t6 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t6 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t6 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t6 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t6 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t6 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t6 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t6 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t6 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t6 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t6 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t6 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t6 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t6 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t6 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t6 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-t6 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t6 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t6 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t6 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t6 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t6 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t6 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t6 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t6 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t6 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t6 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t6 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t6 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t6 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t6 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t6 .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-t6 .col-lg-1,

  #custom-html-t6 .col-lg-10,

  #custom-html-t6 .col-lg-11,

  #custom-html-t6 .col-lg-12,

  #custom-html-t6 .col-lg-2,

  #custom-html-t6 .col-lg-3,

  #custom-html-t6 .col-lg-4,

  #custom-html-t6 .col-lg-5,

  #custom-html-t6 .col-lg-6,

  #custom-html-t6 .col-lg-7,

  #custom-html-t6 .col-lg-8,

  #custom-html-t6 .col-lg-9 {

    float: left;

  }

  #custom-html-t6 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t6 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t6 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t6 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t6 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t6 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t6 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t6 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t6 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t6 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t6 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t6 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t6 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t6 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t6 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t6 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t6 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t6 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t6 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t6 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t6 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t6 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-t6 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t6 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t6 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t6 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t6 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t6 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t6 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t6 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t6 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t6 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t6 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t6 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t6 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t6 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t6 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t6 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t6 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t6 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t6 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t6 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t6 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t6 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t6 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t6 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t6 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t6 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t6 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t6 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t6 .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-t6 table {

  background-color: transparent;

}

#custom-html-t6 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t6 th {

  text-align: left;

}

#custom-html-t6 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t6 .table > tbody > tr > td,

#custom-html-t6 .table > tbody > tr > th,

#custom-html-t6 .table > tfoot > tr > td,

#custom-html-t6 .table > tfoot > tr > th,

#custom-html-t6 .table > thead > tr > td,

#custom-html-t6 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t6 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t6 .table > caption + thead > tr:first-child > td,

#custom-html-t6 .table > caption + thead > tr:first-child > th,

#custom-html-t6 .table > colgroup + thead > tr:first-child > td,

#custom-html-t6 .table > colgroup + thead > tr:first-child > th,

#custom-html-t6 .table > thead:first-child > tr:first-child > td,

#custom-html-t6 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t6 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t6 .table .table {

  background-color: #ffffff;

}

#custom-html-t6 .table-condensed > tbody > tr > td,

#custom-html-t6 .table-condensed > tbody > tr > th,

#custom-html-t6 .table-condensed > tfoot > tr > td,

#custom-html-t6 .table-condensed > tfoot > tr > th,

#custom-html-t6 .table-condensed > thead > tr > td,

#custom-html-t6 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t6 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t6 .table-bordered > tbody > tr > td,

#custom-html-t6 .table-bordered > tbody > tr > th,

#custom-html-t6 .table-bordered > tfoot > tr > td,

#custom-html-t6 .table-bordered > tfoot > tr > th,

#custom-html-t6 .table-bordered > thead > tr > td,

#custom-html-t6 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t6 .table-bordered > thead > tr > td,

#custom-html-t6 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t6 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t6 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t6 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t6 table td[class*=col-],

#custom-html-t6 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t6 .table > tbody > tr.active > td,

#custom-html-t6 .table > tbody > tr.active > th,

#custom-html-t6 .table > tbody > tr > td.active,

#custom-html-t6 .table > tbody > tr > th.active,

#custom-html-t6 .table > tfoot > tr.active > td,

#custom-html-t6 .table > tfoot > tr.active > th,

#custom-html-t6 .table > tfoot > tr > td.active,

#custom-html-t6 .table > tfoot > tr > th.active,

#custom-html-t6 .table > thead > tr.active > td,

#custom-html-t6 .table > thead > tr.active > th,

#custom-html-t6 .table > thead > tr > td.active,

#custom-html-t6 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t6 .table-hover > tbody > tr.active:hover > td,

#custom-html-t6 .table-hover > tbody > tr.active:hover > th,

#custom-html-t6 .table-hover > tbody > tr:hover > .active,

#custom-html-t6 .table-hover > tbody > tr > td.active:hover,

#custom-html-t6 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t6 .table > tbody > tr.success > td,

#custom-html-t6 .table > tbody > tr.success > th,

#custom-html-t6 .table > tbody > tr > td.success,

#custom-html-t6 .table > tbody > tr > th.success,

#custom-html-t6 .table > tfoot > tr.success > td,

#custom-html-t6 .table > tfoot > tr.success > th,

#custom-html-t6 .table > tfoot > tr > td.success,

#custom-html-t6 .table > tfoot > tr > th.success,

#custom-html-t6 .table > thead > tr.success > td,

#custom-html-t6 .table > thead > tr.success > th,

#custom-html-t6 .table > thead > tr > td.success,

#custom-html-t6 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t6 .table-hover > tbody > tr.success:hover > td,

#custom-html-t6 .table-hover > tbody > tr.success:hover > th,

#custom-html-t6 .table-hover > tbody > tr:hover > .success,

#custom-html-t6 .table-hover > tbody > tr > td.success:hover,

#custom-html-t6 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t6 .table > tbody > tr.info > td,

#custom-html-t6 .table > tbody > tr.info > th,

#custom-html-t6 .table > tbody > tr > td.info,

#custom-html-t6 .table > tbody > tr > th.info,

#custom-html-t6 .table > tfoot > tr.info > td,

#custom-html-t6 .table > tfoot > tr.info > th,

#custom-html-t6 .table > tfoot > tr > td.info,

#custom-html-t6 .table > tfoot > tr > th.info,

#custom-html-t6 .table > thead > tr.info > td,

#custom-html-t6 .table > thead > tr.info > th,

#custom-html-t6 .table > thead > tr > td.info,

#custom-html-t6 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t6 .table-hover > tbody > tr.info:hover > td,

#custom-html-t6 .table-hover > tbody > tr.info:hover > th,

#custom-html-t6 .table-hover > tbody > tr:hover > .info,

#custom-html-t6 .table-hover > tbody > tr > td.info:hover,

#custom-html-t6 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t6 .table > tbody > tr.warning > td,

#custom-html-t6 .table > tbody > tr.warning > th,

#custom-html-t6 .table > tbody > tr > td.warning,

#custom-html-t6 .table > tbody > tr > th.warning,

#custom-html-t6 .table > tfoot > tr.warning > td,

#custom-html-t6 .table > tfoot > tr.warning > th,

#custom-html-t6 .table > tfoot > tr > td.warning,

#custom-html-t6 .table > tfoot > tr > th.warning,

#custom-html-t6 .table > thead > tr.warning > td,

#custom-html-t6 .table > thead > tr.warning > th,

#custom-html-t6 .table > thead > tr > td.warning,

#custom-html-t6 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t6 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t6 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t6 .table-hover > tbody > tr:hover > .warning,

#custom-html-t6 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t6 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t6 .table > tbody > tr.danger > td,

#custom-html-t6 .table > tbody > tr.danger > th,

#custom-html-t6 .table > tbody > tr > td.danger,

#custom-html-t6 .table > tbody > tr > th.danger,

#custom-html-t6 .table > tfoot > tr.danger > td,

#custom-html-t6 .table > tfoot > tr.danger > th,

#custom-html-t6 .table > tfoot > tr > td.danger,

#custom-html-t6 .table > tfoot > tr > th.danger,

#custom-html-t6 .table > thead > tr.danger > td,

#custom-html-t6 .table > thead > tr.danger > th,

#custom-html-t6 .table > thead > tr > td.danger,

#custom-html-t6 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t6 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t6 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t6 .table-hover > tbody > tr:hover > .danger,

#custom-html-t6 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t6 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t6 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t6 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t6 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t6 .table-responsive > .table > tbody > tr > td,

  #custom-html-t6 .table-responsive > .table > tbody > tr > th,

  #custom-html-t6 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t6 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t6 .table-responsive > .table > thead > tr > td,

  #custom-html-t6 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t6 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t6 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t6 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t6 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t6 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t6 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t6 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t6 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t6 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t6 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-t6 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t6 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t6 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t6 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t6 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t6 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t6 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-t6 fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-t6 legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t6 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t6 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t6 input[type=checkbox],

#custom-html-t6 input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t6 input[type=file] {

  display: block;

}

#custom-html-t6 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-t6 select[multiple],

#custom-html-t6 select[size] {

  height: auto;

}

#custom-html-t6 input[type=checkbox]:focus,

#custom-html-t6 input[type=file]:focus,

#custom-html-t6 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t6 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t6 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t6 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t6 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t6 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t6 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t6 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t6 .form-control[disabled],

#custom-html-t6 .form-control[readonly],

#custom-html-t6 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t6 .form-control[disabled],

#custom-html-t6 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t6 textarea.form-control {

  height: auto;

}

#custom-html-t6 input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t6 input[type=date].form-control,

  #custom-html-t6 input[type=datetime-local].form-control,

  #custom-html-t6 input[type=month].form-control,

  #custom-html-t6 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t6 .input-group-sm input[type=date],

  #custom-html-t6 .input-group-sm input[type=datetime-local],

  #custom-html-t6 .input-group-sm input[type=month],

  #custom-html-t6 .input-group-sm input[type=time],

  #custom-html-t6 input[type=date].input-sm,

  #custom-html-t6 input[type=datetime-local].input-sm,

  #custom-html-t6 input[type=month].input-sm,

  #custom-html-t6 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t6 .input-group-lg input[type=date],

  #custom-html-t6 .input-group-lg input[type=datetime-local],

  #custom-html-t6 .input-group-lg input[type=month],

  #custom-html-t6 .input-group-lg input[type=time],

  #custom-html-t6 input[type=date].input-lg,

  #custom-html-t6 input[type=datetime-local].input-lg,

  #custom-html-t6 input[type=month].input-lg,

  #custom-html-t6 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t6 .form-group {

  margin-bottom: 15px;

}

#custom-html-t6 .checkbox,

#custom-html-t6 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t6 .checkbox label,

#custom-html-t6 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t6 .checkbox input[type=checkbox],

#custom-html-t6 .checkbox-inline input[type=checkbox],

#custom-html-t6 .radio input[type=radio],

#custom-html-t6 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t6 .checkbox + .checkbox,

#custom-html-t6 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t6 .checkbox-inline,

#custom-html-t6 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t6 .checkbox-inline + .checkbox-inline,

#custom-html-t6 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t6 fieldset[disabled] input[type=checkbox],

#custom-html-t6 fieldset[disabled] input[type=radio],

#custom-html-t6 input[type=checkbox].disabled,

#custom-html-t6 input[type=checkbox][disabled],

#custom-html-t6 input[type=radio].disabled,

#custom-html-t6 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t6 .checkbox-inline.disabled,

#custom-html-t6 .radio-inline.disabled,

#custom-html-t6 fieldset[disabled] .checkbox-inline,

#custom-html-t6 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t6 .checkbox.disabled label,

#custom-html-t6 .radio.disabled label,

#custom-html-t6 fieldset[disabled] .checkbox label,

#custom-html-t6 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t6 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t6 .form-control-static.input-lg,

#custom-html-t6 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t6 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t6 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t6 select[multiple].input-sm,

#custom-html-t6 textarea.input-sm {

  height: auto;

}

#custom-html-t6 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t6 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t6 .form-group-sm select[multiple].form-control,

#custom-html-t6 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t6 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t6 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t6 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t6 select[multiple].input-lg,

#custom-html-t6 textarea.input-lg {

  height: auto;

}

#custom-html-t6 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t6 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-t6 .form-group-lg select[multiple].form-control,

#custom-html-t6 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t6 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t6 .has-feedback {

  position: relative;

}

#custom-html-t6 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t6 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t6 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t6 .input-group-lg + .form-control-feedback,

#custom-html-t6 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t6 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t6 .input-group-sm + .form-control-feedback,

#custom-html-t6 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t6 .has-success .checkbox,

#custom-html-t6 .has-success .checkbox-inline,

#custom-html-t6 .has-success .control-label,

#custom-html-t6 .has-success .help-block,

#custom-html-t6 .has-success .radio,

#custom-html-t6 .has-success .radio-inline,

#custom-html-t6 .has-success.checkbox label,

#custom-html-t6 .has-success.checkbox-inline label,

#custom-html-t6 .has-success.radio label,

#custom-html-t6 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t6 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t6 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t6 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t6 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t6 .has-warning .checkbox,

#custom-html-t6 .has-warning .checkbox-inline,

#custom-html-t6 .has-warning .control-label,

#custom-html-t6 .has-warning .help-block,

#custom-html-t6 .has-warning .radio,

#custom-html-t6 .has-warning .radio-inline,

#custom-html-t6 .has-warning.checkbox label,

#custom-html-t6 .has-warning.checkbox-inline label,

#custom-html-t6 .has-warning.radio label,

#custom-html-t6 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t6 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t6 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t6 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t6 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t6 .has-error .checkbox,

#custom-html-t6 .has-error .checkbox-inline,

#custom-html-t6 .has-error .control-label,

#custom-html-t6 .has-error .help-block,

#custom-html-t6 .has-error .radio,

#custom-html-t6 .has-error .radio-inline,

#custom-html-t6 .has-error.checkbox label,

#custom-html-t6 .has-error.checkbox-inline label,

#custom-html-t6 .has-error.radio label,

#custom-html-t6 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t6 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t6 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t6 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t6 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t6 .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-t6 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t6 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-t6 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t6 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t6 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t6 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t6 .form-inline .input-group .form-control,

  #custom-html-t6 .form-inline .input-group .input-group-addon,

  #custom-html-t6 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t6 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t6 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t6 .form-inline .checkbox,

  #custom-html-t6 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t6 .form-inline .checkbox label,

  #custom-html-t6 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t6 .form-inline .checkbox input[type=checkbox],

  #custom-html-t6 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t6 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-t6 .form-horizontal .checkbox,

#custom-html-t6 .form-horizontal .checkbox-inline,

#custom-html-t6 .form-horizontal .radio,

#custom-html-t6 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t6 .form-horizontal .checkbox,

#custom-html-t6 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t6 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t6 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-t6 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-t6 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-t6 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-t6 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t6 .btn.active.focus,

#custom-html-t6 .btn.active:focus,

#custom-html-t6 .btn.focus,

#custom-html-t6 .btn:active.focus,

#custom-html-t6 .btn:active:focus,

#custom-html-t6 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t6 .btn.focus,

#custom-html-t6 .btn:focus,

#custom-html-t6 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t6 .btn.active,

#custom-html-t6 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t6 .btn.disabled,

#custom-html-t6 .btn[disabled],

#custom-html-t6 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t6 a.btn.disabled,

#custom-html-t6 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t6 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t6 .btn-default.focus,

#custom-html-t6 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t6 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t6 .btn-default.active,

#custom-html-t6 .btn-default:active,

#custom-html-t6 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t6 .btn-default.active.focus,

#custom-html-t6 .btn-default.active:focus,

#custom-html-t6 .btn-default.active:hover,

#custom-html-t6 .btn-default:active.focus,

#custom-html-t6 .btn-default:active:focus,

#custom-html-t6 .btn-default:active:hover,

#custom-html-t6 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t6 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t6 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t6 .btn-default.active,

#custom-html-t6 .btn-default:active,

#custom-html-t6 .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-t6 .btn-default.disabled.focus,

#custom-html-t6 .btn-default.disabled:focus,

#custom-html-t6 .btn-default.disabled:hover,

#custom-html-t6 .btn-default[disabled].focus,

#custom-html-t6 .btn-default[disabled]:focus,

#custom-html-t6 .btn-default[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-default.focus,

#custom-html-t6 fieldset[disabled] .btn-default:focus,

#custom-html-t6 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t6 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t6 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t6 .btn-primary.focus,

#custom-html-t6 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t6 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t6 .btn-primary.active,

#custom-html-t6 .btn-primary:active,

#custom-html-t6 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t6 .btn-primary.active.focus,

#custom-html-t6 .btn-primary.active:focus,

#custom-html-t6 .btn-primary.active:hover,

#custom-html-t6 .btn-primary:active.focus,

#custom-html-t6 .btn-primary:active:focus,

#custom-html-t6 .btn-primary:active:hover,

#custom-html-t6 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t6 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t6 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t6 .btn-primary.active,

#custom-html-t6 .btn-primary:active,

#custom-html-t6 .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-t6 .btn-primary.disabled.focus,

#custom-html-t6 .btn-primary.disabled:focus,

#custom-html-t6 .btn-primary.disabled:hover,

#custom-html-t6 .btn-primary[disabled].focus,

#custom-html-t6 .btn-primary[disabled]:focus,

#custom-html-t6 .btn-primary[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-primary.focus,

#custom-html-t6 fieldset[disabled] .btn-primary:focus,

#custom-html-t6 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t6 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t6 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t6 .btn-success.focus,

#custom-html-t6 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t6 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t6 .btn-success.active,

#custom-html-t6 .btn-success:active,

#custom-html-t6 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t6 .btn-success.active.focus,

#custom-html-t6 .btn-success.active:focus,

#custom-html-t6 .btn-success.active:hover,

#custom-html-t6 .btn-success:active.focus,

#custom-html-t6 .btn-success:active:focus,

#custom-html-t6 .btn-success:active:hover,

#custom-html-t6 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t6 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t6 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t6 .btn-success.active,

#custom-html-t6 .btn-success:active,

#custom-html-t6 .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-t6 .btn-success.disabled.focus,

#custom-html-t6 .btn-success.disabled:focus,

#custom-html-t6 .btn-success.disabled:hover,

#custom-html-t6 .btn-success[disabled].focus,

#custom-html-t6 .btn-success[disabled]:focus,

#custom-html-t6 .btn-success[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-success.focus,

#custom-html-t6 fieldset[disabled] .btn-success:focus,

#custom-html-t6 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t6 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t6 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t6 .btn-info.focus,

#custom-html-t6 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t6 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t6 .btn-info.active,

#custom-html-t6 .btn-info:active,

#custom-html-t6 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t6 .btn-info.active.focus,

#custom-html-t6 .btn-info.active:focus,

#custom-html-t6 .btn-info.active:hover,

#custom-html-t6 .btn-info:active.focus,

#custom-html-t6 .btn-info:active:focus,

#custom-html-t6 .btn-info:active:hover,

#custom-html-t6 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t6 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t6 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t6 .btn-info.active,

#custom-html-t6 .btn-info:active,

#custom-html-t6 .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-t6 .btn-info.disabled.focus,

#custom-html-t6 .btn-info.disabled:focus,

#custom-html-t6 .btn-info.disabled:hover,

#custom-html-t6 .btn-info[disabled].focus,

#custom-html-t6 .btn-info[disabled]:focus,

#custom-html-t6 .btn-info[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-info.focus,

#custom-html-t6 fieldset[disabled] .btn-info:focus,

#custom-html-t6 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t6 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t6 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t6 .btn-warning.focus,

#custom-html-t6 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t6 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t6 .btn-warning.active,

#custom-html-t6 .btn-warning:active,

#custom-html-t6 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t6 .btn-warning.active.focus,

#custom-html-t6 .btn-warning.active:focus,

#custom-html-t6 .btn-warning.active:hover,

#custom-html-t6 .btn-warning:active.focus,

#custom-html-t6 .btn-warning:active:focus,

#custom-html-t6 .btn-warning:active:hover,

#custom-html-t6 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t6 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t6 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t6 .btn-warning.active,

#custom-html-t6 .btn-warning:active,

#custom-html-t6 .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-t6 .btn-warning.disabled.focus,

#custom-html-t6 .btn-warning.disabled:focus,

#custom-html-t6 .btn-warning.disabled:hover,

#custom-html-t6 .btn-warning[disabled].focus,

#custom-html-t6 .btn-warning[disabled]:focus,

#custom-html-t6 .btn-warning[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-warning.focus,

#custom-html-t6 fieldset[disabled] .btn-warning:focus,

#custom-html-t6 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t6 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t6 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t6 .btn-danger.focus,

#custom-html-t6 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t6 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t6 .btn-danger.active,

#custom-html-t6 .btn-danger:active,

#custom-html-t6 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t6 .btn-danger.active.focus,

#custom-html-t6 .btn-danger.active:focus,

#custom-html-t6 .btn-danger.active:hover,

#custom-html-t6 .btn-danger:active.focus,

#custom-html-t6 .btn-danger:active:focus,

#custom-html-t6 .btn-danger:active:hover,

#custom-html-t6 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t6 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t6 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t6 .btn-danger.active,

#custom-html-t6 .btn-danger:active,

#custom-html-t6 .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-t6 .btn-danger.disabled.focus,

#custom-html-t6 .btn-danger.disabled:focus,

#custom-html-t6 .btn-danger.disabled:hover,

#custom-html-t6 .btn-danger[disabled].focus,

#custom-html-t6 .btn-danger[disabled]:focus,

#custom-html-t6 .btn-danger[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-danger.focus,

#custom-html-t6 fieldset[disabled] .btn-danger:focus,

#custom-html-t6 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t6 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t6 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t6 .btn-link,

#custom-html-t6 .btn-link.active,

#custom-html-t6 .btn-link:active,

#custom-html-t6 .btn-link[disabled],

#custom-html-t6 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t6 .btn-link,

#custom-html-t6 .btn-link:active,

#custom-html-t6 .btn-link:focus,

#custom-html-t6 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t6 .btn-link:focus,

#custom-html-t6 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t6 .btn-link[disabled]:focus,

#custom-html-t6 .btn-link[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-link:focus,

#custom-html-t6 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t6 .btn-group-lg > .btn,

#custom-html-t6 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t6 .btn-group-sm > .btn,

#custom-html-t6 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t6 .btn-group-xs > .btn,

#custom-html-t6 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t6 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t6 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t6 input[type=button].btn-block,

#custom-html-t6 input[type=reset].btn-block,

#custom-html-t6 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t6 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t6 .fade.in {

  opacity: 1;

}

#custom-html-t6 .collapse {

  display: none;

}

#custom-html-t6 .collapse.in {

  display: block;

}

#custom-html-t6 tr.collapse.in {

  display: table-row;

}

#custom-html-t6 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t6 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t6 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t6 .dropdown,

#custom-html-t6 .dropup {

  position: relative;

}

#custom-html-t6 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t6 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t6 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t6 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t6 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-t6 .dropdown-menu > li > a:focus,

#custom-html-t6 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t6 .dropdown-menu > .active > a,

#custom-html-t6 .dropdown-menu > .active > a:focus,

#custom-html-t6 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-t6 .dropdown-menu > .disabled > a,

#custom-html-t6 .dropdown-menu > .disabled > a:focus,

#custom-html-t6 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t6 .dropdown-menu > .disabled > a:focus,

#custom-html-t6 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t6 .open > .dropdown-menu {

  display: block;

}

#custom-html-t6 .open > a {

  outline: 0;

}

#custom-html-t6 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t6 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t6 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t6 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t6 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t6 .dropup .caret,

#custom-html-t6 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t6 .dropup .dropdown-menu,

#custom-html-t6 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-t6 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-t6 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-t6 .btn-group,

#custom-html-t6 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t6 .btn-group-vertical > .btn,

#custom-html-t6 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t6 .btn-group-vertical > .btn.active,

#custom-html-t6 .btn-group-vertical > .btn:active,

#custom-html-t6 .btn-group-vertical > .btn:focus,

#custom-html-t6 .btn-group-vertical > .btn:hover,

#custom-html-t6 .btn-group > .btn.active,

#custom-html-t6 .btn-group > .btn:active,

#custom-html-t6 .btn-group > .btn:focus,

#custom-html-t6 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t6 .btn-group .btn + .btn,

#custom-html-t6 .btn-group .btn + .btn-group,

#custom-html-t6 .btn-group .btn-group + .btn,

#custom-html-t6 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t6 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t6 .btn-toolbar .btn,

#custom-html-t6 .btn-toolbar .btn-group,

#custom-html-t6 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t6 .btn-toolbar > .btn,

#custom-html-t6 .btn-toolbar > .btn-group,

#custom-html-t6 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t6 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t6 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t6 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t6 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t6 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t6 .btn-group > .btn-group {

  float: left;

}

#custom-html-t6 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t6 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t6 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t6 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t6 .btn-group .dropdown-toggle:active,

#custom-html-t6 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t6 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t6 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t6 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t6 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t6 .btn .caret {

  margin-left: 0;

}

#custom-html-t6 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t6 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t6 .btn-group-vertical > .btn,

#custom-html-t6 .btn-group-vertical > .btn-group,

#custom-html-t6 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t6 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t6 .btn-group-vertical > .btn + .btn,

#custom-html-t6 .btn-group-vertical > .btn + .btn-group,

#custom-html-t6 .btn-group-vertical > .btn-group + .btn,

#custom-html-t6 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t6 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t6 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t6 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t6 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t6 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t6 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t6 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t6 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t6 .btn-group-justified > .btn,

#custom-html-t6 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t6 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t6 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t6 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t6 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t6 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t6 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t6 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t6 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t6 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t6 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t6 .input-group-lg > .form-control,

#custom-html-t6 .input-group-lg > .input-group-addon,

#custom-html-t6 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t6 select.input-group-lg > .form-control,

#custom-html-t6 select.input-group-lg > .input-group-addon,

#custom-html-t6 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t6 select[multiple].input-group-lg > .form-control,

#custom-html-t6 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t6 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t6 textarea.input-group-lg > .form-control,

#custom-html-t6 textarea.input-group-lg > .input-group-addon,

#custom-html-t6 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t6 .input-group-sm > .form-control,

#custom-html-t6 .input-group-sm > .input-group-addon,

#custom-html-t6 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t6 select.input-group-sm > .form-control,

#custom-html-t6 select.input-group-sm > .input-group-addon,

#custom-html-t6 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t6 select[multiple].input-group-sm > .form-control,

#custom-html-t6 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t6 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t6 textarea.input-group-sm > .form-control,

#custom-html-t6 textarea.input-group-sm > .input-group-addon,

#custom-html-t6 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t6 .input-group .form-control,

#custom-html-t6 .input-group-addon,

#custom-html-t6 .input-group-btn {

  display: table-cell;

}

#custom-html-t6 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t6 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t6 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t6 .input-group-addon,

#custom-html-t6 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t6 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t6 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t6 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t6 .input-group-addon input[type=checkbox],

#custom-html-t6 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t6 .input-group .form-control:first-child,

#custom-html-t6 .input-group-addon:first-child,

#custom-html-t6 .input-group-btn:first-child > .btn,

#custom-html-t6 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t6 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t6 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t6 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t6 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t6 .input-group .form-control:last-child,

#custom-html-t6 .input-group-addon:last-child,

#custom-html-t6 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t6 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t6 .input-group-btn:last-child > .btn,

#custom-html-t6 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t6 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t6 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t6 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t6 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t6 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t6 .input-group-btn > .btn:active,

#custom-html-t6 .input-group-btn > .btn:focus,

#custom-html-t6 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t6 .input-group-btn:first-child > .btn,

#custom-html-t6 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t6 .input-group-btn:last-child > .btn,

#custom-html-t6 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t6 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t6 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t6 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t6 .nav > li > a:focus,

#custom-html-t6 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t6 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t6 .nav > li.disabled > a:focus,

#custom-html-t6 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t6 .nav .open > a,

#custom-html-t6 .nav .open > a:focus,

#custom-html-t6 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t6 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t6 .nav > li > a > img {

  max-width: none;

}

#custom-html-t6 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t6 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t6 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t6 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t6 .nav-tabs > li.active > a,

#custom-html-t6 .nav-tabs > li.active > a:focus,

#custom-html-t6 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t6 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t6 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t6 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t6 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t6 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t6 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t6 .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t6 .nav-tabs.nav-justified > .active > a,

#custom-html-t6 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t6 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t6 .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t6 .nav-tabs.nav-justified > .active > a,

  #custom-html-t6 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t6 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t6 .nav-pills > li {

  float: left;

}

#custom-html-t6 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t6 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t6 .nav-pills > li.active > a,

#custom-html-t6 .nav-pills > li.active > a:focus,

#custom-html-t6 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t6 .nav-stacked > li {

  float: none;

}

#custom-html-t6 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t6 .nav-justified {

  width: 100%;

}

#custom-html-t6 .nav-justified > li {

  float: none;

}

#custom-html-t6 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t6 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t6 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t6 .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t6 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t6 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t6 .nav-tabs-justified > .active > a,

#custom-html-t6 .nav-tabs-justified > .active > a:focus,

#custom-html-t6 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t6 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t6 .nav-tabs-justified > .active > a,

  #custom-html-t6 .nav-tabs-justified > .active > a:focus,

  #custom-html-t6 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t6 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t6 .tab-content > .active {

  display: block;

}

#custom-html-t6 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t6 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-t6 .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-t6 .navbar-header {

    float: left;

  }

}

#custom-html-t6 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t6 .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-t6 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t6 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t6 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t6 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t6 .navbar-fixed-top .navbar-collapse,

  #custom-html-t6 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-t6 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t6 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t6 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t6 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t6 .container-fluid > .navbar-collapse,

#custom-html-t6 .container-fluid > .navbar-header,

#custom-html-t6 .container > .navbar-collapse,

#custom-html-t6 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t6 .container-fluid > .navbar-collapse,

  #custom-html-t6 .container-fluid > .navbar-header,

  #custom-html-t6 .container > .navbar-collapse,

  #custom-html-t6 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-t6 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-t6 .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-t6 .navbar-fixed-bottom,

#custom-html-t6 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-t6 .navbar-fixed-bottom,

  #custom-html-t6 .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-t6 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t6 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t6 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t6 .navbar-brand:focus,

#custom-html-t6 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t6 .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-t6 .navbar > .container .navbar-brand,

  #custom-html-t6 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-t6 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t6 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t6 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t6 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-t6 .navbar-toggle {

    display: none;

  }

}

#custom-html-t6 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t6 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t6 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t6 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t6 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t6 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t6 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t6 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-t6 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t6 .navbar-nav > li {

    float: left;

  }

  #custom-html-t6 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-t6 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-t6 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t6 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t6 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t6 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t6 .navbar-form .input-group .form-control,

  #custom-html-t6 .navbar-form .input-group .input-group-addon,

  #custom-html-t6 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t6 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t6 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t6 .navbar-form .checkbox,

  #custom-html-t6 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t6 .navbar-form .checkbox label,

  #custom-html-t6 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t6 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t6 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t6 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-t6 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t6 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-t6 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-t6 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t6 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t6 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t6 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t6 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t6 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-t6 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-t6 .navbar-left {

    float: left !important;

  }

  #custom-html-t6 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t6 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-t6 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t6 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t6 .navbar-default .navbar-brand:focus,

#custom-html-t6 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t6 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t6 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t6 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t6 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t6 .navbar-default .navbar-nav > .active > a,

#custom-html-t6 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t6 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t6 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t6 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t6 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t6 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t6 .navbar-default .navbar-toggle:focus,

#custom-html-t6 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t6 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t6 .navbar-default .navbar-collapse,

#custom-html-t6 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t6 .navbar-default .navbar-nav > .open > a,

#custom-html-t6 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t6 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t6 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-t6 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t6 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t6 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t6 .navbar-default .btn-link:focus,

#custom-html-t6 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-t6 .navbar-default .btn-link[disabled]:focus,

#custom-html-t6 .navbar-default .btn-link[disabled]:hover,

#custom-html-t6 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t6 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t6 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t6 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t6 .navbar-inverse .navbar-brand:focus,

#custom-html-t6 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t6 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t6 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t6 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t6 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t6 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t6 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t6 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t6 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t6 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t6 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t6 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t6 .navbar-inverse .navbar-toggle:focus,

#custom-html-t6 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t6 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t6 .navbar-inverse .navbar-collapse,

#custom-html-t6 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t6 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t6 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t6 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t6 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-t6 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t6 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t6 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t6 .navbar-inverse .btn-link:focus,

#custom-html-t6 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t6 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t6 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t6 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t6 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t6 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t6 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t6 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t6 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t6 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-t6 .pagination > li {

  display: inline;

}

#custom-html-t6 .pagination > li > a,

#custom-html-t6 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t6 .pagination > li:first-child > a,

#custom-html-t6 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t6 .pagination > li:last-child > a,

#custom-html-t6 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t6 .pagination > li > a:focus,

#custom-html-t6 .pagination > li > a:hover,

#custom-html-t6 .pagination > li > span:focus,

#custom-html-t6 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t6 .pagination > .active > a,

#custom-html-t6 .pagination > .active > a:focus,

#custom-html-t6 .pagination > .active > a:hover,

#custom-html-t6 .pagination > .active > span,

#custom-html-t6 .pagination > .active > span:focus,

#custom-html-t6 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-t6 .pagination > .disabled > a,

#custom-html-t6 .pagination > .disabled > a:focus,

#custom-html-t6 .pagination > .disabled > a:hover,

#custom-html-t6 .pagination > .disabled > span,

#custom-html-t6 .pagination > .disabled > span:focus,

#custom-html-t6 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t6 .pagination-lg > li > a,

#custom-html-t6 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t6 .pagination-lg > li:first-child > a,

#custom-html-t6 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t6 .pagination-lg > li:last-child > a,

#custom-html-t6 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t6 .pagination-sm > li > a,

#custom-html-t6 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t6 .pagination-sm > li:first-child > a,

#custom-html-t6 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t6 .pagination-sm > li:last-child > a,

#custom-html-t6 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t6 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t6 .pager li {

  display: inline;

}

#custom-html-t6 .pager li > a,

#custom-html-t6 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t6 .pager li > a:focus,

#custom-html-t6 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t6 .pager .next > a,

#custom-html-t6 .pager .next > span {

  float: right;

}

#custom-html-t6 .pager .previous > a,

#custom-html-t6 .pager .previous > span {

  float: left;

}

#custom-html-t6 .pager .disabled > a,

#custom-html-t6 .pager .disabled > a:focus,

#custom-html-t6 .pager .disabled > a:hover,

#custom-html-t6 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t6 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-t6 a.label:focus,

#custom-html-t6 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t6 .label:empty {

  display: none;

}

#custom-html-t6 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t6 .label-default {

  background-color: #777777;

}

#custom-html-t6 .label-default[href]:focus,

#custom-html-t6 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t6 .label-primary {

  background-color: #337ab7;

}

#custom-html-t6 .label-primary[href]:focus,

#custom-html-t6 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t6 .label-success {

  background-color: #5cb85c;

}

#custom-html-t6 .label-success[href]:focus,

#custom-html-t6 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t6 .label-info {

  background-color: #5bc0de;

}

#custom-html-t6 .label-info[href]:focus,

#custom-html-t6 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t6 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t6 .label-warning[href]:focus,

#custom-html-t6 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t6 .label-danger {

  background-color: #d9534f;

}

#custom-html-t6 .label-danger[href]:focus,

#custom-html-t6 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t6 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t6 .badge:empty {

  display: none;

}

#custom-html-t6 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t6 .btn-group-xs > .btn .badge,

#custom-html-t6 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t6 a.badge:focus,

#custom-html-t6 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t6 .list-group-item.active > .badge,

#custom-html-t6 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t6 .list-group-item > .badge {

  float: right;

}

#custom-html-t6 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t6 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t6 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t6 .jumbotron .h1,

#custom-html-t6 .jumbotron h1 {

  color: inherit;

}

#custom-html-t6 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t6 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t6 .container .jumbotron,

#custom-html-t6 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t6 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t6 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t6 .container .jumbotron,

  #custom-html-t6 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t6 .jumbotron .h1,

  #custom-html-t6 .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-t6 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t6 .thumbnail a > img,

#custom-html-t6 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t6 a.thumbnail.active,

#custom-html-t6 a.thumbnail:focus,

#custom-html-t6 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t6 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t6 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t6 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t6 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t6 .alert > p,

#custom-html-t6 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t6 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t6 .alert-dismissable,

#custom-html-t6 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t6 .alert-dismissable .close,

#custom-html-t6 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t6 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t6 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-t6 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t6 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t6 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t6 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t6 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t6 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t6 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t6 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t6 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t6 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t6 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t6 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t6 .progress-bar-striped,

#custom-html-t6 .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t6 .progress-bar.active,

#custom-html-t6 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t6 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t6 .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t6 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t6 .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t6 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t6 .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t6 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t6 .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t6 .media {

  margin-top: 15px;

}

#custom-html-t6 .media:first-child {

  margin-top: 0;

}

#custom-html-t6 .media,

#custom-html-t6 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t6 .media-body {

  width: 10000px;

}

#custom-html-t6 .media-object {

  display: block;

}

#custom-html-t6 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t6 .media-right,

#custom-html-t6 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t6 .media-left,

#custom-html-t6 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t6 .media-body,

#custom-html-t6 .media-left,

#custom-html-t6 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t6 .media-middle {

  vertical-align: middle;

}

#custom-html-t6 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t6 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t6 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t6 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-t6 .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t6 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t6 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t6 a.list-group-item,

#custom-html-t6 button.list-group-item {

  color: #555555;

}

#custom-html-t6 a.list-group-item .list-group-item-heading,

#custom-html-t6 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t6 a.list-group-item:focus,

#custom-html-t6 a.list-group-item:hover,

#custom-html-t6 button.list-group-item:focus,

#custom-html-t6 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t6 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t6 .list-group-item.disabled,

#custom-html-t6 .list-group-item.disabled:focus,

#custom-html-t6 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t6 .list-group-item.disabled .list-group-item-heading,

#custom-html-t6 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t6 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t6 .list-group-item.disabled .list-group-item-text,

#custom-html-t6 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t6 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t6 .list-group-item.active,

#custom-html-t6 .list-group-item.active:focus,

#custom-html-t6 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t6 .list-group-item.active .list-group-item-heading,

#custom-html-t6 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t6 .list-group-item.active .list-group-item-heading > small,

#custom-html-t6 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t6 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t6 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t6 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t6 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t6 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t6 .list-group-item.active .list-group-item-text,

#custom-html-t6 .list-group-item.active:focus .list-group-item-text,

#custom-html-t6 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t6 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t6 a.list-group-item-success,

#custom-html-t6 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t6 a.list-group-item-success .list-group-item-heading,

#custom-html-t6 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t6 a.list-group-item-success:focus,

#custom-html-t6 a.list-group-item-success:hover,

#custom-html-t6 button.list-group-item-success:focus,

#custom-html-t6 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t6 a.list-group-item-success.active,

#custom-html-t6 a.list-group-item-success.active:focus,

#custom-html-t6 a.list-group-item-success.active:hover,

#custom-html-t6 button.list-group-item-success.active,

#custom-html-t6 button.list-group-item-success.active:focus,

#custom-html-t6 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t6 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t6 a.list-group-item-info,

#custom-html-t6 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t6 a.list-group-item-info .list-group-item-heading,

#custom-html-t6 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t6 a.list-group-item-info:focus,

#custom-html-t6 a.list-group-item-info:hover,

#custom-html-t6 button.list-group-item-info:focus,

#custom-html-t6 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t6 a.list-group-item-info.active,

#custom-html-t6 a.list-group-item-info.active:focus,

#custom-html-t6 a.list-group-item-info.active:hover,

#custom-html-t6 button.list-group-item-info.active,

#custom-html-t6 button.list-group-item-info.active:focus,

#custom-html-t6 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t6 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t6 a.list-group-item-warning,

#custom-html-t6 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t6 a.list-group-item-warning .list-group-item-heading,

#custom-html-t6 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t6 a.list-group-item-warning:focus,

#custom-html-t6 a.list-group-item-warning:hover,

#custom-html-t6 button.list-group-item-warning:focus,

#custom-html-t6 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t6 a.list-group-item-warning.active,

#custom-html-t6 a.list-group-item-warning.active:focus,

#custom-html-t6 a.list-group-item-warning.active:hover,

#custom-html-t6 button.list-group-item-warning.active,

#custom-html-t6 button.list-group-item-warning.active:focus,

#custom-html-t6 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t6 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t6 a.list-group-item-danger,

#custom-html-t6 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t6 a.list-group-item-danger .list-group-item-heading,

#custom-html-t6 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t6 a.list-group-item-danger:focus,

#custom-html-t6 a.list-group-item-danger:hover,

#custom-html-t6 button.list-group-item-danger:focus,

#custom-html-t6 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t6 a.list-group-item-danger.active,

#custom-html-t6 a.list-group-item-danger.active:focus,

#custom-html-t6 a.list-group-item-danger.active:hover,

#custom-html-t6 button.list-group-item-danger.active,

#custom-html-t6 button.list-group-item-danger.active:focus,

#custom-html-t6 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t6 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t6 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t6 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t6 .panel-body {

  padding: 15px;

}

#custom-html-t6 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t6 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t6 .panel-title > .small,

#custom-html-t6 .panel-title > .small > a,

#custom-html-t6 .panel-title > a,

#custom-html-t6 .panel-title > small,

#custom-html-t6 .panel-title > small > a {

  color: inherit;

}

#custom-html-t6 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t6 .panel > .list-group,

#custom-html-t6 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t6 .panel > .list-group .list-group-item,

#custom-html-t6 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t6 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t6 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t6 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t6 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t6 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t6 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t6 .panel > .panel-collapse > .table,

#custom-html-t6 .panel > .table,

#custom-html-t6 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t6 .panel > .panel-collapse > .table caption,

#custom-html-t6 .panel > .table caption,

#custom-html-t6 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t6 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t6 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t6 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t6 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t6 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t6 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t6 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t6 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t6 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t6 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t6 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t6 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t6 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t6 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t6 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t6 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t6 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t6 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t6 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t6 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t6 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t6 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t6 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t6 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t6 .panel > .panel-body + .table,

#custom-html-t6 .panel > .panel-body + .table-responsive,

#custom-html-t6 .panel > .table + .panel-body,

#custom-html-t6 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t6 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t6 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t6 .panel > .table-bordered,

#custom-html-t6 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t6 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t6 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t6 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t6 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t6 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t6 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t6 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t6 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t6 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t6 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t6 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t6 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t6 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t6 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t6 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t6 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t6 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t6 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t6 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t6 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t6 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t6 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t6 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t6 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t6 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t6 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t6 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-t6 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t6 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t6 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t6 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t6 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t6 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t6 .panel-default {

  border-color: #dddddd;

}

#custom-html-t6 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t6 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t6 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t6 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t6 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t6 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t6 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t6 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t6 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t6 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t6 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t6 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t6 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t6 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;


}

#custom-html-t6 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t6 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t6 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t6 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t6 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t6 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t6 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t6 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t6 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t6 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t6 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t6 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t6 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t6 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t6 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t6 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t6 .embed-responsive .embed-responsive-item,

#custom-html-t6 .embed-responsive embed,

#custom-html-t6 .embed-responsive iframe,

#custom-html-t6 .embed-responsive object,

#custom-html-t6 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t6 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t6 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t6 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t6 .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t6 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t6 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t6 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t6 .close:focus,

#custom-html-t6 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t6 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t6 .modal-open {

  overflow: hidden;

}

#custom-html-t6 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t6 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t6 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t6 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t6 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t6 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t6 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t6 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t6 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t6 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t6 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t6 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t6 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t6 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t6 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t6 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t6 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t6 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-t6 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t6 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t6 .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-t6 .modal-lg {

    width: 900px;

  }

}

#custom-html-t6 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t6 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t6 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t6 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t6 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t6 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t6 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t6 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t6 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t6 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t6 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t6 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t6 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t6 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t6 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t6 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t6 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t6 .popover.top {

  margin-top: -10px;

}

#custom-html-t6 .popover.right {

  margin-left: 10px;

}

#custom-html-t6 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t6 .popover.left {

  margin-left: -10px;

}

#custom-html-t6 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t6 .popover-content {

  padding: 9px 14px;

}

#custom-html-t6 .popover > .arrow,

#custom-html-t6 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t6 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t6 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t6 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t6 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t6 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t6 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t6 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t6 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t6 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t6 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t6 .carousel {

  position: relative;

}

#custom-html-t6 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t6 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t6 .carousel-inner > .item > a > img,

#custom-html-t6 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t6 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t6 .carousel-inner > .item.active.right,

  #custom-html-t6 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t6 .carousel-inner > .item.active.left,

  #custom-html-t6 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t6 .carousel-inner > .item.active,

  #custom-html-t6 .carousel-inner > .item.next.left,

  #custom-html-t6 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t6 .carousel-inner > .active,

#custom-html-t6 .carousel-inner > .next,

#custom-html-t6 .carousel-inner > .prev {

  display: block;

}

#custom-html-t6 .carousel-inner > .active {

  left: 0;

}

#custom-html-t6 .carousel-inner > .next,

#custom-html-t6 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t6 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t6 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t6 .carousel-inner > .next.left,

#custom-html-t6 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t6 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t6 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t6 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t6 .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t6 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t6 .carousel-control:focus,

#custom-html-t6 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t6 .carousel-control .glyphicon-chevron-left,

#custom-html-t6 .carousel-control .glyphicon-chevron-right,

#custom-html-t6 .carousel-control .icon-next,

#custom-html-t6 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t6 .carousel-control .glyphicon-chevron-left,

#custom-html-t6 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t6 .carousel-control .glyphicon-chevron-right,

#custom-html-t6 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t6 .carousel-control .icon-next,

#custom-html-t6 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t6 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t6 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t6 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t6 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t6 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t6 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t6 .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-t6 .carousel-control .glyphicon-chevron-left,

  #custom-html-t6 .carousel-control .glyphicon-chevron-right,

  #custom-html-t6 .carousel-control .icon-next,

  #custom-html-t6 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t6 .carousel-control .glyphicon-chevron-left,

  #custom-html-t6 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t6 .carousel-control .glyphicon-chevron-right,

  #custom-html-t6 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t6 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t6 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t6 .btn-group-vertical > .btn-group:after,

#custom-html-t6 .btn-group-vertical > .btn-group:before,

#custom-html-t6 .btn-toolbar:after,

#custom-html-t6 .btn-toolbar:before,

#custom-html-t6 .clearfix:after,

#custom-html-t6 .clearfix:before,

#custom-html-t6 .container-fluid:after,

#custom-html-t6 .container-fluid:before,

#custom-html-t6 .container:after,

#custom-html-t6 .container:before,

#custom-html-t6 .dl-horizontal dd:after,

#custom-html-t6 .dl-horizontal dd:before,

#custom-html-t6 .form-horizontal .form-group:after,

#custom-html-t6 .form-horizontal .form-group:before,

#custom-html-t6 .modal-footer:after,

#custom-html-t6 .modal-footer:before,

#custom-html-t6 .modal-header:after,

#custom-html-t6 .modal-header:before,

#custom-html-t6 .nav:after,

#custom-html-t6 .nav:before,

#custom-html-t6 .navbar-collapse:after,

#custom-html-t6 .navbar-collapse:before,

#custom-html-t6 .navbar-header:after,

#custom-html-t6 .navbar-header:before,

#custom-html-t6 .navbar:after,

#custom-html-t6 .navbar:before,

#custom-html-t6 .pager:after,

#custom-html-t6 .pager:before,

#custom-html-t6 .panel-body:after,

#custom-html-t6 .panel-body:before,

#custom-html-t6 .row:after,

#custom-html-t6 .row:before {

  display: table;

  content: " ";

}

#custom-html-t6 .btn-group-vertical > .btn-group:after,

#custom-html-t6 .btn-toolbar:after,

#custom-html-t6 .clearfix:after,

#custom-html-t6 .container-fluid:after,

#custom-html-t6 .container:after,

#custom-html-t6 .dl-horizontal dd:after,

#custom-html-t6 .form-horizontal .form-group:after,

#custom-html-t6 .modal-footer:after,

#custom-html-t6 .modal-header:after,

#custom-html-t6 .nav:after,

#custom-html-t6 .navbar-collapse:after,

#custom-html-t6 .navbar-header:after,

#custom-html-t6 .navbar:after,

#custom-html-t6 .pager:after,

#custom-html-t6 .panel-body:after,

#custom-html-t6 .row:after {

  clear: both;

}

#custom-html-t6 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t6 .pull-right {

  float: right !important;

}

#custom-html-t6 .pull-left {

  float: left !important;

}

#custom-html-t6 .hide {

  display: none !important;

}

#custom-html-t6 .show {

  display: block !important;

}

#custom-html-t6 .invisible {

  visibility: hidden;

}

#custom-html-t6 .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t6 .hidden {

  display: none !important;

}

#custom-html-t6 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t6 .visible-lg,

#custom-html-t6 .visible-md,

#custom-html-t6 .visible-sm,

#custom-html-t6 .visible-xs {

  display: none !important;

}

#custom-html-t6 .visible-lg-block,

#custom-html-t6 .visible-lg-inline,

#custom-html-t6 .visible-lg-inline-block,

#custom-html-t6 .visible-md-block,

#custom-html-t6 .visible-md-inline,

#custom-html-t6 .visible-md-inline-block,

#custom-html-t6 .visible-sm-block,

#custom-html-t6 .visible-sm-inline,

#custom-html-t6 .visible-sm-inline-block,

#custom-html-t6 .visible-xs-block,

#custom-html-t6 .visible-xs-inline,

#custom-html-t6 .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-t6 .visible-xs {

    display: block !important;

  }

  #custom-html-t6 table.visible-xs {

    display: table !important;

  }

  #custom-html-t6 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t6 td.visible-xs,

  #custom-html-t6 th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t6 .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t6 .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t6 .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t6 .visible-sm {

    display: block !important;

  }

  #custom-html-t6 table.visible-sm {

    display: table !important;

  }

  #custom-html-t6 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t6 td.visible-sm,

  #custom-html-t6 th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t6 .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t6 .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t6 .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t6 .visible-md {

    display: block !important;

  }

  #custom-html-t6 table.visible-md {

    display: table !important;

  }

  #custom-html-t6 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t6 td.visible-md,

  #custom-html-t6 th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t6 .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t6 .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t6 .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t6 .visible-lg {

    display: block !important;

  }

  #custom-html-t6 table.visible-lg {

    display: table !important;

  }

  #custom-html-t6 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t6 td.visible-lg,

  #custom-html-t6 th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t6 .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t6 .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t6 .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t6 .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t6 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t6 .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t6 .hidden-lg {

    display: none !important;

  }

}

#custom-html-t6 .visible-print {

  display: none !important;

}

@media print {

  #custom-html-t6 .visible-print {

    display: block !important;

  }

  #custom-html-t6 table.visible-print {

    display: table !important;

  }

  #custom-html-t6 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t6 td.visible-print,

  #custom-html-t6 th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-t6 .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-t6 .visible-print-block {

    display: block !important;

  }

}

#custom-html-t6 .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-t6 .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-t6 .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-t6 .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-t6 .hidden-print {

    display: none !important;

  }

}

#custom-html-t6 .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-t6 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t6 .intl-tel-input .hide {

  display: none;

}

#custom-html-t6 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t6 .intl-tel-input input,

#custom-html-t6 .intl-tel-input input[type=tel],

#custom-html-t6 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t6 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t6 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t6 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t6 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t6 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t6 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t6 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t6 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t6 .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-t6 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t6 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t6 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t6 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t6 .intl-tel-input .country-list .country-name,

#custom-html-t6 .intl-tel-input .country-list .dial-code,

#custom-html-t6 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t6 .intl-tel-input .country-list .country-name,

#custom-html-t6 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t6 .intl-tel-input.allow-dropdown input,

#custom-html-t6 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t6 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t6 .intl-tel-input.separate-dial-code input,

#custom-html-t6 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t6 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t6 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t6 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t6 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t6 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t6 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t6 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t6 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t6 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t6 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t6 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t6 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t6 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t6 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t6 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t6 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t6 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t6 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t6 .iti-flag {

  width: 20px;

}

#custom-html-t6 .iti-flag.be {

  width: 18px;

}

#custom-html-t6 .iti-flag.ch {

  width: 15px;

}

#custom-html-t6 .iti-flag.mc {

  width: 19px;

}

#custom-html-t6 .iti-flag.ne {

  width: 18px;

}

#custom-html-t6 .iti-flag.np {

  width: 13px;

}

#custom-html-t6 .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t6 .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-t6 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t6 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t6 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t6 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t6 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t6 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t6 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t6 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t6 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t6 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t6 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t6 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t6 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t6 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t6 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t6 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t6 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t6 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t6 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t6 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t6 .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t6 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t6 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t6 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t6 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t6 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t6 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t6 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t6 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t6 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t6 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t6 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t6 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t6 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t6 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t6 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t6 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t6 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t6 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t6 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t6 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t6 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t6 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t6 .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t6 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t6 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t6 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t6 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t6 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t6 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t6 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t6 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t6 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t6 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t6 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t6 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t6 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t6 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t6 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t6 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t6 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t6 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t6 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t6 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t6 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t6 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t6 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t6 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t6 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t6 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t6 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t6 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t6 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t6 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t6 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t6 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t6 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t6 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t6 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t6 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t6 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t6 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t6 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t6 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t6 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t6 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t6 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t6 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t6 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t6 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t6 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t6 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t6 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t6 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t6 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t6 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t6 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t6 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t6 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t6 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t6 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t6 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t6 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t6 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t6 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-t6 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t6 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t6 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t6 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t6 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t6 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t6 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t6 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t6 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t6 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t6 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t6 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t6 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t6 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t6 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t6 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t6 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t6 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t6 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t6 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t6 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t6 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t6 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t6 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t6 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t6 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t6 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t6 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t6 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t6 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t6 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t6 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t6 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t6 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t6 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t6 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t6 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t6 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t6 .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t6 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t6 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t6 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t6 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t6 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t6 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t6 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t6 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t6 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t6 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t6 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t6 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t6 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t6 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t6 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t6 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t6 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t6 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t6 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t6 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t6 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t6 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t6 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t6 .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t6 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t6 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t6 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t6 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t6 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t6 .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-t6 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t6 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t6 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t6 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t6 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t6 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t6 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t6 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t6 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t6 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t6 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t6 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t6 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t6 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t6 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t6 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t6 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t6 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t6 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t6 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t6 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t6 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t6 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t6 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t6 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t6 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t6 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t6 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t6 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t6 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t6 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t6 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t6 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t6 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t6 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t6 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t6 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t6 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t6 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t6 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t6 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t6 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t6 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t6 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t6 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t6 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t6 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t6 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t6 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t6 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t6 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t6 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t6 .iti-flag.tk {

  height: 10px;


  background-position: -4955px 0;

}

#custom-html-t6 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t6 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t6 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t6 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t6 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t6 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t6 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t6 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t6 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t6 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t6 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t6 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t6 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t6 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t6 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t6 .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-t6 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t6 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-t6 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t6 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t6 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t6 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t6 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t6 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t6 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t6 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t6 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t6 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t6 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t6 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t6 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t6 .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t6 .iti-flag.np {

  background-color: transparent;

}

#custom-html-t6 body,

#custom-html-t6 button,

#custom-html-t6 input,

#custom-html-t6 select,

#custom-html-t6 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t6 h1,

#custom-html-t6 h2,

#custom-html-t6 h3,

#custom-html-t6 h4,

#custom-html-t6 h5,

#custom-html-t6 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-t6 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t6 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t6 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t6 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-t6 .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t6 .navbar-main .navbar-nav > .active > a,

#custom-html-t6 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t6 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t6 .navbar-main .navbar-nav > .open > a,

#custom-html-t6 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t6 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t6 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t6 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t6 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t6 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t6 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-t6 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t6 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-t6 .navbar-header {

    float: none;

  }

  #custom-html-t6 .navbar-left,

  #custom-html-t6 .navbar-right {

    float: none !important;

  }

  #custom-html-t6 .navbar-toggle {

    display: block;

  }

  #custom-html-t6 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t6 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t6 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t6 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t6 .navbar-nav > li {

    float: none;

  }

  #custom-html-t6 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t6 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-t6 .panel {

  font-size: 0.9em;

}

#custom-html-t6 .list-group {

  font-size: 0.9em;

}

#custom-html-t6 .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-t6 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t6 a.list-group-item.active,

#custom-html-t6 a.list-group-item.active:focus,

#custom-html-t6 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t6 .pagination {

  font-size: 0.8em;

}

#custom-html-t6 .pagination > .active > a,

#custom-html-t6 .pagination > .active > a:focus,

#custom-html-t6 .pagination > .active > a:hover,

#custom-html-t6 .pagination > .active > span,

#custom-html-t6 .pagination > .active > span:focus,

#custom-html-t6 .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t6 .dropdown-menu > li > a:focus,

#custom-html-t6 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t6 .label {

  border-radius: 0;

}

#custom-html-t6 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t6 .list-group-item {

  padding: 7px 15px;

}

#custom-html-t6 .panel-body {

  padding: 10px 15px;

}

#custom-html-t6 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t6 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t6 .btn {

  overflow: hidden;

}

#custom-html-t6 body,

#custom-html-t6 html {

  height: 100%;

}

#custom-html-t6 body {

  background-color: #f8f8f8;

}

#custom-html-t6 h1,

#custom-html-t6 h2,

#custom-html-t6 h3,

#custom-html-t6 h4,

#custom-html-t6 h5,

#custom-html-t6 h6 {

  font-weight: 400;

}

#custom-html-t6 a {

  color: #005588;

}

#custom-html-t6 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t6 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t6 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t6 section#header .search {

  margin: 20px 0;

}

#custom-html-t6 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t6 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t6 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t6 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t6 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t6 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t6 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t6 section#footer {

    line-height: 32px;

  }

}

#custom-html-t6 section#footer .back-to-top {

  float: right;

}

#custom-html-t6 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t6 .adminreturndiv {

  display: none !important;

}

#custom-html-t6 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t6 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t6 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t6 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t6 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t6 .navbar-main .navbar-toggle:focus,

#custom-html-t6 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t6 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t6 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-t6 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t6 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t6 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-t6 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t6 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t6 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t6 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t6 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t6 .h1,

  #custom-html-t6 h1 {

    font-size: 26px;

  }

  #custom-html-t6 .h2,

  #custom-html-t6 h2 {

    font-size: 20px;

  }

  #custom-html-t6 .h3,

  #custom-html-t6 h3 {

    font-size: 16px;

  }

  #custom-html-t6 .h4,

  #custom-html-t6 h4 {

    font-size: 14px;

  }

  #custom-html-t6 .h5,

  #custom-html-t6 h5 {

    font-size: 12px;

  }

  #custom-html-t6 .h6,

  #custom-html-t6 h6 {

    font-size: 11px;

  }

  #custom-html-t6 div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-t6 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t6 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t6 .margin-10 {

  margin: 10px;

}

#custom-html-t6 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t6 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t6 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t6 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t6 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t6 .input-inline {

  display: inline-block;

}

#custom-html-t6 .input-inline-100 {

  width: 100px;

}

#custom-html-t6 .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-t6 .pull-md-left {

    float: left;

  }

  #custom-html-t6 .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-t6 .pull-sm-left {

    float: left;

  }

  #custom-html-t6 .pull-sm-right {

    float: right;

  }

  #custom-html-t6 .text-right-sm {

    text-align: right;

  }

}

#custom-html-t6 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t6 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t6 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-t6 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-t6 .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-t6 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t6 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t6 i.icon-rss {

  color: #ff6600;

}

#custom-html-t6 section#main-menu {

  background-color: #000000;

}

#custom-html-t6 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t6 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t6 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t6 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t6 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t6 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t6 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t6 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t6 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t6 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t6 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t6 section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-t6 section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-t6 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t6 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t6 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t6 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t6 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t6 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t6 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t6 .home-shortcuts li span {

  display: none;

}

#custom-html-t6 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t6 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-t6 .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-t6 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t6 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t6 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t6 .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-t6 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t6 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t6 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t6 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t6 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t6 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t6 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t6 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t6 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t6 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t6 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t6 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t6 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t6 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t6 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t6 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t6 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t6 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t6 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t6 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t6 .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-t6 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t6 .tiles .tile:nth-child(1),

  #custom-html-t6 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-t6 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t6 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t6 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t6 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t6 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t6 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t6 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t6 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t6 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t6 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t6 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t6 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t6 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t6 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t6 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t6 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t6 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t6 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t6 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t6 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t6 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t6 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t6 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t6 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t6 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t6 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t6 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t6 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t6 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t6 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t6 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t6 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t6 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t6 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t6 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t6 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t6 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t6 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t6 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t6 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t6 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t6 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t6 ul.top-nav > li,

#custom-html-t6 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t6 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t6 ul.top-nav > li:active > a,

#custom-html-t6 ul.top-nav > li:focus > a,

#custom-html-t6 ul.top-nav > li:hover > a,

#custom-html-t6 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t6 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t6 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t6 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t6 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-t6 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t6 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t6 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-t6 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t6 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t6 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-t6 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t6 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t6 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t6 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t6 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t6 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t6 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t6 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-t6 .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-t6 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t6 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-t6 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t6 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t6 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-t6 .domain-check-availability {

  width: 100px;

}

#custom-html-t6 .domain-step-options {

  min-height: 300px;

}

#custom-html-t6 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t6 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t6 .domain-checker-invalid,

#custom-html-t6 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t6 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t6 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t6 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t6 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t6 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t6 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t6 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t6 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t6 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-t6 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t6 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t6 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t6 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t6 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t6 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t6 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t6 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t6 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t6 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t6 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t6 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t6 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t6 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t6 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t6 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t6 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t6 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t6 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t6 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t6 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t6 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t6 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t6 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t6 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t6 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t6 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t6 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t6 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t6 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t6 div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t6 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t6 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t6 .product-status-active {

  background-color: #46a546;

}

#custom-html-t6 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t6 .product-status-cancelled,

#custom-html-t6 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t6 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t6 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t6 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t6 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t6 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t6 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-t6 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t6 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t6 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t6 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t6 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t6 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t6 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t6 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-t6 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t6 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t6 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t6 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-t6 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t6 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t6 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t6 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t6 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t6 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t6 .pagination > li > a,

#custom-html-t6 .pagination > li > span {

  color: #444444;

}

#custom-html-t6 .pagination > .active > a,

#custom-html-t6 .pagination > .active > a:focus,

#custom-html-t6 .pagination > .active > a:hover,

#custom-html-t6 .pagination > .active > span,

#custom-html-t6 .pagination > .active > span:focus,

#custom-html-t6 .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t6 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t6 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t6 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t6 .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-t6 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t6 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t6 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t6 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t6 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t6 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t6 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t6 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t6 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t6 .status-pending {

  color: #d9534f;

}

#custom-html-t6 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t6 .status-active,

#custom-html-t6 .status-completed,

#custom-html-t6 .status-open {

  color: #3fad46;

}

#custom-html-t6 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t6 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t6 .status-answered,

#custom-html-t6 .status-fraud {

  color: #000000;

}

#custom-html-t6 .status-expired,

#custom-html-t6 .status-transferred.away {

  color: #004258;

}

#custom-html-t6 .status-cancelled {

  color: #9fa29a;

}

#custom-html-t6 .status-terminated {

  color: #666666;

}

#custom-html-t6 .status-onhold {

  color: #224488;

}

#custom-html-t6 .status-inprogress {

  color: #cc0000;

}

#custom-html-t6 .status-closed {

  color: #888888;

}

#custom-html-t6 .status-paid {

  color: #498302;

}

#custom-html-t6 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t6 .status-cancelled {

  color: #87939f;

}

#custom-html-t6 .status-collections {

  color: #9a141e;

}

#custom-html-t6 .status-refunded {

  color: #319fc3;

}

#custom-html-t6 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t6 .status-delivered {

  color: #224488;

}

#custom-html-t6 .status-accepted {

  color: #498302;

}

#custom-html-t6 .status-dead,

#custom-html-t6 .status-lost {

  color: #000000;

}

#custom-html-t6 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t6 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t6 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t6 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t6 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t6 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t6 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t6 .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-t6 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t6 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t6 .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-t6 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t6 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t6 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t6 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t6 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t6 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t6 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t6 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t6 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t6 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t6 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t6 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t6 .ticket-reply .rating,

#custom-html-t6 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t6 .ticket-reply .rating span.star,

#custom-html-t6 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t6 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t6 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t6 .ticket-reply .rating span.star:before,

#custom-html-t6 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t6 .ticket-reply .rating span.star:hover:before,

#custom-html-t6 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t6 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t6 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t6 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t6 .ticket-reply .clear {

  clear: both;

}

#custom-html-t6 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t6 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t6 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t6 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t6 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t6 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t6 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t6 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t6 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t6 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-t6 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t6 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t6 .popover-user-notifications ul li i.far,

#custom-html-t6 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t6 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t6 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t6 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t6 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t6 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t6 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t6 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t6 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t6 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t6 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t6 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t6 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t6 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t6 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t6 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t6 div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-t6 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t6 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t6 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t6 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t6 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t6 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-t6 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t6 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t6 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t6 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t6 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t6 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t6 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t6 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t6 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t6 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t6 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t6 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t6 .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-t6 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t6 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t6 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t6 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t6 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t6 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-t6 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t6 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t6 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t6 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t6 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t6 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t6 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t6 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t6 .kb-category a small {

  color: #888888;

}

#custom-html-t6 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t6 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t6 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t6 .kbarticles a.admin-inline-edit,

#custom-html-t6 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t6 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t6 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t6 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t6 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t6 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t6 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t6 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t6 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t6 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t6 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t6 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t6 #stepResults {

  font-size: 20px;

}

#custom-html-t6 #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-t6 #stepResults {

    font-size: 14px;

  }

  #custom-html-t6 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t6 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-t6 #main-menu,

  #custom-html-t6 #top-nav,

  #custom-html-t6 .header-lined,

  #custom-html-t6 .sidebar {

    display: none;

  }

  #custom-html-t6 a[href]:after {

    content: "" !important;

  }

}

#custom-html-t6 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t6 h3.with-badge i,

#custom-html-t6 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t6 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-t6 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t6 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-t6 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t6 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t6 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t6 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t6 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t6 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t6 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t6 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t6 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t6 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t6 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t6 .login-popover {

  font-size: 12px;

}

#custom-html-t6 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t6 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t6 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t6 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t6 .error-container {

  text-align: center;

}

#custom-html-t6 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t6 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t6 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t6 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t6 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t6 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t6 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t6 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t6 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t6 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-t6 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t6 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-t6 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t6 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t6 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t6 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t6 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t6 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t6 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t6 .email-verification .btn:active,

#custom-html-t6 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t6 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t6 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t6 .email-verification .far,

#custom-html-t6 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-t6 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t6 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t6 .email-verification .button {

    float: right;

  }

  #custom-html-t6 .email-verification .far,

  #custom-html-t6 .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-t6 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t6 .email-verification.success .far,

#custom-html-t6 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t6 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t6 .email-verification.failed .far,

#custom-html-t6 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t6 .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-t6 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t6 .md-editor > .md-preview,

#custom-html-t6 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t6 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t6 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t6 .small-font {

  font-size: 0.9em;

}

#custom-html-t6 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t6 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t6 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t6 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t6 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t6 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t6 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t6 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t6 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t6 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t6 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t6 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t6 .panel-heading i.fab,

#custom-html-t6 .panel-heading i.fal,

#custom-html-t6 .panel-heading i.far,

#custom-html-t6 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t6 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t6 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t6 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t6 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t6 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t6 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t6 .panel-sidebar .list-group-item.disabled,

#custom-html-t6 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t6 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t6 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t6 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t6 .panel-sidebar a.list-group-item.active,

#custom-html-t6 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t6 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t6 .panel-sidebar a.list-group-item.active i,

#custom-html-t6 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t6 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t6 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t6 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t6 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t6 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t6 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t6 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t6 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t6 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t6 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t6 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t6 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t6 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t6 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t6 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-t6 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t6 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-t6 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t6 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t6 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t6 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t6 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t6 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t6 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t6 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t6 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t6 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t6 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t6 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t6 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t6 .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-t6 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t6 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t6 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t6 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t6 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t6 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t6 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t6 .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-t6 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t6 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t6 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t6 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t6 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t6 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t6 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t6 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t6 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t6 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t6 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t6 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t6 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t6 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t6 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t6 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t6 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t6 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t6 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t6 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t6 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t6 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t6 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t6 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t6 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t6 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t6 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t6 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t6 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t6 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t6 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t6 .panel-mc-sso .btn,

#custom-html-t6 .panel-mc-sso .form-control,

#custom-html-t6 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t6 .panel-mc-sso small {

  display: block;

}

#custom-html-t6 .social-signin-btns {

  text-align: center;

}

#custom-html-t6 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t6 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t6 .btn-social i.far,

#custom-html-t6 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-facebook.active,

#custom-html-t6 .btn-facebook:active,

#custom-html-t6 .btn-facebook:focus,

#custom-html-t6 .btn-facebook:hover,

#custom-html-t6 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-facebook.active,

#custom-html-t6 .btn-facebook:active,

#custom-html-t6 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t6 .btn-facebook.disabled,

#custom-html-t6 .btn-facebook.disabled.active,

#custom-html-t6 .btn-facebook.disabled:active,

#custom-html-t6 .btn-facebook.disabled:focus,

#custom-html-t6 .btn-facebook.disabled:hover,

#custom-html-t6 .btn-facebook[disabled],

#custom-html-t6 .btn-facebook[disabled].active,

#custom-html-t6 .btn-facebook[disabled]:active,

#custom-html-t6 .btn-facebook[disabled]:focus,

#custom-html-t6 .btn-facebook[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-facebook,

#custom-html-t6 fieldset[disabled] .btn-facebook.active,

#custom-html-t6 fieldset[disabled] .btn-facebook:active,

#custom-html-t6 fieldset[disabled] .btn-facebook:focus,

#custom-html-t6 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-google.active,

#custom-html-t6 .btn-google:active,

#custom-html-t6 .btn-google:focus,

#custom-html-t6 .btn-google:hover,

#custom-html-t6 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-google.active,

#custom-html-t6 .btn-google:active,

#custom-html-t6 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t6 .btn-google-plus.disabled.active,

#custom-html-t6 .btn-google-plus.disabled:active,

#custom-html-t6 .btn-google-plus.disabled:focus,

#custom-html-t6 .btn-google-plus[disabled].active,

#custom-html-t6 .btn-google-plus[disabled]:active,

#custom-html-t6 .btn-google-plus[disabled]:focus,

#custom-html-t6 .btn-google-plus[disabled]:hover,

#custom-html-t6 .btn-google.disabled,

#custom-html-t6 .btn-google.disabled:hover,

#custom-html-t6 .btn-google[disabled],

#custom-html-t6 fieldset[disabled] .btn-google,

#custom-html-t6 fieldset[disabled] .btn-google-plus.active,

#custom-html-t6 fieldset[disabled] .btn-google-plus:active,

#custom-html-t6 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t6 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-twitter.active,

#custom-html-t6 .btn-twitter:active,

#custom-html-t6 .btn-twitter:focus,

#custom-html-t6 .btn-twitter:hover,

#custom-html-t6 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .btn-twitter.active,

#custom-html-t6 .btn-twitter:active,

#custom-html-t6 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t6 .btn-twitter.disabled,

#custom-html-t6 .btn-twitter.disabled.active,

#custom-html-t6 .btn-twitter.disabled:active,

#custom-html-t6 .btn-twitter.disabled:focus,

#custom-html-t6 .btn-twitter.disabled:hover,

#custom-html-t6 .btn-twitter[disabled],

#custom-html-t6 .btn-twitter[disabled].active,

#custom-html-t6 .btn-twitter[disabled]:active,

#custom-html-t6 .btn-twitter[disabled]:focus,

#custom-html-t6 .btn-twitter[disabled]:hover,

#custom-html-t6 fieldset[disabled] .btn-twitter,

#custom-html-t6 fieldset[disabled] .btn-twitter.active,

#custom-html-t6 fieldset[disabled] .btn-twitter:active,

#custom-html-t6 fieldset[disabled] .btn-twitter:focus,

#custom-html-t6 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t6 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t6 .providerLinkingFeedback {

  display: none;

}

#custom-html-t6 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t6 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t6 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t6 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t6 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t6 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t6 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t6 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t6 #registration .field,

#custom-html-t6 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t6 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t6 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t6 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t6 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t6 #registration textarea.field {

  height: auto;

}

#custom-html-t6 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t6 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t6 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t6 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t6 #registration .field[disabled],

#custom-html-t6 #registration .field[readonly],

#custom-html-t6 #registration .form-control[disabled],

#custom-html-t6 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t6 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t6 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t6 .upgrade .product-to-be-upgraded h4,

#custom-html-t6 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t6 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t6 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t6 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t6 .upgrade .products .product .current,

#custom-html-t6 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t6 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t6 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-t6 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-t6 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t6 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t6 .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t6 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t6 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t6 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t6 .upgrade .products .far,

#custom-html-t6 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t6 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t6 .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-t6 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t6 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t6 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t6 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t6 .intl-tel-input {

  width: 100%;

}

#custom-html-t6 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t6 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .bootstrap-switch input[type=checkbox],

#custom-html-t6 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t6 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t6 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t6 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t6 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t6 .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-t6 .md-editor .md-footer,

#custom-html-t6 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t6 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t6 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t6 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t6 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t6 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t6 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t6 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t6 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t6 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t6 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t6 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t6 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t6 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t6 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t6 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t6 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t6 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t6 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t6 table.dataTable td,

#custom-html-t6 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t6 table.dataTable td.dataTables_empty,

#custom-html-t6 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t6 table.dataTable.nowrap td,

#custom-html-t6 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t6 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t6 table.dataTable thead > tr > td.sorting,

#custom-html-t6 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t6 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t6 table.dataTable thead > tr > th.sorting,

#custom-html-t6 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t6 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t6 table.dataTable thead > tr > td:active,

#custom-html-t6 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t6 table.dataTable thead .sorting,

#custom-html-t6 table.dataTable thead .sorting_asc,

#custom-html-t6 table.dataTable thead .sorting_asc_disabled,

#custom-html-t6 table.dataTable thead .sorting_desc,

#custom-html-t6 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t6 table.dataTable thead .sorting:after,

#custom-html-t6 table.dataTable thead .sorting_asc:after,

#custom-html-t6 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t6 table.dataTable thead .sorting_desc:after,

#custom-html-t6 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t6 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t6 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t6 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t6 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t6 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t6 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t6 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t6 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t6 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t6 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t6 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t6 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t6 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-t6 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t6 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t6 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t6 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-t6 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t6 table.dataTable.table-condensed .sorting:after,

#custom-html-t6 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t6 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t6 table.table-bordered.dataTable td,

#custom-html-t6 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t6 table.table-bordered.dataTable td:last-child,

#custom-html-t6 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t6 table.table-bordered.dataTable tbody td,

#custom-html-t6 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t6 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t6 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t6 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t6 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t6 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t6 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t6 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t6 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t6 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t6 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t6 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t6 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t6 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t6 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t6 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t6 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t6 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t6 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t6 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t6 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t6 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t6 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t6 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t6 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t6 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t6 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-t6 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t6 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t6 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t6 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t6 .multiselect-container > li {

  padding: 0;

}

#custom-html-t6 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t6 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t6 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t6 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t6 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t6 .multiselect-container > li > a > label.checkbox,

#custom-html-t6 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t6 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t6 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t6 .form-inline .multiselect-container label.checkbox,

#custom-html-t6 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t6 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t6 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sF3DAh7MyH .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3DAh7MyH .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3DAh7MyH .divider-top::before,

.cid-sF3DAh7MyH .divider-bottom::before,

.cid-sF3DAh7MyH .divider-top::after,

.cid-sF3DAh7MyH .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3DAh7MyH .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3DAh7MyH .divider-triangles::before {

  top: -50px;

}

.cid-sF3DAh7MyH .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3DAh7MyH .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3DAh7MyH .divider-multitriangles::before,

.cid-sF3DAh7MyH .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3DAh7MyH .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-ryYCvhqJLp {

  background-color: #ffffff;

}

@media (min-width: 992px) {

  .cid-ryYCvhqJLp .mbr-figure {

    padding-right: 4rem;

  }

}

@media (max-width: 991px) {

  .cid-ryYCvhqJLp .mbr-figure {

    padding-bottom: 3rem;

  }

}

@media (max-width: 767px) {

  .cid-ryYCvhqJLp .mbr-text {

    text-align: center;

  }

}

.cid-ryYCvhqJLp H1 {

  color: #000000;

}

.cid-ryYCvhqJLp .mbr-text,

.cid-ryYCvhqJLp .mbr-section-btn {

  color: #000000;

}

.cid-ryYCvhqJLp h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3Dsql4A5 .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3Dsql4A5 .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3Dsql4A5 .divider-top::before,

.cid-sF3Dsql4A5 .divider-bottom::before,

.cid-sF3Dsql4A5 .divider-top::after,

.cid-sF3Dsql4A5 .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3Dsql4A5 .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3Dsql4A5 .divider-triangles::before {

  top: -50px;

}

.cid-sF3Dsql4A5 .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3Dsql4A5 .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3Dsql4A5 .divider-multitriangles::before,

.cid-sF3Dsql4A5 .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3Dsql4A5 .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-s88ahiu32e {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s88ahiu32e h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s88ahiu32e p {

  color: #767676;

  text-align: left;

}

.cid-s88ahiu32e .card-box {

  padding-top: 2rem;

}

.cid-s88ahiu32e .card-wrapper {

  height: 100%;

}

.cid-svDDUKl9SH {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDDUKl9SH .content {

    text-align: center;

  }

  .cid-svDDUKl9SH .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDDUKl9SH .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDDUKl9SH .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDDUKl9SH .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDDUKl9SH .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDDUKl9SH .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDDUKl9SH .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDDUKl9SH .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDDUKl9SH .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDDUKl9SH .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDDUKl9SH .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDDUKl9SH .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDDUKl9SH .copyright > p {

  text-align: left;

}

.cid-svDDUKl9SH H5 {

  color: #000000;

}

#custom-html-s7 {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-s7 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-s7 body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-s7 article,

#custom-html-s7 aside,

#custom-html-s7 details,

#custom-html-s7 figcaption,

#custom-html-s7 figure,

#custom-html-s7 footer,

#custom-html-s7 header,

#custom-html-s7 hgroup,

#custom-html-s7 main,

#custom-html-s7 menu,

#custom-html-s7 nav,

#custom-html-s7 section,

#custom-html-s7 summary {

  display: block;

}

#custom-html-s7 audio,

#custom-html-s7 canvas,

#custom-html-s7 progress,

#custom-html-s7 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-s7 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-s7 [hidden],

#custom-html-s7 template {

  display: none;

}

#custom-html-s7 a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-s7 a:active,

#custom-html-s7 a:hover {

  outline: 0;

}

#custom-html-s7 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-s7 b,

#custom-html-s7 strong {

  font-weight: 700;

}

#custom-html-s7 dfn {

  font-style: italic;

}

#custom-html-s7 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-s7 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-s7 small {

  font-size: 80%;

}

#custom-html-s7 sub,

#custom-html-s7 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-s7 sup {

  top: -0.5em;

}

#custom-html-s7 sub {

  bottom: -0.25em;

}

#custom-html-s7 img {

  border: 0;

  vertical-align: middle;

}

#custom-html-s7 svg:not(:root) {

  overflow: hidden;

}

#custom-html-s7 figure {

  margin: 0;

}

#custom-html-s7 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-s7 pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-s7 code,

#custom-html-s7 kbd,

#custom-html-s7 pre,

#custom-html-s7 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-s7 button,

#custom-html-s7 input,

#custom-html-s7 optgroup,

#custom-html-s7 select,

#custom-html-s7 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-s7 button {

  overflow: visible;

}

#custom-html-s7 button,

#custom-html-s7 select {

  text-transform: none;

}

#custom-html-s7 button,

#custom-html-s7 html input[type=button],

#custom-html-s7 input[type=reset],

#custom-html-s7 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-s7 button[disabled],

#custom-html-s7 html input[disabled] {

  cursor: default;

}

#custom-html-s7 button::-moz-focus-inner,

#custom-html-s7 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-s7 input {

  line-height: normal;

}

#custom-html-s7 input[type=checkbox],

#custom-html-s7 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-s7 input[type=number]::-webkit-inner-spin-button,

#custom-html-s7 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-s7 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-s7 input[type=search]::-webkit-search-cancel-button,

#custom-html-s7 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-s7 fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-s7 legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-s7 textarea {

  overflow: auto;

}

#custom-html-s7 optgroup {

  font-weight: 700;

}

#custom-html-s7 table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-s7 td,

#custom-html-s7 th {

  padding: 0;

}

@media print {

  #custom-html-s7 *,

  #custom-html-s7 :after,

  #custom-html-s7 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-s7 a,

  #custom-html-s7 a:visited {

    text-decoration: underline;

  }

  #custom-html-s7 a[href]:after {

    content: "" !important;

  }

  #custom-html-s7 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-s7 a[href^="#"]:after,

  #custom-html-s7 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-s7 blockquote,

  #custom-html-s7 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-s7 thead {

    display: table-header-group;

  }

  #custom-html-s7 img,

  #custom-html-s7 tr {

    page-break-inside: avoid;

  }

  #custom-html-s7 img {

    max-width: 100% !important;

  }

  #custom-html-s7 h2,

  #custom-html-s7 h3,

  #custom-html-s7 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-s7 h2,

  #custom-html-s7 h3 {

    page-break-after: avoid;

  }

  #custom-html-s7 .navbar {

    display: none;

  }

  #custom-html-s7 .btn > .caret,

  #custom-html-s7 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-s7 .label {

    border: 1px solid #000000;

  }

  #custom-html-s7 .table {

    border-collapse: collapse !important;

  }

  #custom-html-s7 .table td,

  #custom-html-s7 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-s7 .table-bordered td,

  #custom-html-s7 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-s7 .visible-print {

    display: block !important;

  }

  #custom-html-s7 table.visible-print {

    display: table !important;

  }

  #custom-html-s7 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-s7 td.visible-print,

  #custom-html-s7 th.visible-print {

    display: table-cell !important;

  }

  #custom-html-s7 .visible-print-block {

    display: block !important;

  }

  #custom-html-s7 .visible-print-inline {

    display: inline !important;

  }

  #custom-html-s7 .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-s7 .hidden-print {

    display: none !important;

  }

  #custom-html-s7 #main-menu,

  #custom-html-s7 #top-nav,

  #custom-html-s7 .header-lined,

  #custom-html-s7 .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-s7 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-s7 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-s7 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-s7 .glyphicon-eur:before,

#custom-html-s7 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-s7 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-s7 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-s7 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-s7 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-s7 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-s7 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-s7 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-s7 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-s7 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-s7 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-s7 .glyphicon-user:before {

  content: "\e008";

}


#custom-html-s7 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-s7 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-s7 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-s7 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-s7 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-s7 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-s7 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-s7 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-s7 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-s7 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-s7 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-s7 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-s7 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-s7 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-s7 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-s7 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-s7 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-s7 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-s7 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-s7 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-s7 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-s7 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-s7 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-s7 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-s7 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-s7 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-s7 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-s7 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-s7 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-s7 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-s7 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-s7 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-s7 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-s7 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-s7 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-s7 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-s7 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-s7 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-s7 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-s7 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-s7 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-s7 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-s7 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-s7 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-s7 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-s7 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-s7 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-s7 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-s7 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-s7 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-s7 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-s7 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-s7 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-s7 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-s7 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-s7 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-s7 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-s7 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-s7 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-s7 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-s7 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-s7 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-s7 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-s7 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-s7 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-s7 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-s7 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-s7 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-s7 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-s7 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-s7 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-s7 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-s7 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-s7 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-s7 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-s7 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-s7 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-s7 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-s7 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-s7 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-s7 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-s7 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-s7 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-s7 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-s7 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-s7 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-s7 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-s7 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-s7 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-s7 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-s7 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-s7 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-s7 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-s7 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-s7 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-s7 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-s7 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-s7 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-s7 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-s7 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-s7 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-s7 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-s7 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-s7 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-s7 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-s7 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-s7 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-s7 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-s7 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-s7 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-s7 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-s7 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-s7 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-s7 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-s7 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-s7 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-s7 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-s7 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-s7 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-s7 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-s7 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-s7 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-s7 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-s7 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-s7 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-s7 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-s7 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-s7 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-s7 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-s7 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-s7 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-s7 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-s7 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-s7 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-s7 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-s7 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-s7 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-s7 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-s7 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-s7 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-s7 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-s7 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-s7 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-s7 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-s7 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-s7 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-s7 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-s7 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-s7 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-s7 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-s7 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-s7 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-s7 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-s7 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-s7 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-s7 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-s7 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-s7 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-s7 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-s7 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-s7 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-s7 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-s7 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-s7 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-s7 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-s7 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-s7 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-s7 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-s7 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-s7 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-s7 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-s7 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-s7 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-s7 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-s7 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-s7 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-s7 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-s7 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-s7 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-s7 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-s7 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-s7 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-s7 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-s7 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-s7 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-s7 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-s7 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-s7 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-s7 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-s7 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-s7 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-s7 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-s7 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-s7 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-s7 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-s7 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-s7 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-s7 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-s7 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-s7 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-s7 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-s7 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-s7 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-s7 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-s7 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-s7 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-s7 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-s7 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-s7 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-s7 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-s7 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-s7 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-s7 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-s7 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-s7 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-s7 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-s7 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-s7 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-s7 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-s7 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-s7 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-s7 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-s7 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-s7 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-s7 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-s7 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-s7 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-s7 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-s7 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-s7 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-s7 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-s7 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-s7 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-s7 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-s7 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-s7 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-s7 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-s7 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-s7 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-s7 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-s7 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-s7 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-s7 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-s7 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-s7 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-s7 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-s7 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-s7 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-s7 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-s7 :after,

#custom-html-s7 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-s7 button,

#custom-html-s7 input,

#custom-html-s7 select,

#custom-html-s7 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-s7 a:focus,

#custom-html-s7 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-s7 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-s7 .carousel-inner > .item > a > img,

#custom-html-s7 .carousel-inner > .item > img,

#custom-html-s7 .img-responsive,

#custom-html-s7 .thumbnail a > img,

#custom-html-s7 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-s7 .img-rounded {

  border-radius: 6px;

}

#custom-html-s7 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-s7 .img-circle {

  border-radius: 50%;

}

#custom-html-s7 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-s7 .sr-only-focusable:active,

#custom-html-s7 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-s7 [role=button] {

  cursor: pointer;

}

#custom-html-s7 .h1,

#custom-html-s7 .h2,

#custom-html-s7 .h3,

#custom-html-s7 .h4,

#custom-html-s7 .h5,

#custom-html-s7 .h6,

#custom-html-s7 h1,

#custom-html-s7 h2,

#custom-html-s7 h3,

#custom-html-s7 h4,

#custom-html-s7 h5,

#custom-html-s7 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-s7 .h1 .small,

#custom-html-s7 .h1 small,

#custom-html-s7 .h2 .small,

#custom-html-s7 .h2 small,

#custom-html-s7 .h3 .small,

#custom-html-s7 .h3 small,

#custom-html-s7 .h4 .small,

#custom-html-s7 .h4 small,

#custom-html-s7 .h5 .small,

#custom-html-s7 .h5 small,

#custom-html-s7 .h6 .small,

#custom-html-s7 .h6 small,

#custom-html-s7 h1 .small,

#custom-html-s7 h1 small,

#custom-html-s7 h2 .small,

#custom-html-s7 h2 small,

#custom-html-s7 h3 .small,

#custom-html-s7 h3 small,

#custom-html-s7 h4 .small,

#custom-html-s7 h4 small,

#custom-html-s7 h5 .small,

#custom-html-s7 h5 small,

#custom-html-s7 h6 .small,

#custom-html-s7 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-s7 .h1,

#custom-html-s7 .h2,

#custom-html-s7 .h3,

#custom-html-s7 h1,

#custom-html-s7 h2,

#custom-html-s7 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-s7 .h1 .small,

#custom-html-s7 .h1 small,

#custom-html-s7 .h2 .small,

#custom-html-s7 .h2 small,

#custom-html-s7 .h3 .small,

#custom-html-s7 .h3 small,

#custom-html-s7 h1 .small,

#custom-html-s7 h1 small,

#custom-html-s7 h2 .small,

#custom-html-s7 h2 small,

#custom-html-s7 h3 .small,

#custom-html-s7 h3 small {

  font-size: 65%;

}

#custom-html-s7 .h4,

#custom-html-s7 .h5,

#custom-html-s7 .h6,

#custom-html-s7 h4,

#custom-html-s7 h5,

#custom-html-s7 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-s7 .h4 .small,

#custom-html-s7 .h4 small,

#custom-html-s7 .h5 .small,

#custom-html-s7 .h5 small,

#custom-html-s7 .h6 .small,

#custom-html-s7 .h6 small,

#custom-html-s7 h4 .small,

#custom-html-s7 h4 small,

#custom-html-s7 h5 .small,

#custom-html-s7 h5 small,

#custom-html-s7 h6 .small,

#custom-html-s7 h6 small {

  font-size: 75%;

}

#custom-html-s7 .h1,

#custom-html-s7 h1 {

  font-size: 36px;

}

#custom-html-s7 .h2,

#custom-html-s7 h2 {

  font-size: 30px;

}

#custom-html-s7 .h3,

#custom-html-s7 h3 {

  font-size: 24px;

}

#custom-html-s7 .h4,

#custom-html-s7 h4 {

  font-size: 18px;

}

#custom-html-s7 .h5,

#custom-html-s7 h5 {

  font-size: 14px;

}

#custom-html-s7 .h6,

#custom-html-s7 h6 {

  font-size: 12px;

}

#custom-html-s7 p {

  margin: 0 0 10px;

}

#custom-html-s7 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-s7 .lead {

    font-size: 21px;

  }

  #custom-html-s7 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-s7 .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-s7 .container {

    width: 750px;

  }

  #custom-html-s7 .col-sm-1,

  #custom-html-s7 .col-sm-10,

  #custom-html-s7 .col-sm-11,

  #custom-html-s7 .col-sm-12,

  #custom-html-s7 .col-sm-2,

  #custom-html-s7 .col-sm-3,

  #custom-html-s7 .col-sm-4,

  #custom-html-s7 .col-sm-5,

  #custom-html-s7 .col-sm-6,

  #custom-html-s7 .col-sm-7,

  #custom-html-s7 .col-sm-8,

  #custom-html-s7 .col-sm-9 {

    float: left;

  }

  #custom-html-s7 .col-sm-12 {

    width: 100%;

  }

  #custom-html-s7 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-s7 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-s7 .col-sm-9 {

    width: 75%;

  }

  #custom-html-s7 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-s7 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-s7 .col-sm-6 {

    width: 50%;

  }

  #custom-html-s7 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-s7 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-s7 .col-sm-3 {

    width: 25%;

  }

  #custom-html-s7 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-s7 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-s7 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-s7 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-s7 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-s7 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-s7 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-s7 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-s7 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-s7 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-s7 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-s7 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-s7 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-s7 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-s7 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-s7 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-s7 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-s7 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-s7 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-s7 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-s7 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-s7 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-s7 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-s7 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-s7 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-s7 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-s7 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-s7 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-s7 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-s7 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-s7 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-s7 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-s7 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-s7 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-s7 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-s7 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-s7 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-s7 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-s7 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-s7 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-s7 .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-s7 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s7 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-s7 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-s7 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-s7 .form-inline .input-group .form-control,

  #custom-html-s7 .form-inline .input-group .input-group-addon,

  #custom-html-s7 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-s7 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-s7 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s7 .form-inline .checkbox,

  #custom-html-s7 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s7 .form-inline .checkbox label,

  #custom-html-s7 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-s7 .form-inline .checkbox input[type=checkbox],

  #custom-html-s7 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-s7 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-s7 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-s7 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-s7 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-s7 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-s7 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-s7 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-s7 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-s7 .nav-tabs.nav-justified > .active > a,

  #custom-html-s7 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-s7 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-s7 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-s7 .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-s7 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-s7 .nav-tabs-justified > .active > a,

  #custom-html-s7 .nav-tabs-justified > .active > a:focus,

  #custom-html-s7 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-s7 .navbar {

    border-radius: 4px;

  }

  #custom-html-s7 .navbar-header {

    float: left;

  }

  #custom-html-s7 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-s7 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-s7 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-s7 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-s7 .navbar-fixed-top .navbar-collapse,

  #custom-html-s7 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-s7 .container-fluid > .navbar-collapse,

  #custom-html-s7 .container-fluid > .navbar-header,

  #custom-html-s7 .container > .navbar-collapse,

  #custom-html-s7 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-s7 .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-s7 .navbar-fixed-bottom,

  #custom-html-s7 .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-s7 .navbar > .container .navbar-brand,

  #custom-html-s7 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-s7 .navbar-toggle {

    display: none;

  }

  #custom-html-s7 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-s7 .navbar-nav > li {

    float: left;

  }

  #custom-html-s7 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-s7 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s7 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-s7 .navbar-form .form-control-static {


    display: inline-block;

  }

  #custom-html-s7 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-s7 .navbar-form .input-group .form-control,

  #custom-html-s7 .navbar-form .input-group .input-group-addon,

  #custom-html-s7 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-s7 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-s7 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s7 .navbar-form .checkbox,

  #custom-html-s7 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s7 .navbar-form .checkbox label,

  #custom-html-s7 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-s7 .navbar-form .checkbox input[type=checkbox],

  #custom-html-s7 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-s7 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-s7 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-s7 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-s7 .navbar-left {

    float: left !important;

  }

  #custom-html-s7 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-s7 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-s7 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-s7 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-s7 .modal-sm {

    width: 300px;

  }

  #custom-html-s7 .pull-sm-left {

    float: left;

  }

  #custom-html-s7 .pull-sm-right {

    float: right;

  }

  #custom-html-s7 .text-right-sm {

    text-align: right;

  }

  #custom-html-s7 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-s7 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-s7 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-s7 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-s7 .email-verification .button {

    float: right;

  }

  #custom-html-s7 .email-verification .far,

  #custom-html-s7 .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-s7 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-s7 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-s7 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-s7 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-s7 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-s7 .small,

#custom-html-s7 small {

  font-size: 85%;

}

#custom-html-s7 .mark,

#custom-html-s7 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-s7 .text-left {

  text-align: left;

}

#custom-html-s7 .text-right {

  text-align: right;

}

#custom-html-s7 .text-center {

  text-align: center;

}

#custom-html-s7 .text-justify {

  text-align: justify;

}

#custom-html-s7 .text-nowrap {

  white-space: nowrap;

}

#custom-html-s7 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-s7 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-s7 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-s7 .text-muted {

  color: #777777;

}

#custom-html-s7 .text-primary {

  color: #000000;

}

#custom-html-s7 a.text-primary:focus,

#custom-html-s7 a.text-primary:hover {

  color: #000000;

}

#custom-html-s7 .text-success {

  color: #3c763d;

}

#custom-html-s7 a.text-success:focus,

#custom-html-s7 a.text-success:hover {

  color: #2b542c;

}

#custom-html-s7 .text-info {

  color: #31708f;

}

#custom-html-s7 a.text-info:focus,

#custom-html-s7 a.text-info:hover {

  color: #000000;

}

#custom-html-s7 .text-warning {

  color: #8a6d3b;

}

#custom-html-s7 a.text-warning:focus,

#custom-html-s7 a.text-warning:hover {

  color: #66512c;

}

#custom-html-s7 .text-danger {

  color: #a94442;

}

#custom-html-s7 a.text-danger:focus,

#custom-html-s7 a.text-danger:hover {

  color: #843534;

}

#custom-html-s7 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-s7 a.bg-primary:focus,

#custom-html-s7 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-s7 .bg-success {

  background-color: #dff0d8;

}

#custom-html-s7 a.bg-success:focus,

#custom-html-s7 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-s7 .bg-info {

  background-color: #d9edf7;

}

#custom-html-s7 a.bg-info:focus,

#custom-html-s7 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-s7 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-s7 a.bg-warning:focus,

#custom-html-s7 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-s7 .bg-danger {

  background-color: #f2dede;

}

#custom-html-s7 a.bg-danger:focus,

#custom-html-s7 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-s7 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-s7 ol,

#custom-html-s7 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-s7 ol ol,

#custom-html-s7 ol ul,

#custom-html-s7 ul ol,

#custom-html-s7 ul ul {

  margin-bottom: 0;

}

#custom-html-s7 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-s7 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-s7 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-s7 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-s7 dd,

#custom-html-s7 dt {

  line-height: 1.42857143;

}

#custom-html-s7 dt {

  font-weight: 700;

}

#custom-html-s7 dd {

  margin-left: 0;

}

#custom-html-s7 abbr[data-original-title],

#custom-html-s7 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-s7 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-s7 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-s7 blockquote ol:last-child,

#custom-html-s7 blockquote p:last-child,

#custom-html-s7 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-s7 blockquote .small,

#custom-html-s7 blockquote footer,

#custom-html-s7 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-s7 blockquote .small:before,

#custom-html-s7 blockquote footer:before,

#custom-html-s7 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-s7 .blockquote-reverse,

#custom-html-s7 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-s7 .blockquote-reverse .small:before,

#custom-html-s7 .blockquote-reverse footer:before,

#custom-html-s7 .blockquote-reverse small:before,

#custom-html-s7 blockquote.pull-right .small:before,

#custom-html-s7 blockquote.pull-right footer:before,

#custom-html-s7 blockquote.pull-right small:before {

  content: '';

}

#custom-html-s7 .blockquote-reverse .small:after,

#custom-html-s7 .blockquote-reverse footer:after,

#custom-html-s7 .blockquote-reverse small:after,

#custom-html-s7 blockquote.pull-right .small:after,

#custom-html-s7 blockquote.pull-right footer:after,

#custom-html-s7 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-s7 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-s7 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-s7 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-s7 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s7 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-s7 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-s7 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-s7 .container {

    width: 970px;

  }

  #custom-html-s7 .col-md-1,

  #custom-html-s7 .col-md-10,

  #custom-html-s7 .col-md-11,

  #custom-html-s7 .col-md-12,

  #custom-html-s7 .col-md-2,

  #custom-html-s7 .col-md-3,

  #custom-html-s7 .col-md-4,

  #custom-html-s7 .col-md-5,

  #custom-html-s7 .col-md-6,

  #custom-html-s7 .col-md-7,

  #custom-html-s7 .col-md-8,

  #custom-html-s7 .col-md-9 {

    float: left;

  }

  #custom-html-s7 .col-md-12 {

    width: 100%;

  }

  #custom-html-s7 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-s7 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-s7 .col-md-9 {

    width: 75%;

  }

  #custom-html-s7 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-s7 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-s7 .col-md-6 {

    width: 50%;

  }

  #custom-html-s7 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-s7 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-s7 .col-md-3 {

    width: 25%;

  }

  #custom-html-s7 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-s7 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-s7 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-s7 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-s7 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-s7 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-s7 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-s7 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-s7 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-s7 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-s7 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-s7 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-s7 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-s7 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-s7 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-s7 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-s7 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-s7 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-s7 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-s7 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-s7 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-s7 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-s7 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-s7 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-s7 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-s7 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-s7 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-s7 .col-md-push-0 {

    left: auto;

  }

  #custom-html-s7 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-s7 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-s7 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-s7 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-s7 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-s7 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-s7 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-s7 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-s7 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-s7 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-s7 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-s7 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-s7 .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-s7 .modal-lg {

    width: 900px;

  }

  #custom-html-s7 .pull-md-left {

    float: left;

  }

  #custom-html-s7 .pull-md-right {

    float: right;

  }

  #custom-html-s7 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-s7 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-s7 .container {

    width: 1170px;

  }

  #custom-html-s7 .col-lg-1,

  #custom-html-s7 .col-lg-10,

  #custom-html-s7 .col-lg-11,

  #custom-html-s7 .col-lg-12,

  #custom-html-s7 .col-lg-2,

  #custom-html-s7 .col-lg-3,

  #custom-html-s7 .col-lg-4,

  #custom-html-s7 .col-lg-5,

  #custom-html-s7 .col-lg-6,

  #custom-html-s7 .col-lg-7,

  #custom-html-s7 .col-lg-8,

  #custom-html-s7 .col-lg-9 {

    float: left;

  }

  #custom-html-s7 .col-lg-12 {

    width: 100%;

  }

  #custom-html-s7 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-s7 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-s7 .col-lg-9 {

    width: 75%;

  }

  #custom-html-s7 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-s7 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-s7 .col-lg-6 {

    width: 50%;

  }

  #custom-html-s7 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-s7 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-s7 .col-lg-3 {

    width: 25%;

  }

  #custom-html-s7 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-s7 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-s7 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-s7 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-s7 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-s7 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-s7 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-s7 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-s7 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-s7 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-s7 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-s7 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-s7 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-s7 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-s7 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-s7 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-s7 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-s7 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-s7 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-s7 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-s7 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-s7 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-s7 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-s7 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-s7 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-s7 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-s7 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-s7 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-s7 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-s7 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-s7 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-s7 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-s7 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-s7 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-s7 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-s7 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-s7 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-s7 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-s7 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-s7 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-s7 .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-s7 .visible-lg {

    display: block !important;

  }

  #custom-html-s7 table.visible-lg {

    display: table !important;

  }

  #custom-html-s7 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-s7 td.visible-lg,

  #custom-html-s7 th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-s7 .visible-lg-block {

    display: block !important;

  }

  #custom-html-s7 .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-s7 .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-s7 .hidden-lg {

    display: none !important;

  }

  #custom-html-s7 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-s7 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-s7 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-s7 .col-lg-1,

#custom-html-s7 .col-lg-10,

#custom-html-s7 .col-lg-11,

#custom-html-s7 .col-lg-12,

#custom-html-s7 .col-lg-2,

#custom-html-s7 .col-lg-3,

#custom-html-s7 .col-lg-4,

#custom-html-s7 .col-lg-5,

#custom-html-s7 .col-lg-6,

#custom-html-s7 .col-lg-7,

#custom-html-s7 .col-lg-8,

#custom-html-s7 .col-lg-9,

#custom-html-s7 .col-md-1,

#custom-html-s7 .col-md-10,

#custom-html-s7 .col-md-11,

#custom-html-s7 .col-md-12,

#custom-html-s7 .col-md-2,

#custom-html-s7 .col-md-3,

#custom-html-s7 .col-md-4,

#custom-html-s7 .col-md-5,

#custom-html-s7 .col-md-6,

#custom-html-s7 .col-md-7,

#custom-html-s7 .col-md-8,

#custom-html-s7 .col-md-9,

#custom-html-s7 .col-sm-1,

#custom-html-s7 .col-sm-10,

#custom-html-s7 .col-sm-11,

#custom-html-s7 .col-sm-12,

#custom-html-s7 .col-sm-2,

#custom-html-s7 .col-sm-3,

#custom-html-s7 .col-sm-4,

#custom-html-s7 .col-sm-5,

#custom-html-s7 .col-sm-6,

#custom-html-s7 .col-sm-7,

#custom-html-s7 .col-sm-8,

#custom-html-s7 .col-sm-9,

#custom-html-s7 .col-xs-1,

#custom-html-s7 .col-xs-10,

#custom-html-s7 .col-xs-11,

#custom-html-s7 .col-xs-12,

#custom-html-s7 .col-xs-2,

#custom-html-s7 .col-xs-3,

#custom-html-s7 .col-xs-4,

#custom-html-s7 .col-xs-5,

#custom-html-s7 .col-xs-6,

#custom-html-s7 .col-xs-7,

#custom-html-s7 .col-xs-8,

#custom-html-s7 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-s7 .col-xs-1,

#custom-html-s7 .col-xs-10,

#custom-html-s7 .col-xs-11,

#custom-html-s7 .col-xs-12,

#custom-html-s7 .col-xs-2,

#custom-html-s7 .col-xs-3,

#custom-html-s7 .col-xs-4,

#custom-html-s7 .col-xs-5,

#custom-html-s7 .col-xs-6,

#custom-html-s7 .col-xs-7,

#custom-html-s7 .col-xs-8,

#custom-html-s7 .col-xs-9 {

  float: left;

}

#custom-html-s7 .col-xs-12 {

  width: 100%;

}

#custom-html-s7 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-s7 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-s7 .col-xs-9 {

  width: 75%;

}

#custom-html-s7 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-s7 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-s7 .col-xs-6 {

  width: 50%;

}

#custom-html-s7 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-s7 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-s7 .col-xs-3 {

  width: 25%;

}

#custom-html-s7 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-s7 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-s7 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-s7 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-s7 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-s7 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-s7 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-s7 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-s7 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-s7 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-s7 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-s7 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-s7 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-s7 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-s7 .col-xs-pull-0 {

  right: auto;

}

#custom-html-s7 .col-xs-push-12 {

  left: 100%;

}

#custom-html-s7 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-s7 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-s7 .col-xs-push-9 {

  left: 75%;

}

#custom-html-s7 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-s7 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-s7 .col-xs-push-6 {

  left: 50%;

}

#custom-html-s7 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-s7 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-s7 .col-xs-push-3 {

  left: 25%;

}

#custom-html-s7 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-s7 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-s7 .col-xs-push-0 {

  left: auto;

}

#custom-html-s7 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-s7 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-s7 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-s7 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-s7 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-s7 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-s7 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-s7 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-s7 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-s7 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-s7 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-s7 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-s7 .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-s7 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-s7 th {

  text-align: left;

}

#custom-html-s7 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-s7 .table > tbody > tr > td,

#custom-html-s7 .table > tbody > tr > th,

#custom-html-s7 .table > tfoot > tr > td,

#custom-html-s7 .table > tfoot > tr > th,

#custom-html-s7 .table > thead > tr > td,

#custom-html-s7 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-s7 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-s7 .table > caption + thead > tr:first-child > td,


#custom-html-s7 .table > caption + thead > tr:first-child > th,

#custom-html-s7 .table > colgroup + thead > tr:first-child > td,

#custom-html-s7 .table > colgroup + thead > tr:first-child > th,

#custom-html-s7 .table > thead:first-child > tr:first-child > td,

#custom-html-s7 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-s7 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-s7 .table .table {

  background-color: #ffffff;

}

#custom-html-s7 .table-condensed > tbody > tr > td,

#custom-html-s7 .table-condensed > tbody > tr > th,

#custom-html-s7 .table-condensed > tfoot > tr > td,

#custom-html-s7 .table-condensed > tfoot > tr > th,

#custom-html-s7 .table-condensed > thead > tr > td,

#custom-html-s7 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-s7 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-s7 .table-bordered > tbody > tr > td,

#custom-html-s7 .table-bordered > tbody > tr > th,

#custom-html-s7 .table-bordered > tfoot > tr > td,

#custom-html-s7 .table-bordered > tfoot > tr > th,

#custom-html-s7 .table-bordered > thead > tr > td,

#custom-html-s7 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-s7 .table-bordered > thead > tr > td,

#custom-html-s7 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-s7 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-s7 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-s7 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-s7 table td[class*=col-],

#custom-html-s7 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-s7 .table > tbody > tr.active > td,

#custom-html-s7 .table > tbody > tr.active > th,

#custom-html-s7 .table > tbody > tr > td.active,

#custom-html-s7 .table > tbody > tr > th.active,

#custom-html-s7 .table > tfoot > tr.active > td,

#custom-html-s7 .table > tfoot > tr.active > th,

#custom-html-s7 .table > tfoot > tr > td.active,

#custom-html-s7 .table > tfoot > tr > th.active,

#custom-html-s7 .table > thead > tr.active > td,

#custom-html-s7 .table > thead > tr.active > th,

#custom-html-s7 .table > thead > tr > td.active,

#custom-html-s7 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-s7 .table-hover > tbody > tr.active:hover > td,

#custom-html-s7 .table-hover > tbody > tr.active:hover > th,

#custom-html-s7 .table-hover > tbody > tr:hover > .active,

#custom-html-s7 .table-hover > tbody > tr > td.active:hover,

#custom-html-s7 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-s7 .table > tbody > tr.success > td,

#custom-html-s7 .table > tbody > tr.success > th,

#custom-html-s7 .table > tbody > tr > td.success,

#custom-html-s7 .table > tbody > tr > th.success,

#custom-html-s7 .table > tfoot > tr.success > td,

#custom-html-s7 .table > tfoot > tr.success > th,

#custom-html-s7 .table > tfoot > tr > td.success,

#custom-html-s7 .table > tfoot > tr > th.success,

#custom-html-s7 .table > thead > tr.success > td,

#custom-html-s7 .table > thead > tr.success > th,

#custom-html-s7 .table > thead > tr > td.success,

#custom-html-s7 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-s7 .table-hover > tbody > tr.success:hover > td,

#custom-html-s7 .table-hover > tbody > tr.success:hover > th,

#custom-html-s7 .table-hover > tbody > tr:hover > .success,

#custom-html-s7 .table-hover > tbody > tr > td.success:hover,

#custom-html-s7 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-s7 .table > tbody > tr.info > td,

#custom-html-s7 .table > tbody > tr.info > th,

#custom-html-s7 .table > tbody > tr > td.info,

#custom-html-s7 .table > tbody > tr > th.info,

#custom-html-s7 .table > tfoot > tr.info > td,

#custom-html-s7 .table > tfoot > tr.info > th,

#custom-html-s7 .table > tfoot > tr > td.info,

#custom-html-s7 .table > tfoot > tr > th.info,

#custom-html-s7 .table > thead > tr.info > td,

#custom-html-s7 .table > thead > tr.info > th,

#custom-html-s7 .table > thead > tr > td.info,

#custom-html-s7 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-s7 .table-hover > tbody > tr.info:hover > td,

#custom-html-s7 .table-hover > tbody > tr.info:hover > th,

#custom-html-s7 .table-hover > tbody > tr:hover > .info,

#custom-html-s7 .table-hover > tbody > tr > td.info:hover,

#custom-html-s7 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-s7 .table > tbody > tr.warning > td,

#custom-html-s7 .table > tbody > tr.warning > th,

#custom-html-s7 .table > tbody > tr > td.warning,

#custom-html-s7 .table > tbody > tr > th.warning,

#custom-html-s7 .table > tfoot > tr.warning > td,

#custom-html-s7 .table > tfoot > tr.warning > th,

#custom-html-s7 .table > tfoot > tr > td.warning,

#custom-html-s7 .table > tfoot > tr > th.warning,

#custom-html-s7 .table > thead > tr.warning > td,

#custom-html-s7 .table > thead > tr.warning > th,

#custom-html-s7 .table > thead > tr > td.warning,

#custom-html-s7 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-s7 .table-hover > tbody > tr.warning:hover > td,

#custom-html-s7 .table-hover > tbody > tr.warning:hover > th,

#custom-html-s7 .table-hover > tbody > tr:hover > .warning,

#custom-html-s7 .table-hover > tbody > tr > td.warning:hover,

#custom-html-s7 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-s7 .table > tbody > tr.danger > td,

#custom-html-s7 .table > tbody > tr.danger > th,

#custom-html-s7 .table > tbody > tr > td.danger,

#custom-html-s7 .table > tbody > tr > th.danger,

#custom-html-s7 .table > tfoot > tr.danger > td,

#custom-html-s7 .table > tfoot > tr.danger > th,

#custom-html-s7 .table > tfoot > tr > td.danger,

#custom-html-s7 .table > tfoot > tr > th.danger,

#custom-html-s7 .table > thead > tr.danger > td,

#custom-html-s7 .table > thead > tr.danger > th,

#custom-html-s7 .table > thead > tr > td.danger,

#custom-html-s7 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-s7 .table-hover > tbody > tr.danger:hover > td,

#custom-html-s7 .table-hover > tbody > tr.danger:hover > th,

#custom-html-s7 .table-hover > tbody > tr:hover > .danger,

#custom-html-s7 .table-hover > tbody > tr > td.danger:hover,

#custom-html-s7 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-s7 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-s7 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-s7 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-s7 .table-responsive > .table > tbody > tr > td,

  #custom-html-s7 .table-responsive > .table > tbody > tr > th,

  #custom-html-s7 .table-responsive > .table > tfoot > tr > td,

  #custom-html-s7 .table-responsive > .table > tfoot > tr > th,

  #custom-html-s7 .table-responsive > .table > thead > tr > td,

  #custom-html-s7 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-s7 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-s7 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-s7 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-s7 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-s7 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-s7 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-s7 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-s7 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-s7 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-s7 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-s7 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-s7 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-s7 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-s7 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-s7 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-s7 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-s7 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-s7 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-s7 div.dataTables_wrapper div.dataTables_info,

  #custom-html-s7 div.dataTables_wrapper div.dataTables_length,

  #custom-html-s7 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-s7 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-s7 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-s7 input[type=file] {

  display: block;

}

#custom-html-s7 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-s7 select[multiple],

#custom-html-s7 select[size] {

  height: auto;

}

#custom-html-s7 input[type=checkbox]:focus,

#custom-html-s7 input[type=file]:focus,

#custom-html-s7 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-s7 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-s7 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-s7 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-s7 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-s7 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-s7 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-s7 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-s7 .form-control[disabled],

#custom-html-s7 .form-control[readonly],

#custom-html-s7 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-s7 .form-control[disabled],

#custom-html-s7 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-s7 textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-s7 input[type=date].form-control,

  #custom-html-s7 input[type=datetime-local].form-control,

  #custom-html-s7 input[type=month].form-control,

  #custom-html-s7 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-s7 .input-group-sm input[type=date],

  #custom-html-s7 .input-group-sm input[type=datetime-local],

  #custom-html-s7 .input-group-sm input[type=month],

  #custom-html-s7 .input-group-sm input[type=time],

  #custom-html-s7 input[type=date].input-sm,

  #custom-html-s7 input[type=datetime-local].input-sm,

  #custom-html-s7 input[type=month].input-sm,

  #custom-html-s7 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-s7 .input-group-lg input[type=date],

  #custom-html-s7 .input-group-lg input[type=datetime-local],

  #custom-html-s7 .input-group-lg input[type=month],

  #custom-html-s7 .input-group-lg input[type=time],

  #custom-html-s7 input[type=date].input-lg,

  #custom-html-s7 input[type=datetime-local].input-lg,

  #custom-html-s7 input[type=month].input-lg,

  #custom-html-s7 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-s7 .form-group {

  margin-bottom: 15px;

}

#custom-html-s7 .checkbox,

#custom-html-s7 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-s7 .checkbox label,

#custom-html-s7 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-s7 .checkbox input[type=checkbox],

#custom-html-s7 .checkbox-inline input[type=checkbox],

#custom-html-s7 .radio input[type=radio],

#custom-html-s7 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-s7 .checkbox + .checkbox,

#custom-html-s7 .radio + .radio {

  margin-top: -5px;

}

#custom-html-s7 .checkbox-inline,

#custom-html-s7 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-s7 .checkbox-inline + .checkbox-inline,

#custom-html-s7 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-s7 fieldset[disabled] input[type=checkbox],

#custom-html-s7 fieldset[disabled] input[type=radio],

#custom-html-s7 input[type=checkbox].disabled,

#custom-html-s7 input[type=checkbox][disabled],

#custom-html-s7 input[type=radio].disabled,

#custom-html-s7 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-s7 .checkbox-inline.disabled,

#custom-html-s7 .radio-inline.disabled,

#custom-html-s7 fieldset[disabled] .checkbox-inline,

#custom-html-s7 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-s7 .checkbox.disabled label,

#custom-html-s7 .radio.disabled label,

#custom-html-s7 fieldset[disabled] .checkbox label,

#custom-html-s7 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-s7 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-s7 .form-control-static.input-lg,

#custom-html-s7 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-s7 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s7 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-s7 select[multiple].input-sm,

#custom-html-s7 textarea.input-sm {

  height: auto;

}

#custom-html-s7 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s7 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-s7 .form-group-sm select[multiple].form-control,

#custom-html-s7 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-s7 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s7 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s7 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-s7 select[multiple].input-lg,

#custom-html-s7 textarea.input-lg {

  height: auto;

}

#custom-html-s7 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s7 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-s7 .form-group-lg select[multiple].form-control,

#custom-html-s7 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-s7 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-s7 .has-feedback {

  position: relative;

}

#custom-html-s7 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-s7 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-s7 .form-group-lg .form-control + .form-control-feedback,

#custom-html-s7 .input-group-lg + .form-control-feedback,

#custom-html-s7 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-s7 .form-group-sm .form-control + .form-control-feedback,

#custom-html-s7 .input-group-sm + .form-control-feedback,

#custom-html-s7 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-s7 .has-success .checkbox,

#custom-html-s7 .has-success .checkbox-inline,

#custom-html-s7 .has-success .control-label,

#custom-html-s7 .has-success .help-block,

#custom-html-s7 .has-success .radio,

#custom-html-s7 .has-success .radio-inline,

#custom-html-s7 .has-success.checkbox label,

#custom-html-s7 .has-success.checkbox-inline label,

#custom-html-s7 .has-success.radio label,

#custom-html-s7 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-s7 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-s7 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-s7 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-s7 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-s7 .has-warning .checkbox,

#custom-html-s7 .has-warning .checkbox-inline,

#custom-html-s7 .has-warning .control-label,

#custom-html-s7 .has-warning .help-block,

#custom-html-s7 .has-warning .radio,

#custom-html-s7 .has-warning .radio-inline,

#custom-html-s7 .has-warning.checkbox label,

#custom-html-s7 .has-warning.checkbox-inline label,

#custom-html-s7 .has-warning.radio label,

#custom-html-s7 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-s7 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-s7 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-s7 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-s7 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-s7 .has-error .checkbox,

#custom-html-s7 .has-error .checkbox-inline,

#custom-html-s7 .has-error .control-label,

#custom-html-s7 .has-error .help-block,

#custom-html-s7 .has-error .radio,

#custom-html-s7 .has-error .radio-inline,

#custom-html-s7 .has-error.checkbox label,

#custom-html-s7 .has-error.checkbox-inline label,

#custom-html-s7 .has-error.radio label,

#custom-html-s7 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-s7 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-s7 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-s7 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-s7 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-s7 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-s7 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-s7 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-s7 .form-horizontal .checkbox,

#custom-html-s7 .form-horizontal .checkbox-inline,

#custom-html-s7 .form-horizontal .radio,

#custom-html-s7 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-s7 .form-horizontal .checkbox,

#custom-html-s7 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-s7 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-s7 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-s7 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-s7 .btn.active.focus,

#custom-html-s7 .btn.active:focus,

#custom-html-s7 .btn.focus,

#custom-html-s7 .btn:active.focus,

#custom-html-s7 .btn:active:focus,

#custom-html-s7 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-s7 .btn.focus,

#custom-html-s7 .btn:focus,

#custom-html-s7 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-s7 .btn.active,

#custom-html-s7 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-s7 .btn.disabled,

#custom-html-s7 .btn[disabled],

#custom-html-s7 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-s7 a.btn.disabled,

#custom-html-s7 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-s7 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-s7 .btn-default.focus,

#custom-html-s7 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-s7 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-s7 .btn-default.active,

#custom-html-s7 .btn-default:active,

#custom-html-s7 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-s7 .btn-default.active.focus,

#custom-html-s7 .btn-default.active:focus,

#custom-html-s7 .btn-default.active:hover,

#custom-html-s7 .btn-default:active.focus,

#custom-html-s7 .btn-default:active:focus,

#custom-html-s7 .btn-default:active:hover,

#custom-html-s7 .open > .dropdown-toggle.btn-default.focus,

#custom-html-s7 .open > .dropdown-toggle.btn-default:focus,

#custom-html-s7 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-s7 .btn-default.disabled.focus,

#custom-html-s7 .btn-default.disabled:focus,

#custom-html-s7 .btn-default.disabled:hover,

#custom-html-s7 .btn-default[disabled].focus,

#custom-html-s7 .btn-default[disabled]:focus,

#custom-html-s7 .btn-default[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-default.focus,

#custom-html-s7 fieldset[disabled] .btn-default:focus,

#custom-html-s7 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-s7 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-s7 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-s7 .btn-primary.focus,

#custom-html-s7 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-s7 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-s7 .btn-primary.active,

#custom-html-s7 .btn-primary:active,

#custom-html-s7 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-s7 .btn-primary.active.focus,

#custom-html-s7 .btn-primary.active:focus,

#custom-html-s7 .btn-primary.active:hover,

#custom-html-s7 .btn-primary:active.focus,

#custom-html-s7 .btn-primary:active:focus,

#custom-html-s7 .btn-primary:active:hover,

#custom-html-s7 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-s7 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-s7 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-s7 .btn-primary.disabled.focus,

#custom-html-s7 .btn-primary.disabled:focus,

#custom-html-s7 .btn-primary.disabled:hover,

#custom-html-s7 .btn-primary[disabled].focus,

#custom-html-s7 .btn-primary[disabled]:focus,

#custom-html-s7 .btn-primary[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-primary.focus,

#custom-html-s7 fieldset[disabled] .btn-primary:focus,

#custom-html-s7 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-s7 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-s7 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-s7 .btn-success.focus,

#custom-html-s7 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-s7 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-s7 .btn-success.active,

#custom-html-s7 .btn-success:active,

#custom-html-s7 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-s7 .btn-success.active.focus,

#custom-html-s7 .btn-success.active:focus,

#custom-html-s7 .btn-success.active:hover,

#custom-html-s7 .btn-success:active.focus,

#custom-html-s7 .btn-success:active:focus,

#custom-html-s7 .btn-success:active:hover,

#custom-html-s7 .open > .dropdown-toggle.btn-success.focus,

#custom-html-s7 .open > .dropdown-toggle.btn-success:focus,

#custom-html-s7 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-s7 .btn-success.disabled.focus,

#custom-html-s7 .btn-success.disabled:focus,

#custom-html-s7 .btn-success.disabled:hover,

#custom-html-s7 .btn-success[disabled].focus,

#custom-html-s7 .btn-success[disabled]:focus,

#custom-html-s7 .btn-success[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-success.focus,

#custom-html-s7 fieldset[disabled] .btn-success:focus,

#custom-html-s7 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-s7 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-s7 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-s7 .btn-info.focus,

#custom-html-s7 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-s7 .btn-info:hover {


  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-s7 .btn-info.active,

#custom-html-s7 .btn-info:active,

#custom-html-s7 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-s7 .btn-info.active.focus,

#custom-html-s7 .btn-info.active:focus,

#custom-html-s7 .btn-info.active:hover,

#custom-html-s7 .btn-info:active.focus,

#custom-html-s7 .btn-info:active:focus,

#custom-html-s7 .btn-info:active:hover,

#custom-html-s7 .open > .dropdown-toggle.btn-info.focus,

#custom-html-s7 .open > .dropdown-toggle.btn-info:focus,

#custom-html-s7 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-s7 .btn-info.disabled.focus,

#custom-html-s7 .btn-info.disabled:focus,

#custom-html-s7 .btn-info.disabled:hover,

#custom-html-s7 .btn-info[disabled].focus,

#custom-html-s7 .btn-info[disabled]:focus,

#custom-html-s7 .btn-info[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-info.focus,

#custom-html-s7 fieldset[disabled] .btn-info:focus,

#custom-html-s7 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-s7 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-s7 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-s7 .btn-warning.focus,

#custom-html-s7 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-s7 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-s7 .btn-warning.active,

#custom-html-s7 .btn-warning:active,

#custom-html-s7 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-s7 .btn-warning.active.focus,

#custom-html-s7 .btn-warning.active:focus,

#custom-html-s7 .btn-warning.active:hover,

#custom-html-s7 .btn-warning:active.focus,

#custom-html-s7 .btn-warning:active:focus,

#custom-html-s7 .btn-warning:active:hover,

#custom-html-s7 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-s7 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-s7 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-s7 .btn-warning.disabled.focus,

#custom-html-s7 .btn-warning.disabled:focus,

#custom-html-s7 .btn-warning.disabled:hover,

#custom-html-s7 .btn-warning[disabled].focus,

#custom-html-s7 .btn-warning[disabled]:focus,

#custom-html-s7 .btn-warning[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-warning.focus,

#custom-html-s7 fieldset[disabled] .btn-warning:focus,

#custom-html-s7 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-s7 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-s7 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-s7 .btn-danger.focus,

#custom-html-s7 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-s7 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-s7 .btn-danger.active,

#custom-html-s7 .btn-danger:active,

#custom-html-s7 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-s7 .btn-danger.active.focus,

#custom-html-s7 .btn-danger.active:focus,

#custom-html-s7 .btn-danger.active:hover,

#custom-html-s7 .btn-danger:active.focus,

#custom-html-s7 .btn-danger:active:focus,

#custom-html-s7 .btn-danger:active:hover,

#custom-html-s7 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-s7 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-s7 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-s7 .btn-danger.disabled.focus,

#custom-html-s7 .btn-danger.disabled:focus,

#custom-html-s7 .btn-danger.disabled:hover,

#custom-html-s7 .btn-danger[disabled].focus,

#custom-html-s7 .btn-danger[disabled]:focus,

#custom-html-s7 .btn-danger[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-danger.focus,

#custom-html-s7 fieldset[disabled] .btn-danger:focus,

#custom-html-s7 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-s7 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-s7 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-s7 .btn-link,

#custom-html-s7 .btn-link.active,

#custom-html-s7 .btn-link:active,

#custom-html-s7 .btn-link[disabled],

#custom-html-s7 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s7 .btn-link,

#custom-html-s7 .btn-link:active,

#custom-html-s7 .btn-link:focus,

#custom-html-s7 .btn-link:hover {

  border-color: transparent;

}

#custom-html-s7 .btn-link:focus,

#custom-html-s7 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-s7 .btn-link[disabled]:focus,

#custom-html-s7 .btn-link[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-link:focus,

#custom-html-s7 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-s7 .btn-group-lg > .btn,

#custom-html-s7 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s7 .btn-group-sm > .btn,

#custom-html-s7 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s7 .btn-group-xs > .btn,

#custom-html-s7 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s7 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-s7 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-s7 input[type=button].btn-block,

#custom-html-s7 input[type=reset].btn-block,

#custom-html-s7 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-s7 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-s7 .fade.in {

  opacity: 1;

}

#custom-html-s7 .collapse {

  display: none;

}

#custom-html-s7 .collapse.in {

  display: block;

}

#custom-html-s7 tr.collapse.in {

  display: table-row;

}

#custom-html-s7 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-s7 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-s7 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-s7 .dropdown,

#custom-html-s7 .dropup {

  position: relative;

}

#custom-html-s7 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-s7 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-s7 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-s7 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-s7 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-s7 .dropdown-menu > li > a:focus,

#custom-html-s7 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-s7 .dropdown-menu > .active > a,

#custom-html-s7 .dropdown-menu > .active > a:focus,

#custom-html-s7 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-s7 .dropdown-menu > .disabled > a,

#custom-html-s7 .dropdown-menu > .disabled > a:focus,

#custom-html-s7 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-s7 .dropdown-menu > .disabled > a:focus,

#custom-html-s7 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-s7 .open > .dropdown-menu {

  display: block;

}

#custom-html-s7 .open > a {

  outline: 0;

}

#custom-html-s7 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-s7 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-s7 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-s7 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-s7 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-s7 .dropup .caret,

#custom-html-s7 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-s7 .dropup .dropdown-menu,

#custom-html-s7 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-s7 .btn-group,

#custom-html-s7 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-s7 .btn-group-vertical > .btn,

#custom-html-s7 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-s7 .btn-group-vertical > .btn.active,

#custom-html-s7 .btn-group-vertical > .btn:active,

#custom-html-s7 .btn-group-vertical > .btn:focus,

#custom-html-s7 .btn-group-vertical > .btn:hover,

#custom-html-s7 .btn-group > .btn.active,

#custom-html-s7 .btn-group > .btn:active,

#custom-html-s7 .btn-group > .btn:focus,

#custom-html-s7 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-s7 .btn-group .btn + .btn,

#custom-html-s7 .btn-group .btn + .btn-group,

#custom-html-s7 .btn-group .btn-group + .btn,

#custom-html-s7 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-s7 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-s7 .btn-toolbar .btn,

#custom-html-s7 .btn-toolbar .btn-group,

#custom-html-s7 .btn-toolbar .input-group {

  float: left;

}

#custom-html-s7 .btn-toolbar > .btn,

#custom-html-s7 .btn-toolbar > .btn-group,

#custom-html-s7 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-s7 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-s7 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-s7 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-s7 .btn-group > .btn:last-child:not(:first-child),

#custom-html-s7 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s7 .btn-group > .btn-group {

  float: left;

}

#custom-html-s7 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-s7 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-s7 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-s7 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s7 .btn-group .dropdown-toggle:active,

#custom-html-s7 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-s7 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-s7 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-s7 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-s7 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s7 .btn .caret {

  margin-left: 0;

}

#custom-html-s7 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-s7 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-s7 .btn-group-vertical > .btn,

#custom-html-s7 .btn-group-vertical > .btn-group,

#custom-html-s7 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-s7 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-s7 .btn-group-vertical > .btn + .btn,

#custom-html-s7 .btn-group-vertical > .btn + .btn-group,

#custom-html-s7 .btn-group-vertical > .btn-group + .btn,

#custom-html-s7 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-s7 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-s7 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s7 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s7 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-s7 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-s7 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s7 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s7 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-s7 .btn-group-justified > .btn,

#custom-html-s7 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-s7 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-s7 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-s7 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-s7 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-s7 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-s7 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-s7 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-s7 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-s7 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-s7 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-s7 .input-group-lg > .form-control,

#custom-html-s7 .input-group-lg > .input-group-addon,

#custom-html-s7 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s7 select.input-group-lg > .form-control,

#custom-html-s7 select.input-group-lg > .input-group-addon,

#custom-html-s7 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-s7 select[multiple].input-group-lg > .form-control,

#custom-html-s7 select[multiple].input-group-lg > .input-group-addon,

#custom-html-s7 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-s7 textarea.input-group-lg > .form-control,

#custom-html-s7 textarea.input-group-lg > .input-group-addon,

#custom-html-s7 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-s7 .input-group-sm > .form-control,

#custom-html-s7 .input-group-sm > .input-group-addon,

#custom-html-s7 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s7 select.input-group-sm > .form-control,

#custom-html-s7 select.input-group-sm > .input-group-addon,

#custom-html-s7 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-s7 select[multiple].input-group-sm > .form-control,

#custom-html-s7 select[multiple].input-group-sm > .input-group-addon,

#custom-html-s7 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-s7 textarea.input-group-sm > .form-control,

#custom-html-s7 textarea.input-group-sm > .input-group-addon,

#custom-html-s7 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-s7 .input-group .form-control,

#custom-html-s7 .input-group-addon,

#custom-html-s7 .input-group-btn {

  display: table-cell;

}

#custom-html-s7 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-s7 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-s7 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-s7 .input-group-addon,

#custom-html-s7 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-s7 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-s7 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-s7 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-s7 .input-group-addon input[type=checkbox],

#custom-html-s7 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-s7 .input-group .form-control:first-child,

#custom-html-s7 .input-group-addon:first-child,

#custom-html-s7 .input-group-btn:first-child > .btn,

#custom-html-s7 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-s7 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-s7 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-s7 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-s7 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-s7 .input-group .form-control:last-child,

#custom-html-s7 .input-group-addon:last-child,

#custom-html-s7 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-s7 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-s7 .input-group-btn:last-child > .btn,

#custom-html-s7 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-s7 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s7 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-s7 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-s7 .input-group-btn > .btn {

  position: relative;

}

#custom-html-s7 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-s7 .input-group-btn > .btn:active,

#custom-html-s7 .input-group-btn > .btn:focus,

#custom-html-s7 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-s7 .input-group-btn:first-child > .btn,

#custom-html-s7 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-s7 .input-group-btn:last-child > .btn,

#custom-html-s7 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-s7 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-s7 .nav > li {

  position: relative;

  display: block;

}

#custom-html-s7 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-s7 .nav > li > a:focus,

#custom-html-s7 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-s7 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-s7 .nav > li.disabled > a:focus,

#custom-html-s7 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-s7 .nav .open > a,

#custom-html-s7 .nav .open > a:focus,

#custom-html-s7 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-s7 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-s7 .nav > li > a > img {

  max-width: none;

}

#custom-html-s7 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-s7 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-s7 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-s7 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-s7 .nav-tabs > li.active > a,

#custom-html-s7 .nav-tabs > li.active > a:focus,

#custom-html-s7 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-s7 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-s7 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-s7 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-s7 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-s7 .nav-tabs.nav-justified > .active > a,

#custom-html-s7 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-s7 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-s7 .nav-pills > li {

  float: left;

}

#custom-html-s7 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-s7 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-s7 .nav-pills > li.active > a,

#custom-html-s7 .nav-pills > li.active > a:focus,

#custom-html-s7 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-s7 .nav-stacked > li {

  float: none;

}

#custom-html-s7 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-s7 .nav-justified {

  width: 100%;

}

#custom-html-s7 .nav-justified > li {

  float: none;

}

#custom-html-s7 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-s7 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-s7 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-s7 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-s7 .nav-tabs-justified > .active > a,

#custom-html-s7 .nav-tabs-justified > .active > a:focus,

#custom-html-s7 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-s7 .tab-content > .tab-pane {

  display: none;

}

#custom-html-s7 .tab-content > .active {

  display: block;

}

#custom-html-s7 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s7 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-s7 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-s7 .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-s7 .navbar-fixed-bottom .navbar-collapse,

#custom-html-s7 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-s7 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-s7 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-s7 .container-fluid > .navbar-collapse,

#custom-html-s7 .container-fluid > .navbar-header,

#custom-html-s7 .container > .navbar-collapse,

#custom-html-s7 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-s7 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-s7 .navbar-fixed-bottom,

#custom-html-s7 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-s7 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-s7 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-s7 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-s7 .navbar-brand:focus,

#custom-html-s7 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-s7 .navbar-brand > img {

  display: block;

}

#custom-html-s7 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-s7 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-s7 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-s7 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-s7 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-s7 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-s7 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-s7 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-s7 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-s7 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-s7 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-s7 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-s7 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-s7 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-s7 .visible-xs {

    display: block !important;

  }

  #custom-html-s7 table.visible-xs {

    display: table !important;

  }

  #custom-html-s7 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-s7 td.visible-xs,

  #custom-html-s7 th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-s7 .visible-xs-block {

    display: block !important;

  }

  #custom-html-s7 .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-s7 .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-s7 .hidden-xs {

    display: none !important;

  }

  #custom-html-s7 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-s7 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-s7 section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-s7 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-s7 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-s7 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-s7 .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-s7 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-s7 .tiles .tile:nth-child(1),

  #custom-html-s7 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-s7 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-s7 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-s7 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-s7 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-s7 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-s7 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-s7 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-s7 .promo-banner form {

    text-align: center;

  }

}

#custom-html-s7 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-s7 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s7 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s7 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-s7 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-s7 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-s7 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-s7 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-s7 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-s7 .navbar-default .navbar-brand:focus,

#custom-html-s7 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-s7 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-s7 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-s7 .navbar-default .navbar-nav > li > a:focus,

#custom-html-s7 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-s7 .navbar-default .navbar-nav > .active > a,

#custom-html-s7 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-s7 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-s7 .navbar-default .navbar-nav > .disabled > a,

#custom-html-s7 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-s7 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-s7 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-s7 .navbar-default .navbar-toggle:focus,

#custom-html-s7 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-s7 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-s7 .navbar-default .navbar-collapse,

#custom-html-s7 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-s7 .navbar-default .navbar-nav > .open > a,

#custom-html-s7 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-s7 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-s7 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-s7 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-s7 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-s7 .navbar-default .btn-link:focus,

#custom-html-s7 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-s7 .navbar-default .btn-link[disabled]:focus,

#custom-html-s7 .navbar-default .btn-link[disabled]:hover,

#custom-html-s7 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-s7 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-s7 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-s7 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-s7 .navbar-inverse .navbar-brand:focus,

#custom-html-s7 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-s7 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-s7 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-s7 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-s7 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-s7 .navbar-inverse .navbar-nav > .active > a,

#custom-html-s7 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-s7 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-s7 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-s7 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-s7 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-s7 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-s7 .navbar-inverse .navbar-toggle:focus,

#custom-html-s7 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-s7 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-s7 .navbar-inverse .navbar-collapse,

#custom-html-s7 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-s7 .navbar-inverse .navbar-nav > .open > a,

#custom-html-s7 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-s7 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-s7 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-s7 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-s7 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-s7 .navbar-inverse .btn-link:focus,

#custom-html-s7 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-s7 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-s7 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-s7 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-s7 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-s7 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-s7 .breadcrumb > li {

  display: inline-block;

}

#custom-html-s7 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-s7 .breadcrumb > .active {

  color: #777777;

}

#custom-html-s7 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-s7 .pagination > li {

  display: inline;

}

#custom-html-s7 .pagination > li > a,

#custom-html-s7 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-s7 .pagination > li:first-child > a,

#custom-html-s7 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s7 .pagination > li:last-child > a,

#custom-html-s7 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-s7 .pagination > li > a:focus,

#custom-html-s7 .pagination > li > a:hover,

#custom-html-s7 .pagination > li > span:focus,

#custom-html-s7 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-s7 .pagination > .active > a,

#custom-html-s7 .pagination > .active > a:focus,

#custom-html-s7 .pagination > .active > a:hover,

#custom-html-s7 .pagination > .active > span,

#custom-html-s7 .pagination > .active > span:focus,

#custom-html-s7 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-s7 .pagination > .disabled > a,

#custom-html-s7 .pagination > .disabled > a:focus,

#custom-html-s7 .pagination > .disabled > a:hover,

#custom-html-s7 .pagination > .disabled > span,

#custom-html-s7 .pagination > .disabled > span:focus,

#custom-html-s7 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-s7 .pagination-lg > li > a,

#custom-html-s7 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-s7 .pagination-lg > li:first-child > a,

#custom-html-s7 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-s7 .pagination-lg > li:last-child > a,

#custom-html-s7 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-s7 .pagination-sm > li > a,

#custom-html-s7 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s7 .pagination-sm > li:first-child > a,

#custom-html-s7 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s7 .pagination-sm > li:last-child > a,

#custom-html-s7 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-s7 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-s7 .pager li {

  display: inline;

}

#custom-html-s7 .pager li > a,

#custom-html-s7 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-s7 .pager li > a:focus,

#custom-html-s7 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-s7 .pager .next > a,

#custom-html-s7 .pager .next > span {

  float: right;

}

#custom-html-s7 .pager .previous > a,

#custom-html-s7 .pager .previous > span {

  float: left;

}

#custom-html-s7 .pager .disabled > a,

#custom-html-s7 .pager .disabled > a:focus,

#custom-html-s7 .pager .disabled > a:hover,

#custom-html-s7 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-s7 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-s7 a.label:focus,

#custom-html-s7 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-s7 .label:empty {

  display: none;

}

#custom-html-s7 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-s7 .label-default {

  background-color: #777777;

}

#custom-html-s7 .label-default[href]:focus,

#custom-html-s7 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-s7 .label-primary {

  background-color: #337ab7;

}

#custom-html-s7 .label-primary[href]:focus,

#custom-html-s7 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-s7 .label-success {

  background-color: #5cb85c;

}

#custom-html-s7 .label-success[href]:focus,

#custom-html-s7 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-s7 .label-info {

  background-color: #5bc0de;

}

#custom-html-s7 .label-info[href]:focus,

#custom-html-s7 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-s7 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-s7 .label-warning[href]:focus,

#custom-html-s7 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-s7 .label-danger {

  background-color: #d9534f;

}

#custom-html-s7 .label-danger[href]:focus,

#custom-html-s7 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-s7 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-s7 .badge:empty {

  display: none;

}

#custom-html-s7 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-s7 .btn-group-xs > .btn .badge,

#custom-html-s7 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-s7 a.badge:focus,

#custom-html-s7 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-s7 .list-group-item.active > .badge,

#custom-html-s7 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-s7 .list-group-item > .badge {

  float: right;

}

#custom-html-s7 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-s7 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-s7 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-s7 .jumbotron .h1,

#custom-html-s7 .jumbotron h1 {

  color: inherit;

}

#custom-html-s7 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-s7 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-s7 .container .jumbotron,

#custom-html-s7 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-s7 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-s7 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-s7 .container .jumbotron,

  #custom-html-s7 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-s7 .jumbotron .h1,

  #custom-html-s7 .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-s7 .carousel-control .glyphicon-chevron-left,

  #custom-html-s7 .carousel-control .glyphicon-chevron-right,

  #custom-html-s7 .carousel-control .icon-next,

  #custom-html-s7 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-s7 .carousel-control .glyphicon-chevron-left,

  #custom-html-s7 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-s7 .carousel-control .glyphicon-chevron-right,

  #custom-html-s7 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-s7 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-s7 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-s7 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-s7 .thumbnail a > img,

#custom-html-s7 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-s7 a.thumbnail.active,

#custom-html-s7 a.thumbnail:focus,

#custom-html-s7 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-s7 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-s7 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-s7 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-s7 .alert .alert-link {

  font-weight: 700;

}

#custom-html-s7 .alert > p,

#custom-html-s7 .alert > ul {

  margin-bottom: 0;

}

#custom-html-s7 .alert > p + p {

  margin-top: 5px;

}

#custom-html-s7 .alert-dismissable,

#custom-html-s7 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-s7 .alert-dismissable .close,

#custom-html-s7 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-s7 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-s7 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-s7 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-s7 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-s7 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-s7 .alert-info .alert-link {

  color: #000000;

}

#custom-html-s7 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-s7 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-s7 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-s7 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-s7 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-s7 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-s7 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-s7 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-s7 .progress-bar-striped,

#custom-html-s7 .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-s7 .progress-bar.active,

#custom-html-s7 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-s7 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-s7 .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s7 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-s7 .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s7 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-s7 .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s7 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-s7 .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s7 .media {

  margin-top: 15px;

}

#custom-html-s7 .media:first-child {

  margin-top: 0;

}

#custom-html-s7 .media,

#custom-html-s7 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-s7 .media-body {

  width: 10000px;

}

#custom-html-s7 .media-object {

  display: block;

}

#custom-html-s7 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-s7 .media-right,

#custom-html-s7 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-s7 .media-left,

#custom-html-s7 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-s7 .media-body,

#custom-html-s7 .media-left,

#custom-html-s7 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-s7 .media-middle {

  vertical-align: middle;

}

#custom-html-s7 .media-bottom {

  vertical-align: bottom;

}

#custom-html-s7 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-s7 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-s7 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-s7 .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-s7 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-s7 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s7 a.list-group-item,

#custom-html-s7 button.list-group-item {

  color: #555555;

}

#custom-html-s7 a.list-group-item .list-group-item-heading,

#custom-html-s7 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-s7 a.list-group-item:focus,

#custom-html-s7 a.list-group-item:hover,

#custom-html-s7 button.list-group-item:focus,

#custom-html-s7 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-s7 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-s7 .list-group-item.disabled,

#custom-html-s7 .list-group-item.disabled:focus,

#custom-html-s7 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-s7 .list-group-item.disabled .list-group-item-heading,

#custom-html-s7 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-s7 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-s7 .list-group-item.disabled .list-group-item-text,

#custom-html-s7 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-s7 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-s7 .list-group-item.active,

#custom-html-s7 .list-group-item.active:focus,

#custom-html-s7 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-s7 .list-group-item.active .list-group-item-heading,

#custom-html-s7 .list-group-item.active .list-group-item-heading > .small,

#custom-html-s7 .list-group-item.active .list-group-item-heading > small,

#custom-html-s7 .list-group-item.active:focus .list-group-item-heading,

#custom-html-s7 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-s7 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-s7 .list-group-item.active:hover .list-group-item-heading,

#custom-html-s7 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-s7 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-s7 .list-group-item.active .list-group-item-text,

#custom-html-s7 .list-group-item.active:focus .list-group-item-text,

#custom-html-s7 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-s7 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-s7 a.list-group-item-success,

#custom-html-s7 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-s7 a.list-group-item-success .list-group-item-heading,

#custom-html-s7 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-s7 a.list-group-item-success:focus,

#custom-html-s7 a.list-group-item-success:hover,

#custom-html-s7 button.list-group-item-success:focus,

#custom-html-s7 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-s7 a.list-group-item-success.active,

#custom-html-s7 a.list-group-item-success.active:focus,

#custom-html-s7 a.list-group-item-success.active:hover,

#custom-html-s7 button.list-group-item-success.active,

#custom-html-s7 button.list-group-item-success.active:focus,

#custom-html-s7 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-s7 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-s7 a.list-group-item-info,

#custom-html-s7 button.list-group-item-info {

  color: #31708f;

}

#custom-html-s7 a.list-group-item-info .list-group-item-heading,

#custom-html-s7 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-s7 a.list-group-item-info:focus,

#custom-html-s7 a.list-group-item-info:hover,

#custom-html-s7 button.list-group-item-info:focus,

#custom-html-s7 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-s7 a.list-group-item-info.active,

#custom-html-s7 a.list-group-item-info.active:focus,

#custom-html-s7 a.list-group-item-info.active:hover,

#custom-html-s7 button.list-group-item-info.active,

#custom-html-s7 button.list-group-item-info.active:focus,

#custom-html-s7 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-s7 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-s7 a.list-group-item-warning,

#custom-html-s7 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-s7 a.list-group-item-warning .list-group-item-heading,

#custom-html-s7 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-s7 a.list-group-item-warning:focus,

#custom-html-s7 a.list-group-item-warning:hover,

#custom-html-s7 button.list-group-item-warning:focus,

#custom-html-s7 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-s7 a.list-group-item-warning.active,

#custom-html-s7 a.list-group-item-warning.active:focus,

#custom-html-s7 a.list-group-item-warning.active:hover,

#custom-html-s7 button.list-group-item-warning.active,

#custom-html-s7 button.list-group-item-warning.active:focus,

#custom-html-s7 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-s7 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-s7 a.list-group-item-danger,

#custom-html-s7 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-s7 a.list-group-item-danger .list-group-item-heading,

#custom-html-s7 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-s7 a.list-group-item-danger:focus,

#custom-html-s7 a.list-group-item-danger:hover,

#custom-html-s7 button.list-group-item-danger:focus,

#custom-html-s7 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-s7 a.list-group-item-danger.active,

#custom-html-s7 a.list-group-item-danger.active:focus,

#custom-html-s7 a.list-group-item-danger.active:hover,

#custom-html-s7 button.list-group-item-danger.active,

#custom-html-s7 button.list-group-item-danger.active:focus,

#custom-html-s7 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-s7 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-s7 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-s7 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-s7 .panel-body {

  padding: 10px 15px;

}

#custom-html-s7 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-s7 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-s7 .panel-title > .small,

#custom-html-s7 .panel-title > .small > a,

#custom-html-s7 .panel-title > a,

#custom-html-s7 .panel-title > small,

#custom-html-s7 .panel-title > small > a {

  color: inherit;

}

#custom-html-s7 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s7 .panel > .list-group,

#custom-html-s7 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-s7 .panel > .list-group .list-group-item,

#custom-html-s7 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-s7 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-s7 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-s7 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s7 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s7 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-s7 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-s7 .panel > .panel-collapse > .table,

#custom-html-s7 .panel > .table,

#custom-html-s7 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-s7 .panel > .panel-collapse > .table caption,

#custom-html-s7 .panel > .table caption,

#custom-html-s7 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-s7 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-s7 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-s7 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-s7 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-s7 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-s7 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-s7 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-s7 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-s7 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-s7 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-s7 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-s7 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-s7 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-s7 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-s7 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-s7 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-s7 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-s7 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-s7 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-s7 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-s7 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-s7 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-s7 .panel > .panel-body + .table,

#custom-html-s7 .panel > .panel-body + .table-responsive,

#custom-html-s7 .panel > .table + .panel-body,

#custom-html-s7 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-s7 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-s7 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-s7 .panel > .table-bordered,

#custom-html-s7 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-s7 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-s7 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-s7 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-s7 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-s7 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-s7 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-s7 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-s7 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-s7 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-s7 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-s7 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-s7 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-s7 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-s7 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-s7 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-s7 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-s7 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-s7 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-s7 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-s7 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-s7 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-s7 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-s7 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-s7 .panel-group {

  margin-bottom: 20px;

}

#custom-html-s7 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-s7 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-s7 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-s7 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-s7 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-s7 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-s7 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-s7 .panel-default {

  border-color: #dddddd;

}

#custom-html-s7 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-s7 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-s7 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-s7 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-s7 .panel-primary {

  border-color: #337ab7;

}

#custom-html-s7 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-s7 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-s7 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-s7 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-s7 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-s7 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-s7 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-s7 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-s7 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-s7 .panel-info {

  border-color: #bce8f1;

}

#custom-html-s7 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-s7 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-s7 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-s7 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-s7 .panel-warning {

  border-color: #faebcc;

}

#custom-html-s7 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-s7 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-s7 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-s7 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-s7 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-s7 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-s7 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-s7 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-s7 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-s7 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-s7 .embed-responsive .embed-responsive-item,

#custom-html-s7 .embed-responsive embed,

#custom-html-s7 .embed-responsive iframe,

#custom-html-s7 .embed-responsive object,

#custom-html-s7 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-s7 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-s7 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-s7 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-s7 .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-s7 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-s7 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-s7 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-s7 .close:focus,

#custom-html-s7 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-s7 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-s7 .modal-open {

  overflow: hidden;

}

#custom-html-s7 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-s7 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-s7 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-s7 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-s7 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-s7 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-s7 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-s7 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-s7 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-s7 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-s7 .modal-header .close {

  margin-top: -2px;

}

#custom-html-s7 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-s7 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-s7 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-s7 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-s7 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-s7 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-s7 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-s7 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-s7 .tooltip.in {

  opacity: 0.9;

}

#custom-html-s7 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-s7 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-s7 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-s7 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-s7 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-s7 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-s7 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-s7 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-s7 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-s7 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-s7 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-s7 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-s7 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-s7 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-s7 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-s7 .popover.top {

  margin-top: -10px;

}

#custom-html-s7 .popover.right {

  margin-left: 10px;

}

#custom-html-s7 .popover.bottom {

  margin-top: 10px;

}

#custom-html-s7 .popover.left {

  margin-left: -10px;

}

#custom-html-s7 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-s7 .popover-content {

  padding: 9px 14px;

}

#custom-html-s7 .popover > .arrow,

#custom-html-s7 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-s7 .popover > .arrow {

  border-width: 11px;

}

#custom-html-s7 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-s7 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-s7 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-s7 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-s7 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-s7 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-s7 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-s7 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-s7 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-s7 .carousel {

  position: relative;

}

#custom-html-s7 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-s7 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-s7 .carousel-inner > .item > a > img,

#custom-html-s7 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-s7 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-s7 .carousel-inner > .item.active.right,

  #custom-html-s7 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-s7 .carousel-inner > .item.active.left,

  #custom-html-s7 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-s7 .carousel-inner > .item.active,

  #custom-html-s7 .carousel-inner > .item.next.left,

  #custom-html-s7 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-s7 .carousel-inner > .active,

#custom-html-s7 .carousel-inner > .next,

#custom-html-s7 .carousel-inner > .prev {

  display: block;

}

#custom-html-s7 .carousel-inner > .active {

  left: 0;

}

#custom-html-s7 .carousel-inner > .next,

#custom-html-s7 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-s7 .carousel-inner > .next {

  left: 100%;

}

#custom-html-s7 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-s7 .carousel-inner > .next.left,

#custom-html-s7 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-s7 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-s7 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-s7 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-s7 .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-s7 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-s7 .carousel-control:focus,

#custom-html-s7 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-s7 .carousel-control .glyphicon-chevron-left,

#custom-html-s7 .carousel-control .glyphicon-chevron-right,

#custom-html-s7 .carousel-control .icon-next,

#custom-html-s7 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-s7 .carousel-control .glyphicon-chevron-left,

#custom-html-s7 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-s7 .carousel-control .glyphicon-chevron-right,

#custom-html-s7 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-s7 .carousel-control .icon-next,

#custom-html-s7 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-s7 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-s7 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-s7 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-s7 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-s7 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-s7 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-s7 .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-s7 .btn-group-vertical > .btn-group:after,

#custom-html-s7 .btn-group-vertical > .btn-group:before,

#custom-html-s7 .btn-toolbar:after,

#custom-html-s7 .btn-toolbar:before,

#custom-html-s7 .clearfix:after,

#custom-html-s7 .clearfix:before,

#custom-html-s7 .container-fluid:after,

#custom-html-s7 .container-fluid:before,

#custom-html-s7 .container:after,

#custom-html-s7 .container:before,

#custom-html-s7 .dl-horizontal dd:after,

#custom-html-s7 .dl-horizontal dd:before,

#custom-html-s7 .form-horizontal .form-group:after,

#custom-html-s7 .form-horizontal .form-group:before,

#custom-html-s7 .modal-footer:after,

#custom-html-s7 .modal-footer:before,

#custom-html-s7 .modal-header:after,

#custom-html-s7 .modal-header:before,

#custom-html-s7 .nav:after,

#custom-html-s7 .nav:before,

#custom-html-s7 .navbar-collapse:after,

#custom-html-s7 .navbar-collapse:before,

#custom-html-s7 .navbar-header:after,

#custom-html-s7 .navbar-header:before,

#custom-html-s7 .navbar:after,

#custom-html-s7 .navbar:before,

#custom-html-s7 .pager:after,

#custom-html-s7 .pager:before,

#custom-html-s7 .panel-body:after,

#custom-html-s7 .panel-body:before,

#custom-html-s7 .row:after,

#custom-html-s7 .row:before {

  display: table;

  content: " ";

}

#custom-html-s7 .btn-group-vertical > .btn-group:after,

#custom-html-s7 .btn-toolbar:after,

#custom-html-s7 .clearfix:after,

#custom-html-s7 .container-fluid:after,

#custom-html-s7 .container:after,

#custom-html-s7 .dl-horizontal dd:after,

#custom-html-s7 .form-horizontal .form-group:after,

#custom-html-s7 .modal-footer:after,

#custom-html-s7 .modal-header:after,

#custom-html-s7 .nav:after,

#custom-html-s7 .navbar-collapse:after,

#custom-html-s7 .navbar-header:after,

#custom-html-s7 .navbar:after,

#custom-html-s7 .pager:after,

#custom-html-s7 .panel-body:after,

#custom-html-s7 .row:after {

  clear: both;

}

#custom-html-s7 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-s7 .pull-right {

  float: right !important;

}

#custom-html-s7 .pull-left {

  float: left !important;

}

#custom-html-s7 .hide {

  display: none !important;

}

#custom-html-s7 .show {

  display: block !important;

}

#custom-html-s7 .invisible {

  visibility: hidden;

}

#custom-html-s7 .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-s7 .hidden {

  display: none !important;

}

#custom-html-s7 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-s7 .visible-lg,

#custom-html-s7 .visible-md,

#custom-html-s7 .visible-sm,

#custom-html-s7 .visible-xs {

  display: none !important;

}

#custom-html-s7 .visible-lg-block,

#custom-html-s7 .visible-lg-inline,

#custom-html-s7 .visible-lg-inline-block,

#custom-html-s7 .visible-md-block,

#custom-html-s7 .visible-md-inline,

#custom-html-s7 .visible-md-inline-block,

#custom-html-s7 .visible-sm-block,

#custom-html-s7 .visible-sm-inline,

#custom-html-s7 .visible-sm-inline-block,

#custom-html-s7 .visible-xs-block,

#custom-html-s7 .visible-xs-inline,

#custom-html-s7 .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-s7 .visible-sm {

    display: block !important;

  }

  #custom-html-s7 table.visible-sm {

    display: table !important;

  }

  #custom-html-s7 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-s7 td.visible-sm,

  #custom-html-s7 th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-s7 .visible-sm-block {

    display: block !important;

  }

  #custom-html-s7 .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-s7 .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-s7 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-s7 .visible-md {

    display: block !important;

  }

  #custom-html-s7 table.visible-md {

    display: table !important;

  }

  #custom-html-s7 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-s7 td.visible-md,

  #custom-html-s7 th.visible-md {

    display: table-cell !important;

  }

  #custom-html-s7 .visible-md-block {

    display: block !important;

  }

  #custom-html-s7 .visible-md-inline {

    display: inline !important;

  }

  #custom-html-s7 .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-s7 .hidden-md {

    display: none !important;

  }

}

#custom-html-s7 .visible-print {

  display: none !important;

}

#custom-html-s7 .visible-print-block {

  display: none !important;

}

#custom-html-s7 .visible-print-inline {

  display: none !important;

}

#custom-html-s7 .visible-print-inline-block {

  display: none !important;

}

#custom-html-s7 .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-s7 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-s7 .intl-tel-input .hide {

  display: none;

}

#custom-html-s7 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-s7 .intl-tel-input input,

#custom-html-s7 .intl-tel-input input[type=tel],

#custom-html-s7 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-s7 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-s7 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-s7 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-s7 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-s7 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-s7 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-s7 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-s7 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-s7 .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-s7 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-s7 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-s7 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-s7 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-s7 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-s7 .intl-tel-input .country-list .country-name,

#custom-html-s7 .intl-tel-input .country-list .dial-code,

#custom-html-s7 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-s7 .intl-tel-input .country-list .country-name,

#custom-html-s7 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-s7 .intl-tel-input.allow-dropdown input,

#custom-html-s7 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-s7 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-s7 .intl-tel-input.separate-dial-code input,

#custom-html-s7 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-s7 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-s7 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-s7 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-s7 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-s7 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-s7 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-s7 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-s7 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-s7 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-s7 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-s7 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-s7 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-s7 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-s7 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-s7 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-s7 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-s7 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-s7 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-s7 .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-s7 .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-s7 .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-s7 .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-s7 .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-s7 .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-s7 .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-s7 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-s7 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-s7 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-s7 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-s7 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-s7 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-s7 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-s7 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-s7 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-s7 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-s7 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-s7 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-s7 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-s7 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-s7 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-s7 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-s7 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-s7 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-s7 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-s7 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-s7 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-s7 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-s7 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-s7 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-s7 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-s7 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-s7 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-s7 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-s7 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-s7 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-s7 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-s7 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-s7 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-s7 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-s7 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-s7 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-s7 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-s7 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-s7 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-s7 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-s7 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-s7 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-s7 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-s7 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-s7 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-s7 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-s7 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-s7 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-s7 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-s7 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-s7 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-s7 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-s7 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-s7 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-s7 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-s7 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-s7 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-s7 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-s7 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-s7 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-s7 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-s7 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-s7 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-s7 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-s7 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-s7 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-s7 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-s7 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-s7 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-s7 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-s7 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-s7 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-s7 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-s7 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-s7 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-s7 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-s7 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-s7 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-s7 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-s7 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-s7 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-s7 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-s7 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-s7 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-s7 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-s7 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-s7 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-s7 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-s7 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-s7 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-s7 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-s7 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-s7 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-s7 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-s7 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-s7 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-s7 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-s7 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-s7 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-s7 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-s7 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-s7 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-s7 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-s7 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-s7 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-s7 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-s7 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-s7 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-s7 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-s7 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-s7 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-s7 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-s7 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-s7 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-s7 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-s7 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-s7 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-s7 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-s7 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-s7 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-s7 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-s7 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-s7 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-s7 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-s7 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-s7 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-s7 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-s7 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-s7 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-s7 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-s7 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-s7 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-s7 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-s7 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-s7 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-s7 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-s7 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-s7 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-s7 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-s7 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-s7 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-s7 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-s7 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-s7 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-s7 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-s7 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-s7 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-s7 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-s7 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-s7 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-s7 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-s7 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-s7 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-s7 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-s7 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-s7 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-s7 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-s7 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-s7 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-s7 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-s7 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-s7 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-s7 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-s7 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-s7 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-s7 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-s7 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-s7 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-s7 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-s7 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-s7 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-s7 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-s7 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-s7 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-s7 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-s7 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-s7 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-s7 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-s7 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-s7 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-s7 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-s7 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-s7 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-s7 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-s7 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-s7 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-s7 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-s7 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-s7 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-s7 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-s7 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-s7 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-s7 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-s7 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-s7 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-s7 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-s7 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-s7 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-s7 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-s7 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-s7 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-s7 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-s7 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-s7 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-s7 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-s7 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-s7 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-s7 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-s7 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-s7 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-s7 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-s7 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-s7 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-s7 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-s7 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-s7 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-s7 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-s7 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-s7 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-s7 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-s7 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-s7 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-s7 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-s7 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-s7 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-s7 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-s7 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-s7 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-s7 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-s7 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-s7 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-s7 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-s7 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-s7 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-s7 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-s7 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-s7 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-s7 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-s7 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-s7 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-s7 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-s7 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-s7 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-s7 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-s7 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-s7 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-s7 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-s7 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-s7 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-s7 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-s7 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-s7 body,

#custom-html-s7 button,

#custom-html-s7 input,

#custom-html-s7 select,

#custom-html-s7 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-s7 h1,

#custom-html-s7 h2,

#custom-html-s7 h3,

#custom-html-s7 h4,

#custom-html-s7 h5,

#custom-html-s7 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-s7 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-s7 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-s7 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-s7 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-s7 .navbar-main .navbar-nav > .active > a,

#custom-html-s7 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-s7 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-s7 .navbar-main .navbar-nav > .open > a,

#custom-html-s7 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-s7 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-s7 .navbar-main .navbar-nav > li > a:focus,

#custom-html-s7 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-s7 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-s7 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-s7 .navbar-header {

    float: none;

  }

  #custom-html-s7 .navbar-left,

  #custom-html-s7 .navbar-right {

    float: none !important;

  }

  #custom-html-s7 .navbar-toggle {

    display: block;

  }

  #custom-html-s7 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-s7 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-s7 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-s7 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-s7 .navbar-nav > li {

    float: none;

  }

  #custom-html-s7 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-s7 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-s7 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-s7 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-s7 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-s7 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-s7 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-s7 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-s7 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-s7 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-s7 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-s7 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-s7 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-s7 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-s7 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-s7 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-s7 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-s7 a.list-group-item.active,

#custom-html-s7 a.list-group-item.active:focus,

#custom-html-s7 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-s7 .dropdown-menu > li > a:focus,

#custom-html-s7 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-s7 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-s7 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-s7 body,

#custom-html-s7 html {

  height: 100%;

}

#custom-html-s7 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-s7 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-s7 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-s7 section#header .search {

  margin: 20px 0;

}

#custom-html-s7 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-s7 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-s7 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-s7 section#main-content {

  margin-bottom: 60px;

}

#custom-html-s7 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-s7 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-s7 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-s7 section#footer {

    line-height: 32px;

  }

}

#custom-html-s7 section#footer .back-to-top {

  float: right;

}

#custom-html-s7 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-s7 .adminreturndiv {

  display: none !important;

}

#custom-html-s7 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-s7 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-s7 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-s7 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-s7 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-s7 .navbar-main .navbar-toggle:focus,

#custom-html-s7 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-s7 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-s7 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-s7 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-s7 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-s7 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-s7 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-s7 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-s7 .h1,

  #custom-html-s7 h1 {

    font-size: 26px;

  }

  #custom-html-s7 .h2,

  #custom-html-s7 h2 {

    font-size: 20px;

  }

  #custom-html-s7 .h3,

  #custom-html-s7 h3 {

    font-size: 16px;

  }

  #custom-html-s7 .h4,

  #custom-html-s7 h4 {

    font-size: 14px;

  }

  #custom-html-s7 .h5,

  #custom-html-s7 h5 {

    font-size: 12px;

  }

  #custom-html-s7 .h6,

  #custom-html-s7 h6 {

    font-size: 11px;

  }

  #custom-html-s7 div.header-lined small {

    display: none;

  }

  #custom-html-s7 .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-s7 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-s7 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-s7 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-s7 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-s7 div.credit-card {

    max-width: 250px;

  }

  #custom-html-s7 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-s7 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-s7 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-s7 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-s7 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-s7 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-s7 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-s7 .margin-10 {

  margin: 10px;

}

#custom-html-s7 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-s7 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-s7 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-s7 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-s7 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-s7 .input-inline {

  display: inline-block;

}

#custom-html-s7 .input-inline-100 {

  width: 100px;

}

#custom-html-s7 .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-s7 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-s7 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-s7 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-s7 i.icon-rss {

  color: #ff6600;

}

#custom-html-s7 section#main-menu {

  background-color: #000000;

}

#custom-html-s7 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-s7 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-s7 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-s7 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-s7 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-s7 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-s7 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-s7 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-s7 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-s7 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-s7 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-s7 section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-s7 .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-s7 .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-s7 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-s7 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-s7 .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-s7 #stepResults {

    font-size: 14px;

  }

  #custom-html-s7 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-s7 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-s7 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-s7 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-s7 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-s7 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-s7 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-s7 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-s7 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-s7 .home-shortcuts li span {

  display: none;

}

#custom-html-s7 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-s7 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-s7 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-s7 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-s7 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-s7 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-s7 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-s7 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-s7 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-s7 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-s7 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-s7 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-s7 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-s7 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-s7 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-s7 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s7 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-s7 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-s7 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-s7 .tiles .tile a {

  text-decoration: none;

}

#custom-html-s7 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-s7 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-s7 .tiles .tile:last-child {

  border: 0;

}

#custom-html-s7 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-s7 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-s7 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-s7 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-s7 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-s7 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-s7 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-s7 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-s7 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-s7 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-s7 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-s7 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-s7 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-s7 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-s7 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-s7 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-s7 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-s7 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-s7 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-s7 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-s7 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-s7 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-s7 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-s7 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-s7 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-s7 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-s7 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-s7 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-s7 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-s7 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-s7 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-s7 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-s7 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-s7 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-s7 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-s7 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-s7 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-s7 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-s7 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-s7 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-s7 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-s7 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-s7 ul.top-nav > li,

#custom-html-s7 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-s7 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-s7 ul.top-nav > li:active > a,

#custom-html-s7 ul.top-nav > li:focus > a,

#custom-html-s7 ul.top-nav > li:hover > a,

#custom-html-s7 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-s7 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-s7 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-s7 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-s7 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-s7 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-s7 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-s7 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-s7 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-s7 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-s7 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-s7 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-s7 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-s7 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-s7 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-s7 .domain-check-availability {

  width: 100px;

}

#custom-html-s7 .domain-step-options {

  min-height: 300px;

}

#custom-html-s7 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-s7 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-s7 .domain-checker-invalid,

#custom-html-s7 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-s7 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-s7 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-s7 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-s7 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-s7 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-s7 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-s7 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-s7 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-s7 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-s7 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-s7 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-s7 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-s7 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-s7 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-s7 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-s7 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-s7 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-s7 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-s7 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-s7 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-s7 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-s7 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-s7 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-s7 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-s7 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-s7 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-s7 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-s7 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-s7 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-s7 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-s7 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-s7 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-s7 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-s7 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-s7 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-s7 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-s7 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-s7 div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-s7 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-s7 .product-status-pending {

  background-color: #f89406;

}

#custom-html-s7 .product-status-active {

  background-color: #46a546;

}

#custom-html-s7 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-s7 .product-status-cancelled,

#custom-html-s7 .product-status-terminated {

  background-color: #666666;

}

#custom-html-s7 .product-status-fraud {

  background-color: #000000;

}

#custom-html-s7 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-s7 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-s7 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-s7 .ssl-inactive {

  cursor: pointer;

}

#custom-html-s7 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-s7 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-s7 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-s7 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-s7 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-s7 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-s7 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-s7 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-s7 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-s7 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-s7 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-s7 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-s7 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-s7 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-s7 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-s7 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-s7 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-s7 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-s7 .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-s7 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-s7 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-s7 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-s7 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-s7 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-s7 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-s7 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-s7 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-s7 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-s7 .status-pending {

  color: #d9534f;

}

#custom-html-s7 .status-pending.transfer {

  color: #a68500;

}

#custom-html-s7 .status-active,

#custom-html-s7 .status-completed,

#custom-html-s7 .status-open {

  color: #3fad46;

}

#custom-html-s7 .status-suspended {

  color: #f0ad4e;

}

#custom-html-s7 .status-customer-reply {

  color: #ff6600;

}

#custom-html-s7 .status-answered,

#custom-html-s7 .status-fraud {

  color: #000000;

}

#custom-html-s7 .status-expired,

#custom-html-s7 .status-transferred.away {

  color: #004258;

}

#custom-html-s7 .status-cancelled {

  color: #87939f;

}

#custom-html-s7 .status-terminated {

  color: #666666;

}

#custom-html-s7 .status-onhold {

  color: #224488;

}

#custom-html-s7 .status-inprogress {

  color: #cc0000;

}

#custom-html-s7 .status-closed {

  color: #888888;

}

#custom-html-s7 .status-paid {

  color: #498302;

}

#custom-html-s7 .status-unpaid {

  color: #ed3e48;

}

#custom-html-s7 .status-collections {

  color: #9a141e;

}

#custom-html-s7 .status-refunded {

  color: #319fc3;

}

#custom-html-s7 .status-delivered {

  color: #224488;

}

#custom-html-s7 .status-accepted {

  color: #498302;

}

#custom-html-s7 .status-dead,

#custom-html-s7 .status-lost {

  color: #000000;

}

#custom-html-s7 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-s7 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-s7 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-s7 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-s7 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-s7 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-s7 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-s7 .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-s7 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-s7 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-s7 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-s7 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-s7 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-s7 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-s7 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-s7 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-s7 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-s7 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-s7 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-s7 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-s7 .ticket-reply .rating,

#custom-html-s7 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-s7 .ticket-reply .rating span.star,

#custom-html-s7 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-s7 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-s7 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-s7 .ticket-reply .rating span.star:before,

#custom-html-s7 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-s7 .ticket-reply .rating span.star:hover:before,

#custom-html-s7 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-s7 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-s7 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-s7 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-s7 .ticket-reply .clear {

  clear: both;

}

#custom-html-s7 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-s7 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-s7 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-s7 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-s7 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-s7 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-s7 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-s7 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-s7 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-s7 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-s7 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-s7 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-s7 .popover-user-notifications ul li i.far,

#custom-html-s7 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-s7 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-s7 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-s7 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-s7 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-s7 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-s7 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-s7 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-s7 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-s7 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-s7 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-s7 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-s7 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-s7 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-s7 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-s7 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-s7 div.credit-card div.end {

  clear: both;

}

#custom-html-s7 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-s7 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-s7 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-s7 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-s7 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-s7 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-s7 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-s7 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-s7 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-s7 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-s7 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-s7 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-s7 .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-s7 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-s7 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-s7 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-s7 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-s7 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-s7 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-s7 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-s7 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-s7 .kb-category a small {

  color: #888888;

}

#custom-html-s7 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-s7 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-s7 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-s7 .kbarticles a.admin-inline-edit,

#custom-html-s7 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-s7 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-s7 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-s7 .kb-article-title h2 {

  margin: 0;

}

#custom-html-s7 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-s7 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-s7 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-s7 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-s7 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-s7 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-s7 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-s7 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-s7 #stepResults {

  font-size: 20px;

}

#custom-html-s7 #stepResults .label {

  font-size: 20px;

}

#custom-html-s7 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-s7 h3.with-badge i,

#custom-html-s7 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-s7 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-s7 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-s7 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-s7 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-s7 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-s7 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-s7 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-s7 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-s7 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-s7 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-s7 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-s7 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-s7 .login-popover {

  font-size: 12px;

}

#custom-html-s7 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-s7 .login-popover hr {

  margin: 5px 0;

}

#custom-html-s7 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-s7 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-s7 .error-container {

  text-align: center;

}

#custom-html-s7 .error-container h1 {

  margin-top: 40px;

}

#custom-html-s7 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-s7 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-s7 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-s7 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-s7 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-s7 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-s7 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-s7 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-s7 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-s7 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-s7 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-s7 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-s7 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-s7 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-s7 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-s7 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-s7 .email-verification .btn:active,

#custom-html-s7 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-s7 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-s7 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-s7 .email-verification .far,

#custom-html-s7 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-s7 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-s7 .email-verification.success .far,

#custom-html-s7 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-s7 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-s7 .email-verification.failed .far,

#custom-html-s7 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-s7 .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-s7 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-s7 .md-editor > .md-preview,

#custom-html-s7 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-s7 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s7 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-s7 .small-font {

  font-size: 0.9em;

}

#custom-html-s7 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-s7 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-s7 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-s7 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-s7 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-s7 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-s7 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-s7 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-s7 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-s7 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-s7 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-s7 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-s7 .panel-heading i.fab,

#custom-html-s7 .panel-heading i.fal,

#custom-html-s7 .panel-heading i.far,

#custom-html-s7 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-s7 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-s7 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-s7 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-s7 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-s7 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-s7 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-s7 .panel-sidebar .list-group-item.disabled,

#custom-html-s7 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-s7 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-s7 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-s7 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-s7 .panel-sidebar a.list-group-item.active,

#custom-html-s7 .panel-sidebar a.list-group-item.active:focus,

#custom-html-s7 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-s7 .panel-sidebar a.list-group-item.active i,

#custom-html-s7 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-s7 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-s7 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-s7 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-s7 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-s7 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-s7 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-s7 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-s7 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-s7 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-s7 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-s7 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-s7 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-s7 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-s7 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-s7 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-s7 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-s7 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-s7 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-s7 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-s7 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-s7 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-s7 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-s7 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-s7 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-s7 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-s7 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-s7 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-s7 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-s7 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-s7 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-s7 .promo-banner p {

  margin: 5px 0;

}

#custom-html-s7 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-s7 .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-s7 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-s7 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-s7 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-s7 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-s7 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-s7 .promo-banner-slim {

  padding: 10px;

}

#custom-html-s7 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-s7 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-s7 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-s7 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-s7 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-s7 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-s7 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-s7 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-s7 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-s7 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-s7 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-s7 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-s7 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-s7 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-s7 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-s7 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-s7 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-s7 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-s7 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-s7 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-s7 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-s7 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-s7 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-s7 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-s7 .panel-mc-sso .btn,

#custom-html-s7 .panel-mc-sso .form-control,

#custom-html-s7 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-s7 .panel-mc-sso small {

  display: block;

}

#custom-html-s7 .social-signin-btns {

  text-align: center;

}

#custom-html-s7 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-s7 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-s7 .btn-social i.far,

#custom-html-s7 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-facebook.active,

#custom-html-s7 .btn-facebook:active,

#custom-html-s7 .btn-facebook:focus,

#custom-html-s7 .btn-facebook:hover,

#custom-html-s7 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-facebook.active,

#custom-html-s7 .btn-facebook:active,

#custom-html-s7 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-s7 .btn-facebook.disabled,

#custom-html-s7 .btn-facebook.disabled.active,

#custom-html-s7 .btn-facebook.disabled:active,

#custom-html-s7 .btn-facebook.disabled:focus,

#custom-html-s7 .btn-facebook.disabled:hover,

#custom-html-s7 .btn-facebook[disabled],

#custom-html-s7 .btn-facebook[disabled].active,

#custom-html-s7 .btn-facebook[disabled]:active,

#custom-html-s7 .btn-facebook[disabled]:focus,

#custom-html-s7 .btn-facebook[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-facebook,

#custom-html-s7 fieldset[disabled] .btn-facebook.active,

#custom-html-s7 fieldset[disabled] .btn-facebook:active,

#custom-html-s7 fieldset[disabled] .btn-facebook:focus,

#custom-html-s7 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-google.active,

#custom-html-s7 .btn-google:active,

#custom-html-s7 .btn-google:focus,

#custom-html-s7 .btn-google:hover,

#custom-html-s7 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-google.active,

#custom-html-s7 .btn-google:active,

#custom-html-s7 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-s7 .btn-google-plus.disabled.active,

#custom-html-s7 .btn-google-plus.disabled:active,

#custom-html-s7 .btn-google-plus.disabled:focus,

#custom-html-s7 .btn-google-plus[disabled].active,

#custom-html-s7 .btn-google-plus[disabled]:active,

#custom-html-s7 .btn-google-plus[disabled]:focus,

#custom-html-s7 .btn-google-plus[disabled]:hover,

#custom-html-s7 .btn-google.disabled,

#custom-html-s7 .btn-google.disabled:hover,

#custom-html-s7 .btn-google[disabled],

#custom-html-s7 fieldset[disabled] .btn-google,

#custom-html-s7 fieldset[disabled] .btn-google-plus.active,

#custom-html-s7 fieldset[disabled] .btn-google-plus:active,

#custom-html-s7 fieldset[disabled] .btn-google-plus:focus,

#custom-html-s7 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-twitter.active,

#custom-html-s7 .btn-twitter:active,

#custom-html-s7 .btn-twitter:focus,

#custom-html-s7 .btn-twitter:hover,

#custom-html-s7 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-twitter.active,

#custom-html-s7 .btn-twitter:active,

#custom-html-s7 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-s7 .btn-twitter.disabled,

#custom-html-s7 .btn-twitter.disabled.active,

#custom-html-s7 .btn-twitter.disabled:active,

#custom-html-s7 .btn-twitter.disabled:focus,

#custom-html-s7 .btn-twitter.disabled:hover,

#custom-html-s7 .btn-twitter[disabled],

#custom-html-s7 .btn-twitter[disabled].active,

#custom-html-s7 .btn-twitter[disabled]:active,

#custom-html-s7 .btn-twitter[disabled]:focus,

#custom-html-s7 .btn-twitter[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-twitter,

#custom-html-s7 fieldset[disabled] .btn-twitter.active,

#custom-html-s7 fieldset[disabled] .btn-twitter:active,

#custom-html-s7 fieldset[disabled] .btn-twitter:focus,

#custom-html-s7 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .providerPreLinking {

  min-height: 52px;

}

#custom-html-s7 .providerLinkingFeedback {

  display: none;

}

#custom-html-s7 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-s7 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-s7 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-s7 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-s7 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-s7 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-s7 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-s7 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-s7 #registration .field,

#custom-html-s7 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-s7 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-s7 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-s7 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-s7 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s7 #registration textarea.field {

  height: auto;

}

#custom-html-s7 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-s7 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-s7 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-s7 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-s7 #registration .field[disabled],

#custom-html-s7 #registration .field[readonly],

#custom-html-s7 #registration .form-control[disabled],

#custom-html-s7 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-s7 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-s7 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-s7 .upgrade .product-to-be-upgraded h4,

#custom-html-s7 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-s7 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-s7 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-s7 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-s7 .upgrade .products .product .current,

#custom-html-s7 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-s7 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-s7 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-s7 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-s7 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-s7 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-s7 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-s7 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-s7 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-s7 .upgrade .products .far,

#custom-html-s7 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-s7 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-s7 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-s7 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-s7 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-s7 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-s7 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .bootstrap-switch input[type=checkbox],

#custom-html-s7 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-s7 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-s7 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-s7 .md-editor .md-footer,

#custom-html-s7 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-s7 .md-editor > .md-header {

  margin: 0;

}

#custom-html-s7 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-s7 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-s7 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-s7 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-s7 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-s7 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-s7 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-s7 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-input,

#custom-html-s7 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-s7 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-s7 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-s7 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-s7 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-s7 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-s7 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-s7 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-s7 table.dataTable td,

#custom-html-s7 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-s7 table.dataTable td.dataTables_empty,

#custom-html-s7 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-s7 table.dataTable.nowrap td,

#custom-html-s7 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-s7 table.dataTable thead > tr > td.sorting,

#custom-html-s7 table.dataTable thead > tr > td.sorting_asc,

#custom-html-s7 table.dataTable thead > tr > td.sorting_desc,

#custom-html-s7 table.dataTable thead > tr > th.sorting,

#custom-html-s7 table.dataTable thead > tr > th.sorting_asc,

#custom-html-s7 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-s7 table.dataTable thead > tr > td:active,

#custom-html-s7 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-s7 table.dataTable thead .sorting,

#custom-html-s7 table.dataTable thead .sorting_asc,

#custom-html-s7 table.dataTable thead .sorting_asc_disabled,

#custom-html-s7 table.dataTable thead .sorting_desc,

#custom-html-s7 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-s7 table.dataTable thead .sorting:after,

#custom-html-s7 table.dataTable thead .sorting_asc:after,

#custom-html-s7 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-s7 table.dataTable thead .sorting_desc:after,

#custom-html-s7 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-s7 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-s7 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-s7 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-s7 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-s7 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-s7 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-s7 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-s7 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-s7 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-s7 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-s7 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-s7 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-s7 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-s7 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-s7 table.dataTable.table-condensed .sorting:after,

#custom-html-s7 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-s7 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-s7 table.table-bordered.dataTable td,

#custom-html-s7 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-s7 table.table-bordered.dataTable td:last-child,

#custom-html-s7 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-s7 table.table-bordered.dataTable tbody td,

#custom-html-s7 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-s7 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-s7 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-s7 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-s7 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-s7 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-s7 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-s7 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-s7 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-s7 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-s7 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-s7 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-s7 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-s7 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-s7 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-s7 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-s7 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-s7 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-s7 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-s7 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-s7 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-s7 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-s7 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-s7 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-s7 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-s7 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-s7 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-s7 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-s7 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-s7 .multiselect-container > li {

  padding: 0;

}

#custom-html-s7 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-s7 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-s7 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-s7 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-s7 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-s7 .multiselect-container > li > a > label.checkbox,

#custom-html-s7 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-s7 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-s7 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s7 .form-inline .multiselect-container label.checkbox,

#custom-html-s7 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-s7 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-s7 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-s7 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-s7 body {

  margin: 0;

}

#custom-html-s7 article,

#custom-html-s7 aside,

#custom-html-s7 details,

#custom-html-s7 figcaption,

#custom-html-s7 figure,

#custom-html-s7 footer,

#custom-html-s7 header,

#custom-html-s7 hgroup,

#custom-html-s7 main,

#custom-html-s7 menu,

#custom-html-s7 nav,

#custom-html-s7 section,

#custom-html-s7 summary {

  display: block;

}

#custom-html-s7 audio,

#custom-html-s7 canvas,

#custom-html-s7 progress,

#custom-html-s7 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-s7 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-s7 [hidden],

#custom-html-s7 template {

  display: none;

}

#custom-html-s7 a {

  background-color: transparent;

}

#custom-html-s7 a:active,

#custom-html-s7 a:hover {

  outline: 0;

}

#custom-html-s7 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-s7 b,

#custom-html-s7 strong {

  font-weight: 700;

}

#custom-html-s7 dfn {

  font-style: italic;

}

#custom-html-s7 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-s7 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-s7 small {

  font-size: 80%;

}

#custom-html-s7 sub,

#custom-html-s7 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-s7 sup {

  top: -0.5em;

}

#custom-html-s7 sub {

  bottom: -0.25em;

}

#custom-html-s7 img {

  border: 0;

}

#custom-html-s7 svg:not(:root) {

  overflow: hidden;

}

#custom-html-s7 figure {

  margin: 1em 40px;

}

#custom-html-s7 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-s7 pre {

  overflow: auto;

}

#custom-html-s7 code,

#custom-html-s7 kbd,

#custom-html-s7 pre,

#custom-html-s7 samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-s7 button,

#custom-html-s7 input,

#custom-html-s7 optgroup,

#custom-html-s7 select,

#custom-html-s7 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-s7 button {

  overflow: visible;

}

#custom-html-s7 button,

#custom-html-s7 select {

  text-transform: none;

}

#custom-html-s7 button,

#custom-html-s7 html input[type=button],

#custom-html-s7 input[type=reset],

#custom-html-s7 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-s7 button[disabled],

#custom-html-s7 html input[disabled] {

  cursor: default;

}

#custom-html-s7 button::-moz-focus-inner,

#custom-html-s7 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-s7 input {

  line-height: normal;

}

#custom-html-s7 input[type=checkbox],

#custom-html-s7 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-s7 input[type=number]::-webkit-inner-spin-button,

#custom-html-s7 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-s7 input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-s7 input[type=search]::-webkit-search-cancel-button,

#custom-html-s7 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-s7 fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-s7 legend {

  padding: 0;

  border: 0;

}

#custom-html-s7 textarea {

  overflow: auto;

}

#custom-html-s7 optgroup {

  font-weight: 700;

}

#custom-html-s7 table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-s7 td,

#custom-html-s7 th {

  padding: 0;

}

@media print {

  #custom-html-s7 *,

  #custom-html-s7 :after,

  #custom-html-s7 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-s7 a,

  #custom-html-s7 a:visited {

    text-decoration: underline;

  }

  #custom-html-s7 a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-s7 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-s7 a[href^="#"]:after,

  #custom-html-s7 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-s7 blockquote,

  #custom-html-s7 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-s7 thead {

    display: table-header-group;

  }

  #custom-html-s7 img,

  #custom-html-s7 tr {

    page-break-inside: avoid;

  }

  #custom-html-s7 img {

    max-width: 100% !important;

  }

  #custom-html-s7 h2,

  #custom-html-s7 h3,

  #custom-html-s7 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-s7 h2,

  #custom-html-s7 h3 {

    page-break-after: avoid;

  }

  #custom-html-s7 .navbar {

    display: none;

  }

  #custom-html-s7 .btn > .caret,

  #custom-html-s7 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-s7 .label {

    border: 1px solid #000000;

  }

  #custom-html-s7 .table {

    border-collapse: collapse !important;

  }

  #custom-html-s7 .table td,

  #custom-html-s7 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-s7 .table-bordered td,

  #custom-html-s7 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-s7 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-s7 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-s7 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-s7 .glyphicon-eur:before,

#custom-html-s7 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-s7 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-s7 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-s7 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-s7 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-s7 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-s7 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-s7 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-s7 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-s7 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-s7 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-s7 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-s7 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-s7 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-s7 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-s7 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-s7 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-s7 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-s7 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-s7 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-s7 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-s7 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-s7 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-s7 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-s7 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-s7 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-s7 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-s7 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-s7 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-s7 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-s7 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-s7 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-s7 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-s7 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-s7 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-s7 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-s7 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-s7 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-s7 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-s7 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-s7 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-s7 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-s7 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-s7 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-s7 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-s7 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-s7 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-s7 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-s7 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-s7 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-s7 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-s7 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-s7 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-s7 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-s7 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-s7 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-s7 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-s7 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-s7 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-s7 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-s7 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-s7 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-s7 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-s7 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-s7 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-s7 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-s7 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-s7 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-s7 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-s7 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-s7 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-s7 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-s7 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-s7 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-s7 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-s7 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-s7 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-s7 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-s7 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-s7 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-s7 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-s7 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-s7 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-s7 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-s7 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-s7 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-s7 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-s7 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-s7 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-s7 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-s7 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-s7 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-s7 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-s7 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-s7 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-s7 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-s7 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-s7 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-s7 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-s7 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-s7 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-s7 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-s7 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-s7 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-s7 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-s7 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-s7 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-s7 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-s7 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-s7 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-s7 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-s7 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-s7 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-s7 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-s7 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-s7 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-s7 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-s7 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-s7 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-s7 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-s7 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-s7 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-s7 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-s7 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-s7 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-s7 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-s7 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-s7 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-s7 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-s7 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-s7 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-s7 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-s7 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-s7 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-s7 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-s7 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-s7 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-s7 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-s7 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-s7 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-s7 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-s7 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-s7 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-s7 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-s7 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-s7 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-s7 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-s7 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-s7 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-s7 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-s7 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-s7 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-s7 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-s7 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-s7 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-s7 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-s7 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-s7 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-s7 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-s7 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-s7 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-s7 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-s7 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-s7 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-s7 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-s7 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-s7 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-s7 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-s7 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-s7 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-s7 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-s7 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-s7 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-s7 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-s7 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-s7 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-s7 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-s7 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-s7 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-s7 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-s7 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-s7 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-s7 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-s7 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-s7 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-s7 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-s7 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-s7 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-s7 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-s7 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-s7 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-s7 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-s7 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-s7 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-s7 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-s7 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-s7 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-s7 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-s7 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-s7 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-s7 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-s7 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-s7 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-s7 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-s7 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-s7 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-s7 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-s7 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-s7 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-s7 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-s7 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-s7 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-s7 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-s7 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-s7 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-s7 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-s7 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-s7 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-s7 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-s7 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-s7 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-s7 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-s7 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-s7 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-s7 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-s7 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-s7 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-s7 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-s7 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-s7 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-s7 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-s7 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-s7 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-s7 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-s7 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-s7 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-s7 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-s7 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-s7 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-s7 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-s7 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-s7 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-s7 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-s7 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-s7 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-s7 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-s7 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-s7 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-s7 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-s7 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-s7 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-s7 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-s7 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-s7 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-s7 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-s7 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-s7 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-s7 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-s7 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-s7 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-s7 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-s7 :after,

#custom-html-s7 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-s7 html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-s7 body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-s7 button,

#custom-html-s7 input,

#custom-html-s7 select,

#custom-html-s7 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-s7 a {

  color: #000;

  text-decoration: none;

}

#custom-html-s7 a:focus,

#custom-html-s7 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-s7 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-s7 figure {

  margin: 0;

}

#custom-html-s7 img {

  vertical-align: middle;

}

#custom-html-s7 .carousel-inner > .item > a > img,

#custom-html-s7 .carousel-inner > .item > img,

#custom-html-s7 .img-responsive,

#custom-html-s7 .thumbnail a > img,

#custom-html-s7 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-s7 .img-rounded {

  border-radius: 6px;

}

#custom-html-s7 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-s7 .img-circle {

  border-radius: 50%;

}

#custom-html-s7 hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-s7 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-s7 .sr-only-focusable:active,

#custom-html-s7 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-s7 [role=button] {

  cursor: pointer;

}

#custom-html-s7 .h1,

#custom-html-s7 .h2,

#custom-html-s7 .h3,

#custom-html-s7 .h4,

#custom-html-s7 .h5,

#custom-html-s7 .h6,

#custom-html-s7 h1,

#custom-html-s7 h2,

#custom-html-s7 h3,

#custom-html-s7 h4,

#custom-html-s7 h5,

#custom-html-s7 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-s7 .h1 .small,

#custom-html-s7 .h1 small,

#custom-html-s7 .h2 .small,

#custom-html-s7 .h2 small,

#custom-html-s7 .h3 .small,

#custom-html-s7 .h3 small,

#custom-html-s7 .h4 .small,

#custom-html-s7 .h4 small,

#custom-html-s7 .h5 .small,

#custom-html-s7 .h5 small,

#custom-html-s7 .h6 .small,

#custom-html-s7 .h6 small,

#custom-html-s7 h1 .small,

#custom-html-s7 h1 small,

#custom-html-s7 h2 .small,

#custom-html-s7 h2 small,

#custom-html-s7 h3 .small,

#custom-html-s7 h3 small,

#custom-html-s7 h4 .small,

#custom-html-s7 h4 small,

#custom-html-s7 h5 .small,

#custom-html-s7 h5 small,

#custom-html-s7 h6 .small,

#custom-html-s7 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-s7 .h1,

#custom-html-s7 .h2,

#custom-html-s7 .h3,

#custom-html-s7 h1,

#custom-html-s7 h2,

#custom-html-s7 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-s7 .h1 .small,

#custom-html-s7 .h1 small,

#custom-html-s7 .h2 .small,

#custom-html-s7 .h2 small,

#custom-html-s7 .h3 .small,

#custom-html-s7 .h3 small,

#custom-html-s7 h1 .small,

#custom-html-s7 h1 small,

#custom-html-s7 h2 .small,

#custom-html-s7 h2 small,

#custom-html-s7 h3 .small,

#custom-html-s7 h3 small {

  font-size: 65%;

}

#custom-html-s7 .h4,

#custom-html-s7 .h5,

#custom-html-s7 .h6,

#custom-html-s7 h4,

#custom-html-s7 h5,

#custom-html-s7 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-s7 .h4 .small,

#custom-html-s7 .h4 small,

#custom-html-s7 .h5 .small,

#custom-html-s7 .h5 small,

#custom-html-s7 .h6 .small,

#custom-html-s7 .h6 small,

#custom-html-s7 h4 .small,

#custom-html-s7 h4 small,

#custom-html-s7 h5 .small,

#custom-html-s7 h5 small,

#custom-html-s7 h6 .small,

#custom-html-s7 h6 small {

  font-size: 75%;

}

#custom-html-s7 .h1,

#custom-html-s7 h1 {

  font-size: 36px;

}

#custom-html-s7 .h2,

#custom-html-s7 h2 {

  font-size: 30px;

}

#custom-html-s7 .h3,

#custom-html-s7 h3 {

  font-size: 24px;

}

#custom-html-s7 .h4,

#custom-html-s7 h4 {

  font-size: 18px;

}

#custom-html-s7 .h5,

#custom-html-s7 h5 {

  font-size: 14px;

}

#custom-html-s7 .h6,

#custom-html-s7 h6 {

  font-size: 12px;

}

#custom-html-s7 p {

  margin: 0 0 10px;

}

#custom-html-s7 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-s7 .lead {

    font-size: 21px;

  }

}

#custom-html-s7 .small,

#custom-html-s7 small {

  font-size: 85%;

}

#custom-html-s7 .mark,

#custom-html-s7 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-s7 .text-left {

  text-align: left;

}

#custom-html-s7 .text-right {

  text-align: right;

}

#custom-html-s7 .text-center {

  text-align: center;

}

#custom-html-s7 .text-justify {

  text-align: justify;

}

#custom-html-s7 .text-nowrap {

  white-space: nowrap;

}

#custom-html-s7 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-s7 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-s7 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-s7 .text-muted {

  color: #777777;

}

#custom-html-s7 .text-primary {

  color: #000000;

}

#custom-html-s7 a.text-primary:focus,

#custom-html-s7 a.text-primary:hover {

  color: #000000;

}

#custom-html-s7 .text-success {

  color: #3c763d;

}

#custom-html-s7 a.text-success:focus,

#custom-html-s7 a.text-success:hover {

  color: #2b542c;

}

#custom-html-s7 .text-info {

  color: #31708f;

}

#custom-html-s7 a.text-info:focus,

#custom-html-s7 a.text-info:hover {

  color: #000000;

}

#custom-html-s7 .text-warning {

  color: #8a6d3b;

}

#custom-html-s7 a.text-warning:focus,

#custom-html-s7 a.text-warning:hover {

  color: #66512c;

}

#custom-html-s7 .text-danger {

  color: #a94442;

}

#custom-html-s7 a.text-danger:focus,

#custom-html-s7 a.text-danger:hover {

  color: #843534;

}

#custom-html-s7 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-s7 a.bg-primary:focus,

#custom-html-s7 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-s7 .bg-success {

  background-color: #dff0d8;

}

#custom-html-s7 a.bg-success:focus,

#custom-html-s7 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-s7 .bg-info {

  background-color: #d9edf7;

}

#custom-html-s7 a.bg-info:focus,

#custom-html-s7 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-s7 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-s7 a.bg-warning:focus,

#custom-html-s7 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-s7 .bg-danger {

  background-color: #f2dede;

}

#custom-html-s7 a.bg-danger:focus,

#custom-html-s7 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-s7 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-s7 ol,

#custom-html-s7 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-s7 ol ol,

#custom-html-s7 ol ul,

#custom-html-s7 ul ol,

#custom-html-s7 ul ul {

  margin-bottom: 0;

}

#custom-html-s7 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-s7 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-s7 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-s7 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-s7 dd,

#custom-html-s7 dt {

  line-height: 1.42857143;

}

#custom-html-s7 dt {

  font-weight: 700;

}

#custom-html-s7 dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-s7 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-s7 .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-s7 abbr[data-original-title],

#custom-html-s7 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-s7 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-s7 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-s7 blockquote ol:last-child,

#custom-html-s7 blockquote p:last-child,

#custom-html-s7 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-s7 blockquote .small,

#custom-html-s7 blockquote footer,

#custom-html-s7 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-s7 blockquote .small:before,

#custom-html-s7 blockquote footer:before,

#custom-html-s7 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-s7 .blockquote-reverse,

#custom-html-s7 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-s7 .blockquote-reverse .small:before,

#custom-html-s7 .blockquote-reverse footer:before,

#custom-html-s7 .blockquote-reverse small:before,

#custom-html-s7 blockquote.pull-right .small:before,

#custom-html-s7 blockquote.pull-right footer:before,

#custom-html-s7 blockquote.pull-right small:before {

  content: '';

}

#custom-html-s7 .blockquote-reverse .small:after,

#custom-html-s7 .blockquote-reverse footer:after,

#custom-html-s7 .blockquote-reverse small:after,

#custom-html-s7 blockquote.pull-right .small:after,

#custom-html-s7 blockquote.pull-right footer:after,

#custom-html-s7 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-s7 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-s7 code,

#custom-html-s7 kbd,

#custom-html-s7 pre,

#custom-html-s7 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-s7 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-s7 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-s7 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s7 pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-s7 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-s7 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-s7 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-s7 .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-s7 .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-s7 .container {

    width: 1170px;

  }

}

#custom-html-s7 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-s7 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-s7 .col-lg-1,

#custom-html-s7 .col-lg-10,

#custom-html-s7 .col-lg-11,

#custom-html-s7 .col-lg-12,

#custom-html-s7 .col-lg-2,

#custom-html-s7 .col-lg-3,

#custom-html-s7 .col-lg-4,

#custom-html-s7 .col-lg-5,

#custom-html-s7 .col-lg-6,

#custom-html-s7 .col-lg-7,

#custom-html-s7 .col-lg-8,

#custom-html-s7 .col-lg-9,

#custom-html-s7 .col-md-1,

#custom-html-s7 .col-md-10,

#custom-html-s7 .col-md-11,

#custom-html-s7 .col-md-12,

#custom-html-s7 .col-md-2,

#custom-html-s7 .col-md-3,

#custom-html-s7 .col-md-4,

#custom-html-s7 .col-md-5,

#custom-html-s7 .col-md-6,

#custom-html-s7 .col-md-7,

#custom-html-s7 .col-md-8,

#custom-html-s7 .col-md-9,

#custom-html-s7 .col-sm-1,

#custom-html-s7 .col-sm-10,

#custom-html-s7 .col-sm-11,

#custom-html-s7 .col-sm-12,

#custom-html-s7 .col-sm-2,

#custom-html-s7 .col-sm-3,

#custom-html-s7 .col-sm-4,

#custom-html-s7 .col-sm-5,

#custom-html-s7 .col-sm-6,

#custom-html-s7 .col-sm-7,

#custom-html-s7 .col-sm-8,

#custom-html-s7 .col-sm-9,

#custom-html-s7 .col-xs-1,

#custom-html-s7 .col-xs-10,

#custom-html-s7 .col-xs-11,

#custom-html-s7 .col-xs-12,

#custom-html-s7 .col-xs-2,

#custom-html-s7 .col-xs-3,

#custom-html-s7 .col-xs-4,

#custom-html-s7 .col-xs-5,

#custom-html-s7 .col-xs-6,


#custom-html-s7 .col-xs-7,

#custom-html-s7 .col-xs-8,

#custom-html-s7 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-s7 .col-xs-1,

#custom-html-s7 .col-xs-10,

#custom-html-s7 .col-xs-11,

#custom-html-s7 .col-xs-12,

#custom-html-s7 .col-xs-2,

#custom-html-s7 .col-xs-3,

#custom-html-s7 .col-xs-4,

#custom-html-s7 .col-xs-5,

#custom-html-s7 .col-xs-6,

#custom-html-s7 .col-xs-7,

#custom-html-s7 .col-xs-8,

#custom-html-s7 .col-xs-9 {

  float: left;

}

#custom-html-s7 .col-xs-12 {

  width: 100%;

}

#custom-html-s7 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-s7 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-s7 .col-xs-9 {

  width: 75%;

}

#custom-html-s7 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-s7 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-s7 .col-xs-6 {

  width: 50%;

}

#custom-html-s7 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-s7 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-s7 .col-xs-3 {

  width: 25%;

}

#custom-html-s7 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-s7 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-s7 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-s7 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-s7 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-s7 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-s7 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-s7 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-s7 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-s7 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-s7 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-s7 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-s7 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-s7 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-s7 .col-xs-pull-0 {

  right: auto;

}

#custom-html-s7 .col-xs-push-12 {

  left: 100%;

}

#custom-html-s7 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-s7 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-s7 .col-xs-push-9 {

  left: 75%;

}

#custom-html-s7 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-s7 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-s7 .col-xs-push-6 {

  left: 50%;

}

#custom-html-s7 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-s7 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-s7 .col-xs-push-3 {

  left: 25%;

}

#custom-html-s7 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-s7 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-s7 .col-xs-push-0 {

  left: auto;

}

#custom-html-s7 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-s7 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-s7 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-s7 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-s7 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-s7 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-s7 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-s7 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-s7 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-s7 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-s7 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-s7 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-s7 .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-s7 .col-sm-1,

  #custom-html-s7 .col-sm-10,

  #custom-html-s7 .col-sm-11,

  #custom-html-s7 .col-sm-12,

  #custom-html-s7 .col-sm-2,

  #custom-html-s7 .col-sm-3,

  #custom-html-s7 .col-sm-4,

  #custom-html-s7 .col-sm-5,

  #custom-html-s7 .col-sm-6,

  #custom-html-s7 .col-sm-7,

  #custom-html-s7 .col-sm-8,

  #custom-html-s7 .col-sm-9 {

    float: left;

  }

  #custom-html-s7 .col-sm-12 {

    width: 100%;

  }

  #custom-html-s7 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-s7 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-s7 .col-sm-9 {

    width: 75%;

  }

  #custom-html-s7 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-s7 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-s7 .col-sm-6 {

    width: 50%;

  }

  #custom-html-s7 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-s7 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-s7 .col-sm-3 {

    width: 25%;

  }

  #custom-html-s7 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-s7 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-s7 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-s7 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-s7 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-s7 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-s7 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-s7 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-s7 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-s7 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-s7 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-s7 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-s7 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-s7 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-s7 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-s7 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-s7 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-s7 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-s7 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-s7 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-s7 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-s7 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-s7 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-s7 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-s7 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-s7 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-s7 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-s7 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-s7 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-s7 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-s7 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-s7 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-s7 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-s7 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-s7 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-s7 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-s7 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-s7 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-s7 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-s7 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-s7 .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-s7 .col-md-1,

  #custom-html-s7 .col-md-10,

  #custom-html-s7 .col-md-11,

  #custom-html-s7 .col-md-12,

  #custom-html-s7 .col-md-2,

  #custom-html-s7 .col-md-3,

  #custom-html-s7 .col-md-4,

  #custom-html-s7 .col-md-5,

  #custom-html-s7 .col-md-6,

  #custom-html-s7 .col-md-7,

  #custom-html-s7 .col-md-8,

  #custom-html-s7 .col-md-9 {

    float: left;

  }

  #custom-html-s7 .col-md-12 {

    width: 100%;

  }

  #custom-html-s7 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-s7 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-s7 .col-md-9 {

    width: 75%;

  }

  #custom-html-s7 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-s7 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-s7 .col-md-6 {

    width: 50%;

  }

  #custom-html-s7 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-s7 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-s7 .col-md-3 {

    width: 25%;

  }

  #custom-html-s7 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-s7 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-s7 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-s7 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-s7 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-s7 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-s7 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-s7 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-s7 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-s7 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-s7 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-s7 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-s7 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-s7 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-s7 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-s7 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-s7 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-s7 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-s7 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-s7 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-s7 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-s7 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-s7 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-s7 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-s7 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-s7 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-s7 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-s7 .col-md-push-0 {

    left: auto;

  }

  #custom-html-s7 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-s7 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-s7 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-s7 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-s7 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-s7 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-s7 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-s7 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-s7 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-s7 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-s7 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-s7 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-s7 .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-s7 .col-lg-1,

  #custom-html-s7 .col-lg-10,

  #custom-html-s7 .col-lg-11,

  #custom-html-s7 .col-lg-12,

  #custom-html-s7 .col-lg-2,

  #custom-html-s7 .col-lg-3,

  #custom-html-s7 .col-lg-4,

  #custom-html-s7 .col-lg-5,

  #custom-html-s7 .col-lg-6,

  #custom-html-s7 .col-lg-7,

  #custom-html-s7 .col-lg-8,

  #custom-html-s7 .col-lg-9 {

    float: left;

  }

  #custom-html-s7 .col-lg-12 {

    width: 100%;

  }

  #custom-html-s7 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-s7 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-s7 .col-lg-9 {

    width: 75%;

  }

  #custom-html-s7 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-s7 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-s7 .col-lg-6 {

    width: 50%;

  }

  #custom-html-s7 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-s7 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-s7 .col-lg-3 {

    width: 25%;

  }

  #custom-html-s7 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-s7 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-s7 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-s7 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-s7 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-s7 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-s7 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-s7 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-s7 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-s7 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-s7 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-s7 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-s7 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-s7 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-s7 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-s7 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-s7 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-s7 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-s7 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-s7 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-s7 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-s7 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-s7 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-s7 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-s7 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-s7 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-s7 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-s7 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-s7 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-s7 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-s7 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-s7 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-s7 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-s7 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-s7 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-s7 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-s7 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-s7 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-s7 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-s7 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-s7 .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-s7 table {

  background-color: transparent;

}

#custom-html-s7 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-s7 th {

  text-align: left;

}

#custom-html-s7 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-s7 .table > tbody > tr > td,

#custom-html-s7 .table > tbody > tr > th,

#custom-html-s7 .table > tfoot > tr > td,

#custom-html-s7 .table > tfoot > tr > th,

#custom-html-s7 .table > thead > tr > td,

#custom-html-s7 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-s7 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-s7 .table > caption + thead > tr:first-child > td,

#custom-html-s7 .table > caption + thead > tr:first-child > th,

#custom-html-s7 .table > colgroup + thead > tr:first-child > td,

#custom-html-s7 .table > colgroup + thead > tr:first-child > th,

#custom-html-s7 .table > thead:first-child > tr:first-child > td,

#custom-html-s7 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-s7 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-s7 .table .table {

  background-color: #ffffff;

}

#custom-html-s7 .table-condensed > tbody > tr > td,

#custom-html-s7 .table-condensed > tbody > tr > th,

#custom-html-s7 .table-condensed > tfoot > tr > td,

#custom-html-s7 .table-condensed > tfoot > tr > th,

#custom-html-s7 .table-condensed > thead > tr > td,

#custom-html-s7 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-s7 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-s7 .table-bordered > tbody > tr > td,

#custom-html-s7 .table-bordered > tbody > tr > th,

#custom-html-s7 .table-bordered > tfoot > tr > td,

#custom-html-s7 .table-bordered > tfoot > tr > th,

#custom-html-s7 .table-bordered > thead > tr > td,

#custom-html-s7 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-s7 .table-bordered > thead > tr > td,

#custom-html-s7 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-s7 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-s7 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-s7 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-s7 table td[class*=col-],

#custom-html-s7 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-s7 .table > tbody > tr.active > td,

#custom-html-s7 .table > tbody > tr.active > th,

#custom-html-s7 .table > tbody > tr > td.active,

#custom-html-s7 .table > tbody > tr > th.active,

#custom-html-s7 .table > tfoot > tr.active > td,

#custom-html-s7 .table > tfoot > tr.active > th,

#custom-html-s7 .table > tfoot > tr > td.active,

#custom-html-s7 .table > tfoot > tr > th.active,

#custom-html-s7 .table > thead > tr.active > td,

#custom-html-s7 .table > thead > tr.active > th,

#custom-html-s7 .table > thead > tr > td.active,

#custom-html-s7 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-s7 .table-hover > tbody > tr.active:hover > td,

#custom-html-s7 .table-hover > tbody > tr.active:hover > th,

#custom-html-s7 .table-hover > tbody > tr:hover > .active,

#custom-html-s7 .table-hover > tbody > tr > td.active:hover,

#custom-html-s7 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-s7 .table > tbody > tr.success > td,

#custom-html-s7 .table > tbody > tr.success > th,

#custom-html-s7 .table > tbody > tr > td.success,

#custom-html-s7 .table > tbody > tr > th.success,

#custom-html-s7 .table > tfoot > tr.success > td,

#custom-html-s7 .table > tfoot > tr.success > th,

#custom-html-s7 .table > tfoot > tr > td.success,

#custom-html-s7 .table > tfoot > tr > th.success,

#custom-html-s7 .table > thead > tr.success > td,

#custom-html-s7 .table > thead > tr.success > th,

#custom-html-s7 .table > thead > tr > td.success,

#custom-html-s7 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-s7 .table-hover > tbody > tr.success:hover > td,

#custom-html-s7 .table-hover > tbody > tr.success:hover > th,

#custom-html-s7 .table-hover > tbody > tr:hover > .success,

#custom-html-s7 .table-hover > tbody > tr > td.success:hover,

#custom-html-s7 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-s7 .table > tbody > tr.info > td,

#custom-html-s7 .table > tbody > tr.info > th,

#custom-html-s7 .table > tbody > tr > td.info,

#custom-html-s7 .table > tbody > tr > th.info,

#custom-html-s7 .table > tfoot > tr.info > td,

#custom-html-s7 .table > tfoot > tr.info > th,

#custom-html-s7 .table > tfoot > tr > td.info,

#custom-html-s7 .table > tfoot > tr > th.info,

#custom-html-s7 .table > thead > tr.info > td,

#custom-html-s7 .table > thead > tr.info > th,

#custom-html-s7 .table > thead > tr > td.info,

#custom-html-s7 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-s7 .table-hover > tbody > tr.info:hover > td,

#custom-html-s7 .table-hover > tbody > tr.info:hover > th,

#custom-html-s7 .table-hover > tbody > tr:hover > .info,

#custom-html-s7 .table-hover > tbody > tr > td.info:hover,

#custom-html-s7 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-s7 .table > tbody > tr.warning > td,

#custom-html-s7 .table > tbody > tr.warning > th,

#custom-html-s7 .table > tbody > tr > td.warning,

#custom-html-s7 .table > tbody > tr > th.warning,

#custom-html-s7 .table > tfoot > tr.warning > td,

#custom-html-s7 .table > tfoot > tr.warning > th,

#custom-html-s7 .table > tfoot > tr > td.warning,

#custom-html-s7 .table > tfoot > tr > th.warning,

#custom-html-s7 .table > thead > tr.warning > td,

#custom-html-s7 .table > thead > tr.warning > th,

#custom-html-s7 .table > thead > tr > td.warning,

#custom-html-s7 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-s7 .table-hover > tbody > tr.warning:hover > td,

#custom-html-s7 .table-hover > tbody > tr.warning:hover > th,

#custom-html-s7 .table-hover > tbody > tr:hover > .warning,

#custom-html-s7 .table-hover > tbody > tr > td.warning:hover,

#custom-html-s7 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-s7 .table > tbody > tr.danger > td,

#custom-html-s7 .table > tbody > tr.danger > th,

#custom-html-s7 .table > tbody > tr > td.danger,

#custom-html-s7 .table > tbody > tr > th.danger,

#custom-html-s7 .table > tfoot > tr.danger > td,

#custom-html-s7 .table > tfoot > tr.danger > th,

#custom-html-s7 .table > tfoot > tr > td.danger,

#custom-html-s7 .table > tfoot > tr > th.danger,

#custom-html-s7 .table > thead > tr.danger > td,

#custom-html-s7 .table > thead > tr.danger > th,

#custom-html-s7 .table > thead > tr > td.danger,

#custom-html-s7 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-s7 .table-hover > tbody > tr.danger:hover > td,

#custom-html-s7 .table-hover > tbody > tr.danger:hover > th,

#custom-html-s7 .table-hover > tbody > tr:hover > .danger,

#custom-html-s7 .table-hover > tbody > tr > td.danger:hover,

#custom-html-s7 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-s7 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-s7 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-s7 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-s7 .table-responsive > .table > tbody > tr > td,

  #custom-html-s7 .table-responsive > .table > tbody > tr > th,

  #custom-html-s7 .table-responsive > .table > tfoot > tr > td,

  #custom-html-s7 .table-responsive > .table > tfoot > tr > th,

  #custom-html-s7 .table-responsive > .table > thead > tr > td,

  #custom-html-s7 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-s7 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-s7 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-s7 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-s7 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-s7 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-s7 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-s7 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-s7 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-s7 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-s7 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-s7 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-s7 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-s7 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-s7 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-s7 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-s7 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-s7 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-s7 fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-s7 legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-s7 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-s7 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-s7 input[type=checkbox],

#custom-html-s7 input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-s7 input[type=file] {

  display: block;

}

#custom-html-s7 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-s7 select[multiple],

#custom-html-s7 select[size] {

  height: auto;

}

#custom-html-s7 input[type=checkbox]:focus,

#custom-html-s7 input[type=file]:focus,

#custom-html-s7 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-s7 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-s7 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-s7 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-s7 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-s7 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-s7 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-s7 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-s7 .form-control[disabled],

#custom-html-s7 .form-control[readonly],

#custom-html-s7 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-s7 .form-control[disabled],

#custom-html-s7 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-s7 textarea.form-control {

  height: auto;

}

#custom-html-s7 input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-s7 input[type=date].form-control,

  #custom-html-s7 input[type=datetime-local].form-control,

  #custom-html-s7 input[type=month].form-control,

  #custom-html-s7 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-s7 .input-group-sm input[type=date],

  #custom-html-s7 .input-group-sm input[type=datetime-local],

  #custom-html-s7 .input-group-sm input[type=month],

  #custom-html-s7 .input-group-sm input[type=time],

  #custom-html-s7 input[type=date].input-sm,

  #custom-html-s7 input[type=datetime-local].input-sm,

  #custom-html-s7 input[type=month].input-sm,

  #custom-html-s7 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-s7 .input-group-lg input[type=date],

  #custom-html-s7 .input-group-lg input[type=datetime-local],

  #custom-html-s7 .input-group-lg input[type=month],

  #custom-html-s7 .input-group-lg input[type=time],

  #custom-html-s7 input[type=date].input-lg,

  #custom-html-s7 input[type=datetime-local].input-lg,

  #custom-html-s7 input[type=month].input-lg,

  #custom-html-s7 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-s7 .form-group {

  margin-bottom: 15px;

}

#custom-html-s7 .checkbox,

#custom-html-s7 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-s7 .checkbox label,

#custom-html-s7 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-s7 .checkbox input[type=checkbox],

#custom-html-s7 .checkbox-inline input[type=checkbox],

#custom-html-s7 .radio input[type=radio],

#custom-html-s7 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-s7 .checkbox + .checkbox,

#custom-html-s7 .radio + .radio {

  margin-top: -5px;

}

#custom-html-s7 .checkbox-inline,

#custom-html-s7 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-s7 .checkbox-inline + .checkbox-inline,

#custom-html-s7 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-s7 fieldset[disabled] input[type=checkbox],

#custom-html-s7 fieldset[disabled] input[type=radio],

#custom-html-s7 input[type=checkbox].disabled,

#custom-html-s7 input[type=checkbox][disabled],

#custom-html-s7 input[type=radio].disabled,

#custom-html-s7 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-s7 .checkbox-inline.disabled,

#custom-html-s7 .radio-inline.disabled,

#custom-html-s7 fieldset[disabled] .checkbox-inline,

#custom-html-s7 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-s7 .checkbox.disabled label,

#custom-html-s7 .radio.disabled label,

#custom-html-s7 fieldset[disabled] .checkbox label,

#custom-html-s7 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-s7 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-s7 .form-control-static.input-lg,

#custom-html-s7 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-s7 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s7 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-s7 select[multiple].input-sm,

#custom-html-s7 textarea.input-sm {

  height: auto;

}

#custom-html-s7 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s7 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-s7 .form-group-sm select[multiple].form-control,

#custom-html-s7 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-s7 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s7 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s7 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-s7 select[multiple].input-lg,

#custom-html-s7 textarea.input-lg {

  height: auto;

}

#custom-html-s7 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s7 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-s7 .form-group-lg select[multiple].form-control,

#custom-html-s7 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-s7 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-s7 .has-feedback {

  position: relative;

}

#custom-html-s7 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-s7 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-s7 .form-group-lg .form-control + .form-control-feedback,

#custom-html-s7 .input-group-lg + .form-control-feedback,

#custom-html-s7 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-s7 .form-group-sm .form-control + .form-control-feedback,

#custom-html-s7 .input-group-sm + .form-control-feedback,

#custom-html-s7 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-s7 .has-success .checkbox,

#custom-html-s7 .has-success .checkbox-inline,

#custom-html-s7 .has-success .control-label,

#custom-html-s7 .has-success .help-block,

#custom-html-s7 .has-success .radio,

#custom-html-s7 .has-success .radio-inline,

#custom-html-s7 .has-success.checkbox label,

#custom-html-s7 .has-success.checkbox-inline label,

#custom-html-s7 .has-success.radio label,

#custom-html-s7 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-s7 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-s7 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-s7 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-s7 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-s7 .has-warning .checkbox,

#custom-html-s7 .has-warning .checkbox-inline,

#custom-html-s7 .has-warning .control-label,

#custom-html-s7 .has-warning .help-block,

#custom-html-s7 .has-warning .radio,

#custom-html-s7 .has-warning .radio-inline,

#custom-html-s7 .has-warning.checkbox label,

#custom-html-s7 .has-warning.checkbox-inline label,

#custom-html-s7 .has-warning.radio label,

#custom-html-s7 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-s7 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-s7 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-s7 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-s7 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-s7 .has-error .checkbox,

#custom-html-s7 .has-error .checkbox-inline,

#custom-html-s7 .has-error .control-label,

#custom-html-s7 .has-error .help-block,

#custom-html-s7 .has-error .radio,

#custom-html-s7 .has-error .radio-inline,

#custom-html-s7 .has-error.checkbox label,

#custom-html-s7 .has-error.checkbox-inline label,

#custom-html-s7 .has-error.radio label,

#custom-html-s7 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-s7 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-s7 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-s7 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-s7 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-s7 .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-s7 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-s7 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-s7 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s7 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-s7 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-s7 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-s7 .form-inline .input-group .form-control,

  #custom-html-s7 .form-inline .input-group .input-group-addon,

  #custom-html-s7 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-s7 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-s7 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s7 .form-inline .checkbox,

  #custom-html-s7 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s7 .form-inline .checkbox label,

  #custom-html-s7 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-s7 .form-inline .checkbox input[type=checkbox],

  #custom-html-s7 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-s7 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-s7 .form-horizontal .checkbox,

#custom-html-s7 .form-horizontal .checkbox-inline,

#custom-html-s7 .form-horizontal .radio,

#custom-html-s7 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-s7 .form-horizontal .checkbox,

#custom-html-s7 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-s7 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-s7 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-s7 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-s7 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-s7 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-s7 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-s7 .btn.active.focus,

#custom-html-s7 .btn.active:focus,

#custom-html-s7 .btn.focus,

#custom-html-s7 .btn:active.focus,

#custom-html-s7 .btn:active:focus,

#custom-html-s7 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-s7 .btn.focus,

#custom-html-s7 .btn:focus,

#custom-html-s7 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-s7 .btn.active,

#custom-html-s7 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-s7 .btn.disabled,

#custom-html-s7 .btn[disabled],

#custom-html-s7 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-s7 a.btn.disabled,

#custom-html-s7 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-s7 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-s7 .btn-default.focus,

#custom-html-s7 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-s7 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-s7 .btn-default.active,

#custom-html-s7 .btn-default:active,

#custom-html-s7 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-s7 .btn-default.active.focus,

#custom-html-s7 .btn-default.active:focus,

#custom-html-s7 .btn-default.active:hover,

#custom-html-s7 .btn-default:active.focus,

#custom-html-s7 .btn-default:active:focus,

#custom-html-s7 .btn-default:active:hover,

#custom-html-s7 .open > .dropdown-toggle.btn-default.focus,

#custom-html-s7 .open > .dropdown-toggle.btn-default:focus,

#custom-html-s7 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-s7 .btn-default.active,

#custom-html-s7 .btn-default:active,

#custom-html-s7 .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-s7 .btn-default.disabled.focus,

#custom-html-s7 .btn-default.disabled:focus,

#custom-html-s7 .btn-default.disabled:hover,

#custom-html-s7 .btn-default[disabled].focus,

#custom-html-s7 .btn-default[disabled]:focus,

#custom-html-s7 .btn-default[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-default.focus,

#custom-html-s7 fieldset[disabled] .btn-default:focus,

#custom-html-s7 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-s7 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-s7 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-s7 .btn-primary.focus,

#custom-html-s7 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-s7 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-s7 .btn-primary.active,

#custom-html-s7 .btn-primary:active,

#custom-html-s7 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-s7 .btn-primary.active.focus,

#custom-html-s7 .btn-primary.active:focus,

#custom-html-s7 .btn-primary.active:hover,

#custom-html-s7 .btn-primary:active.focus,

#custom-html-s7 .btn-primary:active:focus,

#custom-html-s7 .btn-primary:active:hover,

#custom-html-s7 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-s7 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-s7 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-s7 .btn-primary.active,

#custom-html-s7 .btn-primary:active,

#custom-html-s7 .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-s7 .btn-primary.disabled.focus,

#custom-html-s7 .btn-primary.disabled:focus,

#custom-html-s7 .btn-primary.disabled:hover,

#custom-html-s7 .btn-primary[disabled].focus,

#custom-html-s7 .btn-primary[disabled]:focus,

#custom-html-s7 .btn-primary[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-primary.focus,

#custom-html-s7 fieldset[disabled] .btn-primary:focus,

#custom-html-s7 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-s7 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-s7 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-s7 .btn-success.focus,

#custom-html-s7 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-s7 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-s7 .btn-success.active,

#custom-html-s7 .btn-success:active,

#custom-html-s7 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-s7 .btn-success.active.focus,

#custom-html-s7 .btn-success.active:focus,

#custom-html-s7 .btn-success.active:hover,

#custom-html-s7 .btn-success:active.focus,

#custom-html-s7 .btn-success:active:focus,

#custom-html-s7 .btn-success:active:hover,

#custom-html-s7 .open > .dropdown-toggle.btn-success.focus,

#custom-html-s7 .open > .dropdown-toggle.btn-success:focus,

#custom-html-s7 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-s7 .btn-success.active,

#custom-html-s7 .btn-success:active,

#custom-html-s7 .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-s7 .btn-success.disabled.focus,

#custom-html-s7 .btn-success.disabled:focus,

#custom-html-s7 .btn-success.disabled:hover,

#custom-html-s7 .btn-success[disabled].focus,

#custom-html-s7 .btn-success[disabled]:focus,

#custom-html-s7 .btn-success[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-success.focus,

#custom-html-s7 fieldset[disabled] .btn-success:focus,

#custom-html-s7 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-s7 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-s7 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-s7 .btn-info.focus,

#custom-html-s7 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-s7 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-s7 .btn-info.active,

#custom-html-s7 .btn-info:active,

#custom-html-s7 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-s7 .btn-info.active.focus,

#custom-html-s7 .btn-info.active:focus,

#custom-html-s7 .btn-info.active:hover,

#custom-html-s7 .btn-info:active.focus,

#custom-html-s7 .btn-info:active:focus,

#custom-html-s7 .btn-info:active:hover,

#custom-html-s7 .open > .dropdown-toggle.btn-info.focus,

#custom-html-s7 .open > .dropdown-toggle.btn-info:focus,

#custom-html-s7 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-s7 .btn-info.active,

#custom-html-s7 .btn-info:active,

#custom-html-s7 .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-s7 .btn-info.disabled.focus,

#custom-html-s7 .btn-info.disabled:focus,

#custom-html-s7 .btn-info.disabled:hover,

#custom-html-s7 .btn-info[disabled].focus,

#custom-html-s7 .btn-info[disabled]:focus,

#custom-html-s7 .btn-info[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-info.focus,

#custom-html-s7 fieldset[disabled] .btn-info:focus,

#custom-html-s7 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-s7 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-s7 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-s7 .btn-warning.focus,

#custom-html-s7 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-s7 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-s7 .btn-warning.active,

#custom-html-s7 .btn-warning:active,

#custom-html-s7 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-s7 .btn-warning.active.focus,

#custom-html-s7 .btn-warning.active:focus,

#custom-html-s7 .btn-warning.active:hover,

#custom-html-s7 .btn-warning:active.focus,

#custom-html-s7 .btn-warning:active:focus,

#custom-html-s7 .btn-warning:active:hover,

#custom-html-s7 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-s7 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-s7 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-s7 .btn-warning.active,

#custom-html-s7 .btn-warning:active,

#custom-html-s7 .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-s7 .btn-warning.disabled.focus,

#custom-html-s7 .btn-warning.disabled:focus,

#custom-html-s7 .btn-warning.disabled:hover,

#custom-html-s7 .btn-warning[disabled].focus,

#custom-html-s7 .btn-warning[disabled]:focus,

#custom-html-s7 .btn-warning[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-warning.focus,

#custom-html-s7 fieldset[disabled] .btn-warning:focus,

#custom-html-s7 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-s7 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-s7 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-s7 .btn-danger.focus,

#custom-html-s7 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-s7 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-s7 .btn-danger.active,

#custom-html-s7 .btn-danger:active,

#custom-html-s7 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-s7 .btn-danger.active.focus,

#custom-html-s7 .btn-danger.active:focus,

#custom-html-s7 .btn-danger.active:hover,

#custom-html-s7 .btn-danger:active.focus,

#custom-html-s7 .btn-danger:active:focus,

#custom-html-s7 .btn-danger:active:hover,

#custom-html-s7 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-s7 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-s7 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-s7 .btn-danger.active,

#custom-html-s7 .btn-danger:active,

#custom-html-s7 .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-s7 .btn-danger.disabled.focus,

#custom-html-s7 .btn-danger.disabled:focus,

#custom-html-s7 .btn-danger.disabled:hover,

#custom-html-s7 .btn-danger[disabled].focus,

#custom-html-s7 .btn-danger[disabled]:focus,

#custom-html-s7 .btn-danger[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-danger.focus,

#custom-html-s7 fieldset[disabled] .btn-danger:focus,

#custom-html-s7 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-s7 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-s7 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-s7 .btn-link,

#custom-html-s7 .btn-link.active,

#custom-html-s7 .btn-link:active,

#custom-html-s7 .btn-link[disabled],

#custom-html-s7 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s7 .btn-link,

#custom-html-s7 .btn-link:active,

#custom-html-s7 .btn-link:focus,

#custom-html-s7 .btn-link:hover {

  border-color: transparent;

}

#custom-html-s7 .btn-link:focus,

#custom-html-s7 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-s7 .btn-link[disabled]:focus,

#custom-html-s7 .btn-link[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-link:focus,

#custom-html-s7 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-s7 .btn-group-lg > .btn,

#custom-html-s7 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s7 .btn-group-sm > .btn,

#custom-html-s7 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s7 .btn-group-xs > .btn,

#custom-html-s7 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s7 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-s7 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-s7 input[type=button].btn-block,

#custom-html-s7 input[type=reset].btn-block,

#custom-html-s7 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-s7 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-s7 .fade.in {

  opacity: 1;

}

#custom-html-s7 .collapse {

  display: none;

}

#custom-html-s7 .collapse.in {

  display: block;

}

#custom-html-s7 tr.collapse.in {

  display: table-row;

}

#custom-html-s7 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-s7 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-s7 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-s7 .dropdown,

#custom-html-s7 .dropup {

  position: relative;

}

#custom-html-s7 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-s7 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-s7 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-s7 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-s7 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-s7 .dropdown-menu > li > a:focus,

#custom-html-s7 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-s7 .dropdown-menu > .active > a,

#custom-html-s7 .dropdown-menu > .active > a:focus,

#custom-html-s7 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-s7 .dropdown-menu > .disabled > a,

#custom-html-s7 .dropdown-menu > .disabled > a:focus,

#custom-html-s7 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-s7 .dropdown-menu > .disabled > a:focus,

#custom-html-s7 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-s7 .open > .dropdown-menu {

  display: block;

}

#custom-html-s7 .open > a {

  outline: 0;

}

#custom-html-s7 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-s7 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-s7 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-s7 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-s7 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-s7 .dropup .caret,

#custom-html-s7 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-s7 .dropup .dropdown-menu,

#custom-html-s7 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-s7 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-s7 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-s7 .btn-group,

#custom-html-s7 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-s7 .btn-group-vertical > .btn,

#custom-html-s7 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-s7 .btn-group-vertical > .btn.active,

#custom-html-s7 .btn-group-vertical > .btn:active,

#custom-html-s7 .btn-group-vertical > .btn:focus,

#custom-html-s7 .btn-group-vertical > .btn:hover,

#custom-html-s7 .btn-group > .btn.active,

#custom-html-s7 .btn-group > .btn:active,

#custom-html-s7 .btn-group > .btn:focus,

#custom-html-s7 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-s7 .btn-group .btn + .btn,

#custom-html-s7 .btn-group .btn + .btn-group,

#custom-html-s7 .btn-group .btn-group + .btn,

#custom-html-s7 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-s7 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-s7 .btn-toolbar .btn,

#custom-html-s7 .btn-toolbar .btn-group,

#custom-html-s7 .btn-toolbar .input-group {

  float: left;

}

#custom-html-s7 .btn-toolbar > .btn,

#custom-html-s7 .btn-toolbar > .btn-group,

#custom-html-s7 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-s7 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-s7 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-s7 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-s7 .btn-group > .btn:last-child:not(:first-child),

#custom-html-s7 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s7 .btn-group > .btn-group {

  float: left;

}

#custom-html-s7 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-s7 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-s7 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-s7 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s7 .btn-group .dropdown-toggle:active,

#custom-html-s7 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-s7 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-s7 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-s7 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-s7 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s7 .btn .caret {

  margin-left: 0;

}

#custom-html-s7 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-s7 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-s7 .btn-group-vertical > .btn,

#custom-html-s7 .btn-group-vertical > .btn-group,

#custom-html-s7 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-s7 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-s7 .btn-group-vertical > .btn + .btn,

#custom-html-s7 .btn-group-vertical > .btn + .btn-group,

#custom-html-s7 .btn-group-vertical > .btn-group + .btn,

#custom-html-s7 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-s7 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-s7 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s7 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s7 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-s7 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-s7 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s7 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s7 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-s7 .btn-group-justified > .btn,

#custom-html-s7 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-s7 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-s7 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-s7 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-s7 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-s7 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-s7 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-s7 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-s7 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-s7 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-s7 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-s7 .input-group-lg > .form-control,

#custom-html-s7 .input-group-lg > .input-group-addon,

#custom-html-s7 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s7 select.input-group-lg > .form-control,

#custom-html-s7 select.input-group-lg > .input-group-addon,

#custom-html-s7 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-s7 select[multiple].input-group-lg > .form-control,

#custom-html-s7 select[multiple].input-group-lg > .input-group-addon,

#custom-html-s7 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-s7 textarea.input-group-lg > .form-control,

#custom-html-s7 textarea.input-group-lg > .input-group-addon,

#custom-html-s7 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-s7 .input-group-sm > .form-control,

#custom-html-s7 .input-group-sm > .input-group-addon,

#custom-html-s7 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s7 select.input-group-sm > .form-control,

#custom-html-s7 select.input-group-sm > .input-group-addon,

#custom-html-s7 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-s7 select[multiple].input-group-sm > .form-control,

#custom-html-s7 select[multiple].input-group-sm > .input-group-addon,

#custom-html-s7 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-s7 textarea.input-group-sm > .form-control,

#custom-html-s7 textarea.input-group-sm > .input-group-addon,

#custom-html-s7 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-s7 .input-group .form-control,

#custom-html-s7 .input-group-addon,

#custom-html-s7 .input-group-btn {

  display: table-cell;

}

#custom-html-s7 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-s7 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-s7 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-s7 .input-group-addon,

#custom-html-s7 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-s7 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-s7 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-s7 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-s7 .input-group-addon input[type=checkbox],

#custom-html-s7 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-s7 .input-group .form-control:first-child,

#custom-html-s7 .input-group-addon:first-child,

#custom-html-s7 .input-group-btn:first-child > .btn,

#custom-html-s7 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-s7 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-s7 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-s7 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-s7 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-s7 .input-group .form-control:last-child,

#custom-html-s7 .input-group-addon:last-child,

#custom-html-s7 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-s7 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-s7 .input-group-btn:last-child > .btn,

#custom-html-s7 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-s7 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s7 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-s7 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-s7 .input-group-btn > .btn {

  position: relative;

}

#custom-html-s7 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-s7 .input-group-btn > .btn:active,

#custom-html-s7 .input-group-btn > .btn:focus,

#custom-html-s7 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-s7 .input-group-btn:first-child > .btn,

#custom-html-s7 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-s7 .input-group-btn:last-child > .btn,

#custom-html-s7 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-s7 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-s7 .nav > li {

  position: relative;

  display: block;

}

#custom-html-s7 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-s7 .nav > li > a:focus,

#custom-html-s7 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-s7 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-s7 .nav > li.disabled > a:focus,

#custom-html-s7 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-s7 .nav .open > a,

#custom-html-s7 .nav .open > a:focus,

#custom-html-s7 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-s7 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-s7 .nav > li > a > img {

  max-width: none;

}

#custom-html-s7 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-s7 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-s7 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-s7 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-s7 .nav-tabs > li.active > a,

#custom-html-s7 .nav-tabs > li.active > a:focus,

#custom-html-s7 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-s7 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-s7 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-s7 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-s7 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-s7 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-s7 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-s7 .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-s7 .nav-tabs.nav-justified > .active > a,

#custom-html-s7 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-s7 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-s7 .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-s7 .nav-tabs.nav-justified > .active > a,

  #custom-html-s7 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-s7 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-s7 .nav-pills > li {

  float: left;

}

#custom-html-s7 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-s7 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-s7 .nav-pills > li.active > a,

#custom-html-s7 .nav-pills > li.active > a:focus,

#custom-html-s7 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-s7 .nav-stacked > li {

  float: none;

}

#custom-html-s7 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-s7 .nav-justified {

  width: 100%;

}

#custom-html-s7 .nav-justified > li {

  float: none;

}

#custom-html-s7 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-s7 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-s7 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-s7 .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-s7 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-s7 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-s7 .nav-tabs-justified > .active > a,

#custom-html-s7 .nav-tabs-justified > .active > a:focus,

#custom-html-s7 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-s7 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-s7 .nav-tabs-justified > .active > a,

  #custom-html-s7 .nav-tabs-justified > .active > a:focus,

  #custom-html-s7 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-s7 .tab-content > .tab-pane {

  display: none;

}

#custom-html-s7 .tab-content > .active {

  display: block;

}

#custom-html-s7 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s7 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-s7 .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-s7 .navbar-header {

    float: left;

  }

}

#custom-html-s7 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-s7 .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-s7 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-s7 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-s7 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-s7 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-s7 .navbar-fixed-top .navbar-collapse,

  #custom-html-s7 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-s7 .navbar-fixed-bottom .navbar-collapse,

#custom-html-s7 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-s7 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-s7 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-s7 .container-fluid > .navbar-collapse,

#custom-html-s7 .container-fluid > .navbar-header,

#custom-html-s7 .container > .navbar-collapse,

#custom-html-s7 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-s7 .container-fluid > .navbar-collapse,

  #custom-html-s7 .container-fluid > .navbar-header,

  #custom-html-s7 .container > .navbar-collapse,

  #custom-html-s7 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-s7 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-s7 .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-s7 .navbar-fixed-bottom,

#custom-html-s7 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-s7 .navbar-fixed-bottom,

  #custom-html-s7 .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-s7 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-s7 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-s7 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-s7 .navbar-brand:focus,

#custom-html-s7 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-s7 .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-s7 .navbar > .container .navbar-brand,

  #custom-html-s7 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-s7 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-s7 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-s7 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-s7 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-s7 .navbar-toggle {

    display: none;

  }

}

#custom-html-s7 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-s7 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-s7 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-s7 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-s7 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-s7 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-s7 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-s7 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-s7 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-s7 .navbar-nav > li {

    float: left;

  }

  #custom-html-s7 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-s7 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-s7 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s7 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-s7 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-s7 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-s7 .navbar-form .input-group .form-control,

  #custom-html-s7 .navbar-form .input-group .input-group-addon,

  #custom-html-s7 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-s7 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-s7 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s7 .navbar-form .checkbox,

  #custom-html-s7 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s7 .navbar-form .checkbox label,

  #custom-html-s7 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-s7 .navbar-form .checkbox input[type=checkbox],

  #custom-html-s7 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-s7 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-s7 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-s7 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-s7 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-s7 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s7 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s7 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-s7 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-s7 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-s7 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-s7 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-s7 .navbar-left {

    float: left !important;

  }

  #custom-html-s7 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-s7 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-s7 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-s7 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-s7 .navbar-default .navbar-brand:focus,

#custom-html-s7 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-s7 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-s7 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-s7 .navbar-default .navbar-nav > li > a:focus,

#custom-html-s7 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-s7 .navbar-default .navbar-nav > .active > a,

#custom-html-s7 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-s7 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-s7 .navbar-default .navbar-nav > .disabled > a,

#custom-html-s7 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-s7 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-s7 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-s7 .navbar-default .navbar-toggle:focus,

#custom-html-s7 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-s7 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-s7 .navbar-default .navbar-collapse,

#custom-html-s7 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-s7 .navbar-default .navbar-nav > .open > a,

#custom-html-s7 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-s7 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-s7 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-s7 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-s7 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-s7 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-s7 .navbar-default .btn-link:focus,

#custom-html-s7 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-s7 .navbar-default .btn-link[disabled]:focus,

#custom-html-s7 .navbar-default .btn-link[disabled]:hover,

#custom-html-s7 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-s7 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-s7 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-s7 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-s7 .navbar-inverse .navbar-brand:focus,

#custom-html-s7 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-s7 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-s7 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-s7 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-s7 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-s7 .navbar-inverse .navbar-nav > .active > a,

#custom-html-s7 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-s7 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-s7 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-s7 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-s7 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-s7 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-s7 .navbar-inverse .navbar-toggle:focus,

#custom-html-s7 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-s7 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-s7 .navbar-inverse .navbar-collapse,

#custom-html-s7 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-s7 .navbar-inverse .navbar-nav > .open > a,

#custom-html-s7 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-s7 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-s7 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-s7 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-s7 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-s7 .navbar-inverse .btn-link {

  color: #9d9d9d;


}

#custom-html-s7 .navbar-inverse .btn-link:focus,

#custom-html-s7 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-s7 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-s7 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-s7 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-s7 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-s7 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-s7 .breadcrumb > li {

  display: inline-block;

}

#custom-html-s7 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-s7 .breadcrumb > .active {

  color: #777777;

}

#custom-html-s7 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-s7 .pagination > li {

  display: inline;

}

#custom-html-s7 .pagination > li > a,

#custom-html-s7 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-s7 .pagination > li:first-child > a,

#custom-html-s7 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s7 .pagination > li:last-child > a,

#custom-html-s7 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-s7 .pagination > li > a:focus,

#custom-html-s7 .pagination > li > a:hover,

#custom-html-s7 .pagination > li > span:focus,

#custom-html-s7 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-s7 .pagination > .active > a,

#custom-html-s7 .pagination > .active > a:focus,

#custom-html-s7 .pagination > .active > a:hover,

#custom-html-s7 .pagination > .active > span,

#custom-html-s7 .pagination > .active > span:focus,

#custom-html-s7 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-s7 .pagination > .disabled > a,

#custom-html-s7 .pagination > .disabled > a:focus,

#custom-html-s7 .pagination > .disabled > a:hover,

#custom-html-s7 .pagination > .disabled > span,

#custom-html-s7 .pagination > .disabled > span:focus,

#custom-html-s7 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-s7 .pagination-lg > li > a,

#custom-html-s7 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-s7 .pagination-lg > li:first-child > a,

#custom-html-s7 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-s7 .pagination-lg > li:last-child > a,

#custom-html-s7 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-s7 .pagination-sm > li > a,

#custom-html-s7 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s7 .pagination-sm > li:first-child > a,

#custom-html-s7 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s7 .pagination-sm > li:last-child > a,

#custom-html-s7 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-s7 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-s7 .pager li {

  display: inline;

}

#custom-html-s7 .pager li > a,

#custom-html-s7 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-s7 .pager li > a:focus,

#custom-html-s7 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-s7 .pager .next > a,

#custom-html-s7 .pager .next > span {

  float: right;

}

#custom-html-s7 .pager .previous > a,

#custom-html-s7 .pager .previous > span {

  float: left;

}

#custom-html-s7 .pager .disabled > a,

#custom-html-s7 .pager .disabled > a:focus,

#custom-html-s7 .pager .disabled > a:hover,

#custom-html-s7 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-s7 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-s7 a.label:focus,

#custom-html-s7 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-s7 .label:empty {

  display: none;

}

#custom-html-s7 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-s7 .label-default {

  background-color: #777777;

}

#custom-html-s7 .label-default[href]:focus,

#custom-html-s7 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-s7 .label-primary {

  background-color: #337ab7;

}

#custom-html-s7 .label-primary[href]:focus,

#custom-html-s7 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-s7 .label-success {

  background-color: #5cb85c;

}

#custom-html-s7 .label-success[href]:focus,

#custom-html-s7 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-s7 .label-info {

  background-color: #5bc0de;

}

#custom-html-s7 .label-info[href]:focus,

#custom-html-s7 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-s7 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-s7 .label-warning[href]:focus,

#custom-html-s7 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-s7 .label-danger {

  background-color: #d9534f;

}

#custom-html-s7 .label-danger[href]:focus,

#custom-html-s7 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-s7 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-s7 .badge:empty {

  display: none;

}

#custom-html-s7 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-s7 .btn-group-xs > .btn .badge,

#custom-html-s7 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-s7 a.badge:focus,

#custom-html-s7 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-s7 .list-group-item.active > .badge,

#custom-html-s7 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-s7 .list-group-item > .badge {

  float: right;

}

#custom-html-s7 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-s7 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-s7 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-s7 .jumbotron .h1,

#custom-html-s7 .jumbotron h1 {

  color: inherit;

}

#custom-html-s7 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-s7 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-s7 .container .jumbotron,

#custom-html-s7 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-s7 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-s7 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-s7 .container .jumbotron,

  #custom-html-s7 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-s7 .jumbotron .h1,

  #custom-html-s7 .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-s7 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-s7 .thumbnail a > img,

#custom-html-s7 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-s7 a.thumbnail.active,

#custom-html-s7 a.thumbnail:focus,

#custom-html-s7 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-s7 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-s7 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-s7 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-s7 .alert .alert-link {

  font-weight: 700;

}

#custom-html-s7 .alert > p,

#custom-html-s7 .alert > ul {

  margin-bottom: 0;

}

#custom-html-s7 .alert > p + p {

  margin-top: 5px;

}

#custom-html-s7 .alert-dismissable,

#custom-html-s7 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-s7 .alert-dismissable .close,

#custom-html-s7 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-s7 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-s7 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-s7 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-s7 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-s7 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-s7 .alert-info .alert-link {

  color: #000000;

}

#custom-html-s7 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-s7 .alert-warning hr {


  border-top-color: #f7e1b5;

}

#custom-html-s7 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-s7 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-s7 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-s7 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-s7 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-s7 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-s7 .progress-bar-striped,

#custom-html-s7 .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-s7 .progress-bar.active,

#custom-html-s7 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-s7 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-s7 .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s7 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-s7 .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s7 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-s7 .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s7 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-s7 .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s7 .media {

  margin-top: 15px;

}

#custom-html-s7 .media:first-child {

  margin-top: 0;

}

#custom-html-s7 .media,

#custom-html-s7 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-s7 .media-body {

  width: 10000px;

}

#custom-html-s7 .media-object {

  display: block;

}

#custom-html-s7 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-s7 .media-right,

#custom-html-s7 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-s7 .media-left,

#custom-html-s7 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-s7 .media-body,

#custom-html-s7 .media-left,

#custom-html-s7 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-s7 .media-middle {

  vertical-align: middle;

}

#custom-html-s7 .media-bottom {

  vertical-align: bottom;

}

#custom-html-s7 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-s7 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-s7 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-s7 .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-s7 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-s7 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s7 a.list-group-item,

#custom-html-s7 button.list-group-item {

  color: #555555;

}

#custom-html-s7 a.list-group-item .list-group-item-heading,

#custom-html-s7 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-s7 a.list-group-item:focus,

#custom-html-s7 a.list-group-item:hover,

#custom-html-s7 button.list-group-item:focus,

#custom-html-s7 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-s7 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-s7 .list-group-item.disabled,

#custom-html-s7 .list-group-item.disabled:focus,

#custom-html-s7 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-s7 .list-group-item.disabled .list-group-item-heading,

#custom-html-s7 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-s7 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-s7 .list-group-item.disabled .list-group-item-text,

#custom-html-s7 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-s7 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-s7 .list-group-item.active,

#custom-html-s7 .list-group-item.active:focus,

#custom-html-s7 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-s7 .list-group-item.active .list-group-item-heading,

#custom-html-s7 .list-group-item.active .list-group-item-heading > .small,

#custom-html-s7 .list-group-item.active .list-group-item-heading > small,

#custom-html-s7 .list-group-item.active:focus .list-group-item-heading,

#custom-html-s7 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-s7 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-s7 .list-group-item.active:hover .list-group-item-heading,

#custom-html-s7 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-s7 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-s7 .list-group-item.active .list-group-item-text,

#custom-html-s7 .list-group-item.active:focus .list-group-item-text,

#custom-html-s7 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-s7 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-s7 a.list-group-item-success,

#custom-html-s7 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-s7 a.list-group-item-success .list-group-item-heading,

#custom-html-s7 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-s7 a.list-group-item-success:focus,

#custom-html-s7 a.list-group-item-success:hover,

#custom-html-s7 button.list-group-item-success:focus,

#custom-html-s7 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-s7 a.list-group-item-success.active,

#custom-html-s7 a.list-group-item-success.active:focus,

#custom-html-s7 a.list-group-item-success.active:hover,

#custom-html-s7 button.list-group-item-success.active,

#custom-html-s7 button.list-group-item-success.active:focus,

#custom-html-s7 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-s7 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-s7 a.list-group-item-info,

#custom-html-s7 button.list-group-item-info {

  color: #31708f;

}

#custom-html-s7 a.list-group-item-info .list-group-item-heading,

#custom-html-s7 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-s7 a.list-group-item-info:focus,

#custom-html-s7 a.list-group-item-info:hover,

#custom-html-s7 button.list-group-item-info:focus,

#custom-html-s7 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-s7 a.list-group-item-info.active,

#custom-html-s7 a.list-group-item-info.active:focus,

#custom-html-s7 a.list-group-item-info.active:hover,

#custom-html-s7 button.list-group-item-info.active,

#custom-html-s7 button.list-group-item-info.active:focus,

#custom-html-s7 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-s7 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-s7 a.list-group-item-warning,

#custom-html-s7 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-s7 a.list-group-item-warning .list-group-item-heading,

#custom-html-s7 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-s7 a.list-group-item-warning:focus,

#custom-html-s7 a.list-group-item-warning:hover,

#custom-html-s7 button.list-group-item-warning:focus,

#custom-html-s7 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-s7 a.list-group-item-warning.active,

#custom-html-s7 a.list-group-item-warning.active:focus,

#custom-html-s7 a.list-group-item-warning.active:hover,

#custom-html-s7 button.list-group-item-warning.active,

#custom-html-s7 button.list-group-item-warning.active:focus,

#custom-html-s7 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-s7 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-s7 a.list-group-item-danger,

#custom-html-s7 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-s7 a.list-group-item-danger .list-group-item-heading,

#custom-html-s7 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-s7 a.list-group-item-danger:focus,

#custom-html-s7 a.list-group-item-danger:hover,

#custom-html-s7 button.list-group-item-danger:focus,

#custom-html-s7 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-s7 a.list-group-item-danger.active,

#custom-html-s7 a.list-group-item-danger.active:focus,

#custom-html-s7 a.list-group-item-danger.active:hover,

#custom-html-s7 button.list-group-item-danger.active,

#custom-html-s7 button.list-group-item-danger.active:focus,

#custom-html-s7 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-s7 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-s7 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-s7 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-s7 .panel-body {

  padding: 15px;

}

#custom-html-s7 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-s7 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-s7 .panel-title > .small,

#custom-html-s7 .panel-title > .small > a,

#custom-html-s7 .panel-title > a,

#custom-html-s7 .panel-title > small,

#custom-html-s7 .panel-title > small > a {

  color: inherit;

}

#custom-html-s7 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s7 .panel > .list-group,

#custom-html-s7 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-s7 .panel > .list-group .list-group-item,

#custom-html-s7 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-s7 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-s7 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-s7 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s7 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s7 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-s7 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-s7 .panel > .panel-collapse > .table,

#custom-html-s7 .panel > .table,

#custom-html-s7 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-s7 .panel > .panel-collapse > .table caption,

#custom-html-s7 .panel > .table caption,

#custom-html-s7 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-s7 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-s7 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-s7 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-s7 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-s7 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-s7 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-s7 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-s7 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-s7 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-s7 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-s7 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-s7 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-s7 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-s7 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-s7 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-s7 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-s7 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-s7 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-s7 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-s7 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-s7 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-s7 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-s7 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-s7 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-s7 .panel > .panel-body + .table,

#custom-html-s7 .panel > .panel-body + .table-responsive,

#custom-html-s7 .panel > .table + .panel-body,

#custom-html-s7 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-s7 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-s7 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-s7 .panel > .table-bordered,

#custom-html-s7 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-s7 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-s7 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-s7 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-s7 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-s7 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-s7 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-s7 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-s7 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-s7 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-s7 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-s7 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-s7 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-s7 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-s7 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-s7 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-s7 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-s7 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-s7 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-s7 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-s7 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-s7 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-s7 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-s7 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-s7 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-s7 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-s7 .panel-group {

  margin-bottom: 20px;

}

#custom-html-s7 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-s7 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-s7 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-s7 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-s7 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-s7 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-s7 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-s7 .panel-default {

  border-color: #dddddd;

}

#custom-html-s7 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-s7 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-s7 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-s7 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-s7 .panel-primary {

  border-color: #337ab7;

}

#custom-html-s7 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-s7 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-s7 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-s7 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-s7 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-s7 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-s7 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-s7 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-s7 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-s7 .panel-info {

  border-color: #bce8f1;

}

#custom-html-s7 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-s7 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-s7 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-s7 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-s7 .panel-warning {

  border-color: #faebcc;

}

#custom-html-s7 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-s7 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-s7 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-s7 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-s7 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-s7 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-s7 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-s7 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-s7 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-s7 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-s7 .embed-responsive .embed-responsive-item,

#custom-html-s7 .embed-responsive embed,

#custom-html-s7 .embed-responsive iframe,

#custom-html-s7 .embed-responsive object,

#custom-html-s7 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-s7 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-s7 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-s7 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-s7 .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-s7 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-s7 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-s7 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-s7 .close:focus,

#custom-html-s7 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-s7 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-s7 .modal-open {

  overflow: hidden;

}

#custom-html-s7 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-s7 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-s7 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-s7 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-s7 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-s7 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-s7 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-s7 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-s7 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-s7 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-s7 .modal-header .close {

  margin-top: -2px;

}

#custom-html-s7 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-s7 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-s7 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-s7 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-s7 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-s7 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-s7 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-s7 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-s7 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-s7 .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-s7 .modal-lg {

    width: 900px;

  }

}

#custom-html-s7 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-s7 .tooltip.in {

  opacity: 0.9;

}

#custom-html-s7 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-s7 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-s7 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-s7 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-s7 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-s7 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-s7 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-s7 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-s7 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-s7 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-s7 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-s7 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-s7 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-s7 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-s7 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-s7 .popover.top {

  margin-top: -10px;

}

#custom-html-s7 .popover.right {

  margin-left: 10px;

}

#custom-html-s7 .popover.bottom {

  margin-top: 10px;

}

#custom-html-s7 .popover.left {

  margin-left: -10px;

}

#custom-html-s7 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-s7 .popover-content {

  padding: 9px 14px;

}

#custom-html-s7 .popover > .arrow,

#custom-html-s7 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-s7 .popover > .arrow {

  border-width: 11px;

}

#custom-html-s7 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-s7 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-s7 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-s7 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-s7 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-s7 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-s7 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-s7 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-s7 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-s7 .carousel {

  position: relative;

}

#custom-html-s7 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-s7 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-s7 .carousel-inner > .item > a > img,

#custom-html-s7 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-s7 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-s7 .carousel-inner > .item.active.right,

  #custom-html-s7 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-s7 .carousel-inner > .item.active.left,

  #custom-html-s7 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-s7 .carousel-inner > .item.active,

  #custom-html-s7 .carousel-inner > .item.next.left,

  #custom-html-s7 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-s7 .carousel-inner > .active,

#custom-html-s7 .carousel-inner > .next,

#custom-html-s7 .carousel-inner > .prev {

  display: block;

}

#custom-html-s7 .carousel-inner > .active {

  left: 0;

}

#custom-html-s7 .carousel-inner > .next,

#custom-html-s7 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-s7 .carousel-inner > .next {

  left: 100%;

}

#custom-html-s7 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-s7 .carousel-inner > .next.left,

#custom-html-s7 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-s7 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-s7 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-s7 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-s7 .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-s7 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-s7 .carousel-control:focus,

#custom-html-s7 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-s7 .carousel-control .glyphicon-chevron-left,

#custom-html-s7 .carousel-control .glyphicon-chevron-right,

#custom-html-s7 .carousel-control .icon-next,

#custom-html-s7 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-s7 .carousel-control .glyphicon-chevron-left,

#custom-html-s7 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-s7 .carousel-control .glyphicon-chevron-right,

#custom-html-s7 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-s7 .carousel-control .icon-next,

#custom-html-s7 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-s7 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-s7 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-s7 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-s7 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-s7 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-s7 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-s7 .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-s7 .carousel-control .glyphicon-chevron-left,

  #custom-html-s7 .carousel-control .glyphicon-chevron-right,

  #custom-html-s7 .carousel-control .icon-next,

  #custom-html-s7 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-s7 .carousel-control .glyphicon-chevron-left,

  #custom-html-s7 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-s7 .carousel-control .glyphicon-chevron-right,

  #custom-html-s7 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-s7 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-s7 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-s7 .btn-group-vertical > .btn-group:after,

#custom-html-s7 .btn-group-vertical > .btn-group:before,

#custom-html-s7 .btn-toolbar:after,

#custom-html-s7 .btn-toolbar:before,

#custom-html-s7 .clearfix:after,

#custom-html-s7 .clearfix:before,

#custom-html-s7 .container-fluid:after,

#custom-html-s7 .container-fluid:before,

#custom-html-s7 .container:after,

#custom-html-s7 .container:before,

#custom-html-s7 .dl-horizontal dd:after,

#custom-html-s7 .dl-horizontal dd:before,

#custom-html-s7 .form-horizontal .form-group:after,

#custom-html-s7 .form-horizontal .form-group:before,

#custom-html-s7 .modal-footer:after,

#custom-html-s7 .modal-footer:before,

#custom-html-s7 .modal-header:after,

#custom-html-s7 .modal-header:before,

#custom-html-s7 .nav:after,

#custom-html-s7 .nav:before,

#custom-html-s7 .navbar-collapse:after,

#custom-html-s7 .navbar-collapse:before,

#custom-html-s7 .navbar-header:after,

#custom-html-s7 .navbar-header:before,

#custom-html-s7 .navbar:after,

#custom-html-s7 .navbar:before,

#custom-html-s7 .pager:after,

#custom-html-s7 .pager:before,

#custom-html-s7 .panel-body:after,

#custom-html-s7 .panel-body:before,

#custom-html-s7 .row:after,

#custom-html-s7 .row:before {

  display: table;

  content: " ";

}

#custom-html-s7 .btn-group-vertical > .btn-group:after,

#custom-html-s7 .btn-toolbar:after,

#custom-html-s7 .clearfix:after,

#custom-html-s7 .container-fluid:after,

#custom-html-s7 .container:after,

#custom-html-s7 .dl-horizontal dd:after,

#custom-html-s7 .form-horizontal .form-group:after,

#custom-html-s7 .modal-footer:after,

#custom-html-s7 .modal-header:after,

#custom-html-s7 .nav:after,

#custom-html-s7 .navbar-collapse:after,

#custom-html-s7 .navbar-header:after,

#custom-html-s7 .navbar:after,


#custom-html-s7 .pager:after,

#custom-html-s7 .panel-body:after,

#custom-html-s7 .row:after {

  clear: both;

}

#custom-html-s7 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-s7 .pull-right {

  float: right !important;

}

#custom-html-s7 .pull-left {

  float: left !important;

}

#custom-html-s7 .hide {

  display: none !important;

}

#custom-html-s7 .show {

  display: block !important;

}

#custom-html-s7 .invisible {

  visibility: hidden;

}

#custom-html-s7 .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-s7 .hidden {

  display: none !important;

}

#custom-html-s7 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-s7 .visible-lg,

#custom-html-s7 .visible-md,

#custom-html-s7 .visible-sm,

#custom-html-s7 .visible-xs {

  display: none !important;

}

#custom-html-s7 .visible-lg-block,

#custom-html-s7 .visible-lg-inline,

#custom-html-s7 .visible-lg-inline-block,

#custom-html-s7 .visible-md-block,

#custom-html-s7 .visible-md-inline,

#custom-html-s7 .visible-md-inline-block,

#custom-html-s7 .visible-sm-block,

#custom-html-s7 .visible-sm-inline,

#custom-html-s7 .visible-sm-inline-block,

#custom-html-s7 .visible-xs-block,

#custom-html-s7 .visible-xs-inline,

#custom-html-s7 .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-s7 .visible-xs {

    display: block !important;

  }

  #custom-html-s7 table.visible-xs {

    display: table !important;

  }

  #custom-html-s7 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-s7 td.visible-xs,

  #custom-html-s7 th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-s7 .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-s7 .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-s7 .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-s7 .visible-sm {

    display: block !important;

  }

  #custom-html-s7 table.visible-sm {

    display: table !important;

  }

  #custom-html-s7 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-s7 td.visible-sm,

  #custom-html-s7 th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-s7 .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-s7 .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-s7 .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-s7 .visible-md {

    display: block !important;

  }

  #custom-html-s7 table.visible-md {

    display: table !important;

  }

  #custom-html-s7 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-s7 td.visible-md,

  #custom-html-s7 th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-s7 .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-s7 .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-s7 .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-s7 .visible-lg {

    display: block !important;

  }

  #custom-html-s7 table.visible-lg {

    display: table !important;

  }

  #custom-html-s7 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-s7 td.visible-lg,

  #custom-html-s7 th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-s7 .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-s7 .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-s7 .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-s7 .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-s7 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-s7 .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-s7 .hidden-lg {

    display: none !important;

  }

}

#custom-html-s7 .visible-print {

  display: none !important;

}

@media print {

  #custom-html-s7 .visible-print {

    display: block !important;

  }

  #custom-html-s7 table.visible-print {

    display: table !important;

  }

  #custom-html-s7 tr.visible-print {


    display: table-row !important;

  }

  #custom-html-s7 td.visible-print,

  #custom-html-s7 th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-s7 .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-s7 .visible-print-block {

    display: block !important;

  }

}

#custom-html-s7 .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-s7 .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-s7 .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-s7 .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-s7 .hidden-print {

    display: none !important;

  }

}

#custom-html-s7 .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-s7 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-s7 .intl-tel-input .hide {

  display: none;

}

#custom-html-s7 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-s7 .intl-tel-input input,

#custom-html-s7 .intl-tel-input input[type=tel],

#custom-html-s7 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-s7 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-s7 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-s7 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-s7 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-s7 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-s7 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-s7 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-s7 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-s7 .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-s7 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-s7 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-s7 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-s7 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-s7 .intl-tel-input .country-list .country-name,

#custom-html-s7 .intl-tel-input .country-list .dial-code,

#custom-html-s7 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-s7 .intl-tel-input .country-list .country-name,

#custom-html-s7 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-s7 .intl-tel-input.allow-dropdown input,

#custom-html-s7 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-s7 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-s7 .intl-tel-input.separate-dial-code input,

#custom-html-s7 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-s7 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-s7 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-s7 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-s7 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-s7 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-s7 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-s7 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-s7 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-s7 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-s7 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-s7 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-s7 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-s7 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-s7 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-s7 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-s7 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-s7 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-s7 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-s7 .iti-flag {

  width: 20px;

}

#custom-html-s7 .iti-flag.be {

  width: 18px;

}

#custom-html-s7 .iti-flag.ch {

  width: 15px;

}

#custom-html-s7 .iti-flag.mc {

  width: 19px;

}

#custom-html-s7 .iti-flag.ne {

  width: 18px;

}

#custom-html-s7 .iti-flag.np {

  width: 13px;

}

#custom-html-s7 .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-s7 .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-s7 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-s7 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-s7 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-s7 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-s7 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-s7 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-s7 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-s7 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-s7 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-s7 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-s7 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-s7 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-s7 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-s7 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-s7 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-s7 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-s7 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-s7 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-s7 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-s7 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-s7 .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-s7 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-s7 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-s7 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-s7 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-s7 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-s7 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-s7 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-s7 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-s7 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-s7 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-s7 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-s7 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-s7 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-s7 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-s7 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-s7 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-s7 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-s7 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-s7 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-s7 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-s7 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-s7 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-s7 .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-s7 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-s7 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-s7 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-s7 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-s7 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-s7 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-s7 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-s7 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-s7 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-s7 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-s7 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-s7 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-s7 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-s7 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-s7 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-s7 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-s7 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-s7 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-s7 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-s7 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-s7 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-s7 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-s7 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-s7 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-s7 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-s7 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-s7 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-s7 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-s7 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-s7 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-s7 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-s7 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-s7 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-s7 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-s7 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-s7 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-s7 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-s7 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-s7 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-s7 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-s7 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-s7 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-s7 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-s7 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-s7 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-s7 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-s7 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-s7 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-s7 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-s7 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-s7 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-s7 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-s7 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-s7 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-s7 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-s7 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-s7 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-s7 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-s7 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-s7 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-s7 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-s7 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-s7 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-s7 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-s7 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-s7 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-s7 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-s7 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-s7 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-s7 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-s7 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-s7 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-s7 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-s7 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-s7 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-s7 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-s7 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-s7 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-s7 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-s7 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-s7 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-s7 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-s7 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-s7 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-s7 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-s7 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-s7 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-s7 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-s7 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-s7 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-s7 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-s7 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-s7 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-s7 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-s7 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-s7 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-s7 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-s7 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-s7 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-s7 .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-s7 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-s7 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-s7 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-s7 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-s7 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-s7 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-s7 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-s7 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-s7 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-s7 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-s7 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-s7 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-s7 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-s7 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-s7 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-s7 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-s7 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-s7 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-s7 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-s7 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-s7 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-s7 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-s7 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-s7 .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-s7 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-s7 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-s7 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-s7 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-s7 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-s7 .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-s7 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-s7 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-s7 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-s7 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-s7 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-s7 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-s7 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-s7 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-s7 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-s7 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-s7 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-s7 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-s7 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-s7 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-s7 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-s7 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-s7 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-s7 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-s7 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-s7 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-s7 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-s7 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-s7 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-s7 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-s7 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-s7 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-s7 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-s7 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-s7 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-s7 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-s7 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-s7 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-s7 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-s7 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-s7 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-s7 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-s7 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-s7 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-s7 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-s7 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-s7 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-s7 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-s7 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-s7 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-s7 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-s7 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-s7 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-s7 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-s7 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-s7 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-s7 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-s7 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-s7 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-s7 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-s7 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-s7 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-s7 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-s7 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-s7 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-s7 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-s7 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-s7 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-s7 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-s7 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-s7 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-s7 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-s7 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-s7 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-s7 .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-s7 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-s7 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-s7 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-s7 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-s7 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-s7 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-s7 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-s7 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-s7 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-s7 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-s7 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-s7 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-s7 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-s7 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-s7 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-s7 .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-s7 .iti-flag.np {

  background-color: transparent;

}

#custom-html-s7 body,

#custom-html-s7 button,

#custom-html-s7 input,

#custom-html-s7 select,

#custom-html-s7 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-s7 h1,

#custom-html-s7 h2,

#custom-html-s7 h3,

#custom-html-s7 h4,

#custom-html-s7 h5,

#custom-html-s7 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-s7 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-s7 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-s7 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-s7 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-s7 .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-s7 .navbar-main .navbar-nav > .active > a,

#custom-html-s7 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-s7 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-s7 .navbar-main .navbar-nav > .open > a,

#custom-html-s7 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-s7 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-s7 .navbar-main .navbar-nav > li > a:focus,

#custom-html-s7 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-s7 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-s7 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-s7 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-s7 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-s7 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-s7 .navbar-header {

    float: none;

  }

  #custom-html-s7 .navbar-left,

  #custom-html-s7 .navbar-right {

    float: none !important;

  }

  #custom-html-s7 .navbar-toggle {

    display: block;

  }

  #custom-html-s7 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-s7 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-s7 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-s7 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-s7 .navbar-nav > li {

    float: none;

  }

  #custom-html-s7 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-s7 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-s7 .panel {

  font-size: 0.9em;

}

#custom-html-s7 .list-group {

  font-size: 0.9em;

}

#custom-html-s7 .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-s7 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-s7 a.list-group-item.active,

#custom-html-s7 a.list-group-item.active:focus,

#custom-html-s7 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-s7 .pagination {

  font-size: 0.8em;

}

#custom-html-s7 .pagination > .active > a,

#custom-html-s7 .pagination > .active > a:focus,

#custom-html-s7 .pagination > .active > a:hover,

#custom-html-s7 .pagination > .active > span,

#custom-html-s7 .pagination > .active > span:focus,

#custom-html-s7 .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-s7 .dropdown-menu > li > a:focus,

#custom-html-s7 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-s7 .label {

  border-radius: 0;

}

#custom-html-s7 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-s7 .list-group-item {

  padding: 7px 15px;

}

#custom-html-s7 .panel-body {

  padding: 10px 15px;

}

#custom-html-s7 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-s7 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-s7 .btn {

  overflow: hidden;

}

#custom-html-s7 body,

#custom-html-s7 html {

  height: 100%;

}

#custom-html-s7 body {

  background-color: #f8f8f8;

}

#custom-html-s7 h1,

#custom-html-s7 h2,

#custom-html-s7 h3,

#custom-html-s7 h4,

#custom-html-s7 h5,

#custom-html-s7 h6 {

  font-weight: 400;

}

#custom-html-s7 a {

  color: #005588;

}

#custom-html-s7 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-s7 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-s7 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-s7 section#header .search {

  margin: 20px 0;

}

#custom-html-s7 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-s7 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-s7 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-s7 section#main-content {

  margin-bottom: 60px;

}

#custom-html-s7 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-s7 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-s7 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-s7 section#footer {

    line-height: 32px;

  }

}

#custom-html-s7 section#footer .back-to-top {

  float: right;

}

#custom-html-s7 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-s7 .adminreturndiv {

  display: none !important;

}

#custom-html-s7 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-s7 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-s7 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-s7 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-s7 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-s7 .navbar-main .navbar-toggle:focus,

#custom-html-s7 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-s7 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-s7 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-s7 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-s7 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-s7 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-s7 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-s7 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-s7 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-s7 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-s7 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-s7 .h1,

  #custom-html-s7 h1 {

    font-size: 26px;

  }

  #custom-html-s7 .h2,

  #custom-html-s7 h2 {

    font-size: 20px;

  }

  #custom-html-s7 .h3,

  #custom-html-s7 h3 {

    font-size: 16px;

  }

  #custom-html-s7 .h4,

  #custom-html-s7 h4 {

    font-size: 14px;

  }

  #custom-html-s7 .h5,

  #custom-html-s7 h5 {

    font-size: 12px;

  }

  #custom-html-s7 .h6,

  #custom-html-s7 h6 {

    font-size: 11px;

  }

  #custom-html-s7 div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-s7 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-s7 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-s7 .margin-10 {

  margin: 10px;

}

#custom-html-s7 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-s7 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-s7 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-s7 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-s7 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-s7 .input-inline {

  display: inline-block;

}

#custom-html-s7 .input-inline-100 {

  width: 100px;

}

#custom-html-s7 .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-s7 .pull-md-left {

    float: left;

  }

  #custom-html-s7 .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-s7 .pull-sm-left {

    float: left;

  }

  #custom-html-s7 .pull-sm-right {

    float: right;

  }

  #custom-html-s7 .text-right-sm {

    text-align: right;

  }

}

#custom-html-s7 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-s7 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-s7 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-s7 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-s7 .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-s7 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-s7 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-s7 i.icon-rss {

  color: #ff6600;

}

#custom-html-s7 section#main-menu {

  background-color: #000000;

}

#custom-html-s7 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-s7 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-s7 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-s7 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-s7 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-s7 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-s7 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-s7 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-s7 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-s7 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-s7 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-s7 section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-s7 section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-s7 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-s7 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-s7 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-s7 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-s7 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-s7 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-s7 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-s7 .home-shortcuts li span {

  display: none;

}

#custom-html-s7 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-s7 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-s7 .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-s7 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-s7 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-s7 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-s7 .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-s7 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-s7 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-s7 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-s7 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-s7 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-s7 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-s7 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-s7 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-s7 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-s7 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-s7 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-s7 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-s7 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-s7 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s7 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-s7 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-s7 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-s7 .tiles .tile a {

  text-decoration: none;

}

#custom-html-s7 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-s7 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-s7 .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-s7 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-s7 .tiles .tile:nth-child(1),

  #custom-html-s7 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-s7 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-s7 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-s7 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-s7 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-s7 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-s7 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-s7 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-s7 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-s7 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-s7 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-s7 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-s7 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-s7 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-s7 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-s7 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-s7 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-s7 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-s7 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-s7 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-s7 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-s7 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-s7 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-s7 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-s7 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-s7 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-s7 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-s7 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-s7 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-s7 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-s7 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-s7 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-s7 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-s7 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-s7 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-s7 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-s7 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-s7 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-s7 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-s7 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-s7 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-s7 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-s7 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-s7 ul.top-nav > li,

#custom-html-s7 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-s7 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-s7 ul.top-nav > li:active > a,

#custom-html-s7 ul.top-nav > li:focus > a,

#custom-html-s7 ul.top-nav > li:hover > a,

#custom-html-s7 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-s7 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-s7 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-s7 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-s7 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-s7 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-s7 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-s7 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-s7 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-s7 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-s7 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-s7 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-s7 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-s7 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-s7 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-s7 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-s7 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-s7 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-s7 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-s7 .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-s7 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-s7 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-s7 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-s7 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-s7 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-s7 .domain-check-availability {

  width: 100px;

}

#custom-html-s7 .domain-step-options {

  min-height: 300px;

}

#custom-html-s7 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-s7 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-s7 .domain-checker-invalid,

#custom-html-s7 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-s7 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-s7 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-s7 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-s7 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-s7 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-s7 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-s7 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-s7 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-s7 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-s7 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-s7 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-s7 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-s7 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-s7 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-s7 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-s7 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-s7 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-s7 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-s7 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-s7 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-s7 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-s7 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-s7 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-s7 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-s7 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-s7 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-s7 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-s7 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-s7 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-s7 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-s7 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-s7 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-s7 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-s7 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-s7 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-s7 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-s7 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-s7 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-s7 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-s7 div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-s7 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-s7 .product-status-pending {

  background-color: #f89406;

}

#custom-html-s7 .product-status-active {

  background-color: #46a546;

}

#custom-html-s7 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-s7 .product-status-cancelled,

#custom-html-s7 .product-status-terminated {

  background-color: #666666;

}

#custom-html-s7 .product-status-fraud {

  background-color: #000000;

}

#custom-html-s7 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-s7 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-s7 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-s7 .ssl-inactive {

  cursor: pointer;

}

#custom-html-s7 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-s7 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-s7 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-s7 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-s7 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-s7 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-s7 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-s7 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-s7 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-s7 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-s7 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-s7 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-s7 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-s7 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-s7 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-s7 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-s7 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-s7 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-s7 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-s7 .pagination > li > a,

#custom-html-s7 .pagination > li > span {

  color: #444444;

}

#custom-html-s7 .pagination > .active > a,

#custom-html-s7 .pagination > .active > a:focus,

#custom-html-s7 .pagination > .active > a:hover,

#custom-html-s7 .pagination > .active > span,

#custom-html-s7 .pagination > .active > span:focus,

#custom-html-s7 .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-s7 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-s7 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-s7 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-s7 .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-s7 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-s7 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-s7 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-s7 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-s7 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-s7 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-s7 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-s7 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-s7 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-s7 .status-pending {

  color: #d9534f;

}

#custom-html-s7 .status-pending.transfer {

  color: #a68500;

}

#custom-html-s7 .status-active,

#custom-html-s7 .status-completed,

#custom-html-s7 .status-open {

  color: #3fad46;

}

#custom-html-s7 .status-suspended {

  color: #f0ad4e;

}

#custom-html-s7 .status-customer-reply {

  color: #ff6600;

}

#custom-html-s7 .status-answered,

#custom-html-s7 .status-fraud {

  color: #000000;

}

#custom-html-s7 .status-expired,

#custom-html-s7 .status-transferred.away {

  color: #004258;

}

#custom-html-s7 .status-cancelled {

  color: #9fa29a;

}

#custom-html-s7 .status-terminated {

  color: #666666;

}

#custom-html-s7 .status-onhold {

  color: #224488;

}

#custom-html-s7 .status-inprogress {

  color: #cc0000;

}

#custom-html-s7 .status-closed {

  color: #888888;

}

#custom-html-s7 .status-paid {

  color: #498302;

}

#custom-html-s7 .status-unpaid {

  color: #ed3e48;

}

#custom-html-s7 .status-cancelled {

  color: #87939f;

}

#custom-html-s7 .status-collections {

  color: #9a141e;

}

#custom-html-s7 .status-refunded {

  color: #319fc3;

}

#custom-html-s7 .status-customer-reply {

  color: #ff6600;

}

#custom-html-s7 .status-delivered {

  color: #224488;

}

#custom-html-s7 .status-accepted {

  color: #498302;

}

#custom-html-s7 .status-dead,

#custom-html-s7 .status-lost {

  color: #000000;

}

#custom-html-s7 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-s7 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-s7 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-s7 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-s7 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-s7 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-s7 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-s7 .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-s7 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-s7 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-s7 .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-s7 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-s7 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-s7 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-s7 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-s7 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-s7 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-s7 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-s7 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-s7 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-s7 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-s7 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-s7 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-s7 .ticket-reply .rating,

#custom-html-s7 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-s7 .ticket-reply .rating span.star,

#custom-html-s7 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-s7 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-s7 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-s7 .ticket-reply .rating span.star:before,

#custom-html-s7 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-s7 .ticket-reply .rating span.star:hover:before,

#custom-html-s7 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-s7 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-s7 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-s7 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-s7 .ticket-reply .clear {

  clear: both;

}

#custom-html-s7 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-s7 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-s7 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-s7 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-s7 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-s7 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-s7 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-s7 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-s7 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-s7 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-s7 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-s7 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-s7 .popover-user-notifications ul li i.far,

#custom-html-s7 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-s7 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-s7 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-s7 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-s7 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-s7 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-s7 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-s7 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-s7 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-s7 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-s7 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-s7 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-s7 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-s7 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-s7 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-s7 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-s7 div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-s7 div.credit-card {

    max-width: 250px;

  }

  #custom-html-s7 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-s7 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-s7 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-s7 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-s7 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-s7 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-s7 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-s7 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-s7 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-s7 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-s7 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-s7 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-s7 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-s7 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-s7 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-s7 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-s7 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-s7 .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-s7 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-s7 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-s7 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-s7 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-s7 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-s7 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-s7 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-s7 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-s7 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-s7 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-s7 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-s7 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-s7 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-s7 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-s7 .kb-category a small {

  color: #888888;

}

#custom-html-s7 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-s7 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-s7 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-s7 .kbarticles a.admin-inline-edit,

#custom-html-s7 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-s7 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-s7 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-s7 .kb-article-title h2 {

  margin: 0;

}

#custom-html-s7 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-s7 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-s7 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-s7 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-s7 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-s7 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-s7 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-s7 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-s7 #stepResults {

  font-size: 20px;

}

#custom-html-s7 #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-s7 #stepResults {

    font-size: 14px;

  }

  #custom-html-s7 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-s7 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-s7 #main-menu,

  #custom-html-s7 #top-nav,

  #custom-html-s7 .header-lined,

  #custom-html-s7 .sidebar {

    display: none;

  }

  #custom-html-s7 a[href]:after {

    content: "" !important;

  }

}

#custom-html-s7 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-s7 h3.with-badge i,

#custom-html-s7 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-s7 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-s7 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-s7 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-s7 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-s7 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-s7 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-s7 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-s7 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-s7 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-s7 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-s7 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-s7 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-s7 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-s7 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-s7 .login-popover {

  font-size: 12px;

}

#custom-html-s7 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-s7 .login-popover hr {

  margin: 5px 0;

}

#custom-html-s7 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-s7 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-s7 .error-container {

  text-align: center;

}

#custom-html-s7 .error-container h1 {

  margin-top: 40px;

}

#custom-html-s7 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-s7 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-s7 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-s7 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-s7 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-s7 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-s7 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-s7 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-s7 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-s7 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-s7 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-s7 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-s7 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-s7 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-s7 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-s7 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-s7 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-s7 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-s7 .email-verification .btn:active,

#custom-html-s7 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-s7 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-s7 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-s7 .email-verification .far,

#custom-html-s7 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-s7 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-s7 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-s7 .email-verification .button {

    float: right;

  }

  #custom-html-s7 .email-verification .far,

  #custom-html-s7 .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-s7 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-s7 .email-verification.success .far,

#custom-html-s7 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-s7 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-s7 .email-verification.failed .far,

#custom-html-s7 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-s7 .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-s7 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-s7 .md-editor > .md-preview,

#custom-html-s7 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-s7 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s7 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-s7 .small-font {

  font-size: 0.9em;

}

#custom-html-s7 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-s7 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-s7 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-s7 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-s7 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-s7 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-s7 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-s7 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-s7 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-s7 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-s7 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-s7 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-s7 .panel-heading i.fab,

#custom-html-s7 .panel-heading i.fal,

#custom-html-s7 .panel-heading i.far,

#custom-html-s7 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-s7 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-s7 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-s7 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-s7 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-s7 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-s7 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-s7 .panel-sidebar .list-group-item.disabled,

#custom-html-s7 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-s7 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-s7 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-s7 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-s7 .panel-sidebar a.list-group-item.active,

#custom-html-s7 .panel-sidebar a.list-group-item.active:focus,

#custom-html-s7 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-s7 .panel-sidebar a.list-group-item.active i,

#custom-html-s7 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-s7 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-s7 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-s7 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-s7 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-s7 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-s7 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-s7 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-s7 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-s7 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-s7 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-s7 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-s7 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-s7 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-s7 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-s7 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-s7 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-s7 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-s7 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-s7 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-s7 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-s7 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-s7 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-s7 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-s7 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-s7 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-s7 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-s7 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-s7 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-s7 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-s7 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-s7 .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-s7 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-s7 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-s7 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-s7 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-s7 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-s7 .promo-banner p {

  margin: 5px 0;

}

#custom-html-s7 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-s7 .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-s7 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-s7 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-s7 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-s7 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-s7 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-s7 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-s7 .promo-banner-slim {

  padding: 10px;

}

#custom-html-s7 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-s7 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-s7 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-s7 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-s7 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-s7 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-s7 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-s7 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-s7 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-s7 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-s7 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-s7 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-s7 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-s7 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-s7 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-s7 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-s7 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-s7 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-s7 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-s7 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-s7 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-s7 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-s7 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-s7 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-s7 .panel-mc-sso .btn,

#custom-html-s7 .panel-mc-sso .form-control,

#custom-html-s7 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-s7 .panel-mc-sso small {

  display: block;

}

#custom-html-s7 .social-signin-btns {

  text-align: center;

}

#custom-html-s7 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-s7 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-s7 .btn-social i.far,

#custom-html-s7 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-facebook.active,

#custom-html-s7 .btn-facebook:active,

#custom-html-s7 .btn-facebook:focus,

#custom-html-s7 .btn-facebook:hover,

#custom-html-s7 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-facebook.active,

#custom-html-s7 .btn-facebook:active,

#custom-html-s7 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-s7 .btn-facebook.disabled,

#custom-html-s7 .btn-facebook.disabled.active,

#custom-html-s7 .btn-facebook.disabled:active,

#custom-html-s7 .btn-facebook.disabled:focus,

#custom-html-s7 .btn-facebook.disabled:hover,

#custom-html-s7 .btn-facebook[disabled],

#custom-html-s7 .btn-facebook[disabled].active,

#custom-html-s7 .btn-facebook[disabled]:active,

#custom-html-s7 .btn-facebook[disabled]:focus,

#custom-html-s7 .btn-facebook[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-facebook,

#custom-html-s7 fieldset[disabled] .btn-facebook.active,

#custom-html-s7 fieldset[disabled] .btn-facebook:active,

#custom-html-s7 fieldset[disabled] .btn-facebook:focus,

#custom-html-s7 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-google.active,

#custom-html-s7 .btn-google:active,

#custom-html-s7 .btn-google:focus,

#custom-html-s7 .btn-google:hover,

#custom-html-s7 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-google.active,

#custom-html-s7 .btn-google:active,

#custom-html-s7 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-s7 .btn-google-plus.disabled.active,

#custom-html-s7 .btn-google-plus.disabled:active,

#custom-html-s7 .btn-google-plus.disabled:focus,

#custom-html-s7 .btn-google-plus[disabled].active,

#custom-html-s7 .btn-google-plus[disabled]:active,

#custom-html-s7 .btn-google-plus[disabled]:focus,

#custom-html-s7 .btn-google-plus[disabled]:hover,

#custom-html-s7 .btn-google.disabled,

#custom-html-s7 .btn-google.disabled:hover,

#custom-html-s7 .btn-google[disabled],

#custom-html-s7 fieldset[disabled] .btn-google,

#custom-html-s7 fieldset[disabled] .btn-google-plus.active,

#custom-html-s7 fieldset[disabled] .btn-google-plus:active,

#custom-html-s7 fieldset[disabled] .btn-google-plus:focus,

#custom-html-s7 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-twitter.active,

#custom-html-s7 .btn-twitter:active,

#custom-html-s7 .btn-twitter:focus,

#custom-html-s7 .btn-twitter:hover,

#custom-html-s7 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .btn-twitter.active,

#custom-html-s7 .btn-twitter:active,

#custom-html-s7 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-s7 .btn-twitter.disabled,

#custom-html-s7 .btn-twitter.disabled.active,

#custom-html-s7 .btn-twitter.disabled:active,

#custom-html-s7 .btn-twitter.disabled:focus,

#custom-html-s7 .btn-twitter.disabled:hover,

#custom-html-s7 .btn-twitter[disabled],

#custom-html-s7 .btn-twitter[disabled].active,

#custom-html-s7 .btn-twitter[disabled]:active,

#custom-html-s7 .btn-twitter[disabled]:focus,

#custom-html-s7 .btn-twitter[disabled]:hover,

#custom-html-s7 fieldset[disabled] .btn-twitter,

#custom-html-s7 fieldset[disabled] .btn-twitter.active,

#custom-html-s7 fieldset[disabled] .btn-twitter:active,

#custom-html-s7 fieldset[disabled] .btn-twitter:focus,

#custom-html-s7 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s7 .providerPreLinking {

  min-height: 52px;

}

#custom-html-s7 .providerLinkingFeedback {

  display: none;

}

#custom-html-s7 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-s7 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-s7 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-s7 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-s7 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-s7 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-s7 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-s7 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-s7 #registration .field,

#custom-html-s7 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-s7 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-s7 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-s7 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-s7 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s7 #registration textarea.field {

  height: auto;

}

#custom-html-s7 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-s7 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-s7 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-s7 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-s7 #registration .field[disabled],

#custom-html-s7 #registration .field[readonly],

#custom-html-s7 #registration .form-control[disabled],

#custom-html-s7 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-s7 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-s7 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-s7 .upgrade .product-to-be-upgraded h4,

#custom-html-s7 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-s7 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-s7 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-s7 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-s7 .upgrade .products .product .current,

#custom-html-s7 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-s7 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-s7 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-s7 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-s7 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-s7 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-s7 .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-s7 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-s7 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-s7 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-s7 .upgrade .products .far,

#custom-html-s7 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-s7 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-s7 .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-s7 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-s7 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-s7 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-s7 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-s7 .intl-tel-input {

  width: 100%;

}

#custom-html-s7 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-s7 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .bootstrap-switch input[type=checkbox],

#custom-html-s7 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-s7 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-s7 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s7 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-s7 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-s7 .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-s7 .md-editor .md-footer,

#custom-html-s7 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-s7 .md-editor > .md-header {

  margin: 0;

}

#custom-html-s7 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-s7 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-s7 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-s7 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-s7 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-s7 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-s7 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-s7 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-input,

#custom-html-s7 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-s7 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-s7 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-s7 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-s7 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-s7 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-s7 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-s7 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-s7 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-s7 table.dataTable td,

#custom-html-s7 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-s7 table.dataTable td.dataTables_empty,

#custom-html-s7 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-s7 table.dataTable.nowrap td,

#custom-html-s7 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-s7 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-s7 table.dataTable thead > tr > td.sorting,

#custom-html-s7 table.dataTable thead > tr > td.sorting_asc,

#custom-html-s7 table.dataTable thead > tr > td.sorting_desc,

#custom-html-s7 table.dataTable thead > tr > th.sorting,

#custom-html-s7 table.dataTable thead > tr > th.sorting_asc,

#custom-html-s7 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-s7 table.dataTable thead > tr > td:active,

#custom-html-s7 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-s7 table.dataTable thead .sorting,

#custom-html-s7 table.dataTable thead .sorting_asc,

#custom-html-s7 table.dataTable thead .sorting_asc_disabled,

#custom-html-s7 table.dataTable thead .sorting_desc,

#custom-html-s7 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-s7 table.dataTable thead .sorting:after,

#custom-html-s7 table.dataTable thead .sorting_asc:after,

#custom-html-s7 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-s7 table.dataTable thead .sorting_desc:after,

#custom-html-s7 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-s7 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-s7 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-s7 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-s7 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-s7 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-s7 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-s7 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-s7 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-s7 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-s7 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-s7 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-s7 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-s7 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-s7 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-s7 div.dataTables_wrapper div.dataTables_info,

  #custom-html-s7 div.dataTables_wrapper div.dataTables_length,

  #custom-html-s7 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-s7 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-s7 table.dataTable.table-condensed .sorting:after,

#custom-html-s7 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-s7 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-s7 table.table-bordered.dataTable td,

#custom-html-s7 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-s7 table.table-bordered.dataTable td:last-child,

#custom-html-s7 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-s7 table.table-bordered.dataTable tbody td,

#custom-html-s7 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-s7 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-s7 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-s7 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-s7 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-s7 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-s7 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-s7 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-s7 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-s7 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-s7 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-s7 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-s7 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-s7 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-s7 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-s7 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-s7 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-s7 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-s7 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-s7 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-s7 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-s7 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-s7 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-s7 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-s7 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-s7 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-s7 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-s7 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-s7 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-s7 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-s7 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-s7 .multiselect-container > li {

  padding: 0;

}

#custom-html-s7 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-s7 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-s7 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-s7 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-s7 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-s7 .multiselect-container > li > a > label.checkbox,

#custom-html-s7 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-s7 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-s7 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s7 .form-inline .multiselect-container label.checkbox,

#custom-html-s7 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-s7 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-s7 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sF1W56jhzx {

  background-image: url("https://kelly.house.gov/sites/evo-subsites/kelly.house.gov/files/evo-media-image/jill%20sharon%20pa%20sign_0.jpg");
  


}

.cid-sF1W56jhzx .mbr-text,

.cid-sF1W56jhzx .typed-text,

.cid-sF1W56jhzx .mbr-section-text {

  letter-spacing: 0.03rem;

}

.cid-sF1W56jhzx .row {

  backdrop-filter: blur(10px);

  opacity: 0.5;

  background-color: #ffffff;

  border: 1px solid black;

  width: 100%;

}

.cid-sF1W56jhzx .btn {

  margin-left: 4px !important;

}

.cid-sF1W56jhzx .animated-element {

  color: #000000;

}

.cid-sF1W56jhzx .typed-cursor {

  opacity: 1;

  -webkit-animation: blink 0.7s infinite;

  -moz-animation: blink 0.7s infinite;

  animation: blink 0.7s infinite;

  color: #000000;

}

@keyframes blink {

  0% {

    opacity: 1;

  }

  50% {

    opacity: 0;

  }

  100% {

    opacity: 1;

  }

}

@-webkit-keyframes blink {

  0% {

    opacity: 1;

  }

  50% {

    opacity: 0;

  }

  100% {

    opacity: 1;

  }

}

@-moz-keyframes blink {

  0% {

    opacity: 1;

  }

  50% {

    opacity: 0;

  }

  100% {

    opacity: 1;

  }

}

.cid-sF1W56jhzx .mbr-section-subtitle {

  text-align: center;

}

.cid-sF1W56jhzx .icons-media-container {

  display: flex;

  -webkit-justify-content: center;

  justify-content: center;

  -webkit-flex-direction: row;

  flex-direction: row;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  padding-top: 4rem;

}

.cid-sF1W56jhzx .icons-media-container .mbr-iconfont {

  font-size: 96px;

  color: #ffffff;

}

.cid-sF1W56jhzx .icons-media-container .icon-block {

  padding-bottom: 1rem;

}

.cid-sF1W56jhzx .mbr-text {

  color: #ffffff;

}

.cid-sF1W56jhzx .card {

  padding-bottom: 1.5rem;

}

.cid-sFfUuxGvgy .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sFfUuxGvgy .divider-bottom {

  position: relative;

  padding: -4.5em;

  background: #000000;

}

.cid-sFfUuxGvgy .divider-top::before,

.cid-sFfUuxGvgy .divider-bottom::before,

.cid-sFfUuxGvgy .divider-top::after,

.cid-sFfUuxGvgy .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sFfUuxGvgy .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sFfUuxGvgy .divider-triangles::before {

  top: -80px;

}

.cid-sFfUuxGvgy .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sFfUuxGvgy .divider-halfcircle::before {

  top: -50px;

}

.cid-sFfUuxGvgy .divider-multitriangles::before,

.cid-sFfUuxGvgy .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sFfUuxGvgy .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-sFf1AN2fPS {

  padding-top: 100px;

  padding-bottom: 100px;

  background-image: url("https://siberianhuskywebdesignsinc.com/assets/images/cbr24-zettle-home-1440.gif");





}

.cid-sF3ETYSAyU {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-sF3ETYSAyU .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3ETYSAyU .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3ETYSAyU .divider-top::before,

.cid-sF3ETYSAyU .divider-bottom::before,

.cid-sF3ETYSAyU .divider-top::after,

.cid-sF3ETYSAyU .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3ETYSAyU .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3ETYSAyU .divider-triangles::before {

  top: -50px;

}

.cid-sF3ETYSAyU .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3ETYSAyU .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3ETYSAyU .divider-multitriangles::before,

.cid-sF3ETYSAyU .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3ETYSAyU .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-sF3ETYSAyU .mbr-text {

  color: #ffffff;

  text-align: left;

}

.cid-sF3ETYSAyU h4 {

  text-align: center;

}

.cid-sF3ETYSAyU p {

  text-align: center;

}

.cid-sF3ETYSAyU .card-img span {

  font-size: 96px;

  color: #149dcc;

}

.cid-GdbqVyzztr {

  padding-top: 120px;

  padding-bottom: 120px;

  background-color: #efefef;

}

.cid-GdbqVyzztr .mbr-section {

  text-align: center;

  color: #fff;

}

.cid-GdbqVyzztr .promos {

  margin: 0 auto;

}

.cid-GdbqVyzztr .promos:before,

.cid-GdbqVyzztr .promos:after {

  content: '';

  display: table;

}

.cid-GdbqVyzztr .promos:after {

  clear: both;

}

.cid-GdbqVyzztr .btn-theme {

  background-color: #000000;

  color: #fff;

}

.cid-GdbqVyzztr .promo {

  margin: 15px 10px 25px;

  padding: 10px 0 30px;

  font-weight: 400;

  line-height: 1.625;

  text-align: center;

}

.cid-GdbqVyzztr .promos.bg-base-1,

.cid-GdbqVyzztr .promos.bg-base-2,

.cid-GdbqVyzztr .promos.bg-base-3,

.cid-GdbqVyzztr .promos.bg-base-4,

.cid-GdbqVyzztr .promos.bg-base-5 {

  background: transparent !important;

}

.cid-GdbqVyzztr .promos.bg-base-1 .promo {

  background: #2e2e2e;

}

.cid-GdbqVyzztr .promo h4 {

  margin: 15px 0 0;

  font-size: 150%;

  font-weight: normal;

}

.cid-GdbqVyzztr .promos.bg-base-1 .promo h4 {

  color: #ffffff;

  padding: 30px 0 30px;

}

.cid-GdbqVyzztr .promo li {

  padding: 5px 0;

  font-size: 0.875rem;

}

.cid-GdbqVyzztr .promos.bg-base-1 .brief {

  color: #ffffff;

}

.cid-GdbqVyzztr .promo .price {

  margin: 10px 0;

  padding: 5px 0;

  font-size: 250%;

}

.cid-GdbqVyzztr .promo .features {

  margin: 0;

  padding: 0;

  list-style-type: none;

}

.cid-GdbqVyzztr .promo .buy {

  margin: 15px 0 0;

}

.cid-GdbqVyzztr .promos.bg-base-1 .promo .features {

  color: #ffffff;

}

.cid-GdbqVyzztr .promos.bg-base-1 .promo .price {

  background: #000000;

  color: #ffffff;

}

@media (min-width: 668px) {

  .cid-GdbqVyzztr .promo {

    display: inline;

    float: center;

    width: 24.333%;

    margin: 15px 0 0;

    transition: transform 0.25s ease-out;

  }

  .cid-GdbqVyzztr .promo.first {

    border-right: none;

  }

  .cid-GdbqVyzztr .promo.second {

    float: right;

    border-left: none;

  }

  .cid-GdbqVyzztr .promo.first:hover,

  .cid-GdbqVyzztr .promo.second:hover {

    transform: translateY(-25px);

  }

  .cid-GdbqVyzztr .scale {

    transform: scale(1.2);

  }

  .cid-GdbqVyzztr .promos.bg-base-1 .scale {

    box-shadow: 0 0 4px 1px #2e2e2e;

  }

}

@media (max-width: 667px) {

  .cid-GdbqVyzztr .promo {

    margin-bottom: 2rem;

    border-radius: 4.25rem;

  }

  .cid-GdbqVyzztr .promo:last-child {

    margin-bottom: 0;

  }

}

.cid-GdbqVyzztr DIV {

  color: #073b4c;

}

.cid-GdbqVyzztr UL {

  text-align: center;

}

.cid-GdbqVyzztr H2 {

  color: #000000;

}

.cid-GdbqVyzztr H4 {

  color: #000000;

}

.cid-GdbqVyzztr h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF2OS3UwnE .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF2OS3UwnE .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF2OS3UwnE .divider-top::before,

.cid-sF2OS3UwnE .divider-bottom::before,

.cid-sF2OS3UwnE .divider-top::after,

.cid-sF2OS3UwnE .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF2OS3UwnE .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF2OS3UwnE .divider-triangles::before {

  top: -50px;

}

.cid-sF2OS3UwnE .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF2OS3UwnE .divider-halfcircle::before {

  top: -50px;

}

.cid-sF2OS3UwnE .divider-multitriangles::before,

.cid-sF2OS3UwnE .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF2OS3UwnE .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-sl33fLDQX6 {

  padding-top: 0px;

  padding-bottom: 75px;

  background-color: #ffffff;

}

.cid-sl33fLDQX6 .mbr-section {

  text-align: center;

  color: #fff;

}

.cid-sl33fLDQX6 .promos {

  margin: 0 auto;

}

.cid-sl33fLDQX6 .promos:before,

.cid-sl33fLDQX6 .promos:after {

  content: '';

  display: table;

}

.cid-sl33fLDQX6 .promos:after {

  clear: both;

}

.cid-sl33fLDQX6 .btn-theme {

  background-color: #000000;

  color: #fff;

}

.cid-sl33fLDQX6 .promo {

  margin: 15px 10px 25px;

  padding: 5px 0 30px;

  font-weight: 400;

  line-height: 1.625;

  text-align: center;

}

.cid-sl33fLDQX6 .promos.bg-base-1,

.cid-sl33fLDQX6 .promos.bg-base-2,

.cid-sl33fLDQX6 .promos.bg-base-3,

.cid-sl33fLDQX6 .promos.bg-base-4,

.cid-sl33fLDQX6 .promos.bg-base-5 {

  background: transparent !important;

}

.cid-sl33fLDQX6 .promos.bg-base-1 .promo {

  background: #2e2e2e;

}

.cid-sl33fLDQX6 .promo h4 {

  margin: 15px 0 0;

  font-size: 150%;

  font-weight: normal;

}

.cid-sl33fLDQX6 .promos.bg-base-1 .promo h4 {

  color: #ffffff;

  padding: 30px 0 30px;

}

.cid-sl33fLDQX6 .promo li {

  padding: 5px 0;

  font-size: 0.875rem;

}

.cid-sl33fLDQX6 .promos.bg-base-1 .brief {

  color: #ffffff;

}

.cid-sl33fLDQX6 .promo .price {

  margin: 10px 0;

  padding: 5px 0;

  font-size: 250%;

}

.cid-sl33fLDQX6 .promo .features {

  margin: 0;

  padding: 0;

  list-style-type: none;

}

.cid-sl33fLDQX6 .promo .buy {

  margin: 15px 0 0;

}

.cid-sl33fLDQX6 .promos.bg-base-1 .promo .features {

  color: #ffffff;

}

.cid-sl33fLDQX6 .promos.bg-base-1 .promo .price {

  background: #000000;

  color: #ffffff;

}

@media (min-width: 768px) {

  .cid-sl33fLDQX6 .promo {

    display: inline;

    float: center;

    width: 24.333%;

    margin: 15px 0 0;

    transition: transform 0.25s ease-out;

  }

  .cid-sl33fLDQX6 .promo.first {

    border-right: none;

  }

  .cid-sl33fLDQX6 .promo.second {

    float: right;

    border-left: none;

  }

  .cid-sl33fLDQX6 .promo.first:hover,

  .cid-sl33fLDQX6 .promo.second:hover {

    transform: translateY(-25px);

  }

  .cid-sl33fLDQX6 .scale {

    transform: scale(1.2);

  }

  .cid-sl33fLDQX6 .promos.bg-base-1 .scale {

    box-shadow: 0 0 4px 1px #2e2e2e;

  }

}

@media (max-width: 667px) {

  .cid-sl33fLDQX6 .promo {

    margin-bottom: 2rem;

    border-radius: 0.25rem;

    padding: 5;

  }

  .cid-sl33fLDQX6 .promo:last-child {

    margin-bottom: 0;

  }

}

.cid-sl33fLDQX6 DIV {

  color: #073b4c;

}

.cid-sl33fLDQX6 UL {

  text-align: right;

}

.cid-sl33fLDQX6 H2 {

  color: #000000;

}

.cid-sl33fLDQX6 H4 {

  color: #000000;

}

.cid-sl33fLDQX6 h1 {

  text-shadow: 2px 2px gray;

}

.cid-sl33fLDQX6 LI {

  text-align: center;

}

.cid-sF2OAlk1Dj .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF2OAlk1Dj .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF2OAlk1Dj .divider-top::before,

.cid-sF2OAlk1Dj .divider-bottom::before,

.cid-sF2OAlk1Dj .divider-top::after,

.cid-sF2OAlk1Dj .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF2OAlk1Dj .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF2OAlk1Dj .divider-triangles::before {

  top: -50px;

}

.cid-sF2OAlk1Dj .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF2OAlk1Dj .divider-halfcircle::before {

  top: -50px;

}

.cid-sF2OAlk1Dj .divider-multitriangles::before,

.cid-sF2OAlk1Dj .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF2OAlk1Dj .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-5zebPRUCKR {

  padding-top: 0px;

  padding-bottom: 120px;

  background-color: #efefef;

}

.cid-5zebPRUCKR .mbr-section {

  text-align: center;

  color: #fff;

}

.cid-5zebPRUCKR .promos {

  margin: 0 auto;

}

.cid-5zebPRUCKR .promos:before,

.cid-5zebPRUCKR .promos:after {

  content: '';

  display: table;

}

.cid-5zebPRUCKR .promos:after {

  clear: both;

}

.cid-5zebPRUCKR .btn-theme {

  background-color: #c1c1c1;

  color: #fff;

}

.cid-5zebPRUCKR .promo {

  margin: 15px 10px 25px;

  padding: 5px 0 30px;

  font-weight: 400;

  line-height: 1.625;

  text-align: center;

}

.cid-5zebPRUCKR .promos.bg-base-1,

.cid-5zebPRUCKR .promos.bg-base-2,

.cid-5zebPRUCKR .promos.bg-base-3,

.cid-5zebPRUCKR .promos.bg-base-4,

.cid-5zebPRUCKR .promos.bg-base-5 {

  background: transparent !important;

}

.cid-5zebPRUCKR .promos.bg-base-1 .promo {

  background: #2e2e2e;

}

.cid-5zebPRUCKR .promo h4 {

  margin: 15px 0 0;

  font-size: 150%;

  font-weight: normal;

}

.cid-5zebPRUCKR .promos.bg-base-1 .promo h4 {

  color: #ffffff;

}

.cid-5zebPRUCKR .promo li {

  padding: 5px 0;

  font-size: 0.875rem;

}

.cid-5zebPRUCKR .promos.bg-base-1 .brief {

  color: #ffffff;

}

.cid-5zebPRUCKR .promo .price {

  margin: 10px 0;

  padding: 5px 0;

  font-size: 250%;

}

.cid-5zebPRUCKR .promo .features {

  margin: 0;

  padding: 0;

  list-style-type: none;

}

.cid-5zebPRUCKR .promo .buy {

  margin: 15px 0 0;

}

.cid-5zebPRUCKR .promos.bg-base-1 .promo .features {

  color: #ffffff;

}

.cid-5zebPRUCKR .promos.bg-base-1 .promo .price {

  background: #000000;

  color: #ffffff;

}

@media (min-width: 768px) {

  .cid-5zebPRUCKR .promo {

    display: inline;

    float: left;

    width: 33.333%;

    margin: 15px 0 0;

    transition: transform 0.25s ease-out;

  }

  .cid-5zebPRUCKR .promo.first {

    border-right: none;

  }

  .cid-5zebPRUCKR .promo.second {

    float: right;

    border-left: none;

  }

  .cid-5zebPRUCKR .promo.first:hover,

  .cid-5zebPRUCKR .promo.second:hover {

    transform: translateY(-25px);

  }

  .cid-5zebPRUCKR .scale {

    transform: scale(1.2);

  }

  .cid-5zebPRUCKR .promos.bg-base-1 .scale {

    box-shadow: 0 0 4px 1px #2e2e2e;

  }

}

@media (max-width: 767px) {

  .cid-5zebPRUCKR .promo {

    margin-bottom: 2rem;

    border-radius: 0.25rem;

  }

  .cid-5zebPRUCKR .promo:last-child {

    margin-bottom: 0;

  }

}

.cid-5zebPRUCKR DIV {

  color: #073b4c;

}

.cid-5zebPRUCKR H4 {

  color: #ffffff;

}

.cid-5zebPRUCKR H2 {

  color: #000000;

}

.cid-H7tMAE1SYo .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-H7tMAE1SYo .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-H7tMAE1SYo .divider-top::before,

.cid-H7tMAE1SYo .divider-bottom::before,

.cid-H7tMAE1SYo .divider-top::after,

.cid-H7tMAE1SYo .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-H7tMAE1SYo .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-H7tMAE1SYo .divider-triangles::before {

  top: -50px;

}

.cid-H7tMAE1SYo .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-H7tMAE1SYo .divider-halfcircle::before {

  top: -50px;

}

.cid-H7tMAE1SYo .divider-multitriangles::before,

.cid-H7tMAE1SYo .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-H7tMAE1SYo .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-sl2Q6wP2Op {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-sl2Q6wP2Op P {

  color: #767676;

}

.cid-sl2Q6wP2Op H1 {

  color: #000000;

}

.cid-sl2Q6wP2Op .mbr-text,

.cid-sl2Q6wP2Op .mbr-section-btn {

  color: #000000;

}

.cid-sl2Q33TR8A {

  padding-top: 15px;

  padding-bottom: 15px;

  background-color: #ffffff;

}

.cid-sl2Q33TR8A .mbr-section {

  text-align: center;

  color: #fff;

}

.cid-sl2Q33TR8A body {

  background: #eee;

  margin-top: 20px;

}

.cid-sl2Q33TR8A .price-tabs {

  background-color: #fff;

  -webkit-box-shadow: 0 5px 20px 0 rgba(39, 39, 39, 0.1);

  box-shadow: 0 5px 20px 0 rgba(39, 39, 39, 0.1);

  display: inline-block;

  padding: 7px;

  border-radius: 40px;

  border: 1px solid #000000;

  margin-bottom: 45px;

}

@media (min-width: 768px) {

  .cid-sl2Q33TR8A .price-tabs {

    margin-bottom: 60px;

  }

  .cid-sl2Q33TR8A .price-tabs .nav-link {

    padding: 12px 40px;

  }

  .cid-sl2Q33TR8A .price-item {

    margin: 0 20px;

    padding-top: 20px;

  }

  .cid-sl2Q33TR8A .price-item .price-top {

    margin: 0 -20px;

    border-radius: 20px;

  }

  .cid-sl2Q33TR8A .price-item .price-top:after {

    border-radius: 0 0 20px 20px;

  }

}

.cid-sl2Q33TR8A .price-tabs .nav-link {

  color: #000000;

  font-weight: 500;

  font-family: "Montserrat", sans-serif;

  font-size: 16px;

  padding: 12px 35px;

  display: inline-block;

  text-transform: capitalize;

  border-radius: 40px;

  -webkit-transition: all 0.3s ease;

  transition: all 0.3s ease;

}

.cid-sl2Q33TR8A .price-tabs .nav-link.active {

  background-color: #000000;

  color: #fff;

}

.cid-sl2Q33TR8A .price-item {

  background-color: #2e2e2e;

  -webkit-box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);

  box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);

  border-radius: 10px;

}

.cid-sl2Q33TR8A .price-item .price-top {

  -webkit-box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);

  box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);

  padding: 50px 0 25px;

  background-color: #000000;

  border-radius: 10px;

  position: relative;

  z-index: 0;

  margin-bottom: 33px;

}

.cid-sl2Q33TR8A .price-item .price-top:after {

  height: 50px;

  width: 100%;

  border-radius: 0 0 10px 10px;

  background-color: #000000;

  position: absolute;

  content: '';

  left: 0;

  bottom: -17px;

  z-index: -1;

  -webkit-transform: skewY(5deg);

  transform: skewY(5deg);

  -webkit-box-shadow: 0 5px 10px 0 rgba(113, 113, 113, 0.15);

  box-shadow: 0 5px 10px 0 rgba(113, 113, 113, 0.15);

}

.cid-sl2Q33TR8A .price-item .price-top * {

  color: #fff;

}

.cid-sl2Q33TR8A .price-item .price-top h2 {

  font-weight: 700;

}

.cid-sl2Q33TR8A .price-item .price-top h2 sup {

  top: 13px;

  left: -5px;

  font-size: 0.35em;

  font-weight: 500;

  vertical-align: top;

}

.cid-sl2Q33TR8A .price-item .price-content {

  padding: 5px;

  padding-bottom: 5px;

}

.cid-sl2Q33TR8A .price-item .price-content li {

  position: relative;

  margin-bottom: 15px;

  margin-left: 10px;

  margin-right: 10px;

  text-align: center;

}

@media (min-width: 992px) {

  .cid-sl2Q33TR8A .price-item .price-content li {

    padding-left: 10px;

    text-align: left;

  }

  .cid-sl2Q33TR8A .price-item .price-content li i {

    position: absolute;

    left: 0;

    top: 3px;

  }

}

.cid-sl2Q33TR8A .price-item .price-content .zmdi-check {

  color: #28a745;

}

.cid-sl2Q33TR8A .price-item .price-content .zmdi-close {

  color: #f00;

}

.cid-sl2Q33TR8A .popular {

  background-color: #000000;

}

.cid-sl2Q33TR8A .popular .price-top {

  background-color: #fff;

}

.cid-sl2Q33TR8A .popular .price-top:after {

  background-color: #fff;

}

.cid-sl2Q33TR8A .popular .price-top h4 {

  color: #101f41;

}

.cid-sl2Q33TR8A .popular .price-top h2,

.cid-sl2Q33TR8A .popular .price-top span,

.cid-sl2Q33TR8A .popular .price-top sup {

  color: #000000;

}

.cid-sl2Q33TR8A .popular .price-content ul *,

.cid-sl2Q33TR8A .popular .price-content ul .zmdi-close,

.cid-sl2Q33TR8A .popular .price-content ul .zmdi-check {

  color: #fff !important;

}

.cid-sl2Q33TR8A H2 {

  text-align: center;

}

.cid-sl2Q33TR8A P {

  color: #ffffff;

}

.cid-sl2Q33TR8A UL {

  color: #ffffff;

}

.cid-sl2Q33TR8A .btn-custom {

  border-radius: 40px;

  background-color: black;

  border: 0px;

}

.cid-sl2Q33TR8A .btn {

  font-size: 16px;

}

.cid-sF2Obru8pR .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF2Obru8pR .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF2Obru8pR .divider-top::before,

.cid-sF2Obru8pR .divider-bottom::before,

.cid-sF2Obru8pR .divider-top::after,

.cid-sF2Obru8pR .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF2Obru8pR .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF2Obru8pR .divider-triangles::before {

  top: -50px;

}

.cid-sF2Obru8pR .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF2Obru8pR .divider-halfcircle::before {

  top: -50px;

}

.cid-sF2Obru8pR .divider-multitriangles::before,

.cid-sF2Obru8pR .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF2Obru8pR .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-s884UpTOiu {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s884UpTOiu h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s884UpTOiu p {

  color: #767676;

  text-align: left;

}

.cid-s884UpTOiu .card-box {

  padding-top: 2rem;

}

.cid-s884UpTOiu .card-wrapper {

  height: 100%;

}

.cid-svDxLbb1o6 {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDxLbb1o6 .content {

    text-align: center;

  }

  .cid-svDxLbb1o6 .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDxLbb1o6 .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDxLbb1o6 .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDxLbb1o6 .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDxLbb1o6 .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDxLbb1o6 .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDxLbb1o6 .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDxLbb1o6 .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDxLbb1o6 .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDxLbb1o6 .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDxLbb1o6 .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDxLbb1o6 .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDxLbb1o6 .copyright > p {

  text-align: left;

}

.cid-svDxLbb1o6 h5 {

  color: #000000;

}

.cid-svDxLbb1o6 pb-3 {

  font-weight: normal !important;

}

.cid-sEZowA2E3J .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-sEZowA2E3J .my-float {

  margin-top: 16px;

}

.cid-sEZowA2E3J P {

  color: #232323;

}

.cid-sEZowA2E3J DIV {

  color: #ffffff;

}

.cid-sEZowA2E3J H10 {

  color: #767676;

}

.cid-sEZowA2E3J .hidden {

  display: none;

}

.cid-hkjLffFjuI .mbr-section {

  text-align: center;

  color: #fff;

}

.cid-hkjLffFjuI p {

  display: inline;

  font-size: 26px;

  color: #fff;

}

.cid-hkjLffFjuI .marquee-rtl {

  padding-right: 1%;

  padding-left: 1%;

}

.cid-hkjLffFjuI .navbar {

  padding: 0.5rem 0;

  background: #cccccc;

  transition: none;

  min-height: 50px;

}

.cid-hkjLffFjuI .navbar-fixed-top {

  padding-top: 0;

}

.cid-hkjLffFjuI .navbar-collapse {

  -ms-flex-preferred-size: auto;

  -webkit-flex-basis: auto;

  flex-basis: auto;

}

.cid-hkjLffFjuI .menu-logo .navbar-brand {

  display: flex;

  margin-left: 1.5rem;

  padding: 0.5rem 0;

  transition: padding 0.2s;

  min-height: 3.8rem;

  -webkit-align-items: center;

  align-items: center;

}

.cid-hkjLffFjuI .menu-logo .navbar-brand .navbar-caption-wrap {

  display: flex;

  -webkit-align-items: center;

  align-items: center;

  word-break: break-word;

  min-width: 7rem;

  margin: 0.3rem 0;

}

.cid-hkjLffFjuI .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {

  line-height: 1.2rem !important;

  padding-right: 2rem;

}

.cid-hkjLffFjuI .menu-logo .navbar-brand .navbar-logo {

  font-size: 4rem;

  transition: font-size 0.25s;

}

.cid-hkjLffFjuI .menu-logo .navbar-brand .navbar-logo img {

  display: flex;

}

.cid-hkjLffFjuI .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {

  transition: font-size 0.25s;

}

.cid-hkjLffFjuI .menu-content-top {

  background: #232323;

  display: none;

  max-width: 100%;

  margin: auto;

  -webkit-align-items: center;

  align-items: center;

  overflow: hidden;

  transition: min-height 0.25s ease-in-out;

}

.cid-hkjLffFjuI .dropdown-item {

  padding: 0;

}

.cid-hkjLffFjuI .dropdown-item,

.cid-hkjLffFjuI .nav-link,

.cid-hkjLffFjuI .brand-name {

  font-style: normal;

}

.cid-hkjLffFjuI .dropdown-item:hover,

.cid-hkjLffFjuI .nav-link:hover,

.cid-hkjLffFjuI .brand-name:hover {

  color: #efefef !important;

}

.cid-hkjLffFjuI .dropdown-menu {

  background-color: #0a1c44;

}

.cid-hkjLffFjuI .dropdown-item:active {

  background-color: #0a1c44;

}

.cid-hkjLffFjuI .menu-bottom {

  margin: auto;

  width: 100%;

  display: flex;

  padding: 0rem 2rem;

  position: relative;

  align-items: center;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-hkjLffFjuI .navbar-dropdown.bg-color.transparent.opened {

  background: #cccccc;

}

.cid-hkjLffFjuI .nav-item span {

  padding-right: 0.4em;

  line-height: 0.5em;

  vertical-align: text-bottom;

  position: relative;

  top: -0.2em;

  text-decoration: none;

}

.cid-hkjLffFjuI .nav-item a {

  padding: 0.5rem 0 !important;

  margin: 0 0.5rem !important;

}

.cid-hkjLffFjuI .dropdown-item:before {

  font-family: MobiriseIcons !important;

  display: inline-block;

  width: 0;

  position: absolute;

  left: 1rem;

  top: 0.5rem;

  margin-right: 0.5rem;

  line-height: 1;

  font-size: inherit;

  vertical-align: middle;

  text-align: center;

  overflow: hidden;

  -webkit-transform: scale(0, 1);

  transform: scale(0, 1);

  -webkit-transition: all 0.25s ease-in-out;

  -moz-transition: all 0.25s ease-in-out;

  transition: all 0.25s ease-in-out;

}

.cid-hkjLffFjuI .content-text {

  margin-bottom: 0;

}

.cid-hkjLffFjuI .navbar-nav {

  position: relative;

  -ms-flex-direction: row;

  -webkit-flex-direction: row;

  flex-direction: row;

}

@media (min-width: 992px) {

  .cid-hkjLffFjuI .navbar-nav .main-menu-animated-line {

    position: absolute;

    left: 0;

    width: 0;

    height: 0;

    z-index: 100;

    border-top: 4px solid #efefef;

    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);

    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);

    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);

  }

  .cid-hkjLffFjuI .navbar-nav .main-menu-animated-line.bottom {

    bottom: 0;

  }

}

.cid-hkjLffFjuI .navbar-nav .nav-item span {

  padding-right: 0;

}

.cid-hkjLffFjuI .navbar-nav .nav-item a {

  margin: 0 1.3rem !important;

}

.cid-hkjLffFjuI .display-4 > .mbr-iconfont {

  font-size: 1.43em;

}

.cid-hkjLffFjuI .display-4 > .btn > .mbr-iconfont {

  font-size: 1.43em;

}

.cid-hkjLffFjuI .nav-dropdown .dropdown-item {

  font-weight: 400;

}

.cid-hkjLffFjuI .navbar-buttons.mbr-section-btn {

  display: flex;

  -webkit-align-items: center;

  align-items: center;

  -webkit-justify-content: center;

  justify-content: center;

}

.cid-hkjLffFjuI .nav-dropdown .link {

  font-weight: 400;

}

.cid-hkjLffFjuI .menu .navbar-brand .logo-text-part {

  vertical-align: top;

}

.cid-hkjLffFjuI .content-right-side {

  text-align: center;

}

.cid-hkjLffFjuI .content-right-side .content-link {

  margin-left: 2rem;

}

.cid-hkjLffFjuI .content-right-side .content-link span {

  vertical-align: middle;

  padding-right: 1rem;

}

.cid-hkjLffFjuI .widget-icon {

  display: inline-block;

  padding-right: 1rem;

  font-size: 1.65rem;

}

.cid-hkjLffFjuI .info-widget {

  padding-left: 2rem;

  padding-right: 3rem;

  margin: 0;

  display: flex;

  -webkit-justify-content: center;

  justify-content: center;

  -webkit-align-items: center;

  align-items: center;

}

.cid-hkjLffFjuI .menu-content-right {

  display: flex;

  -webkit-align-items: center;

  align-items: center;

}

.cid-hkjLffFjuI .menu-content-right .info-widget:last-child {

  padding-right: 0;

}

.cid-hkjLffFjuI .menu-content-right .info-widget:first-child {

  padding-left: 0;

  border-left: none;

}

.cid-hkjLffFjuI .widget-content {

  display: inline-block;

  vertical-align: top;

  text-align: left;

}

.cid-hkjLffFjuI .widget-content .widget-title {

  font-weight: 400;

  margin-bottom: 3px;

}

.cid-hkjLffFjuI .widget-content .widget-text {

  margin-bottom: 0;

}

@media (min-width: 992px) {

  .cid-hkjLffFjuI .navbar .menu-content-top {

    display: flex;

    height: 60px;

  }

  .cid-hkjLffFjuI .content-right-side {

    text-align: right;

    -webkit-flex-wrap: nowrap;

    flex-wrap: nowrap;

    display: flex;

    -webkit-align-items: center;

    align-items: center;

  }

  .cid-hkjLffFjuI .menu-content-top {

    padding-top: 0px;

    padding-bottom: 0px;

    border-bottom: 0px solid rgba(0, 0, 0, 0.12);

  }

  .cid-hkjLffFjuI .navbar {

    display: block;

    padding: 0;

  }

  .cid-hkjLffFjuI .navbar .menu-logo {

    margin: auto;

    display: flex;

    -webkit-align-items: center;

    align-items: center;

  }

  .cid-hkjLffFjuI .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {

    -webkit-align-self: initial;

    align-self: auto;

    display: flex;

    -webkit-align-items: center;

    align-items: center;

    z-index: 101;

    min-height: 49px;

  }

  .cid-hkjLffFjuI .dropdown-item:hover:before {

    transform: scale(1, 1);

    width: 16px;

    -webkit-transform: scale(1, 1);

  }

  .cid-hkjLffFjuI .navbar-toggler {

    display: none;

  }

  .cid-hkjLffFjuI .navbar-collapse {

    -webkit-justify-content: flex-end;

    justify-content: flex-end;

  }

}

.cid-hkjLffFjuI .navbar-short .menu-content-top {

  height: 0;

  min-height: 0;

  border: none;

}

.cid-hkjLffFjuI .btn {

  display: -webkit-inline-flex;

  align-items: center;

  -webkit-align-items: center;

}

.cid-hkjLffFjuI .btn .mbr-iconfont {

  font-size: 1.2em;

}

.cid-hkjLffFjuI .navbar-toggleable-sm .navbar-collapse {

  width: auto;

}

.cid-hkjLffFjuI .navbar-toggleable-sm .navbar-collapse .navbar-nav {

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  padding-left: 0;

}

.cid-hkjLffFjuI .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {

  -webkit-align-self: center;

  align-self: center;

}

.cid-hkjLffFjuI .navbar-toggleable-sm .navbar-collapse .navbar-buttons {

  padding-left: 0;

  padding-bottom: 0;

}

.cid-hkjLffFjuI .dropdown .dropdown-menu {

  display: none;

  position: absolute;

  padding-top: 0.5rem;

  padding-bottom: 0.5rem;

  text-align: left;

}

@media (max-width: 991px) {

  .cid-hkjLffFjuI .dropdown .dropdown-menu {

    overflow: hidden;

  }

}

.cid-hkjLffFjuI .dropdown .dropdown-menu .dropdown-item {

  width: auto;

  -webkit-transition: all 0.25s ease-in-out;

  -moz-transition: all 0.25s ease-in-out;

  transition: all 0.25s ease-in-out;

}

.cid-hkjLffFjuI .dropdown .dropdown-menu .dropdown-item::after {

  right: 0.5rem;

}

.cid-hkjLffFjuI .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {

  -webkit-transform: scale(0, 1);

  transform: scale(0, 1);

}

.cid-hkjLffFjuI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {

  margin-left: -1.8rem;

  padding-right: 1rem;

  font-size: inherit;

}

.cid-hkjLffFjuI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {

  display: inline-block;

  -webkit-transform: scale(1, 1);

  transform: scale(1, 1);

  -webkit-transition: all 0.25s ease-in-out;

  -moz-transition: all 0.25s ease-in-out;

  transition: all 0.25s ease-in-out;

}

.cid-hkjLffFjuI .dropdown .dropdown-menu .dropdown-submenu {

  margin: 0;

}

.cid-hkjLffFjuI .dropdown.open > .dropdown-menu {

  display: block;

}

.cid-hkjLffFjuI .navbar-toggleable-sm.opened:after {

  position: absolute;

  width: 100vw;

  height: 100vh;

  content: "";

  background-color: rgba(0, 0, 0, 0.1);

  left: 0;

  bottom: 0;

  -webkit-transform: translateY(100%);

  transform: translateY(100%);

  z-index: 1000;

}

.cid-hkjLffFjuI .navbar.navbar-short {

  min-height: 50px;

  transition: all 0.2s;

}

.cid-hkjLffFjuI .navbar.navbar-short .navbar-logo a {

  font-size: 2.5rem !important;

  line-height: 2.5rem;

  transition: font-size 0.25s;

}

.cid-hkjLffFjuI .navbar.navbar-short .navbar-logo a .mbr-iconfont {

  font-size: 2.5rem !important;

}

.cid-hkjLffFjuI .navbar.navbar-short .navbar-logo a img {

  height: 3rem !important;

}

.cid-hkjLffFjuI .navbar.navbar-short .navbar-brand {

  min-height: 3rem;

}

.cid-hkjLffFjuI button.navbar-toggler {

  width: 31px;

  height: 18px;

  cursor: pointer;

  transition: all 0.2s;

  margin: 1rem 0.8rem;

}

.cid-hkjLffFjuI button.navbar-toggler:focus {

  outline: none;

}

.cid-hkjLffFjuI button.navbar-toggler .hamburger span {

  position: absolute;

  right: 0;

  width: 30px;

  height: 2px;

  border-right: 5px;

  background-color: #0a1c44;

}

.cid-hkjLffFjuI button.navbar-toggler .hamburger span:nth-child(1) {

  top: 0;

  transition: all 0.2s;

}

.cid-hkjLffFjuI button.navbar-toggler .hamburger span:nth-child(2) {

  top: 8px;

  transition: all 0.15s;

}

.cid-hkjLffFjuI button.navbar-toggler .hamburger span:nth-child(3) {

  top: 8px;

  transition: all 0.15s;

}

.cid-hkjLffFjuI button.navbar-toggler .hamburger span:nth-child(4) {

  top: 16px;

  transition: all 0.2s;

}

.cid-hkjLffFjuI nav.opened .hamburger span:nth-child(1) {

  top: 8px;

  width: 0;

  opacity: 0;

  right: 50%;

  transition: all 0.2s;

}

.cid-hkjLffFjuI nav.opened .hamburger span:nth-child(2) {

  -webkit-transform: rotate(45deg);

  transform: rotate(45deg);

  transition: all 0.25s;

}

.cid-hkjLffFjuI nav.opened .hamburger span:nth-child(3) {

  -webkit-transform: rotate(-45deg);

  transform: rotate(-45deg);

  transition: all 0.25s;

}

.cid-hkjLffFjuI nav.opened .hamburger span:nth-child(4) {

  top: 8px;

  width: 0;

  opacity: 0;

  right: 50%;

  transition: all 0.2s;

}

.cid-hkjLffFjuI .collapsed .dropdown-menu .dropdown-item:before {

  display: none;

}

.cid-hkjLffFjuI .collapsed .dropdown .dropdown-menu .dropdown-item {

  padding: 0.235em 1.5em 0.235em 1.5em !important;

  transition: none;

  margin: 0 !important;

}

.cid-hkjLffFjuI .collapsed .btn {

  display: flex;

}

.cid-hkjLffFjuI .collapsed .navbar-collapse {

  display: none !important;

  padding-right: 0 !important;

}

.cid-hkjLffFjuI .collapsed .navbar-collapse.collapsing,

.cid-hkjLffFjuI .collapsed .navbar-collapse.show {

  display: block !important;

}

.cid-hkjLffFjuI .collapsed .navbar-collapse.collapsing .navbar-nav,

.cid-hkjLffFjuI .collapsed .navbar-collapse.show .navbar-nav {

  display: block;

  text-align: center;

}

.cid-hkjLffFjuI .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,

.cid-hkjLffFjuI .collapsed .navbar-collapse.show .navbar-nav .nav-item {

  clear: both;

}

.cid-hkjLffFjuI .collapsed .navbar-collapse.collapsing .navbar-buttons,

.cid-hkjLffFjuI .collapsed .navbar-collapse.show .navbar-buttons {

  display: flex;

  -webkit-justify-content: center;

  justify-content: center;

  text-align: center;

}

.cid-hkjLffFjuI .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,

.cid-hkjLffFjuI .collapsed .navbar-collapse.show .navbar-buttons:last-child {

  margin-bottom: 1rem;

}

@media (min-width: 992px) {

  .cid-hkjLffFjuI .collapsed .dropdown .dropdown-menu {

    overflow: hidden;

  }

}

.cid-hkjLffFjuI .collapsed button.navbar-toggler {

  display: block;

}

.cid-hkjLffFjuI .collapsed .navbar-brand {

  margin-left: 1rem !important;

  margin-top: 0.5rem;

}

.cid-hkjLffFjuI .collapsed .navbar-toggleable-sm {

  -webkit-flex-direction: column;

  flex-direction: column;

}

.cid-hkjLffFjuI .collapsed .dropdown .dropdown-menu {

  width: 100%;

  text-align: center;

  position: relative;

  opacity: 0;

  display: block;

  height: 0;

  visibility: hidden;

  padding: 0;

  transition-duration: 0.5s;

  transition-property: opacity, padding, height;

}

.cid-hkjLffFjuI .collapsed .dropdown.open > .dropdown-menu {

  position: relative;

  opacity: 1;

  height: auto;

  padding: 1.4rem 0;

  visibility: visible;

}

.cid-hkjLffFjuI .collapsed .dropdown .dropdown-submenu {

  left: 0;

  text-align: center;

  width: 100%;

}

.cid-hkjLffFjuI .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {

  margin-top: 0;

  position: inherit;

  right: 0;

  top: 50%;

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 0.3em;

  vertical-align: middle;

  content: "";

  border-top: 0.3em solid;

  border-right: 0.3em solid transparent;

  border-left: 0.3em solid transparent;

}

.cid-hkjLffFjuI .collapsed .menu-bottom {

  -webkit-justify-content: center;

  justify-content: center;

}

@media (min-width: 991px) {

  .cid-hkjLffFjuI .dropdown-item {

    color: white !important;

    border-bottom: 0px solid #4f5b77;

  }

  .cid-hkjLffFjuI .dropdown-item:not(:last-child) {

    border-bottom: 1px solid #4f5b77;

  }

}

@media (max-width: 991px) {

  .cid-hkjLffFjuI .dropdown-menu {

    margin-top: 0px;

    background-color: transparent;

    color: black !important;

  }

  .cid-hkjLffFjuI .menu-bottom {

    display: flex;

    -webkit-flex-direction: row;

    flex-direction: row;

    -webkit-justify-content: space-between;

    justify-content: space-between;

    align-items: center;

    margin: 0;

  }

  .cid-hkjLffFjuI .navbar-collapse {

    padding-bottom: 1rem;

    display: none !important;

    padding-right: 0 !important;

  }

  .cid-hkjLffFjuI .navbar-collapse.collapsing,

  .cid-hkjLffFjuI .navbar-collapse.show {

    display: block !important;

  }

  .cid-hkjLffFjuI .navbar-collapse.collapsing .navbar-nav,

  .cid-hkjLffFjuI .navbar-collapse.show .navbar-nav {

    display: block;

    text-align: center;

  }

  .cid-hkjLffFjuI .navbar-collapse.collapsing .navbar-nav .nav-item,

  .cid-hkjLffFjuI .navbar-collapse.show .navbar-nav .nav-item {

    clear: both;

  }

  .cid-hkjLffFjuI .navbar-collapse.collapsing .navbar-buttons,

  .cid-hkjLffFjuI .navbar-collapse.show .navbar-buttons {

    display: -webkit-flex;

    justify-content: center;

    text-align: center;

    -webkit-justify-content: center;

  }

  .cid-hkjLffFjuI .navbar-collapse.collapsing .navbar-buttons:last-child,

  .cid-hkjLffFjuI .navbar-collapse.show .navbar-buttons:last-child {

    margin-bottom: 1rem;

  }

  .cid-hkjLffFjuI img {

    height: 3.8rem !important;

  }

  .cid-hkjLffFjuI .btn {

    display: flex;

  }

  .cid-hkjLffFjuI button.navbar-toggler {

    display: block;

  }

  .cid-hkjLffFjuI .navbar-brand {

    margin-left: 1rem !important;

    margin-top: 0.5rem;

  }

  .cid-hkjLffFjuI .navbar-toggleable-sm {

    -webkit-flex-direction: column;

    flex-direction: column;

  }

  .cid-hkjLffFjuI .dropdown .dropdown-menu {

    width: 100%;

    text-align: center;

    position: relative;

    opacity: 0;

    display: block;

    height: 0;

    visibility: hidden;

    padding: 0;

    transition-duration: 0.5s;

    transition-property: opacity, padding, height;

  }

  .cid-hkjLffFjuI .dropdown.open > .dropdown-menu {

    position: relative;

    opacity: 1;

    height: auto;

    padding: 1.4rem 0;

    visibility: visible;

  }

  .cid-hkjLffFjuI .dropdown .dropdown-submenu {

    left: 0;

    text-align: center;

    width: 100%;

  }

  .cid-hkjLffFjuI .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {

    margin-top: 0;

    position: inherit;

    right: 0;

    top: 50%;

    display: inline-block;

    width: 0;

    height: 0;

    margin-left: 0.3em;

    vertical-align: middle;

    content: "";

    border-top: 0.3em solid;

    border-right: 0.3em solid transparent;

    border-left: 0.3em solid transparent;

  }

  .cid-hkjLffFjuI .navbar-buttons.mbr-section-btn {

    width: 100%;

  }

  .cid-hkjLffFjuI .dropdown .dropdown-menu .dropdown-item {

    padding: 0.235em 1.5em 0.235em 1.5em !important;

    transition: none;

    margin: 0 !important;

  }

}

.cid-hkjLffFjuI .navbar-dropdown {

  -webkit-flex-wrap: nowrap;

  flex-wrap: nowrap;

}

.cid-hkjLffFjuI .nav-link:focus {

  outline: none;

}

.cid-hkjLffFjuI .navbar-toggler {

  position: relative;

}

.cid-hkjLffFjuI .dropdown-item.active,

.cid-hkjLffFjuI .dropdown-item:active {

  color: initial;

}

.cid-hkjLffFjuI .widget-title,

.cid-hkjLffFjuI .widget-icon {

  color: #e9e9e9;

}

.cid-hkjLffFjuI .widget-text {

  color: #656565;

}

@media (max-width: 576px) {

  .cid-hkjLffFjuI .menu-logo {

    display: none;

  }

  .cid-hkjLffFjuI .navbar {

    padding: 0;

  }

  .cid-hkjLffFjuI .menu-bottom {

    -webkit-flex-direction: column;

    flex-direction: column;

  }

  .cid-hkjLffFjuI button.navbar-toggler {

    -webkit-align-self: center;

    align-self: center;

  }

}

.cid-hkjLffFjuI .media-container-row .mbr-text {

  color: #ffffff;

  text-align: right;

}

.cid-hkjLffFjuI .icon-bar {

  left: 0.4%;

  position: fixed;

  top: 50%;

  font-weight: normal;

  -webkit-transform: translateY(-50%);

  -ms-transform: translateY(-50%);

  transform: translateY(-50%);

}

.cid-hkjLffFjuI .icon-bar a:hover {

  background-color: #ff0040;

  width: 100px;

}

.cid-hkjLffFjuI .icon-bar a {

  display: block;

  text-align: center;

  padding: 10px;

  transition: all 0.3s ease;

  color: white;

  font-size: 20px;

  font-weight: normal;

  margin: 2px;

  border-radius: 17px;

}

.cid-hkjLffFjuI .facebook {

  background: #3B5998;

  color: white;

  width: 50px;

}

.cid-hkjLffFjuI .twitter {

  background: #55ACEE;

  color: white;

  width: 50px;

}

.cid-hkjLffFjuI .google {

  background: #dd4b39;

  color: white;

  width: 50px;

}

.cid-hkjLffFjuI .linkedin {

  background: #007bb5;

  color: white;

  width: 50px;

}

.cid-hkjLffFjuI .youtube {

  background: #bb0000;

  color: white;

  width: 50px;

}

.cid-hkjLffFjuI .instagram {

  background: #6F3AA7;

  color: white;

  width: 50px;

}

.cid-hkjLffFjuI .custom1 {

  background: #ff7300;

  color: white;

  width: 50px;

}

.cid-hkjLffFjuI .custom2 {

  background: #01bf46;

  color: white;

  width: 50px;

}

.cid-hkjLffFjuI .content {

  margin-left: 75px;

  font-size: 30px;

}

.cid-hkjLffFjuI .corner-ribbon {

  z-index: 10000;

  width: 200px;

  background-image: linear-gradient(#55b4d4, #000000);

  position: absolute;

  top: 25px;

  left: -50px;

  text-align: center;

  line-height: 50px;

  letter-spacing: 1px;

  transform: rotate(-45deg);

  -webkit-transform: rotate(-45deg);

  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);

}

.cid-hkjLffFjuI .corner-ribbon.top-zen {

  top: 25px;

  left: -50px;

  transform: rotate(-45deg);

  -webkit-transform: rotate(-45deg);

  position: fixed;

}

.cid-hkjLffFjuI P {

  color: #232323;

  text-align: center;

}

.cid-hkjLffFjuI DIV {

  color: #ffffff;

}

#custom-html-sr {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-sr html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sr body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-sr article,

#custom-html-sr aside,

#custom-html-sr details,

#custom-html-sr figcaption,

#custom-html-sr figure,

#custom-html-sr footer,

#custom-html-sr header,

#custom-html-sr hgroup,

#custom-html-sr main,

#custom-html-sr menu,

#custom-html-sr nav,

#custom-html-sr section,

#custom-html-sr summary {

  display: block;

}

#custom-html-sr audio,

#custom-html-sr canvas,

#custom-html-sr progress,

#custom-html-sr video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sr audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sr [hidden],

#custom-html-sr template {

  display: none;

}

#custom-html-sr a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-sr a:active,

#custom-html-sr a:hover {

  outline: 0;

}

#custom-html-sr abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sr b,

#custom-html-sr strong {

  font-weight: 700;

}

#custom-html-sr dfn {

  font-style: italic;

}

#custom-html-sr h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sr mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sr small {

  font-size: 80%;

}

#custom-html-sr sub,

#custom-html-sr sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sr sup {

  top: -0.5em;

}

#custom-html-sr sub {

  bottom: -0.25em;

}

#custom-html-sr img {

  border: 0;

  vertical-align: middle;

}

#custom-html-sr svg:not(:root) {

  overflow: hidden;

}

#custom-html-sr figure {

  margin: 0;

}

#custom-html-sr hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sr pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sr code,

#custom-html-sr kbd,

#custom-html-sr pre,

#custom-html-sr samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-sr button,

#custom-html-sr input,

#custom-html-sr optgroup,

#custom-html-sr select,

#custom-html-sr textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sr button {

  overflow: visible;

}

#custom-html-sr button,

#custom-html-sr select {

  text-transform: none;

}

#custom-html-sr button,

#custom-html-sr html input[type=button],

#custom-html-sr input[type=reset],

#custom-html-sr input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sr button[disabled],

#custom-html-sr html input[disabled] {

  cursor: default;

}

#custom-html-sr button::-moz-focus-inner,

#custom-html-sr input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sr input {

  line-height: normal;

}

#custom-html-sr input[type=checkbox],

#custom-html-sr input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sr input[type=number]::-webkit-inner-spin-button,

#custom-html-sr input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sr input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-sr input[type=search]::-webkit-search-cancel-button,

#custom-html-sr input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sr fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-sr legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sr textarea {

  overflow: auto;

}

#custom-html-sr optgroup {

  font-weight: 700;

}

#custom-html-sr table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-sr td,

#custom-html-sr th {

  padding: 0;

}

@media print {

  #custom-html-sr *,

  #custom-html-sr :after,

  #custom-html-sr :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sr a,

  #custom-html-sr a:visited {

    text-decoration: underline;

  }

  #custom-html-sr a[href]:after {

    content: "" !important;

  }

  #custom-html-sr abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sr a[href^="#"]:after,

  #custom-html-sr a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sr blockquote,

  #custom-html-sr pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sr thead {

    display: table-header-group;

  }

  #custom-html-sr img,

  #custom-html-sr tr {

    page-break-inside: avoid;

  }

  #custom-html-sr img {

    max-width: 100% !important;

  }

  #custom-html-sr h2,

  #custom-html-sr h3,

  #custom-html-sr p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sr h2,

  #custom-html-sr h3 {

    page-break-after: avoid;

  }

  #custom-html-sr .navbar {

    display: none;

  }

  #custom-html-sr .btn > .caret,

  #custom-html-sr .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sr .label {

    border: 1px solid #000000;

  }

  #custom-html-sr .table {

    border-collapse: collapse !important;

  }

  #custom-html-sr .table td,

  #custom-html-sr .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sr .table-bordered td,

  #custom-html-sr .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-sr .visible-print {

    display: block !important;

  }

  #custom-html-sr table.visible-print {

    display: table !important;

  }

  #custom-html-sr tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sr td.visible-print,

  #custom-html-sr th.visible-print {

    display: table-cell !important;

  }

  #custom-html-sr .visible-print-block {

    display: block !important;

  }

  #custom-html-sr .visible-print-inline {

    display: inline !important;

  }

  #custom-html-sr .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-sr .hidden-print {

    display: none !important;

  }

  #custom-html-sr #main-menu,

  #custom-html-sr #top-nav,

  #custom-html-sr .header-lined,

  #custom-html-sr .sidebar {


    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sr .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sr .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sr .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sr .glyphicon-eur:before,

#custom-html-sr .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sr .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sr .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sr .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sr .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sr .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sr .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sr .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sr .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sr .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sr .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sr .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sr .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sr .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sr .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sr .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sr .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sr .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sr .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sr .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sr .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sr .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sr .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sr .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sr .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sr .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sr .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sr .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sr .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sr .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sr .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sr .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sr .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sr .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sr .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sr .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sr .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sr .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sr .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sr .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sr .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sr .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sr .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sr .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sr .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sr .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sr .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sr .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sr .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sr .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sr .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sr .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sr .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sr .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sr .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sr .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sr .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sr .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sr .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sr .glyphicon-list:before {

  content: "\e056";

}

#custom-html-sr .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sr .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sr .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sr .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sr .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sr .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sr .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sr .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sr .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sr .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sr .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sr .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sr .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sr .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sr .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sr .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sr .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sr .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sr .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sr .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sr .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sr .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sr .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sr .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sr .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-sr .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sr .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sr .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sr .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sr .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sr .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sr .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sr .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sr .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sr .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sr .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sr .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sr .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sr .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sr .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sr .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sr .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sr .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sr .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sr .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sr .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sr .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sr .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sr .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sr .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sr .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sr .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sr .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sr .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sr .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sr .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sr .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sr .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sr .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sr .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sr .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sr .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sr .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sr .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sr .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sr .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sr .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sr .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sr .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sr .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sr .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sr .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sr .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sr .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sr .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sr .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sr .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sr .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sr .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sr .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sr .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sr .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sr .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sr .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sr .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sr .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sr .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sr .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sr .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sr .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sr .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sr .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sr .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sr .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sr .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sr .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sr .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sr .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sr .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-sr .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sr .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sr .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sr .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sr .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sr .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sr .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sr .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sr .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sr .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sr .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sr .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sr .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sr .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sr .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sr .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sr .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sr .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sr .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sr .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sr .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sr .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sr .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sr .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sr .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sr .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sr .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sr .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sr .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sr .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sr .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sr .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sr .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sr .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sr .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sr .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sr .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sr .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sr .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sr .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sr .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sr .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sr .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sr .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sr .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sr .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sr .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sr .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sr .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sr .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sr .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sr .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sr .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sr .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sr .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sr .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sr .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sr .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sr .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sr .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sr .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sr .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sr .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sr .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sr .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sr .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sr .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sr .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sr .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sr .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sr .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sr .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sr .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sr .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sr .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sr .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sr .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sr .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sr .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sr .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sr .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sr .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sr .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sr .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sr .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sr .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-sr .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sr .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sr .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sr .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sr .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sr .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sr .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sr .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sr .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sr .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sr .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sr .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sr .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sr .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sr .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sr * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sr :after,

#custom-html-sr :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sr button,

#custom-html-sr input,

#custom-html-sr select,

#custom-html-sr textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sr a:focus,

#custom-html-sr a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sr a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sr .carousel-inner > .item > a > img,

#custom-html-sr .carousel-inner > .item > img,

#custom-html-sr .img-responsive,

#custom-html-sr .thumbnail a > img,

#custom-html-sr .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sr .img-rounded {

  border-radius: 6px;

}

#custom-html-sr .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sr .img-circle {

  border-radius: 50%;

}

#custom-html-sr .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sr .sr-only-focusable:active,

#custom-html-sr .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sr [role=button] {

  cursor: pointer;

}

#custom-html-sr .h1,

#custom-html-sr .h2,

#custom-html-sr .h3,

#custom-html-sr .h4,

#custom-html-sr .h5,

#custom-html-sr .h6,

#custom-html-sr h1,

#custom-html-sr h2,

#custom-html-sr h3,

#custom-html-sr h4,

#custom-html-sr h5,

#custom-html-sr h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sr .h1 .small,

#custom-html-sr .h1 small,

#custom-html-sr .h2 .small,

#custom-html-sr .h2 small,

#custom-html-sr .h3 .small,

#custom-html-sr .h3 small,

#custom-html-sr .h4 .small,

#custom-html-sr .h4 small,

#custom-html-sr .h5 .small,

#custom-html-sr .h5 small,

#custom-html-sr .h6 .small,

#custom-html-sr .h6 small,

#custom-html-sr h1 .small,

#custom-html-sr h1 small,

#custom-html-sr h2 .small,

#custom-html-sr h2 small,

#custom-html-sr h3 .small,

#custom-html-sr h3 small,

#custom-html-sr h4 .small,

#custom-html-sr h4 small,

#custom-html-sr h5 .small,

#custom-html-sr h5 small,

#custom-html-sr h6 .small,

#custom-html-sr h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sr .h1,

#custom-html-sr .h2,

#custom-html-sr .h3,

#custom-html-sr h1,

#custom-html-sr h2,

#custom-html-sr h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sr .h1 .small,

#custom-html-sr .h1 small,

#custom-html-sr .h2 .small,

#custom-html-sr .h2 small,

#custom-html-sr .h3 .small,

#custom-html-sr .h3 small,

#custom-html-sr h1 .small,

#custom-html-sr h1 small,

#custom-html-sr h2 .small,

#custom-html-sr h2 small,

#custom-html-sr h3 .small,

#custom-html-sr h3 small {

  font-size: 65%;

}

#custom-html-sr .h4,

#custom-html-sr .h5,

#custom-html-sr .h6,

#custom-html-sr h4,

#custom-html-sr h5,

#custom-html-sr h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sr .h4 .small,

#custom-html-sr .h4 small,

#custom-html-sr .h5 .small,

#custom-html-sr .h5 small,

#custom-html-sr .h6 .small,

#custom-html-sr .h6 small,

#custom-html-sr h4 .small,

#custom-html-sr h4 small,

#custom-html-sr h5 .small,

#custom-html-sr h5 small,

#custom-html-sr h6 .small,

#custom-html-sr h6 small {

  font-size: 75%;

}

#custom-html-sr .h1,

#custom-html-sr h1 {

  font-size: 36px;

}

#custom-html-sr .h2,

#custom-html-sr h2 {

  font-size: 30px;

}

#custom-html-sr .h3,

#custom-html-sr h3 {

  font-size: 24px;

}

#custom-html-sr .h4,

#custom-html-sr h4 {

  font-size: 18px;

}

#custom-html-sr .h5,

#custom-html-sr h5 {

  font-size: 14px;

}

#custom-html-sr .h6,

#custom-html-sr h6 {

  font-size: 12px;

}

#custom-html-sr p {

  margin: 0 0 10px;

}

#custom-html-sr .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sr .lead {

    font-size: 21px;

  }

  #custom-html-sr .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sr .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-sr .container {

    width: 750px;

  }

  #custom-html-sr .col-sm-1,

  #custom-html-sr .col-sm-10,

  #custom-html-sr .col-sm-11,

  #custom-html-sr .col-sm-12,

  #custom-html-sr .col-sm-2,

  #custom-html-sr .col-sm-3,

  #custom-html-sr .col-sm-4,

  #custom-html-sr .col-sm-5,

  #custom-html-sr .col-sm-6,

  #custom-html-sr .col-sm-7,

  #custom-html-sr .col-sm-8,

  #custom-html-sr .col-sm-9 {

    float: left;

  }

  #custom-html-sr .col-sm-12 {

    width: 100%;

  }

  #custom-html-sr .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sr .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sr .col-sm-9 {

    width: 75%;

  }

  #custom-html-sr .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sr .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sr .col-sm-6 {

    width: 50%;

  }

  #custom-html-sr .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sr .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sr .col-sm-3 {

    width: 25%;

  }

  #custom-html-sr .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sr .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sr .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sr .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sr .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sr .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sr .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sr .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sr .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sr .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sr .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sr .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sr .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sr .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sr .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sr .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sr .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sr .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sr .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sr .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sr .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sr .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sr .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sr .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sr .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sr .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sr .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sr .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sr .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sr .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sr .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sr .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sr .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sr .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sr .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sr .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sr .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sr .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sr .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sr .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sr .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-sr .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sr .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sr .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sr .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sr .form-inline .input-group .form-control,

  #custom-html-sr .form-inline .input-group .input-group-addon,

  #custom-html-sr .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sr .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sr .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sr .form-inline .checkbox,

  #custom-html-sr .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sr .form-inline .checkbox label,

  #custom-html-sr .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sr .form-inline .checkbox input[type=checkbox],

  #custom-html-sr .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sr .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sr .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-sr .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-sr .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }


  #custom-html-sr .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sr .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-sr .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sr .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sr .nav-tabs.nav-justified > .active > a,

  #custom-html-sr .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sr .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sr .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sr .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-sr .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sr .nav-tabs-justified > .active > a,

  #custom-html-sr .nav-tabs-justified > .active > a:focus,

  #custom-html-sr .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sr .navbar {

    border-radius: 4px;

  }

  #custom-html-sr .navbar-header {

    float: left;

  }

  #custom-html-sr .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sr .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sr .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sr .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sr .navbar-fixed-top .navbar-collapse,

  #custom-html-sr .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-sr .container-fluid > .navbar-collapse,

  #custom-html-sr .container-fluid > .navbar-header,

  #custom-html-sr .container > .navbar-collapse,

  #custom-html-sr .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-sr .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-sr .navbar-fixed-bottom,

  #custom-html-sr .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-sr .navbar > .container .navbar-brand,

  #custom-html-sr .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-sr .navbar-toggle {

    display: none;

  }

  #custom-html-sr .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sr .navbar-nav > li {

    float: left;

  }

  #custom-html-sr .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-sr .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sr .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sr .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sr .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sr .navbar-form .input-group .form-control,

  #custom-html-sr .navbar-form .input-group .input-group-addon,

  #custom-html-sr .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sr .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sr .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sr .navbar-form .checkbox,

  #custom-html-sr .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sr .navbar-form .checkbox label,

  #custom-html-sr .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sr .navbar-form .checkbox input[type=checkbox],

  #custom-html-sr .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sr .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sr .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sr .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-sr .navbar-left {

    float: left !important;

  }

  #custom-html-sr .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sr .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-sr .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sr .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sr .modal-sm {

    width: 300px;

  }

  #custom-html-sr .pull-sm-left {

    float: left;

  }

  #custom-html-sr .pull-sm-right {

    float: right;

  }

  #custom-html-sr .text-right-sm {

    text-align: right;

  }

  #custom-html-sr .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sr .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-sr .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sr .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sr .email-verification .button {

    float: right;

  }

  #custom-html-sr .email-verification .far,

  #custom-html-sr .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-sr .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sr .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-sr .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sr .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sr .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sr .small,

#custom-html-sr small {

  font-size: 85%;

}

#custom-html-sr .mark,

#custom-html-sr mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sr .text-left {

  text-align: left;

}

#custom-html-sr .text-right {

  text-align: right;

}

#custom-html-sr .text-center {

  text-align: center;

}

#custom-html-sr .text-justify {

  text-align: justify;

}

#custom-html-sr .text-nowrap {

  white-space: nowrap;

}

#custom-html-sr .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sr .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sr .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sr .text-muted {

  color: #777777;

}

#custom-html-sr .text-primary {

  color: #000000;

}

#custom-html-sr a.text-primary:focus,

#custom-html-sr a.text-primary:hover {

  color: #000000;

}

#custom-html-sr .text-success {

  color: #3c763d;

}

#custom-html-sr a.text-success:focus,

#custom-html-sr a.text-success:hover {

  color: #2b542c;

}

#custom-html-sr .text-info {

  color: #31708f;

}

#custom-html-sr a.text-info:focus,

#custom-html-sr a.text-info:hover {

  color: #000000;

}

#custom-html-sr .text-warning {

  color: #8a6d3b;

}

#custom-html-sr a.text-warning:focus,

#custom-html-sr a.text-warning:hover {

  color: #66512c;

}

#custom-html-sr .text-danger {

  color: #a94442;

}

#custom-html-sr a.text-danger:focus,

#custom-html-sr a.text-danger:hover {

  color: #843534;

}

#custom-html-sr .bg-primary {


  color: #fff;

  background-color: #000000;

}

#custom-html-sr a.bg-primary:focus,

#custom-html-sr a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sr .bg-success {

  background-color: #dff0d8;

}

#custom-html-sr a.bg-success:focus,

#custom-html-sr a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sr .bg-info {

  background-color: #d9edf7;

}

#custom-html-sr a.bg-info:focus,

#custom-html-sr a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sr .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sr a.bg-warning:focus,

#custom-html-sr a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sr .bg-danger {

  background-color: #f2dede;

}

#custom-html-sr a.bg-danger:focus,

#custom-html-sr a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sr .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sr ol,

#custom-html-sr ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sr ol ol,

#custom-html-sr ol ul,

#custom-html-sr ul ol,

#custom-html-sr ul ul {

  margin-bottom: 0;

}

#custom-html-sr .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sr .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sr .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sr dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sr dd,

#custom-html-sr dt {

  line-height: 1.42857143;

}

#custom-html-sr dt {

  font-weight: 700;

}

#custom-html-sr dd {

  margin-left: 0;

}

#custom-html-sr abbr[data-original-title],

#custom-html-sr abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sr .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sr blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sr blockquote ol:last-child,

#custom-html-sr blockquote p:last-child,

#custom-html-sr blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sr blockquote .small,

#custom-html-sr blockquote footer,

#custom-html-sr blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sr blockquote .small:before,

#custom-html-sr blockquote footer:before,

#custom-html-sr blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sr .blockquote-reverse,

#custom-html-sr blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sr .blockquote-reverse .small:before,

#custom-html-sr .blockquote-reverse footer:before,

#custom-html-sr .blockquote-reverse small:before,

#custom-html-sr blockquote.pull-right .small:before,

#custom-html-sr blockquote.pull-right footer:before,

#custom-html-sr blockquote.pull-right small:before {

  content: '';

}

#custom-html-sr .blockquote-reverse .small:after,

#custom-html-sr .blockquote-reverse footer:after,

#custom-html-sr .blockquote-reverse small:after,

#custom-html-sr blockquote.pull-right .small:after,

#custom-html-sr blockquote.pull-right footer:after,

#custom-html-sr blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sr address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sr code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sr kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sr kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sr pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sr .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sr .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-sr .container {

    width: 970px;

  }

  #custom-html-sr .col-md-1,

  #custom-html-sr .col-md-10,

  #custom-html-sr .col-md-11,

  #custom-html-sr .col-md-12,

  #custom-html-sr .col-md-2,

  #custom-html-sr .col-md-3,

  #custom-html-sr .col-md-4,

  #custom-html-sr .col-md-5,

  #custom-html-sr .col-md-6,

  #custom-html-sr .col-md-7,

  #custom-html-sr .col-md-8,

  #custom-html-sr .col-md-9 {

    float: left;

  }

  #custom-html-sr .col-md-12 {

    width: 100%;

  }

  #custom-html-sr .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sr .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sr .col-md-9 {

    width: 75%;

  }

  #custom-html-sr .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sr .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sr .col-md-6 {

    width: 50%;

  }

  #custom-html-sr .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sr .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sr .col-md-3 {

    width: 25%;

  }

  #custom-html-sr .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sr .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sr .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sr .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sr .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sr .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sr .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sr .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sr .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sr .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sr .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sr .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sr .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sr .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sr .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sr .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sr .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sr .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sr .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sr .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sr .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sr .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sr .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sr .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sr .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sr .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sr .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sr .col-md-push-0 {

    left: auto;

  }

  #custom-html-sr .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sr .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sr .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sr .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sr .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sr .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sr .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sr .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sr .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sr .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sr .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sr .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sr .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-sr .modal-lg {

    width: 900px;

  }

  #custom-html-sr .pull-md-left {

    float: left;

  }

  #custom-html-sr .pull-md-right {

    float: right;

  }

  #custom-html-sr h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sr .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sr .container {

    width: 1170px;

  }

  #custom-html-sr .col-lg-1,

  #custom-html-sr .col-lg-10,

  #custom-html-sr .col-lg-11,

  #custom-html-sr .col-lg-12,

  #custom-html-sr .col-lg-2,

  #custom-html-sr .col-lg-3,

  #custom-html-sr .col-lg-4,

  #custom-html-sr .col-lg-5,

  #custom-html-sr .col-lg-6,

  #custom-html-sr .col-lg-7,

  #custom-html-sr .col-lg-8,

  #custom-html-sr .col-lg-9 {

    float: left;

  }

  #custom-html-sr .col-lg-12 {

    width: 100%;

  }

  #custom-html-sr .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sr .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sr .col-lg-9 {

    width: 75%;

  }

  #custom-html-sr .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sr .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sr .col-lg-6 {

    width: 50%;

  }

  #custom-html-sr .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sr .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sr .col-lg-3 {

    width: 25%;

  }

  #custom-html-sr .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sr .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sr .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sr .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sr .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sr .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sr .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sr .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sr .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sr .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sr .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sr .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sr .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sr .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sr .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sr .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sr .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sr .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sr .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sr .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sr .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sr .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sr .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sr .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sr .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sr .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sr .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sr .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sr .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sr .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sr .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sr .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sr .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sr .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sr .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sr .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sr .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sr .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sr .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sr .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sr .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-sr .visible-lg {

    display: block !important;

  }

  #custom-html-sr table.visible-lg {

    display: table !important;

  }

  #custom-html-sr tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sr td.visible-lg,

  #custom-html-sr th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-sr .visible-lg-block {

    display: block !important;

  }

  #custom-html-sr .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-sr .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-sr .hidden-lg {

    display: none !important;

  }

  #custom-html-sr .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sr .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sr .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sr .col-lg-1,

#custom-html-sr .col-lg-10,

#custom-html-sr .col-lg-11,

#custom-html-sr .col-lg-12,

#custom-html-sr .col-lg-2,

#custom-html-sr .col-lg-3,

#custom-html-sr .col-lg-4,

#custom-html-sr .col-lg-5,

#custom-html-sr .col-lg-6,

#custom-html-sr .col-lg-7,

#custom-html-sr .col-lg-8,

#custom-html-sr .col-lg-9,

#custom-html-sr .col-md-1,

#custom-html-sr .col-md-10,

#custom-html-sr .col-md-11,

#custom-html-sr .col-md-12,

#custom-html-sr .col-md-2,

#custom-html-sr .col-md-3,

#custom-html-sr .col-md-4,

#custom-html-sr .col-md-5,

#custom-html-sr .col-md-6,

#custom-html-sr .col-md-7,

#custom-html-sr .col-md-8,

#custom-html-sr .col-md-9,

#custom-html-sr .col-sm-1,

#custom-html-sr .col-sm-10,

#custom-html-sr .col-sm-11,

#custom-html-sr .col-sm-12,

#custom-html-sr .col-sm-2,

#custom-html-sr .col-sm-3,

#custom-html-sr .col-sm-4,

#custom-html-sr .col-sm-5,

#custom-html-sr .col-sm-6,

#custom-html-sr .col-sm-7,

#custom-html-sr .col-sm-8,

#custom-html-sr .col-sm-9,

#custom-html-sr .col-xs-1,

#custom-html-sr .col-xs-10,

#custom-html-sr .col-xs-11,

#custom-html-sr .col-xs-12,

#custom-html-sr .col-xs-2,

#custom-html-sr .col-xs-3,

#custom-html-sr .col-xs-4,

#custom-html-sr .col-xs-5,

#custom-html-sr .col-xs-6,

#custom-html-sr .col-xs-7,

#custom-html-sr .col-xs-8,

#custom-html-sr .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sr .col-xs-1,

#custom-html-sr .col-xs-10,

#custom-html-sr .col-xs-11,

#custom-html-sr .col-xs-12,

#custom-html-sr .col-xs-2,

#custom-html-sr .col-xs-3,

#custom-html-sr .col-xs-4,

#custom-html-sr .col-xs-5,

#custom-html-sr .col-xs-6,

#custom-html-sr .col-xs-7,

#custom-html-sr .col-xs-8,

#custom-html-sr .col-xs-9 {

  float: left;

}

#custom-html-sr .col-xs-12 {

  width: 100%;

}

#custom-html-sr .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sr .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sr .col-xs-9 {

  width: 75%;

}

#custom-html-sr .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sr .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sr .col-xs-6 {

  width: 50%;

}

#custom-html-sr .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sr .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sr .col-xs-3 {

  width: 25%;

}

#custom-html-sr .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sr .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sr .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sr .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sr .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sr .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sr .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sr .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sr .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sr .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sr .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sr .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sr .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sr .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sr .col-xs-pull-0 {

  right: auto;

}

#custom-html-sr .col-xs-push-12 {

  left: 100%;

}

#custom-html-sr .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sr .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sr .col-xs-push-9 {

  left: 75%;

}

#custom-html-sr .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sr .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sr .col-xs-push-6 {

  left: 50%;

}

#custom-html-sr .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sr .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sr .col-xs-push-3 {

  left: 25%;

}

#custom-html-sr .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sr .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sr .col-xs-push-0 {

  left: auto;

}

#custom-html-sr .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sr .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sr .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sr .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sr .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sr .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sr .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sr .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sr .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sr .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sr .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sr .col-xs-offset-1 {

  margin-left: 8.33333333%;


}

#custom-html-sr .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-sr caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sr th {

  text-align: left;

}

#custom-html-sr .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sr .table > tbody > tr > td,

#custom-html-sr .table > tbody > tr > th,

#custom-html-sr .table > tfoot > tr > td,

#custom-html-sr .table > tfoot > tr > th,

#custom-html-sr .table > thead > tr > td,

#custom-html-sr .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sr .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sr .table > caption + thead > tr:first-child > td,

#custom-html-sr .table > caption + thead > tr:first-child > th,

#custom-html-sr .table > colgroup + thead > tr:first-child > td,

#custom-html-sr .table > colgroup + thead > tr:first-child > th,

#custom-html-sr .table > thead:first-child > tr:first-child > td,

#custom-html-sr .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sr .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sr .table .table {

  background-color: #ffffff;

}

#custom-html-sr .table-condensed > tbody > tr > td,

#custom-html-sr .table-condensed > tbody > tr > th,

#custom-html-sr .table-condensed > tfoot > tr > td,

#custom-html-sr .table-condensed > tfoot > tr > th,

#custom-html-sr .table-condensed > thead > tr > td,

#custom-html-sr .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sr .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sr .table-bordered > tbody > tr > td,

#custom-html-sr .table-bordered > tbody > tr > th,

#custom-html-sr .table-bordered > tfoot > tr > td,

#custom-html-sr .table-bordered > tfoot > tr > th,

#custom-html-sr .table-bordered > thead > tr > td,

#custom-html-sr .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sr .table-bordered > thead > tr > td,

#custom-html-sr .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sr .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sr .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sr table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sr table td[class*=col-],

#custom-html-sr table th[class*=col-] {

  position: static;


  display: table-cell;

  float: none;

}

#custom-html-sr .table > tbody > tr.active > td,

#custom-html-sr .table > tbody > tr.active > th,

#custom-html-sr .table > tbody > tr > td.active,

#custom-html-sr .table > tbody > tr > th.active,

#custom-html-sr .table > tfoot > tr.active > td,

#custom-html-sr .table > tfoot > tr.active > th,

#custom-html-sr .table > tfoot > tr > td.active,

#custom-html-sr .table > tfoot > tr > th.active,

#custom-html-sr .table > thead > tr.active > td,

#custom-html-sr .table > thead > tr.active > th,

#custom-html-sr .table > thead > tr > td.active,

#custom-html-sr .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sr .table-hover > tbody > tr.active:hover > td,

#custom-html-sr .table-hover > tbody > tr.active:hover > th,

#custom-html-sr .table-hover > tbody > tr:hover > .active,

#custom-html-sr .table-hover > tbody > tr > td.active:hover,

#custom-html-sr .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sr .table > tbody > tr.success > td,

#custom-html-sr .table > tbody > tr.success > th,

#custom-html-sr .table > tbody > tr > td.success,

#custom-html-sr .table > tbody > tr > th.success,

#custom-html-sr .table > tfoot > tr.success > td,

#custom-html-sr .table > tfoot > tr.success > th,

#custom-html-sr .table > tfoot > tr > td.success,

#custom-html-sr .table > tfoot > tr > th.success,

#custom-html-sr .table > thead > tr.success > td,

#custom-html-sr .table > thead > tr.success > th,

#custom-html-sr .table > thead > tr > td.success,

#custom-html-sr .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sr .table-hover > tbody > tr.success:hover > td,

#custom-html-sr .table-hover > tbody > tr.success:hover > th,

#custom-html-sr .table-hover > tbody > tr:hover > .success,

#custom-html-sr .table-hover > tbody > tr > td.success:hover,

#custom-html-sr .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sr .table > tbody > tr.info > td,

#custom-html-sr .table > tbody > tr.info > th,

#custom-html-sr .table > tbody > tr > td.info,

#custom-html-sr .table > tbody > tr > th.info,

#custom-html-sr .table > tfoot > tr.info > td,

#custom-html-sr .table > tfoot > tr.info > th,

#custom-html-sr .table > tfoot > tr > td.info,

#custom-html-sr .table > tfoot > tr > th.info,

#custom-html-sr .table > thead > tr.info > td,

#custom-html-sr .table > thead > tr.info > th,

#custom-html-sr .table > thead > tr > td.info,

#custom-html-sr .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sr .table-hover > tbody > tr.info:hover > td,

#custom-html-sr .table-hover > tbody > tr.info:hover > th,

#custom-html-sr .table-hover > tbody > tr:hover > .info,

#custom-html-sr .table-hover > tbody > tr > td.info:hover,

#custom-html-sr .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sr .table > tbody > tr.warning > td,

#custom-html-sr .table > tbody > tr.warning > th,

#custom-html-sr .table > tbody > tr > td.warning,

#custom-html-sr .table > tbody > tr > th.warning,

#custom-html-sr .table > tfoot > tr.warning > td,

#custom-html-sr .table > tfoot > tr.warning > th,

#custom-html-sr .table > tfoot > tr > td.warning,

#custom-html-sr .table > tfoot > tr > th.warning,

#custom-html-sr .table > thead > tr.warning > td,

#custom-html-sr .table > thead > tr.warning > th,

#custom-html-sr .table > thead > tr > td.warning,

#custom-html-sr .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sr .table-hover > tbody > tr.warning:hover > td,

#custom-html-sr .table-hover > tbody > tr.warning:hover > th,

#custom-html-sr .table-hover > tbody > tr:hover > .warning,

#custom-html-sr .table-hover > tbody > tr > td.warning:hover,

#custom-html-sr .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sr .table > tbody > tr.danger > td,

#custom-html-sr .table > tbody > tr.danger > th,

#custom-html-sr .table > tbody > tr > td.danger,

#custom-html-sr .table > tbody > tr > th.danger,

#custom-html-sr .table > tfoot > tr.danger > td,

#custom-html-sr .table > tfoot > tr.danger > th,

#custom-html-sr .table > tfoot > tr > td.danger,

#custom-html-sr .table > tfoot > tr > th.danger,

#custom-html-sr .table > thead > tr.danger > td,

#custom-html-sr .table > thead > tr.danger > th,

#custom-html-sr .table > thead > tr > td.danger,

#custom-html-sr .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sr .table-hover > tbody > tr.danger:hover > td,

#custom-html-sr .table-hover > tbody > tr.danger:hover > th,

#custom-html-sr .table-hover > tbody > tr:hover > .danger,

#custom-html-sr .table-hover > tbody > tr > td.danger:hover,

#custom-html-sr .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sr .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sr .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sr .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sr .table-responsive > .table > tbody > tr > td,

  #custom-html-sr .table-responsive > .table > tbody > tr > th,

  #custom-html-sr .table-responsive > .table > tfoot > tr > td,

  #custom-html-sr .table-responsive > .table > tfoot > tr > th,

  #custom-html-sr .table-responsive > .table > thead > tr > td,

  #custom-html-sr .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sr .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sr .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sr .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sr .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sr .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sr .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sr .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sr .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sr .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sr .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sr .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sr .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sr .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sr .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sr .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sr .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sr .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-sr div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sr div.dataTables_wrapper div.dataTables_info,

  #custom-html-sr div.dataTables_wrapper div.dataTables_length,

  #custom-html-sr div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-sr div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sr label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sr input[type=file] {

  display: block;

}

#custom-html-sr input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sr select[multiple],

#custom-html-sr select[size] {

  height: auto;

}

#custom-html-sr input[type=checkbox]:focus,

#custom-html-sr input[type=file]:focus,

#custom-html-sr input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sr output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sr .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sr .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sr .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sr .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sr .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sr .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sr .form-control[disabled],

#custom-html-sr .form-control[readonly],

#custom-html-sr fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sr .form-control[disabled],

#custom-html-sr fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sr textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sr input[type=date].form-control,

  #custom-html-sr input[type=datetime-local].form-control,

  #custom-html-sr input[type=month].form-control,

  #custom-html-sr input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sr .input-group-sm input[type=date],

  #custom-html-sr .input-group-sm input[type=datetime-local],

  #custom-html-sr .input-group-sm input[type=month],

  #custom-html-sr .input-group-sm input[type=time],

  #custom-html-sr input[type=date].input-sm,

  #custom-html-sr input[type=datetime-local].input-sm,

  #custom-html-sr input[type=month].input-sm,

  #custom-html-sr input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sr .input-group-lg input[type=date],

  #custom-html-sr .input-group-lg input[type=datetime-local],

  #custom-html-sr .input-group-lg input[type=month],

  #custom-html-sr .input-group-lg input[type=time],

  #custom-html-sr input[type=date].input-lg,

  #custom-html-sr input[type=datetime-local].input-lg,

  #custom-html-sr input[type=month].input-lg,

  #custom-html-sr input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sr .form-group {

  margin-bottom: 15px;

}

#custom-html-sr .checkbox,

#custom-html-sr .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sr .checkbox label,

#custom-html-sr .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sr .checkbox input[type=checkbox],

#custom-html-sr .checkbox-inline input[type=checkbox],

#custom-html-sr .radio input[type=radio],

#custom-html-sr .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sr .checkbox + .checkbox,

#custom-html-sr .radio + .radio {

  margin-top: -5px;

}

#custom-html-sr .checkbox-inline,

#custom-html-sr .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sr .checkbox-inline + .checkbox-inline,

#custom-html-sr .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sr fieldset[disabled] input[type=checkbox],

#custom-html-sr fieldset[disabled] input[type=radio],

#custom-html-sr input[type=checkbox].disabled,

#custom-html-sr input[type=checkbox][disabled],

#custom-html-sr input[type=radio].disabled,

#custom-html-sr input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sr .checkbox-inline.disabled,

#custom-html-sr .radio-inline.disabled,

#custom-html-sr fieldset[disabled] .checkbox-inline,

#custom-html-sr fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sr .checkbox.disabled label,

#custom-html-sr .radio.disabled label,

#custom-html-sr fieldset[disabled] .checkbox label,

#custom-html-sr fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sr .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sr .form-control-static.input-lg,

#custom-html-sr .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sr .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sr select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sr select[multiple].input-sm,

#custom-html-sr textarea.input-sm {

  height: auto;

}

#custom-html-sr .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sr .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sr .form-group-sm select[multiple].form-control,

#custom-html-sr .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sr .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sr .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sr select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sr select[multiple].input-lg,

#custom-html-sr textarea.input-lg {

  height: auto;

}

#custom-html-sr .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sr .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sr .form-group-lg select[multiple].form-control,

#custom-html-sr .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sr .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sr .has-feedback {

  position: relative;

}

#custom-html-sr .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sr .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sr .form-group-lg .form-control + .form-control-feedback,

#custom-html-sr .input-group-lg + .form-control-feedback,

#custom-html-sr .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sr .form-group-sm .form-control + .form-control-feedback,

#custom-html-sr .input-group-sm + .form-control-feedback,

#custom-html-sr .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sr .has-success .checkbox,

#custom-html-sr .has-success .checkbox-inline,

#custom-html-sr .has-success .control-label,

#custom-html-sr .has-success .help-block,

#custom-html-sr .has-success .radio,

#custom-html-sr .has-success .radio-inline,

#custom-html-sr .has-success.checkbox label,

#custom-html-sr .has-success.checkbox-inline label,

#custom-html-sr .has-success.radio label,

#custom-html-sr .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sr .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sr .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sr .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sr .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sr .has-warning .checkbox,

#custom-html-sr .has-warning .checkbox-inline,

#custom-html-sr .has-warning .control-label,

#custom-html-sr .has-warning .help-block,

#custom-html-sr .has-warning .radio,

#custom-html-sr .has-warning .radio-inline,

#custom-html-sr .has-warning.checkbox label,

#custom-html-sr .has-warning.checkbox-inline label,

#custom-html-sr .has-warning.radio label,

#custom-html-sr .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sr .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sr .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sr .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sr .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sr .has-error .checkbox,

#custom-html-sr .has-error .checkbox-inline,

#custom-html-sr .has-error .control-label,

#custom-html-sr .has-error .help-block,

#custom-html-sr .has-error .radio,

#custom-html-sr .has-error .radio-inline,

#custom-html-sr .has-error.checkbox label,

#custom-html-sr .has-error.checkbox-inline label,

#custom-html-sr .has-error.radio label,

#custom-html-sr .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sr .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sr .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sr .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sr .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sr .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sr .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sr .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-sr .form-horizontal .checkbox,

#custom-html-sr .form-horizontal .checkbox-inline,

#custom-html-sr .form-horizontal .radio,

#custom-html-sr .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sr .form-horizontal .checkbox,

#custom-html-sr .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sr .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sr .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-sr .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-sr .btn.active.focus,

#custom-html-sr .btn.active:focus,

#custom-html-sr .btn.focus,

#custom-html-sr .btn:active.focus,

#custom-html-sr .btn:active:focus,

#custom-html-sr .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sr .btn.focus,

#custom-html-sr .btn:focus,

#custom-html-sr .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sr .btn.active,

#custom-html-sr .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sr .btn.disabled,

#custom-html-sr .btn[disabled],

#custom-html-sr fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sr a.btn.disabled,

#custom-html-sr fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sr .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sr .btn-default.focus,

#custom-html-sr .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sr .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sr .btn-default.active,

#custom-html-sr .btn-default:active,

#custom-html-sr .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-sr .btn-default.active.focus,

#custom-html-sr .btn-default.active:focus,

#custom-html-sr .btn-default.active:hover,

#custom-html-sr .btn-default:active.focus,

#custom-html-sr .btn-default:active:focus,

#custom-html-sr .btn-default:active:hover,

#custom-html-sr .open > .dropdown-toggle.btn-default.focus,

#custom-html-sr .open > .dropdown-toggle.btn-default:focus,

#custom-html-sr .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sr .btn-default.disabled.focus,

#custom-html-sr .btn-default.disabled:focus,

#custom-html-sr .btn-default.disabled:hover,

#custom-html-sr .btn-default[disabled].focus,

#custom-html-sr .btn-default[disabled]:focus,

#custom-html-sr .btn-default[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-default.focus,

#custom-html-sr fieldset[disabled] .btn-default:focus,

#custom-html-sr fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sr .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sr .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sr .btn-primary.focus,

#custom-html-sr .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sr .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sr .btn-primary.active,

#custom-html-sr .btn-primary:active,

#custom-html-sr .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-sr .btn-primary.active.focus,

#custom-html-sr .btn-primary.active:focus,

#custom-html-sr .btn-primary.active:hover,

#custom-html-sr .btn-primary:active.focus,

#custom-html-sr .btn-primary:active:focus,

#custom-html-sr .btn-primary:active:hover,

#custom-html-sr .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sr .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sr .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sr .btn-primary.disabled.focus,

#custom-html-sr .btn-primary.disabled:focus,

#custom-html-sr .btn-primary.disabled:hover,

#custom-html-sr .btn-primary[disabled].focus,

#custom-html-sr .btn-primary[disabled]:focus,

#custom-html-sr .btn-primary[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-primary.focus,

#custom-html-sr fieldset[disabled] .btn-primary:focus,

#custom-html-sr fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sr .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sr .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sr .btn-success.focus,

#custom-html-sr .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sr .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sr .btn-success.active,

#custom-html-sr .btn-success:active,

#custom-html-sr .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-sr .btn-success.active.focus,

#custom-html-sr .btn-success.active:focus,

#custom-html-sr .btn-success.active:hover,

#custom-html-sr .btn-success:active.focus,

#custom-html-sr .btn-success:active:focus,

#custom-html-sr .btn-success:active:hover,

#custom-html-sr .open > .dropdown-toggle.btn-success.focus,

#custom-html-sr .open > .dropdown-toggle.btn-success:focus,

#custom-html-sr .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sr .btn-success.disabled.focus,

#custom-html-sr .btn-success.disabled:focus,

#custom-html-sr .btn-success.disabled:hover,

#custom-html-sr .btn-success[disabled].focus,

#custom-html-sr .btn-success[disabled]:focus,

#custom-html-sr .btn-success[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-success.focus,

#custom-html-sr fieldset[disabled] .btn-success:focus,

#custom-html-sr fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sr .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sr .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sr .btn-info.focus,

#custom-html-sr .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sr .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sr .btn-info.active,

#custom-html-sr .btn-info:active,

#custom-html-sr .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-sr .btn-info.active.focus,

#custom-html-sr .btn-info.active:focus,

#custom-html-sr .btn-info.active:hover,

#custom-html-sr .btn-info:active.focus,

#custom-html-sr .btn-info:active:focus,

#custom-html-sr .btn-info:active:hover,

#custom-html-sr .open > .dropdown-toggle.btn-info.focus,

#custom-html-sr .open > .dropdown-toggle.btn-info:focus,

#custom-html-sr .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sr .btn-info.disabled.focus,

#custom-html-sr .btn-info.disabled:focus,

#custom-html-sr .btn-info.disabled:hover,

#custom-html-sr .btn-info[disabled].focus,

#custom-html-sr .btn-info[disabled]:focus,

#custom-html-sr .btn-info[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-info.focus,

#custom-html-sr fieldset[disabled] .btn-info:focus,

#custom-html-sr fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sr .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sr .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sr .btn-warning.focus,

#custom-html-sr .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sr .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sr .btn-warning.active,

#custom-html-sr .btn-warning:active,

#custom-html-sr .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-sr .btn-warning.active.focus,

#custom-html-sr .btn-warning.active:focus,

#custom-html-sr .btn-warning.active:hover,

#custom-html-sr .btn-warning:active.focus,

#custom-html-sr .btn-warning:active:focus,

#custom-html-sr .btn-warning:active:hover,

#custom-html-sr .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sr .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sr .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sr .btn-warning.disabled.focus,

#custom-html-sr .btn-warning.disabled:focus,

#custom-html-sr .btn-warning.disabled:hover,

#custom-html-sr .btn-warning[disabled].focus,

#custom-html-sr .btn-warning[disabled]:focus,

#custom-html-sr .btn-warning[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-warning.focus,

#custom-html-sr fieldset[disabled] .btn-warning:focus,

#custom-html-sr fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sr .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sr .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sr .btn-danger.focus,

#custom-html-sr .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sr .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sr .btn-danger.active,

#custom-html-sr .btn-danger:active,

#custom-html-sr .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-sr .btn-danger.active.focus,

#custom-html-sr .btn-danger.active:focus,

#custom-html-sr .btn-danger.active:hover,

#custom-html-sr .btn-danger:active.focus,

#custom-html-sr .btn-danger:active:focus,

#custom-html-sr .btn-danger:active:hover,

#custom-html-sr .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sr .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sr .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sr .btn-danger.disabled.focus,

#custom-html-sr .btn-danger.disabled:focus,

#custom-html-sr .btn-danger.disabled:hover,

#custom-html-sr .btn-danger[disabled].focus,

#custom-html-sr .btn-danger[disabled]:focus,

#custom-html-sr .btn-danger[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-danger.focus,

#custom-html-sr fieldset[disabled] .btn-danger:focus,

#custom-html-sr fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sr .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sr .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sr .btn-link,

#custom-html-sr .btn-link.active,

#custom-html-sr .btn-link:active,

#custom-html-sr .btn-link[disabled],

#custom-html-sr fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sr .btn-link,

#custom-html-sr .btn-link:active,

#custom-html-sr .btn-link:focus,

#custom-html-sr .btn-link:hover {

  border-color: transparent;

}

#custom-html-sr .btn-link:focus,

#custom-html-sr .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sr .btn-link[disabled]:focus,

#custom-html-sr .btn-link[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-link:focus,

#custom-html-sr fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sr .btn-group-lg > .btn,

#custom-html-sr .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sr .btn-group-sm > .btn,

#custom-html-sr .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sr .btn-group-xs > .btn,

#custom-html-sr .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sr .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sr .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sr input[type=button].btn-block,

#custom-html-sr input[type=reset].btn-block,

#custom-html-sr input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sr .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sr .fade.in {

  opacity: 1;

}

#custom-html-sr .collapse {

  display: none;

}

#custom-html-sr .collapse.in {

  display: block;

}

#custom-html-sr tr.collapse.in {

  display: table-row;

}

#custom-html-sr tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sr .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-sr .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sr .dropdown,

#custom-html-sr .dropup {

  position: relative;

}

#custom-html-sr .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sr .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sr .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sr .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sr .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sr .dropdown-menu > li > a:focus,

#custom-html-sr .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sr .dropdown-menu > .active > a,

#custom-html-sr .dropdown-menu > .active > a:focus,

#custom-html-sr .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sr .dropdown-menu > .disabled > a,

#custom-html-sr .dropdown-menu > .disabled > a:focus,

#custom-html-sr .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sr .dropdown-menu > .disabled > a:focus,

#custom-html-sr .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sr .open > .dropdown-menu {

  display: block;

}

#custom-html-sr .open > a {

  outline: 0;

}

#custom-html-sr .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sr .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sr .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sr .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sr .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sr .dropup .caret,

#custom-html-sr .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sr .dropup .dropdown-menu,

#custom-html-sr .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-sr .btn-group,

#custom-html-sr .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sr .btn-group-vertical > .btn,

#custom-html-sr .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sr .btn-group-vertical > .btn.active,

#custom-html-sr .btn-group-vertical > .btn:active,

#custom-html-sr .btn-group-vertical > .btn:focus,

#custom-html-sr .btn-group-vertical > .btn:hover,

#custom-html-sr .btn-group > .btn.active,

#custom-html-sr .btn-group > .btn:active,

#custom-html-sr .btn-group > .btn:focus,

#custom-html-sr .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sr .btn-group .btn + .btn,

#custom-html-sr .btn-group .btn + .btn-group,

#custom-html-sr .btn-group .btn-group + .btn,

#custom-html-sr .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sr .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sr .btn-toolbar .btn,

#custom-html-sr .btn-toolbar .btn-group,

#custom-html-sr .btn-toolbar .input-group {

  float: left;

}

#custom-html-sr .btn-toolbar > .btn,

#custom-html-sr .btn-toolbar > .btn-group,

#custom-html-sr .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sr .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sr .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sr .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sr .btn-group > .btn:last-child:not(:first-child),

#custom-html-sr .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sr .btn-group > .btn-group {

  float: left;

}

#custom-html-sr .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sr .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sr .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sr .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sr .btn-group .dropdown-toggle:active,

#custom-html-sr .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sr .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sr .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sr .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sr .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sr .btn .caret {

  margin-left: 0;

}

#custom-html-sr .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sr .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sr .btn-group-vertical > .btn,

#custom-html-sr .btn-group-vertical > .btn-group,

#custom-html-sr .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sr .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sr .btn-group-vertical > .btn + .btn,

#custom-html-sr .btn-group-vertical > .btn + .btn-group,

#custom-html-sr .btn-group-vertical > .btn-group + .btn,

#custom-html-sr .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sr .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sr .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sr .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sr .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sr .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sr .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sr .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sr .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sr .btn-group-justified > .btn,

#custom-html-sr .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sr .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sr .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sr [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sr [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sr [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sr [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sr .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sr .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sr .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sr .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sr .input-group-lg > .form-control,

#custom-html-sr .input-group-lg > .input-group-addon,

#custom-html-sr .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sr select.input-group-lg > .form-control,

#custom-html-sr select.input-group-lg > .input-group-addon,

#custom-html-sr select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sr select[multiple].input-group-lg > .form-control,

#custom-html-sr select[multiple].input-group-lg > .input-group-addon,

#custom-html-sr select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sr textarea.input-group-lg > .form-control,

#custom-html-sr textarea.input-group-lg > .input-group-addon,

#custom-html-sr textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sr .input-group-sm > .form-control,

#custom-html-sr .input-group-sm > .input-group-addon,

#custom-html-sr .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sr select.input-group-sm > .form-control,

#custom-html-sr select.input-group-sm > .input-group-addon,

#custom-html-sr select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sr select[multiple].input-group-sm > .form-control,

#custom-html-sr select[multiple].input-group-sm > .input-group-addon,

#custom-html-sr select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sr textarea.input-group-sm > .form-control,

#custom-html-sr textarea.input-group-sm > .input-group-addon,

#custom-html-sr textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sr .input-group .form-control,

#custom-html-sr .input-group-addon,

#custom-html-sr .input-group-btn {

  display: table-cell;

}

#custom-html-sr .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sr .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sr .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sr .input-group-addon,

#custom-html-sr .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sr .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sr .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sr .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sr .input-group-addon input[type=checkbox],

#custom-html-sr .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sr .input-group .form-control:first-child,

#custom-html-sr .input-group-addon:first-child,

#custom-html-sr .input-group-btn:first-child > .btn,

#custom-html-sr .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sr .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sr .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sr .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sr .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sr .input-group .form-control:last-child,

#custom-html-sr .input-group-addon:last-child,

#custom-html-sr .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sr .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sr .input-group-btn:last-child > .btn,

#custom-html-sr .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sr .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sr .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sr .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sr .input-group-btn > .btn {

  position: relative;

}

#custom-html-sr .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sr .input-group-btn > .btn:active,

#custom-html-sr .input-group-btn > .btn:focus,

#custom-html-sr .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sr .input-group-btn:first-child > .btn,

#custom-html-sr .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sr .input-group-btn:last-child > .btn,

#custom-html-sr .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sr .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sr .nav > li {

  position: relative;

  display: block;

}

#custom-html-sr .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sr .nav > li > a:focus,

#custom-html-sr .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sr .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sr .nav > li.disabled > a:focus,

#custom-html-sr .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sr .nav .open > a,

#custom-html-sr .nav .open > a:focus,

#custom-html-sr .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sr .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sr .nav > li > a > img {

  max-width: none;

}

#custom-html-sr .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sr .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sr .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sr .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sr .nav-tabs > li.active > a,

#custom-html-sr .nav-tabs > li.active > a:focus,

#custom-html-sr .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sr .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sr .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sr .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sr .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sr .nav-tabs.nav-justified > .active > a,

#custom-html-sr .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sr .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sr .nav-pills > li {

  float: left;

}

#custom-html-sr .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sr .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sr .nav-pills > li.active > a,

#custom-html-sr .nav-pills > li.active > a:focus,

#custom-html-sr .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sr .nav-stacked > li {

  float: none;

}

#custom-html-sr .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sr .nav-justified {

  width: 100%;

}

#custom-html-sr .nav-justified > li {

  float: none;

}

#custom-html-sr .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sr .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sr .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sr .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sr .nav-tabs-justified > .active > a,

#custom-html-sr .nav-tabs-justified > .active > a:focus,

#custom-html-sr .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sr .tab-content > .tab-pane {

  display: none;

}

#custom-html-sr .tab-content > .active {

  display: block;

}

#custom-html-sr .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sr .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-sr .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sr .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-sr .navbar-fixed-bottom .navbar-collapse,

#custom-html-sr .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sr .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sr .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sr .container-fluid > .navbar-collapse,

#custom-html-sr .container-fluid > .navbar-header,

#custom-html-sr .container > .navbar-collapse,

#custom-html-sr .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sr .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-sr .navbar-fixed-bottom,

#custom-html-sr .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-sr .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sr .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sr .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sr .navbar-brand:focus,

#custom-html-sr .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sr .navbar-brand > img {

  display: block;

}

#custom-html-sr .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sr .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sr .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sr .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-sr .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sr .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sr .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sr .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sr .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sr .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sr .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sr .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-sr .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sr .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-sr .visible-xs {

    display: block !important;

  }

  #custom-html-sr table.visible-xs {

    display: table !important;

  }

  #custom-html-sr tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sr td.visible-xs,

  #custom-html-sr th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-sr .visible-xs-block {

    display: block !important;

  }

  #custom-html-sr .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-sr .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-sr .hidden-xs {

    display: none !important;

  }

  #custom-html-sr .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sr .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-sr section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-sr .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sr .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sr .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sr .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-sr .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sr .tiles .tile:nth-child(1),

  #custom-html-sr .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-sr ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sr ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sr ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-sr .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sr .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sr .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-sr .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-sr .promo-banner form {

    text-align: center;

  }

}

#custom-html-sr .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sr .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sr .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sr .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sr .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sr .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sr .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sr .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sr .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sr .navbar-default .navbar-brand:focus,

#custom-html-sr .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sr .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sr .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sr .navbar-default .navbar-nav > li > a:focus,

#custom-html-sr .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sr .navbar-default .navbar-nav > .active > a,

#custom-html-sr .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sr .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sr .navbar-default .navbar-nav > .disabled > a,

#custom-html-sr .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sr .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sr .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sr .navbar-default .navbar-toggle:focus,

#custom-html-sr .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sr .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sr .navbar-default .navbar-collapse,

#custom-html-sr .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sr .navbar-default .navbar-nav > .open > a,

#custom-html-sr .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sr .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sr .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sr .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sr .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sr .navbar-default .btn-link:focus,

#custom-html-sr .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sr .navbar-default .btn-link[disabled]:focus,

#custom-html-sr .navbar-default .btn-link[disabled]:hover,

#custom-html-sr fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sr fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sr .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sr .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sr .navbar-inverse .navbar-brand:focus,

#custom-html-sr .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sr .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sr .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sr .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sr .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sr .navbar-inverse .navbar-nav > .active > a,

#custom-html-sr .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sr .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sr .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sr .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sr .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sr .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sr .navbar-inverse .navbar-toggle:focus,

#custom-html-sr .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sr .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sr .navbar-inverse .navbar-collapse,

#custom-html-sr .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sr .navbar-inverse .navbar-nav > .open > a,

#custom-html-sr .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sr .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sr .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sr .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sr .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sr .navbar-inverse .btn-link:focus,

#custom-html-sr .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sr .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sr .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sr fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sr fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sr .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sr .breadcrumb > li {

  display: inline-block;

}

#custom-html-sr .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sr .breadcrumb > .active {

  color: #777777;

}

#custom-html-sr .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-sr .pagination > li {

  display: inline;

}

#custom-html-sr .pagination > li > a,

#custom-html-sr .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sr .pagination > li:first-child > a,

#custom-html-sr .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sr .pagination > li:last-child > a,

#custom-html-sr .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sr .pagination > li > a:focus,

#custom-html-sr .pagination > li > a:hover,

#custom-html-sr .pagination > li > span:focus,

#custom-html-sr .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sr .pagination > .active > a,

#custom-html-sr .pagination > .active > a:focus,

#custom-html-sr .pagination > .active > a:hover,

#custom-html-sr .pagination > .active > span,

#custom-html-sr .pagination > .active > span:focus,

#custom-html-sr .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sr .pagination > .disabled > a,

#custom-html-sr .pagination > .disabled > a:focus,

#custom-html-sr .pagination > .disabled > a:hover,

#custom-html-sr .pagination > .disabled > span,

#custom-html-sr .pagination > .disabled > span:focus,

#custom-html-sr .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sr .pagination-lg > li > a,

#custom-html-sr .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sr .pagination-lg > li:first-child > a,

#custom-html-sr .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sr .pagination-lg > li:last-child > a,

#custom-html-sr .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sr .pagination-sm > li > a,

#custom-html-sr .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sr .pagination-sm > li:first-child > a,

#custom-html-sr .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sr .pagination-sm > li:last-child > a,

#custom-html-sr .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sr .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sr .pager li {

  display: inline;

}

#custom-html-sr .pager li > a,

#custom-html-sr .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sr .pager li > a:focus,

#custom-html-sr .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sr .pager .next > a,

#custom-html-sr .pager .next > span {

  float: right;

}

#custom-html-sr .pager .previous > a,

#custom-html-sr .pager .previous > span {

  float: left;

}

#custom-html-sr .pager .disabled > a,

#custom-html-sr .pager .disabled > a:focus,

#custom-html-sr .pager .disabled > a:hover,

#custom-html-sr .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sr .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-sr a.label:focus,

#custom-html-sr a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sr .label:empty {

  display: none;

}

#custom-html-sr .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sr .label-default {

  background-color: #777777;

}

#custom-html-sr .label-default[href]:focus,

#custom-html-sr .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sr .label-primary {

  background-color: #337ab7;

}

#custom-html-sr .label-primary[href]:focus,

#custom-html-sr .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sr .label-success {

  background-color: #5cb85c;

}

#custom-html-sr .label-success[href]:focus,

#custom-html-sr .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sr .label-info {

  background-color: #5bc0de;

}

#custom-html-sr .label-info[href]:focus,

#custom-html-sr .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sr .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sr .label-warning[href]:focus,

#custom-html-sr .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sr .label-danger {

  background-color: #d9534f;

}

#custom-html-sr .label-danger[href]:focus,

#custom-html-sr .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sr .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sr .badge:empty {

  display: none;

}

#custom-html-sr .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sr .btn-group-xs > .btn .badge,

#custom-html-sr .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sr a.badge:focus,

#custom-html-sr a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sr .list-group-item.active > .badge,

#custom-html-sr .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sr .list-group-item > .badge {

  float: right;

}

#custom-html-sr .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sr .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sr .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sr .jumbotron .h1,

#custom-html-sr .jumbotron h1 {

  color: inherit;

}

#custom-html-sr .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sr .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sr .container .jumbotron,

#custom-html-sr .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sr .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sr .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sr .container .jumbotron,

  #custom-html-sr .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sr .jumbotron .h1,

  #custom-html-sr .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-sr .carousel-control .glyphicon-chevron-left,

  #custom-html-sr .carousel-control .glyphicon-chevron-right,

  #custom-html-sr .carousel-control .icon-next,

  #custom-html-sr .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sr .carousel-control .glyphicon-chevron-left,

  #custom-html-sr .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sr .carousel-control .glyphicon-chevron-right,

  #custom-html-sr .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sr .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sr .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sr .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sr .thumbnail a > img,

#custom-html-sr .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sr a.thumbnail.active,

#custom-html-sr a.thumbnail:focus,

#custom-html-sr a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sr .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sr .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sr .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sr .alert .alert-link {

  font-weight: 700;

}

#custom-html-sr .alert > p,

#custom-html-sr .alert > ul {

  margin-bottom: 0;

}

#custom-html-sr .alert > p + p {

  margin-top: 5px;

}

#custom-html-sr .alert-dismissable,

#custom-html-sr .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sr .alert-dismissable .close,

#custom-html-sr .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sr .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sr .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sr .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sr .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sr .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sr .alert-info .alert-link {

  color: #000000;

}

#custom-html-sr .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sr .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sr .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sr .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sr .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sr .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sr .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sr .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sr .progress-bar-striped,

#custom-html-sr .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sr .progress-bar.active,

#custom-html-sr .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sr .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sr .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sr .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sr .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sr .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sr .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sr .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sr .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sr .media {

  margin-top: 15px;

}

#custom-html-sr .media:first-child {

  margin-top: 0;

}

#custom-html-sr .media,

#custom-html-sr .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sr .media-body {

  width: 10000px;

}

#custom-html-sr .media-object {

  display: block;

}

#custom-html-sr .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sr .media-right,

#custom-html-sr .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sr .media-left,

#custom-html-sr .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sr .media-body,

#custom-html-sr .media-left,

#custom-html-sr .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sr .media-middle {

  vertical-align: middle;

}

#custom-html-sr .media-bottom {

  vertical-align: bottom;

}

#custom-html-sr .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sr .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sr .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-sr .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-sr .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sr .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sr a.list-group-item,

#custom-html-sr button.list-group-item {

  color: #555555;

}

#custom-html-sr a.list-group-item .list-group-item-heading,

#custom-html-sr button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sr a.list-group-item:focus,

#custom-html-sr a.list-group-item:hover,

#custom-html-sr button.list-group-item:focus,

#custom-html-sr button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sr button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sr .list-group-item.disabled,

#custom-html-sr .list-group-item.disabled:focus,

#custom-html-sr .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sr .list-group-item.disabled .list-group-item-heading,

#custom-html-sr .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sr .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sr .list-group-item.disabled .list-group-item-text,

#custom-html-sr .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sr .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sr .list-group-item.active,

#custom-html-sr .list-group-item.active:focus,

#custom-html-sr .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sr .list-group-item.active .list-group-item-heading,

#custom-html-sr .list-group-item.active .list-group-item-heading > .small,

#custom-html-sr .list-group-item.active .list-group-item-heading > small,

#custom-html-sr .list-group-item.active:focus .list-group-item-heading,

#custom-html-sr .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sr .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sr .list-group-item.active:hover .list-group-item-heading,

#custom-html-sr .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sr .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sr .list-group-item.active .list-group-item-text,

#custom-html-sr .list-group-item.active:focus .list-group-item-text,

#custom-html-sr .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sr .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sr a.list-group-item-success,

#custom-html-sr button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sr a.list-group-item-success .list-group-item-heading,

#custom-html-sr button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sr a.list-group-item-success:focus,

#custom-html-sr a.list-group-item-success:hover,

#custom-html-sr button.list-group-item-success:focus,

#custom-html-sr button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sr a.list-group-item-success.active,

#custom-html-sr a.list-group-item-success.active:focus,

#custom-html-sr a.list-group-item-success.active:hover,

#custom-html-sr button.list-group-item-success.active,

#custom-html-sr button.list-group-item-success.active:focus,

#custom-html-sr button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sr .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sr a.list-group-item-info,

#custom-html-sr button.list-group-item-info {

  color: #31708f;

}

#custom-html-sr a.list-group-item-info .list-group-item-heading,

#custom-html-sr button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sr a.list-group-item-info:focus,

#custom-html-sr a.list-group-item-info:hover,

#custom-html-sr button.list-group-item-info:focus,

#custom-html-sr button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sr a.list-group-item-info.active,

#custom-html-sr a.list-group-item-info.active:focus,

#custom-html-sr a.list-group-item-info.active:hover,

#custom-html-sr button.list-group-item-info.active,

#custom-html-sr button.list-group-item-info.active:focus,

#custom-html-sr button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sr .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sr a.list-group-item-warning,

#custom-html-sr button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sr a.list-group-item-warning .list-group-item-heading,

#custom-html-sr button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sr a.list-group-item-warning:focus,

#custom-html-sr a.list-group-item-warning:hover,

#custom-html-sr button.list-group-item-warning:focus,

#custom-html-sr button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sr a.list-group-item-warning.active,

#custom-html-sr a.list-group-item-warning.active:focus,

#custom-html-sr a.list-group-item-warning.active:hover,

#custom-html-sr button.list-group-item-warning.active,

#custom-html-sr button.list-group-item-warning.active:focus,

#custom-html-sr button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sr .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sr a.list-group-item-danger,

#custom-html-sr button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sr a.list-group-item-danger .list-group-item-heading,

#custom-html-sr button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sr a.list-group-item-danger:focus,

#custom-html-sr a.list-group-item-danger:hover,

#custom-html-sr button.list-group-item-danger:focus,

#custom-html-sr button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sr a.list-group-item-danger.active,

#custom-html-sr a.list-group-item-danger.active:focus,

#custom-html-sr a.list-group-item-danger.active:hover,

#custom-html-sr button.list-group-item-danger.active,

#custom-html-sr button.list-group-item-danger.active:focus,

#custom-html-sr button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sr .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sr .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sr .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-sr .panel-body {

  padding: 10px 15px;

}

#custom-html-sr .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sr .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sr .panel-title > .small,

#custom-html-sr .panel-title > .small > a,

#custom-html-sr .panel-title > a,

#custom-html-sr .panel-title > small,

#custom-html-sr .panel-title > small > a {

  color: inherit;

}

#custom-html-sr .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sr .panel > .list-group,

#custom-html-sr .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sr .panel > .list-group .list-group-item,

#custom-html-sr .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sr .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sr .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sr .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sr .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sr .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sr .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sr .panel > .panel-collapse > .table,

#custom-html-sr .panel > .table,

#custom-html-sr .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sr .panel > .panel-collapse > .table caption,

#custom-html-sr .panel > .table caption,

#custom-html-sr .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sr .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sr .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sr .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sr .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sr .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sr .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sr .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sr .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sr .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sr .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sr .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sr .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sr .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sr .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sr .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sr .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sr .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sr .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sr .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sr .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sr .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sr .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sr .panel > .panel-body + .table,

#custom-html-sr .panel > .panel-body + .table-responsive,

#custom-html-sr .panel > .table + .panel-body,

#custom-html-sr .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sr .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sr .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sr .panel > .table-bordered,

#custom-html-sr .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sr .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sr .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sr .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sr .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sr .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sr .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sr .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sr .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sr .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sr .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sr .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sr .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sr .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sr .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sr .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sr .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sr .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sr .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sr .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sr .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sr .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sr .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sr .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sr .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sr .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sr .panel-group {

  margin-bottom: 20px;

}

#custom-html-sr .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sr .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sr .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sr .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sr .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sr .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sr .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sr .panel-default {

  border-color: #dddddd;

}

#custom-html-sr .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sr .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sr .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sr .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sr .panel-primary {

  border-color: #337ab7;

}

#custom-html-sr .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sr .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sr .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sr .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sr .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sr .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sr .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sr .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sr .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sr .panel-info {

  border-color: #bce8f1;

}

#custom-html-sr .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sr .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sr .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sr .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sr .panel-warning {

  border-color: #faebcc;

}

#custom-html-sr .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sr .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sr .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sr .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-sr .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sr .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sr .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sr .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sr .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sr .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sr .embed-responsive .embed-responsive-item,

#custom-html-sr .embed-responsive embed,

#custom-html-sr .embed-responsive iframe,

#custom-html-sr .embed-responsive object,

#custom-html-sr .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sr .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sr .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sr .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sr .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sr .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sr .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sr .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sr .close:focus,

#custom-html-sr .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sr button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sr .modal-open {

  overflow: hidden;

}

#custom-html-sr .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sr .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sr .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sr .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sr .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sr .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sr .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sr .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sr .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sr .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sr .modal-header .close {

  margin-top: -2px;

}

#custom-html-sr .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sr .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sr .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sr .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sr .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sr .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sr .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-sr .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sr .tooltip.in {

  opacity: 0.9;

}

#custom-html-sr .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sr .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sr .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sr .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sr .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sr .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sr .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sr .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sr .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sr .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sr .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sr .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sr .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sr .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sr .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sr .popover.top {

  margin-top: -10px;

}

#custom-html-sr .popover.right {

  margin-left: 10px;

}

#custom-html-sr .popover.bottom {

  margin-top: 10px;

}

#custom-html-sr .popover.left {

  margin-left: -10px;

}

#custom-html-sr .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sr .popover-content {

  padding: 9px 14px;

}

#custom-html-sr .popover > .arrow,

#custom-html-sr .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sr .popover > .arrow {

  border-width: 11px;

}

#custom-html-sr .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sr .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sr .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sr .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sr .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sr .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sr .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sr .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sr .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sr .carousel {

  position: relative;

}

#custom-html-sr .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sr .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sr .carousel-inner > .item > a > img,

#custom-html-sr .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sr .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sr .carousel-inner > .item.active.right,

  #custom-html-sr .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sr .carousel-inner > .item.active.left,

  #custom-html-sr .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sr .carousel-inner > .item.active,

  #custom-html-sr .carousel-inner > .item.next.left,

  #custom-html-sr .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sr .carousel-inner > .active,

#custom-html-sr .carousel-inner > .next,

#custom-html-sr .carousel-inner > .prev {

  display: block;

}

#custom-html-sr .carousel-inner > .active {

  left: 0;

}

#custom-html-sr .carousel-inner > .next,

#custom-html-sr .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sr .carousel-inner > .next {

  left: 100%;

}

#custom-html-sr .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sr .carousel-inner > .next.left,

#custom-html-sr .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sr .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sr .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sr .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sr .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sr .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sr .carousel-control:focus,

#custom-html-sr .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sr .carousel-control .glyphicon-chevron-left,

#custom-html-sr .carousel-control .glyphicon-chevron-right,

#custom-html-sr .carousel-control .icon-next,

#custom-html-sr .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sr .carousel-control .glyphicon-chevron-left,

#custom-html-sr .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sr .carousel-control .glyphicon-chevron-right,

#custom-html-sr .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sr .carousel-control .icon-next,

#custom-html-sr .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sr .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sr .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sr .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sr .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-sr .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sr .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sr .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-sr .btn-group-vertical > .btn-group:after,

#custom-html-sr .btn-group-vertical > .btn-group:before,

#custom-html-sr .btn-toolbar:after,

#custom-html-sr .btn-toolbar:before,

#custom-html-sr .clearfix:after,

#custom-html-sr .clearfix:before,

#custom-html-sr .container-fluid:after,

#custom-html-sr .container-fluid:before,

#custom-html-sr .container:after,

#custom-html-sr .container:before,

#custom-html-sr .dl-horizontal dd:after,

#custom-html-sr .dl-horizontal dd:before,

#custom-html-sr .form-horizontal .form-group:after,

#custom-html-sr .form-horizontal .form-group:before,

#custom-html-sr .modal-footer:after,

#custom-html-sr .modal-footer:before,

#custom-html-sr .modal-header:after,

#custom-html-sr .modal-header:before,

#custom-html-sr .nav:after,

#custom-html-sr .nav:before,

#custom-html-sr .navbar-collapse:after,

#custom-html-sr .navbar-collapse:before,

#custom-html-sr .navbar-header:after,

#custom-html-sr .navbar-header:before,

#custom-html-sr .navbar:after,

#custom-html-sr .navbar:before,

#custom-html-sr .pager:after,

#custom-html-sr .pager:before,

#custom-html-sr .panel-body:after,

#custom-html-sr .panel-body:before,

#custom-html-sr .row:after,

#custom-html-sr .row:before {

  display: table;


  content: " ";

}

#custom-html-sr .btn-group-vertical > .btn-group:after,

#custom-html-sr .btn-toolbar:after,

#custom-html-sr .clearfix:after,

#custom-html-sr .container-fluid:after,

#custom-html-sr .container:after,

#custom-html-sr .dl-horizontal dd:after,

#custom-html-sr .form-horizontal .form-group:after,

#custom-html-sr .modal-footer:after,

#custom-html-sr .modal-header:after,

#custom-html-sr .nav:after,

#custom-html-sr .navbar-collapse:after,

#custom-html-sr .navbar-header:after,

#custom-html-sr .navbar:after,

#custom-html-sr .pager:after,

#custom-html-sr .panel-body:after,

#custom-html-sr .row:after {

  clear: both;

}

#custom-html-sr .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sr .pull-right {

  float: right !important;

}

#custom-html-sr .pull-left {

  float: left !important;

}

#custom-html-sr .hide {

  display: none !important;

}

#custom-html-sr .show {

  display: block !important;

}

#custom-html-sr .invisible {

  visibility: hidden;

}

#custom-html-sr .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sr .hidden {

  display: none !important;

}

#custom-html-sr .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sr .visible-lg,

#custom-html-sr .visible-md,

#custom-html-sr .visible-sm,

#custom-html-sr .visible-xs {

  display: none !important;

}

#custom-html-sr .visible-lg-block,

#custom-html-sr .visible-lg-inline,

#custom-html-sr .visible-lg-inline-block,

#custom-html-sr .visible-md-block,

#custom-html-sr .visible-md-inline,

#custom-html-sr .visible-md-inline-block,

#custom-html-sr .visible-sm-block,

#custom-html-sr .visible-sm-inline,

#custom-html-sr .visible-sm-inline-block,

#custom-html-sr .visible-xs-block,

#custom-html-sr .visible-xs-inline,

#custom-html-sr .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sr .visible-sm {

    display: block !important;

  }

  #custom-html-sr table.visible-sm {

    display: table !important;

  }

  #custom-html-sr tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sr td.visible-sm,

  #custom-html-sr th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-sr .visible-sm-block {

    display: block !important;

  }

  #custom-html-sr .visible-sm-inline {

    display: inline !important;

  }


  #custom-html-sr .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-sr .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sr .visible-md {

    display: block !important;

  }

  #custom-html-sr table.visible-md {

    display: table !important;

  }

  #custom-html-sr tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sr td.visible-md,

  #custom-html-sr th.visible-md {

    display: table-cell !important;

  }

  #custom-html-sr .visible-md-block {

    display: block !important;

  }

  #custom-html-sr .visible-md-inline {

    display: inline !important;

  }

  #custom-html-sr .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-sr .hidden-md {

    display: none !important;

  }

}

#custom-html-sr .visible-print {

  display: none !important;

}

#custom-html-sr .visible-print-block {

  display: none !important;

}

#custom-html-sr .visible-print-inline {

  display: none !important;

}

#custom-html-sr .visible-print-inline-block {

  display: none !important;

}

#custom-html-sr .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-sr .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sr .intl-tel-input .hide {

  display: none;

}

#custom-html-sr .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sr .intl-tel-input input,

#custom-html-sr .intl-tel-input input[type=tel],

#custom-html-sr .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sr .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sr .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sr .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sr .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sr .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sr .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sr .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sr .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sr .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-sr .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sr .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sr .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sr .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sr .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sr .intl-tel-input .country-list .country-name,

#custom-html-sr .intl-tel-input .country-list .dial-code,

#custom-html-sr .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sr .intl-tel-input .country-list .country-name,

#custom-html-sr .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sr .intl-tel-input.allow-dropdown input,

#custom-html-sr .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sr .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sr .intl-tel-input.separate-dial-code input,

#custom-html-sr .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sr .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sr .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sr .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sr .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sr .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sr .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sr .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sr .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sr .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sr .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sr .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sr .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sr .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sr .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sr .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sr .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sr .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sr .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-sr .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sr .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sr .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sr .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sr .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-sr .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sr .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sr .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sr .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-sr .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sr .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sr .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sr .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sr .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sr .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sr .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sr .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sr .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sr .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sr .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sr .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sr .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sr .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sr .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sr .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sr .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sr .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sr .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sr .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sr .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sr .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sr .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sr .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sr .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sr .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sr .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sr .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sr .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sr .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sr .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sr .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sr .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sr .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sr .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sr .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sr .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sr .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sr .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sr .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sr .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-sr .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sr .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sr .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sr .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sr .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sr .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sr .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sr .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sr .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sr .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sr .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sr .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sr .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sr .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sr .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sr .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sr .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sr .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-sr .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sr .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sr .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sr .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sr .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sr .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sr .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sr .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sr .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sr .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sr .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sr .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sr .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sr .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sr .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sr .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sr .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sr .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sr .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sr .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sr .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sr .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sr .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sr .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sr .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sr .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sr .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sr .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sr .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sr .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sr .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sr .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sr .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sr .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sr .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sr .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sr .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sr .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sr .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sr .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sr .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sr .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sr .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sr .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sr .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sr .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sr .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sr .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sr .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sr .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sr .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sr .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sr .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-sr .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sr .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sr .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sr .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sr .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sr .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sr .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sr .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sr .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sr .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sr .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sr .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sr .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sr .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sr .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sr .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sr .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sr .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sr .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sr .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sr .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sr .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sr .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sr .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sr .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sr .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sr .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sr .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sr .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sr .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sr .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sr .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sr .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sr .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sr .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sr .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sr .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sr .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sr .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sr .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sr .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sr .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sr .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sr .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sr .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sr .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sr .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sr .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sr .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sr .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sr .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sr .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sr .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sr .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sr .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sr .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sr .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sr .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sr .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sr .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sr .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sr .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sr .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sr .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sr .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sr .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sr .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sr .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sr .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sr .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sr .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sr .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sr .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sr .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sr .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sr .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sr .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sr .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sr .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sr .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sr .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sr .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sr .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sr .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sr .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sr .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sr .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sr .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sr .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sr .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sr .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sr .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sr .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sr .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sr .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sr .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sr .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sr .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sr .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sr .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sr .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sr .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sr .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sr .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sr .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sr .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sr .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sr .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sr .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sr .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sr .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sr .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sr .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sr .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sr .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sr .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sr .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sr .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sr .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sr .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sr .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sr .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sr .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sr .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sr .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sr .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sr .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sr .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sr .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sr .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sr .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sr .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sr .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sr .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sr .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sr .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sr .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sr body,

#custom-html-sr button,

#custom-html-sr input,

#custom-html-sr select,

#custom-html-sr textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sr h1,

#custom-html-sr h2,

#custom-html-sr h3,

#custom-html-sr h4,

#custom-html-sr h5,

#custom-html-sr h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-sr .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sr .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sr .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sr .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sr .navbar-main .navbar-nav > .active > a,

#custom-html-sr .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sr .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sr .navbar-main .navbar-nav > .open > a,

#custom-html-sr .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sr .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sr .navbar-main .navbar-nav > li > a:focus,

#custom-html-sr .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sr #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sr .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-sr .navbar-header {

    float: none;

  }

  #custom-html-sr .navbar-left,

  #custom-html-sr .navbar-right {

    float: none !important;

  }

  #custom-html-sr .navbar-toggle {

    display: block;

  }

  #custom-html-sr .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sr .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sr .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sr .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sr .navbar-nav > li {

    float: none;

  }

  #custom-html-sr .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sr .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-sr .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sr .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sr .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-sr ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sr ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sr ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-sr .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-sr .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sr .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sr .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sr .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sr .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-sr #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sr #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-sr .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sr a.list-group-item.active,

#custom-html-sr a.list-group-item.active:focus,

#custom-html-sr a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sr .dropdown-menu > li > a:focus,

#custom-html-sr .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sr input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sr .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sr body,

#custom-html-sr html {

  height: 100%;

}

#custom-html-sr section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sr section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sr section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sr section#header .search {

  margin: 20px 0;

}

#custom-html-sr section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sr section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sr section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sr section#main-content {

  margin-bottom: 60px;

}

#custom-html-sr .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sr section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sr section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sr section#footer {

    line-height: 32px;

  }

}

#custom-html-sr section#footer .back-to-top {

  float: right;

}

#custom-html-sr section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sr .adminreturndiv {

  display: none !important;

}

#custom-html-sr .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sr .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sr .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sr .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sr .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sr .navbar-main .navbar-toggle:focus,

#custom-html-sr .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sr .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sr .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-sr div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sr div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sr div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sr div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sr div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sr .h1,

  #custom-html-sr h1 {

    font-size: 26px;

  }

  #custom-html-sr .h2,

  #custom-html-sr h2 {

    font-size: 20px;

  }

  #custom-html-sr .h3,

  #custom-html-sr h3 {

    font-size: 16px;

  }

  #custom-html-sr .h4,

  #custom-html-sr h4 {

    font-size: 14px;

  }

  #custom-html-sr .h5,

  #custom-html-sr h5 {

    font-size: 12px;

  }

  #custom-html-sr .h6,

  #custom-html-sr h6 {

    font-size: 11px;

  }

  #custom-html-sr div.header-lined small {

    display: none;

  }

  #custom-html-sr .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-sr .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sr .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sr .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sr .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-sr div.credit-card {

    max-width: 250px;

  }

  #custom-html-sr div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sr div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sr div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sr div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sr div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-sr .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sr .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sr .margin-10 {

  margin: 10px;

}

#custom-html-sr .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sr .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sr .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sr .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sr .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sr .input-inline {

  display: inline-block;

}

#custom-html-sr .input-inline-100 {

  width: 100px;

}

#custom-html-sr .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-sr .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sr .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sr .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-sr i.icon-rss {

  color: #ff6600;

}

#custom-html-sr section#main-menu {

  background-color: #000000;

}

#custom-html-sr section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sr section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sr section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sr section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sr section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sr section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sr section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sr section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sr section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sr section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sr section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sr section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-sr .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-sr .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-sr .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sr .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sr .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-sr #stepResults {

    font-size: 14px;

  }

  #custom-html-sr #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sr div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-sr .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sr .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sr .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sr .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sr .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sr .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sr .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sr .home-shortcuts li span {

  display: none;

}

#custom-html-sr .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sr .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-sr .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sr .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sr .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sr .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sr .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sr .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sr .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sr .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sr .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sr .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sr .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sr .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sr .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sr .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sr .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sr .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sr .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sr .tiles .tile a {

  text-decoration: none;

}

#custom-html-sr .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sr .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sr .tiles .tile:last-child {

  border: 0;

}

#custom-html-sr .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sr .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sr .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sr .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sr .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sr .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sr .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sr .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sr .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sr .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sr .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sr .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sr .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sr .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sr .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sr .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sr .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sr .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sr .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sr .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sr .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sr .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sr .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sr .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sr .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sr .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sr .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sr .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sr .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sr .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sr .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sr .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sr .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sr .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sr .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sr .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sr .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sr .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sr .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sr .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sr .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sr ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sr ul.top-nav > li,

#custom-html-sr ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sr ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sr ul.top-nav > li:active > a,

#custom-html-sr ul.top-nav > li:focus > a,

#custom-html-sr ul.top-nav > li:hover > a,

#custom-html-sr ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sr ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sr ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sr ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sr ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-sr div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sr div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sr div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sr div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sr div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sr div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sr .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sr .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-sr .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sr .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-sr .domain-check-availability {

  width: 100px;

}

#custom-html-sr .domain-step-options {

  min-height: 300px;

}

#custom-html-sr .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sr .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sr .domain-checker-invalid,

#custom-html-sr .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sr div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sr .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sr .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sr .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sr a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sr .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sr .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sr .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-sr .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sr .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sr .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sr .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sr .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sr .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sr .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-sr .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sr .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sr .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sr .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sr .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sr .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sr .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sr .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sr .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sr .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sr .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sr .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sr .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sr .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sr div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sr div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sr div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sr .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sr .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sr .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sr .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sr div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sr div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-sr .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sr .product-status-pending {

  background-color: #f89406;

}

#custom-html-sr .product-status-active {

  background-color: #46a546;

}

#custom-html-sr .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sr .product-status-cancelled,

#custom-html-sr .product-status-terminated {

  background-color: #666666;

}

#custom-html-sr .product-status-fraud {

  background-color: #000000;

}

#custom-html-sr .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sr div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sr .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sr .ssl-inactive {

  cursor: pointer;

}

#custom-html-sr .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sr .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sr .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sr .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sr .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sr .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sr .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sr .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sr .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-sr .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sr .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sr .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sr .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sr .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sr .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sr table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sr .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sr table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sr .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-sr table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sr .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sr .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sr .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sr table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sr table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sr table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sr .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sr .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sr .status-pending {

  color: #d9534f;

}

#custom-html-sr .status-pending.transfer {

  color: #a68500;

}

#custom-html-sr .status-active,

#custom-html-sr .status-completed,

#custom-html-sr .status-open {

  color: #3fad46;

}

#custom-html-sr .status-suspended {

  color: #f0ad4e;

}

#custom-html-sr .status-customer-reply {

  color: #ff6600;

}

#custom-html-sr .status-answered,

#custom-html-sr .status-fraud {

  color: #000000;

}

#custom-html-sr .status-expired,

#custom-html-sr .status-transferred.away {

  color: #004258;

}

#custom-html-sr .status-cancelled {

  color: #87939f;

}

#custom-html-sr .status-terminated {

  color: #666666;

}

#custom-html-sr .status-onhold {

  color: #224488;

}

#custom-html-sr .status-inprogress {

  color: #cc0000;

}

#custom-html-sr .status-closed {

  color: #888888;

}

#custom-html-sr .status-paid {

  color: #498302;

}

#custom-html-sr .status-unpaid {

  color: #ed3e48;

}

#custom-html-sr .status-collections {

  color: #9a141e;

}

#custom-html-sr .status-refunded {

  color: #319fc3;

}

#custom-html-sr .status-delivered {

  color: #224488;

}

#custom-html-sr .status-accepted {

  color: #498302;

}

#custom-html-sr .status-dead,

#custom-html-sr .status-lost {

  color: #000000;

}

#custom-html-sr .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sr .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sr .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sr .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sr .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sr .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sr .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-sr .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-sr .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sr .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sr .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sr .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sr .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sr .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sr .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sr .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sr .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sr .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sr .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sr .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sr .ticket-reply .rating,

#custom-html-sr .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sr .ticket-reply .rating span.star,

#custom-html-sr .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sr .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sr .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sr .ticket-reply .rating span.star:before,

#custom-html-sr .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sr .ticket-reply .rating span.star:hover:before,

#custom-html-sr .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sr .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sr .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sr .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sr .ticket-reply .clear {

  clear: both;

}

#custom-html-sr .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sr .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sr .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sr .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sr .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sr .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sr .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sr .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sr .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sr .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sr .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sr .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sr .popover-user-notifications ul li i.far,

#custom-html-sr .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sr .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sr .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sr .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sr .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sr .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sr .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sr .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sr .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sr .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sr div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sr div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sr div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sr div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sr div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sr div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sr div.credit-card div.end {

  clear: both;

}

#custom-html-sr .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sr .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sr .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sr .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sr .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sr .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sr div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sr div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sr div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sr div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sr div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sr div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sr .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-sr div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sr div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sr div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sr #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sr .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sr .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sr .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sr .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sr .kb-category a small {

  color: #888888;

}

#custom-html-sr .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sr .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sr .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sr .kbarticles a.admin-inline-edit,

#custom-html-sr .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sr h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sr .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sr .kb-article-title h2 {

  margin: 0;

}

#custom-html-sr .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sr .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sr .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sr .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sr .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sr .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sr .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sr .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sr #stepResults {

  font-size: 20px;

}

#custom-html-sr #stepResults .label {

  font-size: 20px;

}

#custom-html-sr h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sr h3.with-badge i,

#custom-html-sr h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sr h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-sr .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sr .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sr a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sr a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sr .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sr .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sr .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sr .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sr .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sr .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sr .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sr .login-popover {

  font-size: 12px;

}

#custom-html-sr .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sr .login-popover hr {

  margin: 5px 0;

}

#custom-html-sr tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sr tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sr .error-container {

  text-align: center;

}

#custom-html-sr .error-container h1 {

  margin-top: 40px;

}

#custom-html-sr .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sr .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sr .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sr .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sr .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sr #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sr #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sr #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sr .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-sr #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sr #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sr #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sr #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sr .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sr .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sr .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sr .email-verification .btn:active,

#custom-html-sr .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sr .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sr .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sr .email-verification .far,

#custom-html-sr .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-sr .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sr .email-verification.success .far,

#custom-html-sr .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sr .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sr .email-verification.failed .far,

#custom-html-sr .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sr .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-sr .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sr .md-editor > .md-preview,

#custom-html-sr .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sr div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sr .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sr .small-font {

  font-size: 0.9em;

}

#custom-html-sr .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sr .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sr .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sr .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sr .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sr .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sr .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sr .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sr .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sr .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sr .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sr .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sr .panel-heading i.fab,

#custom-html-sr .panel-heading i.fal,

#custom-html-sr .panel-heading i.far,

#custom-html-sr .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sr .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sr .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sr .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sr .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sr .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sr .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sr .panel-sidebar .list-group-item.disabled,

#custom-html-sr .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sr .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sr .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sr .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sr .panel-sidebar a.list-group-item.active,

#custom-html-sr .panel-sidebar a.list-group-item.active:focus,

#custom-html-sr .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sr .panel-sidebar a.list-group-item.active i,

#custom-html-sr .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sr .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sr .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sr .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sr .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sr .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sr .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sr .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sr .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sr .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sr .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sr .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sr .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sr .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sr .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sr .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-sr .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sr .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sr .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sr .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sr .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sr .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sr .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sr .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sr .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sr .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sr .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sr .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sr .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-sr .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sr .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sr .promo-banner p {

  margin: 5px 0;

}

#custom-html-sr .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sr .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-sr .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sr .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sr .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;


  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sr .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sr .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sr .promo-banner-slim {

  padding: 10px;

}

#custom-html-sr .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sr .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sr .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sr .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sr .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sr .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sr .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sr .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sr .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sr .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sr .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sr .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sr .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sr .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sr .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sr .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sr .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sr .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sr .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sr .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sr .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sr .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sr .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sr .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sr .panel-mc-sso .btn,

#custom-html-sr .panel-mc-sso .form-control,

#custom-html-sr .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sr .panel-mc-sso small {

  display: block;

}

#custom-html-sr .social-signin-btns {

  text-align: center;

}

#custom-html-sr .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sr .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sr .btn-social i.far,

#custom-html-sr .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-facebook.active,

#custom-html-sr .btn-facebook:active,

#custom-html-sr .btn-facebook:focus,

#custom-html-sr .btn-facebook:hover,

#custom-html-sr .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-facebook.active,

#custom-html-sr .btn-facebook:active,

#custom-html-sr .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sr .btn-facebook.disabled,

#custom-html-sr .btn-facebook.disabled.active,

#custom-html-sr .btn-facebook.disabled:active,

#custom-html-sr .btn-facebook.disabled:focus,

#custom-html-sr .btn-facebook.disabled:hover,

#custom-html-sr .btn-facebook[disabled],

#custom-html-sr .btn-facebook[disabled].active,

#custom-html-sr .btn-facebook[disabled]:active,

#custom-html-sr .btn-facebook[disabled]:focus,

#custom-html-sr .btn-facebook[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-facebook,

#custom-html-sr fieldset[disabled] .btn-facebook.active,

#custom-html-sr fieldset[disabled] .btn-facebook:active,

#custom-html-sr fieldset[disabled] .btn-facebook:focus,

#custom-html-sr fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-google.active,

#custom-html-sr .btn-google:active,

#custom-html-sr .btn-google:focus,

#custom-html-sr .btn-google:hover,

#custom-html-sr .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-google.active,

#custom-html-sr .btn-google:active,

#custom-html-sr .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sr .btn-google-plus.disabled.active,

#custom-html-sr .btn-google-plus.disabled:active,

#custom-html-sr .btn-google-plus.disabled:focus,

#custom-html-sr .btn-google-plus[disabled].active,

#custom-html-sr .btn-google-plus[disabled]:active,

#custom-html-sr .btn-google-plus[disabled]:focus,

#custom-html-sr .btn-google-plus[disabled]:hover,

#custom-html-sr .btn-google.disabled,

#custom-html-sr .btn-google.disabled:hover,

#custom-html-sr .btn-google[disabled],

#custom-html-sr fieldset[disabled] .btn-google,

#custom-html-sr fieldset[disabled] .btn-google-plus.active,

#custom-html-sr fieldset[disabled] .btn-google-plus:active,

#custom-html-sr fieldset[disabled] .btn-google-plus:focus,

#custom-html-sr fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-twitter.active,

#custom-html-sr .btn-twitter:active,

#custom-html-sr .btn-twitter:focus,

#custom-html-sr .btn-twitter:hover,

#custom-html-sr .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-twitter.active,

#custom-html-sr .btn-twitter:active,

#custom-html-sr .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sr .btn-twitter.disabled,

#custom-html-sr .btn-twitter.disabled.active,

#custom-html-sr .btn-twitter.disabled:active,

#custom-html-sr .btn-twitter.disabled:focus,

#custom-html-sr .btn-twitter.disabled:hover,

#custom-html-sr .btn-twitter[disabled],

#custom-html-sr .btn-twitter[disabled].active,

#custom-html-sr .btn-twitter[disabled]:active,

#custom-html-sr .btn-twitter[disabled]:focus,

#custom-html-sr .btn-twitter[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-twitter,

#custom-html-sr fieldset[disabled] .btn-twitter.active,

#custom-html-sr fieldset[disabled] .btn-twitter:active,

#custom-html-sr fieldset[disabled] .btn-twitter:focus,

#custom-html-sr fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .providerPreLinking {

  min-height: 52px;

}

#custom-html-sr .providerLinkingFeedback {

  display: none;

}

#custom-html-sr #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sr #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sr #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sr #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sr .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sr #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sr #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sr #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sr #registration .field,

#custom-html-sr #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sr #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sr #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sr #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sr #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sr #registration textarea.field {

  height: auto;

}

#custom-html-sr #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sr #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sr #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sr #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sr #registration .field[disabled],

#custom-html-sr #registration .field[readonly],

#custom-html-sr #registration .form-control[disabled],

#custom-html-sr #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sr #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-sr .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sr .upgrade .product-to-be-upgraded h4,

#custom-html-sr .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sr .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sr .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sr .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sr .upgrade .products .product .current,

#custom-html-sr .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sr .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sr .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sr .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-sr .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sr .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sr .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sr .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sr .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sr .upgrade .products .far,

#custom-html-sr .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sr .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sr .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sr .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sr .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sr .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sr .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .bootstrap-switch input[type=checkbox],

#custom-html-sr .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sr .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sr .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sr .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sr .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sr .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sr .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sr .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sr .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sr .md-editor .md-footer,

#custom-html-sr .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sr .md-editor > .md-header {

  margin: 0;

}

#custom-html-sr .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sr .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sr .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sr .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sr .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sr .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sr .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sr .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-input,

#custom-html-sr .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sr .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sr .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sr .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sr .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sr .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sr .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sr .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sr .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sr .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sr table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sr table.dataTable td,

#custom-html-sr table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sr table.dataTable td.dataTables_empty,

#custom-html-sr table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sr table.dataTable.nowrap td,

#custom-html-sr table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sr table.dataTable thead > tr > td.sorting,

#custom-html-sr table.dataTable thead > tr > td.sorting_asc,

#custom-html-sr table.dataTable thead > tr > td.sorting_desc,

#custom-html-sr table.dataTable thead > tr > th.sorting,

#custom-html-sr table.dataTable thead > tr > th.sorting_asc,

#custom-html-sr table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sr table.dataTable thead > tr > td:active,

#custom-html-sr table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sr table.dataTable thead .sorting,

#custom-html-sr table.dataTable thead .sorting_asc,

#custom-html-sr table.dataTable thead .sorting_asc_disabled,

#custom-html-sr table.dataTable thead .sorting_desc,

#custom-html-sr table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sr table.dataTable thead .sorting:after,

#custom-html-sr table.dataTable thead .sorting_asc:after,

#custom-html-sr table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sr table.dataTable thead .sorting_desc:after,

#custom-html-sr table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sr table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sr table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sr table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sr table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sr table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sr div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sr div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sr div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sr div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sr div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sr div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sr div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sr div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-sr table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sr table.dataTable.table-condensed .sorting:after,

#custom-html-sr table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sr table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sr table.table-bordered.dataTable td,

#custom-html-sr table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sr table.table-bordered.dataTable td:last-child,

#custom-html-sr table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sr table.table-bordered.dataTable tbody td,

#custom-html-sr table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sr div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sr div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sr div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-sr div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sr table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sr table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sr table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sr table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sr table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sr table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sr table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sr table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sr table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sr table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sr table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sr table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sr table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sr table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sr table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sr div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sr div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sr div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sr div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sr div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sr div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-sr div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sr .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sr .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sr .multiselect-container > li {

  padding: 0;

}

#custom-html-sr .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sr .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sr .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sr .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sr .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sr .multiselect-container > li > a > label.checkbox,

#custom-html-sr .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sr .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sr .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sr .form-inline .multiselect-container label.checkbox,

#custom-html-sr .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sr .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sr .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-sr html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-sr body {

  margin: 0;

}

#custom-html-sr article,

#custom-html-sr aside,

#custom-html-sr details,

#custom-html-sr figcaption,

#custom-html-sr figure,

#custom-html-sr footer,

#custom-html-sr header,

#custom-html-sr hgroup,

#custom-html-sr main,

#custom-html-sr menu,

#custom-html-sr nav,

#custom-html-sr section,

#custom-html-sr summary {

  display: block;

}

#custom-html-sr audio,

#custom-html-sr canvas,

#custom-html-sr progress,

#custom-html-sr video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sr audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sr [hidden],

#custom-html-sr template {

  display: none;

}

#custom-html-sr a {

  background-color: transparent;

}

#custom-html-sr a:active,

#custom-html-sr a:hover {

  outline: 0;

}

#custom-html-sr abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sr b,

#custom-html-sr strong {

  font-weight: 700;

}

#custom-html-sr dfn {

  font-style: italic;

}

#custom-html-sr h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sr mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sr small {

  font-size: 80%;

}

#custom-html-sr sub,

#custom-html-sr sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sr sup {

  top: -0.5em;

}

#custom-html-sr sub {

  bottom: -0.25em;

}

#custom-html-sr img {

  border: 0;

}

#custom-html-sr svg:not(:root) {

  overflow: hidden;

}

#custom-html-sr figure {

  margin: 1em 40px;

}

#custom-html-sr hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sr pre {

  overflow: auto;

}

#custom-html-sr code,

#custom-html-sr kbd,

#custom-html-sr pre,

#custom-html-sr samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-sr button,

#custom-html-sr input,

#custom-html-sr optgroup,

#custom-html-sr select,

#custom-html-sr textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sr button {

  overflow: visible;

}

#custom-html-sr button,

#custom-html-sr select {

  text-transform: none;

}

#custom-html-sr button,

#custom-html-sr html input[type=button],

#custom-html-sr input[type=reset],

#custom-html-sr input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sr button[disabled],

#custom-html-sr html input[disabled] {

  cursor: default;

}

#custom-html-sr button::-moz-focus-inner,

#custom-html-sr input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sr input {

  line-height: normal;

}

#custom-html-sr input[type=checkbox],

#custom-html-sr input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-sr input[type=number]::-webkit-inner-spin-button,

#custom-html-sr input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sr input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-sr input[type=search]::-webkit-search-cancel-button,

#custom-html-sr input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sr fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-sr legend {

  padding: 0;

  border: 0;

}

#custom-html-sr textarea {

  overflow: auto;

}

#custom-html-sr optgroup {

  font-weight: 700;

}

#custom-html-sr table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-sr td,

#custom-html-sr th {

  padding: 0;

}

@media print {

  #custom-html-sr *,

  #custom-html-sr :after,

  #custom-html-sr :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sr a,

  #custom-html-sr a:visited {

    text-decoration: underline;

  }

  #custom-html-sr a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-sr abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sr a[href^="#"]:after,

  #custom-html-sr a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sr blockquote,

  #custom-html-sr pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sr thead {

    display: table-header-group;

  }

  #custom-html-sr img,

  #custom-html-sr tr {

    page-break-inside: avoid;

  }

  #custom-html-sr img {

    max-width: 100% !important;

  }

  #custom-html-sr h2,

  #custom-html-sr h3,

  #custom-html-sr p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sr h2,

  #custom-html-sr h3 {

    page-break-after: avoid;

  }

  #custom-html-sr .navbar {

    display: none;

  }

  #custom-html-sr .btn > .caret,

  #custom-html-sr .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sr .label {

    border: 1px solid #000000;

  }

  #custom-html-sr .table {

    border-collapse: collapse !important;

  }

  #custom-html-sr .table td,

  #custom-html-sr .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sr .table-bordered td,

  #custom-html-sr .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sr .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sr .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sr .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sr .glyphicon-eur:before,

#custom-html-sr .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sr .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sr .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sr .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sr .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sr .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sr .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sr .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sr .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sr .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sr .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sr .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sr .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sr .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sr .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sr .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sr .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sr .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sr .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sr .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sr .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sr .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sr .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sr .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sr .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sr .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sr .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sr .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sr .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sr .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sr .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sr .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sr .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sr .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sr .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sr .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sr .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sr .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sr .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sr .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sr .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sr .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sr .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sr .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sr .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sr .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sr .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sr .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sr .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sr .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sr .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sr .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sr .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sr .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sr .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sr .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sr .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sr .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sr .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sr .glyphicon-list:before {

  content: "\e056";

}

#custom-html-sr .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sr .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sr .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sr .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sr .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sr .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sr .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sr .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sr .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sr .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sr .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sr .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sr .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sr .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sr .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sr .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sr .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sr .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sr .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sr .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sr .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sr .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sr .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sr .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sr .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-sr .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sr .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sr .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sr .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sr .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sr .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sr .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sr .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sr .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sr .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sr .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sr .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sr .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sr .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sr .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sr .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sr .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sr .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sr .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sr .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sr .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sr .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sr .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sr .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sr .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sr .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sr .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sr .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sr .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sr .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sr .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sr .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sr .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sr .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sr .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sr .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sr .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sr .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sr .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sr .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sr .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sr .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sr .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sr .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sr .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sr .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sr .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sr .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sr .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sr .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sr .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sr .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sr .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sr .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sr .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sr .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sr .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sr .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sr .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sr .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sr .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sr .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sr .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sr .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sr .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sr .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sr .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sr .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sr .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sr .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sr .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sr .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sr .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sr .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-sr .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sr .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sr .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sr .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sr .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sr .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sr .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sr .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sr .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sr .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sr .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sr .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sr .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sr .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sr .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sr .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sr .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sr .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sr .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sr .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sr .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sr .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sr .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sr .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sr .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sr .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sr .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sr .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sr .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sr .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sr .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sr .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sr .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sr .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sr .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sr .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sr .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sr .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sr .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sr .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sr .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sr .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sr .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sr .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sr .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sr .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sr .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sr .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sr .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sr .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sr .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sr .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sr .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sr .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sr .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sr .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sr .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sr .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sr .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sr .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sr .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sr .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sr .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sr .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sr .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sr .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sr .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sr .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sr .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sr .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sr .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sr .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sr .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sr .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sr .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sr .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sr .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sr .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sr .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sr .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sr .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sr .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sr .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sr .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sr .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sr .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-sr .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sr .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sr .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sr .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sr .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sr .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sr .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sr .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sr .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sr .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sr .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sr .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sr .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sr .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sr .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sr * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sr :after,

#custom-html-sr :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sr html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sr body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-sr button,

#custom-html-sr input,

#custom-html-sr select,

#custom-html-sr textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sr a {

  color: #000;

  text-decoration: none;

}

#custom-html-sr a:focus,

#custom-html-sr a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sr a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sr figure {

  margin: 0;

}

#custom-html-sr img {

  vertical-align: middle;

}

#custom-html-sr .carousel-inner > .item > a > img,

#custom-html-sr .carousel-inner > .item > img,

#custom-html-sr .img-responsive,

#custom-html-sr .thumbnail a > img,

#custom-html-sr .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sr .img-rounded {

  border-radius: 6px;

}

#custom-html-sr .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sr .img-circle {

  border-radius: 50%;

}

#custom-html-sr hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sr .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sr .sr-only-focusable:active,

#custom-html-sr .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sr [role=button] {

  cursor: pointer;

}

#custom-html-sr .h1,

#custom-html-sr .h2,

#custom-html-sr .h3,

#custom-html-sr .h4,

#custom-html-sr .h5,

#custom-html-sr .h6,

#custom-html-sr h1,

#custom-html-sr h2,

#custom-html-sr h3,

#custom-html-sr h4,

#custom-html-sr h5,

#custom-html-sr h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sr .h1 .small,

#custom-html-sr .h1 small,

#custom-html-sr .h2 .small,

#custom-html-sr .h2 small,

#custom-html-sr .h3 .small,

#custom-html-sr .h3 small,

#custom-html-sr .h4 .small,

#custom-html-sr .h4 small,

#custom-html-sr .h5 .small,

#custom-html-sr .h5 small,

#custom-html-sr .h6 .small,

#custom-html-sr .h6 small,

#custom-html-sr h1 .small,

#custom-html-sr h1 small,

#custom-html-sr h2 .small,

#custom-html-sr h2 small,

#custom-html-sr h3 .small,

#custom-html-sr h3 small,

#custom-html-sr h4 .small,

#custom-html-sr h4 small,

#custom-html-sr h5 .small,

#custom-html-sr h5 small,

#custom-html-sr h6 .small,

#custom-html-sr h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sr .h1,

#custom-html-sr .h2,

#custom-html-sr .h3,

#custom-html-sr h1,

#custom-html-sr h2,

#custom-html-sr h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sr .h1 .small,

#custom-html-sr .h1 small,

#custom-html-sr .h2 .small,

#custom-html-sr .h2 small,

#custom-html-sr .h3 .small,

#custom-html-sr .h3 small,

#custom-html-sr h1 .small,

#custom-html-sr h1 small,

#custom-html-sr h2 .small,

#custom-html-sr h2 small,

#custom-html-sr h3 .small,

#custom-html-sr h3 small {

  font-size: 65%;

}

#custom-html-sr .h4,

#custom-html-sr .h5,

#custom-html-sr .h6,

#custom-html-sr h4,

#custom-html-sr h5,

#custom-html-sr h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sr .h4 .small,

#custom-html-sr .h4 small,

#custom-html-sr .h5 .small,

#custom-html-sr .h5 small,

#custom-html-sr .h6 .small,

#custom-html-sr .h6 small,

#custom-html-sr h4 .small,

#custom-html-sr h4 small,

#custom-html-sr h5 .small,

#custom-html-sr h5 small,

#custom-html-sr h6 .small,

#custom-html-sr h6 small {

  font-size: 75%;

}

#custom-html-sr .h1,

#custom-html-sr h1 {

  font-size: 36px;

}

#custom-html-sr .h2,

#custom-html-sr h2 {

  font-size: 30px;

}

#custom-html-sr .h3,

#custom-html-sr h3 {

  font-size: 24px;

}

#custom-html-sr .h4,

#custom-html-sr h4 {

  font-size: 18px;

}

#custom-html-sr .h5,

#custom-html-sr h5 {

  font-size: 14px;

}

#custom-html-sr .h6,

#custom-html-sr h6 {

  font-size: 12px;

}

#custom-html-sr p {

  margin: 0 0 10px;

}

#custom-html-sr .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sr .lead {

    font-size: 21px;

  }

}

#custom-html-sr .small,

#custom-html-sr small {

  font-size: 85%;

}

#custom-html-sr .mark,

#custom-html-sr mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sr .text-left {

  text-align: left;

}

#custom-html-sr .text-right {

  text-align: right;

}

#custom-html-sr .text-center {

  text-align: center;

}

#custom-html-sr .text-justify {

  text-align: justify;

}

#custom-html-sr .text-nowrap {

  white-space: nowrap;

}

#custom-html-sr .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sr .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sr .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sr .text-muted {

  color: #777777;

}

#custom-html-sr .text-primary {

  color: #000000;

}

#custom-html-sr a.text-primary:focus,

#custom-html-sr a.text-primary:hover {

  color: #000000;

}

#custom-html-sr .text-success {

  color: #3c763d;

}

#custom-html-sr a.text-success:focus,

#custom-html-sr a.text-success:hover {

  color: #2b542c;

}

#custom-html-sr .text-info {

  color: #31708f;

}

#custom-html-sr a.text-info:focus,

#custom-html-sr a.text-info:hover {

  color: #000000;

}

#custom-html-sr .text-warning {

  color: #8a6d3b;

}

#custom-html-sr a.text-warning:focus,

#custom-html-sr a.text-warning:hover {

  color: #66512c;

}

#custom-html-sr .text-danger {

  color: #a94442;

}

#custom-html-sr a.text-danger:focus,

#custom-html-sr a.text-danger:hover {

  color: #843534;

}

#custom-html-sr .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-sr a.bg-primary:focus,

#custom-html-sr a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sr .bg-success {

  background-color: #dff0d8;

}

#custom-html-sr a.bg-success:focus,

#custom-html-sr a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sr .bg-info {

  background-color: #d9edf7;

}

#custom-html-sr a.bg-info:focus,

#custom-html-sr a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sr .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sr a.bg-warning:focus,

#custom-html-sr a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sr .bg-danger {

  background-color: #f2dede;

}

#custom-html-sr a.bg-danger:focus,

#custom-html-sr a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sr .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sr ol,

#custom-html-sr ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sr ol ol,

#custom-html-sr ol ul,

#custom-html-sr ul ol,

#custom-html-sr ul ul {

  margin-bottom: 0;

}

#custom-html-sr .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sr .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sr .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sr dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sr dd,

#custom-html-sr dt {

  line-height: 1.42857143;

}

#custom-html-sr dt {

  font-weight: 700;

}

#custom-html-sr dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sr .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sr .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-sr abbr[data-original-title],

#custom-html-sr abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sr .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sr blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sr blockquote ol:last-child,

#custom-html-sr blockquote p:last-child,

#custom-html-sr blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sr blockquote .small,

#custom-html-sr blockquote footer,

#custom-html-sr blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sr blockquote .small:before,

#custom-html-sr blockquote footer:before,

#custom-html-sr blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sr .blockquote-reverse,

#custom-html-sr blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sr .blockquote-reverse .small:before,

#custom-html-sr .blockquote-reverse footer:before,

#custom-html-sr .blockquote-reverse small:before,

#custom-html-sr blockquote.pull-right .small:before,

#custom-html-sr blockquote.pull-right footer:before,

#custom-html-sr blockquote.pull-right small:before {

  content: '';

}

#custom-html-sr .blockquote-reverse .small:after,

#custom-html-sr .blockquote-reverse footer:after,

#custom-html-sr .blockquote-reverse small:after,

#custom-html-sr blockquote.pull-right .small:after,

#custom-html-sr blockquote.pull-right footer:after,

#custom-html-sr blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sr address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sr code,

#custom-html-sr kbd,

#custom-html-sr pre,

#custom-html-sr samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-sr code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sr kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sr kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sr pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sr pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sr .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sr .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-sr .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-sr .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sr .container {

    width: 1170px;

  }

}

#custom-html-sr .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sr .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sr .col-lg-1,

#custom-html-sr .col-lg-10,

#custom-html-sr .col-lg-11,

#custom-html-sr .col-lg-12,

#custom-html-sr .col-lg-2,

#custom-html-sr .col-lg-3,

#custom-html-sr .col-lg-4,

#custom-html-sr .col-lg-5,

#custom-html-sr .col-lg-6,

#custom-html-sr .col-lg-7,

#custom-html-sr .col-lg-8,

#custom-html-sr .col-lg-9,

#custom-html-sr .col-md-1,

#custom-html-sr .col-md-10,

#custom-html-sr .col-md-11,

#custom-html-sr .col-md-12,

#custom-html-sr .col-md-2,

#custom-html-sr .col-md-3,

#custom-html-sr .col-md-4,

#custom-html-sr .col-md-5,

#custom-html-sr .col-md-6,

#custom-html-sr .col-md-7,

#custom-html-sr .col-md-8,

#custom-html-sr .col-md-9,

#custom-html-sr .col-sm-1,

#custom-html-sr .col-sm-10,

#custom-html-sr .col-sm-11,

#custom-html-sr .col-sm-12,

#custom-html-sr .col-sm-2,

#custom-html-sr .col-sm-3,

#custom-html-sr .col-sm-4,

#custom-html-sr .col-sm-5,

#custom-html-sr .col-sm-6,

#custom-html-sr .col-sm-7,

#custom-html-sr .col-sm-8,

#custom-html-sr .col-sm-9,

#custom-html-sr .col-xs-1,

#custom-html-sr .col-xs-10,

#custom-html-sr .col-xs-11,

#custom-html-sr .col-xs-12,

#custom-html-sr .col-xs-2,

#custom-html-sr .col-xs-3,

#custom-html-sr .col-xs-4,

#custom-html-sr .col-xs-5,

#custom-html-sr .col-xs-6,

#custom-html-sr .col-xs-7,

#custom-html-sr .col-xs-8,

#custom-html-sr .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sr .col-xs-1,

#custom-html-sr .col-xs-10,

#custom-html-sr .col-xs-11,

#custom-html-sr .col-xs-12,

#custom-html-sr .col-xs-2,

#custom-html-sr .col-xs-3,

#custom-html-sr .col-xs-4,

#custom-html-sr .col-xs-5,

#custom-html-sr .col-xs-6,

#custom-html-sr .col-xs-7,

#custom-html-sr .col-xs-8,

#custom-html-sr .col-xs-9 {

  float: left;

}

#custom-html-sr .col-xs-12 {

  width: 100%;

}

#custom-html-sr .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sr .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sr .col-xs-9 {

  width: 75%;

}

#custom-html-sr .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sr .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sr .col-xs-6 {

  width: 50%;

}

#custom-html-sr .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sr .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sr .col-xs-3 {

  width: 25%;

}

#custom-html-sr .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sr .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sr .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sr .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sr .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sr .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sr .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sr .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sr .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sr .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sr .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sr .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sr .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sr .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sr .col-xs-pull-0 {

  right: auto;

}

#custom-html-sr .col-xs-push-12 {

  left: 100%;

}

#custom-html-sr .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sr .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sr .col-xs-push-9 {

  left: 75%;

}

#custom-html-sr .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sr .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sr .col-xs-push-6 {

  left: 50%;

}

#custom-html-sr .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sr .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sr .col-xs-push-3 {

  left: 25%;

}

#custom-html-sr .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sr .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sr .col-xs-push-0 {

  left: auto;

}

#custom-html-sr .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sr .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sr .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sr .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sr .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sr .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sr .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sr .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sr .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sr .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sr .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sr .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-sr .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sr .col-sm-1,

  #custom-html-sr .col-sm-10,

  #custom-html-sr .col-sm-11,

  #custom-html-sr .col-sm-12,

  #custom-html-sr .col-sm-2,

  #custom-html-sr .col-sm-3,

  #custom-html-sr .col-sm-4,

  #custom-html-sr .col-sm-5,

  #custom-html-sr .col-sm-6,

  #custom-html-sr .col-sm-7,

  #custom-html-sr .col-sm-8,

  #custom-html-sr .col-sm-9 {

    float: left;

  }

  #custom-html-sr .col-sm-12 {

    width: 100%;

  }

  #custom-html-sr .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sr .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sr .col-sm-9 {

    width: 75%;

  }

  #custom-html-sr .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sr .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sr .col-sm-6 {

    width: 50%;

  }

  #custom-html-sr .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sr .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sr .col-sm-3 {

    width: 25%;

  }

  #custom-html-sr .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sr .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sr .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sr .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sr .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sr .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sr .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sr .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sr .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sr .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sr .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sr .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sr .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sr .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sr .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sr .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sr .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sr .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sr .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sr .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sr .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sr .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sr .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sr .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sr .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sr .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sr .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sr .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sr .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sr .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sr .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sr .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sr .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sr .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sr .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sr .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sr .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sr .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sr .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sr .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sr .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-sr .col-md-1,

  #custom-html-sr .col-md-10,

  #custom-html-sr .col-md-11,

  #custom-html-sr .col-md-12,

  #custom-html-sr .col-md-2,

  #custom-html-sr .col-md-3,

  #custom-html-sr .col-md-4,

  #custom-html-sr .col-md-5,

  #custom-html-sr .col-md-6,

  #custom-html-sr .col-md-7,

  #custom-html-sr .col-md-8,

  #custom-html-sr .col-md-9 {

    float: left;

  }

  #custom-html-sr .col-md-12 {

    width: 100%;

  }

  #custom-html-sr .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sr .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sr .col-md-9 {

    width: 75%;

  }

  #custom-html-sr .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sr .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sr .col-md-6 {

    width: 50%;

  }

  #custom-html-sr .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sr .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sr .col-md-3 {

    width: 25%;

  }

  #custom-html-sr .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sr .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sr .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sr .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sr .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sr .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sr .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sr .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sr .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sr .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sr .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sr .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sr .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sr .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sr .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sr .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sr .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sr .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sr .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sr .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sr .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sr .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sr .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sr .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sr .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sr .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sr .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sr .col-md-push-0 {

    left: auto;

  }

  #custom-html-sr .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sr .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sr .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sr .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sr .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sr .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sr .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sr .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sr .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sr .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sr .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sr .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sr .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-sr .col-lg-1,

  #custom-html-sr .col-lg-10,

  #custom-html-sr .col-lg-11,

  #custom-html-sr .col-lg-12,

  #custom-html-sr .col-lg-2,

  #custom-html-sr .col-lg-3,

  #custom-html-sr .col-lg-4,

  #custom-html-sr .col-lg-5,

  #custom-html-sr .col-lg-6,

  #custom-html-sr .col-lg-7,

  #custom-html-sr .col-lg-8,

  #custom-html-sr .col-lg-9 {

    float: left;

  }

  #custom-html-sr .col-lg-12 {

    width: 100%;

  }

  #custom-html-sr .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sr .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sr .col-lg-9 {

    width: 75%;

  }

  #custom-html-sr .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sr .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sr .col-lg-6 {

    width: 50%;

  }

  #custom-html-sr .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sr .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sr .col-lg-3 {

    width: 25%;

  }

  #custom-html-sr .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sr .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sr .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sr .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sr .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sr .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sr .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sr .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sr .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sr .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sr .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sr .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sr .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sr .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sr .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sr .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sr .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sr .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sr .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sr .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sr .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sr .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sr .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sr .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sr .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sr .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sr .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sr .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sr .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sr .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sr .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sr .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sr .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sr .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sr .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sr .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sr .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sr .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sr .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sr .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sr .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-sr table {

  background-color: transparent;

}

#custom-html-sr caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sr th {

  text-align: left;

}

#custom-html-sr .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sr .table > tbody > tr > td,

#custom-html-sr .table > tbody > tr > th,

#custom-html-sr .table > tfoot > tr > td,

#custom-html-sr .table > tfoot > tr > th,

#custom-html-sr .table > thead > tr > td,

#custom-html-sr .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sr .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sr .table > caption + thead > tr:first-child > td,

#custom-html-sr .table > caption + thead > tr:first-child > th,

#custom-html-sr .table > colgroup + thead > tr:first-child > td,

#custom-html-sr .table > colgroup + thead > tr:first-child > th,

#custom-html-sr .table > thead:first-child > tr:first-child > td,

#custom-html-sr .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sr .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sr .table .table {

  background-color: #ffffff;

}

#custom-html-sr .table-condensed > tbody > tr > td,

#custom-html-sr .table-condensed > tbody > tr > th,

#custom-html-sr .table-condensed > tfoot > tr > td,

#custom-html-sr .table-condensed > tfoot > tr > th,

#custom-html-sr .table-condensed > thead > tr > td,

#custom-html-sr .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sr .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sr .table-bordered > tbody > tr > td,

#custom-html-sr .table-bordered > tbody > tr > th,

#custom-html-sr .table-bordered > tfoot > tr > td,

#custom-html-sr .table-bordered > tfoot > tr > th,

#custom-html-sr .table-bordered > thead > tr > td,

#custom-html-sr .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sr .table-bordered > thead > tr > td,

#custom-html-sr .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sr .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sr .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sr table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sr table td[class*=col-],

#custom-html-sr table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-sr .table > tbody > tr.active > td,

#custom-html-sr .table > tbody > tr.active > th,

#custom-html-sr .table > tbody > tr > td.active,

#custom-html-sr .table > tbody > tr > th.active,

#custom-html-sr .table > tfoot > tr.active > td,

#custom-html-sr .table > tfoot > tr.active > th,

#custom-html-sr .table > tfoot > tr > td.active,

#custom-html-sr .table > tfoot > tr > th.active,

#custom-html-sr .table > thead > tr.active > td,

#custom-html-sr .table > thead > tr.active > th,

#custom-html-sr .table > thead > tr > td.active,

#custom-html-sr .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sr .table-hover > tbody > tr.active:hover > td,

#custom-html-sr .table-hover > tbody > tr.active:hover > th,

#custom-html-sr .table-hover > tbody > tr:hover > .active,

#custom-html-sr .table-hover > tbody > tr > td.active:hover,

#custom-html-sr .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sr .table > tbody > tr.success > td,

#custom-html-sr .table > tbody > tr.success > th,

#custom-html-sr .table > tbody > tr > td.success,

#custom-html-sr .table > tbody > tr > th.success,

#custom-html-sr .table > tfoot > tr.success > td,

#custom-html-sr .table > tfoot > tr.success > th,

#custom-html-sr .table > tfoot > tr > td.success,

#custom-html-sr .table > tfoot > tr > th.success,

#custom-html-sr .table > thead > tr.success > td,

#custom-html-sr .table > thead > tr.success > th,

#custom-html-sr .table > thead > tr > td.success,

#custom-html-sr .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sr .table-hover > tbody > tr.success:hover > td,

#custom-html-sr .table-hover > tbody > tr.success:hover > th,

#custom-html-sr .table-hover > tbody > tr:hover > .success,

#custom-html-sr .table-hover > tbody > tr > td.success:hover,

#custom-html-sr .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sr .table > tbody > tr.info > td,

#custom-html-sr .table > tbody > tr.info > th,

#custom-html-sr .table > tbody > tr > td.info,

#custom-html-sr .table > tbody > tr > th.info,

#custom-html-sr .table > tfoot > tr.info > td,

#custom-html-sr .table > tfoot > tr.info > th,

#custom-html-sr .table > tfoot > tr > td.info,

#custom-html-sr .table > tfoot > tr > th.info,

#custom-html-sr .table > thead > tr.info > td,

#custom-html-sr .table > thead > tr.info > th,

#custom-html-sr .table > thead > tr > td.info,

#custom-html-sr .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sr .table-hover > tbody > tr.info:hover > td,

#custom-html-sr .table-hover > tbody > tr.info:hover > th,

#custom-html-sr .table-hover > tbody > tr:hover > .info,

#custom-html-sr .table-hover > tbody > tr > td.info:hover,

#custom-html-sr .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sr .table > tbody > tr.warning > td,

#custom-html-sr .table > tbody > tr.warning > th,

#custom-html-sr .table > tbody > tr > td.warning,

#custom-html-sr .table > tbody > tr > th.warning,

#custom-html-sr .table > tfoot > tr.warning > td,

#custom-html-sr .table > tfoot > tr.warning > th,

#custom-html-sr .table > tfoot > tr > td.warning,

#custom-html-sr .table > tfoot > tr > th.warning,

#custom-html-sr .table > thead > tr.warning > td,

#custom-html-sr .table > thead > tr.warning > th,

#custom-html-sr .table > thead > tr > td.warning,

#custom-html-sr .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sr .table-hover > tbody > tr.warning:hover > td,

#custom-html-sr .table-hover > tbody > tr.warning:hover > th,

#custom-html-sr .table-hover > tbody > tr:hover > .warning,

#custom-html-sr .table-hover > tbody > tr > td.warning:hover,

#custom-html-sr .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sr .table > tbody > tr.danger > td,

#custom-html-sr .table > tbody > tr.danger > th,

#custom-html-sr .table > tbody > tr > td.danger,

#custom-html-sr .table > tbody > tr > th.danger,

#custom-html-sr .table > tfoot > tr.danger > td,

#custom-html-sr .table > tfoot > tr.danger > th,

#custom-html-sr .table > tfoot > tr > td.danger,

#custom-html-sr .table > tfoot > tr > th.danger,

#custom-html-sr .table > thead > tr.danger > td,

#custom-html-sr .table > thead > tr.danger > th,

#custom-html-sr .table > thead > tr > td.danger,

#custom-html-sr .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sr .table-hover > tbody > tr.danger:hover > td,

#custom-html-sr .table-hover > tbody > tr.danger:hover > th,

#custom-html-sr .table-hover > tbody > tr:hover > .danger,

#custom-html-sr .table-hover > tbody > tr > td.danger:hover,

#custom-html-sr .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sr .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sr .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sr .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sr .table-responsive > .table > tbody > tr > td,

  #custom-html-sr .table-responsive > .table > tbody > tr > th,

  #custom-html-sr .table-responsive > .table > tfoot > tr > td,

  #custom-html-sr .table-responsive > .table > tfoot > tr > th,

  #custom-html-sr .table-responsive > .table > thead > tr > td,

  #custom-html-sr .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sr .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sr .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sr .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sr .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sr .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sr .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sr .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sr .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sr .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sr .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sr .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sr .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sr .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sr .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sr .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sr .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sr .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-sr fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-sr legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sr label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sr input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sr input[type=checkbox],

#custom-html-sr input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sr input[type=file] {

  display: block;

}

#custom-html-sr input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sr select[multiple],

#custom-html-sr select[size] {

  height: auto;

}

#custom-html-sr input[type=checkbox]:focus,

#custom-html-sr input[type=file]:focus,

#custom-html-sr input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sr output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sr .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sr .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sr .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sr .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sr .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sr .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sr .form-control[disabled],

#custom-html-sr .form-control[readonly],

#custom-html-sr fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sr .form-control[disabled],

#custom-html-sr fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sr textarea.form-control {

  height: auto;

}

#custom-html-sr input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sr input[type=date].form-control,

  #custom-html-sr input[type=datetime-local].form-control,

  #custom-html-sr input[type=month].form-control,

  #custom-html-sr input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sr .input-group-sm input[type=date],

  #custom-html-sr .input-group-sm input[type=datetime-local],

  #custom-html-sr .input-group-sm input[type=month],

  #custom-html-sr .input-group-sm input[type=time],

  #custom-html-sr input[type=date].input-sm,

  #custom-html-sr input[type=datetime-local].input-sm,

  #custom-html-sr input[type=month].input-sm,

  #custom-html-sr input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sr .input-group-lg input[type=date],

  #custom-html-sr .input-group-lg input[type=datetime-local],

  #custom-html-sr .input-group-lg input[type=month],

  #custom-html-sr .input-group-lg input[type=time],

  #custom-html-sr input[type=date].input-lg,

  #custom-html-sr input[type=datetime-local].input-lg,

  #custom-html-sr input[type=month].input-lg,

  #custom-html-sr input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sr .form-group {

  margin-bottom: 15px;

}

#custom-html-sr .checkbox,

#custom-html-sr .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sr .checkbox label,

#custom-html-sr .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sr .checkbox input[type=checkbox],

#custom-html-sr .checkbox-inline input[type=checkbox],

#custom-html-sr .radio input[type=radio],

#custom-html-sr .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sr .checkbox + .checkbox,

#custom-html-sr .radio + .radio {

  margin-top: -5px;

}

#custom-html-sr .checkbox-inline,

#custom-html-sr .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sr .checkbox-inline + .checkbox-inline,

#custom-html-sr .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sr fieldset[disabled] input[type=checkbox],

#custom-html-sr fieldset[disabled] input[type=radio],

#custom-html-sr input[type=checkbox].disabled,

#custom-html-sr input[type=checkbox][disabled],

#custom-html-sr input[type=radio].disabled,

#custom-html-sr input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sr .checkbox-inline.disabled,

#custom-html-sr .radio-inline.disabled,

#custom-html-sr fieldset[disabled] .checkbox-inline,

#custom-html-sr fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sr .checkbox.disabled label,

#custom-html-sr .radio.disabled label,

#custom-html-sr fieldset[disabled] .checkbox label,

#custom-html-sr fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sr .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sr .form-control-static.input-lg,

#custom-html-sr .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sr .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sr select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sr select[multiple].input-sm,

#custom-html-sr textarea.input-sm {

  height: auto;

}

#custom-html-sr .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sr .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sr .form-group-sm select[multiple].form-control,

#custom-html-sr .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sr .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sr .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sr select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sr select[multiple].input-lg,

#custom-html-sr textarea.input-lg {

  height: auto;

}

#custom-html-sr .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sr .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sr .form-group-lg select[multiple].form-control,

#custom-html-sr .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sr .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sr .has-feedback {

  position: relative;

}

#custom-html-sr .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sr .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sr .form-group-lg .form-control + .form-control-feedback,

#custom-html-sr .input-group-lg + .form-control-feedback,

#custom-html-sr .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sr .form-group-sm .form-control + .form-control-feedback,

#custom-html-sr .input-group-sm + .form-control-feedback,

#custom-html-sr .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sr .has-success .checkbox,

#custom-html-sr .has-success .checkbox-inline,

#custom-html-sr .has-success .control-label,

#custom-html-sr .has-success .help-block,

#custom-html-sr .has-success .radio,

#custom-html-sr .has-success .radio-inline,

#custom-html-sr .has-success.checkbox label,

#custom-html-sr .has-success.checkbox-inline label,

#custom-html-sr .has-success.radio label,

#custom-html-sr .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sr .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sr .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sr .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sr .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sr .has-warning .checkbox,

#custom-html-sr .has-warning .checkbox-inline,

#custom-html-sr .has-warning .control-label,

#custom-html-sr .has-warning .help-block,

#custom-html-sr .has-warning .radio,

#custom-html-sr .has-warning .radio-inline,

#custom-html-sr .has-warning.checkbox label,

#custom-html-sr .has-warning.checkbox-inline label,

#custom-html-sr .has-warning.radio label,

#custom-html-sr .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sr .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sr .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sr .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sr .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sr .has-error .checkbox,

#custom-html-sr .has-error .checkbox-inline,

#custom-html-sr .has-error .control-label,

#custom-html-sr .has-error .help-block,

#custom-html-sr .has-error .radio,

#custom-html-sr .has-error .radio-inline,

#custom-html-sr .has-error.checkbox label,

#custom-html-sr .has-error.checkbox-inline label,

#custom-html-sr .has-error.radio label,

#custom-html-sr .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sr .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sr .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sr .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sr .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sr .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-sr .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sr .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-sr .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sr .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sr .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sr .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sr .form-inline .input-group .form-control,

  #custom-html-sr .form-inline .input-group .input-group-addon,

  #custom-html-sr .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sr .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sr .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sr .form-inline .checkbox,

  #custom-html-sr .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sr .form-inline .checkbox label,

  #custom-html-sr .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sr .form-inline .checkbox input[type=checkbox],

  #custom-html-sr .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sr .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-sr .form-horizontal .checkbox,

#custom-html-sr .form-horizontal .checkbox-inline,

#custom-html-sr .form-horizontal .radio,

#custom-html-sr .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sr .form-horizontal .checkbox,

#custom-html-sr .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sr .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sr .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-sr .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-sr .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-sr .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-sr .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sr .btn.active.focus,

#custom-html-sr .btn.active:focus,

#custom-html-sr .btn.focus,

#custom-html-sr .btn:active.focus,

#custom-html-sr .btn:active:focus,

#custom-html-sr .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sr .btn.focus,

#custom-html-sr .btn:focus,

#custom-html-sr .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sr .btn.active,

#custom-html-sr .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sr .btn.disabled,

#custom-html-sr .btn[disabled],

#custom-html-sr fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sr a.btn.disabled,

#custom-html-sr fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sr .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sr .btn-default.focus,

#custom-html-sr .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sr .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sr .btn-default.active,

#custom-html-sr .btn-default:active,

#custom-html-sr .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sr .btn-default.active.focus,

#custom-html-sr .btn-default.active:focus,

#custom-html-sr .btn-default.active:hover,

#custom-html-sr .btn-default:active.focus,

#custom-html-sr .btn-default:active:focus,

#custom-html-sr .btn-default:active:hover,

#custom-html-sr .open > .dropdown-toggle.btn-default.focus,

#custom-html-sr .open > .dropdown-toggle.btn-default:focus,

#custom-html-sr .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sr .btn-default.active,

#custom-html-sr .btn-default:active,

#custom-html-sr .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-sr .btn-default.disabled.focus,

#custom-html-sr .btn-default.disabled:focus,

#custom-html-sr .btn-default.disabled:hover,

#custom-html-sr .btn-default[disabled].focus,

#custom-html-sr .btn-default[disabled]:focus,

#custom-html-sr .btn-default[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-default.focus,

#custom-html-sr fieldset[disabled] .btn-default:focus,

#custom-html-sr fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sr .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sr .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sr .btn-primary.focus,

#custom-html-sr .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sr .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sr .btn-primary.active,

#custom-html-sr .btn-primary:active,

#custom-html-sr .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sr .btn-primary.active.focus,

#custom-html-sr .btn-primary.active:focus,

#custom-html-sr .btn-primary.active:hover,

#custom-html-sr .btn-primary:active.focus,

#custom-html-sr .btn-primary:active:focus,

#custom-html-sr .btn-primary:active:hover,

#custom-html-sr .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sr .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sr .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sr .btn-primary.active,

#custom-html-sr .btn-primary:active,

#custom-html-sr .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-sr .btn-primary.disabled.focus,

#custom-html-sr .btn-primary.disabled:focus,

#custom-html-sr .btn-primary.disabled:hover,

#custom-html-sr .btn-primary[disabled].focus,

#custom-html-sr .btn-primary[disabled]:focus,

#custom-html-sr .btn-primary[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-primary.focus,

#custom-html-sr fieldset[disabled] .btn-primary:focus,

#custom-html-sr fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sr .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sr .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sr .btn-success.focus,

#custom-html-sr .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sr .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sr .btn-success.active,

#custom-html-sr .btn-success:active,

#custom-html-sr .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sr .btn-success.active.focus,

#custom-html-sr .btn-success.active:focus,

#custom-html-sr .btn-success.active:hover,

#custom-html-sr .btn-success:active.focus,

#custom-html-sr .btn-success:active:focus,

#custom-html-sr .btn-success:active:hover,

#custom-html-sr .open > .dropdown-toggle.btn-success.focus,

#custom-html-sr .open > .dropdown-toggle.btn-success:focus,

#custom-html-sr .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sr .btn-success.active,

#custom-html-sr .btn-success:active,

#custom-html-sr .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-sr .btn-success.disabled.focus,

#custom-html-sr .btn-success.disabled:focus,

#custom-html-sr .btn-success.disabled:hover,

#custom-html-sr .btn-success[disabled].focus,

#custom-html-sr .btn-success[disabled]:focus,

#custom-html-sr .btn-success[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-success.focus,

#custom-html-sr fieldset[disabled] .btn-success:focus,

#custom-html-sr fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sr .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sr .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sr .btn-info.focus,

#custom-html-sr .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sr .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sr .btn-info.active,

#custom-html-sr .btn-info:active,

#custom-html-sr .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sr .btn-info.active.focus,

#custom-html-sr .btn-info.active:focus,

#custom-html-sr .btn-info.active:hover,

#custom-html-sr .btn-info:active.focus,

#custom-html-sr .btn-info:active:focus,

#custom-html-sr .btn-info:active:hover,

#custom-html-sr .open > .dropdown-toggle.btn-info.focus,

#custom-html-sr .open > .dropdown-toggle.btn-info:focus,

#custom-html-sr .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sr .btn-info.active,

#custom-html-sr .btn-info:active,

#custom-html-sr .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-sr .btn-info.disabled.focus,

#custom-html-sr .btn-info.disabled:focus,

#custom-html-sr .btn-info.disabled:hover,

#custom-html-sr .btn-info[disabled].focus,

#custom-html-sr .btn-info[disabled]:focus,

#custom-html-sr .btn-info[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-info.focus,

#custom-html-sr fieldset[disabled] .btn-info:focus,

#custom-html-sr fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sr .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sr .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sr .btn-warning.focus,

#custom-html-sr .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sr .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sr .btn-warning.active,

#custom-html-sr .btn-warning:active,

#custom-html-sr .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sr .btn-warning.active.focus,

#custom-html-sr .btn-warning.active:focus,

#custom-html-sr .btn-warning.active:hover,

#custom-html-sr .btn-warning:active.focus,

#custom-html-sr .btn-warning:active:focus,

#custom-html-sr .btn-warning:active:hover,

#custom-html-sr .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sr .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sr .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sr .btn-warning.active,

#custom-html-sr .btn-warning:active,

#custom-html-sr .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-sr .btn-warning.disabled.focus,

#custom-html-sr .btn-warning.disabled:focus,

#custom-html-sr .btn-warning.disabled:hover,

#custom-html-sr .btn-warning[disabled].focus,

#custom-html-sr .btn-warning[disabled]:focus,

#custom-html-sr .btn-warning[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-warning.focus,

#custom-html-sr fieldset[disabled] .btn-warning:focus,

#custom-html-sr fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sr .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sr .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sr .btn-danger.focus,

#custom-html-sr .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sr .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sr .btn-danger.active,

#custom-html-sr .btn-danger:active,

#custom-html-sr .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sr .btn-danger.active.focus,

#custom-html-sr .btn-danger.active:focus,

#custom-html-sr .btn-danger.active:hover,

#custom-html-sr .btn-danger:active.focus,

#custom-html-sr .btn-danger:active:focus,

#custom-html-sr .btn-danger:active:hover,

#custom-html-sr .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sr .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sr .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sr .btn-danger.active,

#custom-html-sr .btn-danger:active,

#custom-html-sr .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-sr .btn-danger.disabled.focus,

#custom-html-sr .btn-danger.disabled:focus,

#custom-html-sr .btn-danger.disabled:hover,

#custom-html-sr .btn-danger[disabled].focus,

#custom-html-sr .btn-danger[disabled]:focus,

#custom-html-sr .btn-danger[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-danger.focus,

#custom-html-sr fieldset[disabled] .btn-danger:focus,

#custom-html-sr fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sr .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sr .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sr .btn-link,

#custom-html-sr .btn-link.active,

#custom-html-sr .btn-link:active,

#custom-html-sr .btn-link[disabled],

#custom-html-sr fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sr .btn-link,

#custom-html-sr .btn-link:active,

#custom-html-sr .btn-link:focus,

#custom-html-sr .btn-link:hover {

  border-color: transparent;

}

#custom-html-sr .btn-link:focus,

#custom-html-sr .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sr .btn-link[disabled]:focus,

#custom-html-sr .btn-link[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-link:focus,

#custom-html-sr fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sr .btn-group-lg > .btn,

#custom-html-sr .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sr .btn-group-sm > .btn,

#custom-html-sr .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sr .btn-group-xs > .btn,

#custom-html-sr .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sr .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sr .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sr input[type=button].btn-block,

#custom-html-sr input[type=reset].btn-block,

#custom-html-sr input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sr .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sr .fade.in {

  opacity: 1;

}

#custom-html-sr .collapse {

  display: none;

}

#custom-html-sr .collapse.in {

  display: block;

}

#custom-html-sr tr.collapse.in {

  display: table-row;

}

#custom-html-sr tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sr .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;


  transition-property: height, visibility;

}

#custom-html-sr .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sr .dropdown,

#custom-html-sr .dropup {

  position: relative;

}

#custom-html-sr .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sr .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sr .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sr .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sr .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sr .dropdown-menu > li > a:focus,

#custom-html-sr .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sr .dropdown-menu > .active > a,

#custom-html-sr .dropdown-menu > .active > a:focus,

#custom-html-sr .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sr .dropdown-menu > .disabled > a,

#custom-html-sr .dropdown-menu > .disabled > a:focus,

#custom-html-sr .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sr .dropdown-menu > .disabled > a:focus,

#custom-html-sr .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sr .open > .dropdown-menu {

  display: block;

}

#custom-html-sr .open > a {

  outline: 0;

}

#custom-html-sr .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sr .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sr .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sr .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sr .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sr .dropup .caret,

#custom-html-sr .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sr .dropup .dropdown-menu,

#custom-html-sr .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-sr .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sr .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-sr .btn-group,

#custom-html-sr .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sr .btn-group-vertical > .btn,

#custom-html-sr .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sr .btn-group-vertical > .btn.active,

#custom-html-sr .btn-group-vertical > .btn:active,

#custom-html-sr .btn-group-vertical > .btn:focus,

#custom-html-sr .btn-group-vertical > .btn:hover,

#custom-html-sr .btn-group > .btn.active,

#custom-html-sr .btn-group > .btn:active,

#custom-html-sr .btn-group > .btn:focus,

#custom-html-sr .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sr .btn-group .btn + .btn,

#custom-html-sr .btn-group .btn + .btn-group,

#custom-html-sr .btn-group .btn-group + .btn,

#custom-html-sr .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sr .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sr .btn-toolbar .btn,

#custom-html-sr .btn-toolbar .btn-group,

#custom-html-sr .btn-toolbar .input-group {

  float: left;

}

#custom-html-sr .btn-toolbar > .btn,

#custom-html-sr .btn-toolbar > .btn-group,

#custom-html-sr .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sr .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sr .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sr .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sr .btn-group > .btn:last-child:not(:first-child),

#custom-html-sr .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sr .btn-group > .btn-group {

  float: left;

}

#custom-html-sr .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sr .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sr .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sr .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sr .btn-group .dropdown-toggle:active,

#custom-html-sr .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sr .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sr .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sr .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sr .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sr .btn .caret {

  margin-left: 0;

}

#custom-html-sr .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sr .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sr .btn-group-vertical > .btn,

#custom-html-sr .btn-group-vertical > .btn-group,

#custom-html-sr .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sr .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sr .btn-group-vertical > .btn + .btn,

#custom-html-sr .btn-group-vertical > .btn + .btn-group,

#custom-html-sr .btn-group-vertical > .btn-group + .btn,

#custom-html-sr .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sr .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sr .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sr .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sr .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sr .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sr .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sr .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sr .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sr .btn-group-justified > .btn,

#custom-html-sr .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sr .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sr .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sr [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sr [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sr [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sr [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sr .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sr .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sr .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sr .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sr .input-group-lg > .form-control,

#custom-html-sr .input-group-lg > .input-group-addon,

#custom-html-sr .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sr select.input-group-lg > .form-control,

#custom-html-sr select.input-group-lg > .input-group-addon,

#custom-html-sr select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sr select[multiple].input-group-lg > .form-control,

#custom-html-sr select[multiple].input-group-lg > .input-group-addon,

#custom-html-sr select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sr textarea.input-group-lg > .form-control,

#custom-html-sr textarea.input-group-lg > .input-group-addon,

#custom-html-sr textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sr .input-group-sm > .form-control,

#custom-html-sr .input-group-sm > .input-group-addon,

#custom-html-sr .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sr select.input-group-sm > .form-control,

#custom-html-sr select.input-group-sm > .input-group-addon,

#custom-html-sr select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sr select[multiple].input-group-sm > .form-control,

#custom-html-sr select[multiple].input-group-sm > .input-group-addon,

#custom-html-sr select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sr textarea.input-group-sm > .form-control,

#custom-html-sr textarea.input-group-sm > .input-group-addon,

#custom-html-sr textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sr .input-group .form-control,

#custom-html-sr .input-group-addon,

#custom-html-sr .input-group-btn {

  display: table-cell;

}

#custom-html-sr .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sr .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sr .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sr .input-group-addon,

#custom-html-sr .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sr .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sr .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sr .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sr .input-group-addon input[type=checkbox],

#custom-html-sr .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sr .input-group .form-control:first-child,

#custom-html-sr .input-group-addon:first-child,

#custom-html-sr .input-group-btn:first-child > .btn,

#custom-html-sr .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sr .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sr .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sr .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sr .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sr .input-group .form-control:last-child,

#custom-html-sr .input-group-addon:last-child,

#custom-html-sr .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sr .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sr .input-group-btn:last-child > .btn,

#custom-html-sr .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sr .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sr .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sr .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sr .input-group-btn > .btn {

  position: relative;

}

#custom-html-sr .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sr .input-group-btn > .btn:active,

#custom-html-sr .input-group-btn > .btn:focus,

#custom-html-sr .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sr .input-group-btn:first-child > .btn,

#custom-html-sr .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sr .input-group-btn:last-child > .btn,

#custom-html-sr .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sr .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sr .nav > li {

  position: relative;

  display: block;

}

#custom-html-sr .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sr .nav > li > a:focus,

#custom-html-sr .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sr .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sr .nav > li.disabled > a:focus,

#custom-html-sr .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sr .nav .open > a,

#custom-html-sr .nav .open > a:focus,

#custom-html-sr .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sr .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sr .nav > li > a > img {

  max-width: none;

}

#custom-html-sr .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sr .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sr .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sr .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sr .nav-tabs > li.active > a,

#custom-html-sr .nav-tabs > li.active > a:focus,

#custom-html-sr .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sr .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sr .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sr .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sr .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sr .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sr .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sr .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sr .nav-tabs.nav-justified > .active > a,

#custom-html-sr .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sr .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sr .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sr .nav-tabs.nav-justified > .active > a,

  #custom-html-sr .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sr .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sr .nav-pills > li {

  float: left;

}

#custom-html-sr .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sr .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sr .nav-pills > li.active > a,

#custom-html-sr .nav-pills > li.active > a:focus,

#custom-html-sr .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sr .nav-stacked > li {

  float: none;

}

#custom-html-sr .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sr .nav-justified {

  width: 100%;

}

#custom-html-sr .nav-justified > li {

  float: none;

}

#custom-html-sr .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sr .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sr .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sr .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sr .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sr .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sr .nav-tabs-justified > .active > a,

#custom-html-sr .nav-tabs-justified > .active > a:focus,

#custom-html-sr .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sr .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sr .nav-tabs-justified > .active > a,

  #custom-html-sr .nav-tabs-justified > .active > a:focus,

  #custom-html-sr .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sr .tab-content > .tab-pane {

  display: none;

}

#custom-html-sr .tab-content > .active {

  display: block;

}

#custom-html-sr .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sr .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-sr .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-sr .navbar-header {

    float: left;

  }

}

#custom-html-sr .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sr .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-sr .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sr .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sr .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sr .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sr .navbar-fixed-top .navbar-collapse,

  #custom-html-sr .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-sr .navbar-fixed-bottom .navbar-collapse,

#custom-html-sr .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sr .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sr .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sr .container-fluid > .navbar-collapse,

#custom-html-sr .container-fluid > .navbar-header,

#custom-html-sr .container > .navbar-collapse,

#custom-html-sr .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sr .container-fluid > .navbar-collapse,

  #custom-html-sr .container-fluid > .navbar-header,

  #custom-html-sr .container > .navbar-collapse,

  #custom-html-sr .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-sr .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-sr .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-sr .navbar-fixed-bottom,

#custom-html-sr .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-sr .navbar-fixed-bottom,

  #custom-html-sr .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-sr .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sr .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sr .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sr .navbar-brand:focus,

#custom-html-sr .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sr .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-sr .navbar > .container .navbar-brand,

  #custom-html-sr .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-sr .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sr .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sr .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sr .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-sr .navbar-toggle {

    display: none;

  }

}

#custom-html-sr .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sr .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sr .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sr .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sr .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sr .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sr .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sr .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-sr .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sr .navbar-nav > li {

    float: left;

  }

  #custom-html-sr .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-sr .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-sr .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sr .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sr .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sr .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sr .navbar-form .input-group .form-control,

  #custom-html-sr .navbar-form .input-group .input-group-addon,

  #custom-html-sr .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sr .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sr .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sr .navbar-form .checkbox,

  #custom-html-sr .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sr .navbar-form .checkbox label,

  #custom-html-sr .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sr .navbar-form .checkbox input[type=checkbox],

  #custom-html-sr .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sr .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-sr .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sr .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-sr .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-sr .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sr .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sr .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sr .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sr .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sr .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-sr .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-sr .navbar-left {

    float: left !important;

  }

  #custom-html-sr .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sr .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-sr .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sr .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sr .navbar-default .navbar-brand:focus,

#custom-html-sr .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sr .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sr .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sr .navbar-default .navbar-nav > li > a:focus,

#custom-html-sr .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sr .navbar-default .navbar-nav > .active > a,

#custom-html-sr .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sr .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sr .navbar-default .navbar-nav > .disabled > a,

#custom-html-sr .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sr .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sr .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sr .navbar-default .navbar-toggle:focus,

#custom-html-sr .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sr .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sr .navbar-default .navbar-collapse,

#custom-html-sr .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sr .navbar-default .navbar-nav > .open > a,

#custom-html-sr .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sr .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sr .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-sr .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sr .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sr .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sr .navbar-default .btn-link:focus,

#custom-html-sr .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sr .navbar-default .btn-link[disabled]:focus,

#custom-html-sr .navbar-default .btn-link[disabled]:hover,

#custom-html-sr fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sr fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sr .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sr .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sr .navbar-inverse .navbar-brand:focus,

#custom-html-sr .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sr .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sr .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sr .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sr .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sr .navbar-inverse .navbar-nav > .active > a,

#custom-html-sr .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sr .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sr .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sr .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sr .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sr .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sr .navbar-inverse .navbar-toggle:focus,

#custom-html-sr .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sr .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sr .navbar-inverse .navbar-collapse,

#custom-html-sr .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sr .navbar-inverse .navbar-nav > .open > a,

#custom-html-sr .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sr .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sr .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-sr .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sr .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sr .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sr .navbar-inverse .btn-link:focus,

#custom-html-sr .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sr .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sr .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sr fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sr fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sr .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sr .breadcrumb > li {

  display: inline-block;

}

#custom-html-sr .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sr .breadcrumb > .active {

  color: #777777;

}

#custom-html-sr .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-sr .pagination > li {

  display: inline;

}

#custom-html-sr .pagination > li > a,

#custom-html-sr .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sr .pagination > li:first-child > a,

#custom-html-sr .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sr .pagination > li:last-child > a,

#custom-html-sr .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sr .pagination > li > a:focus,

#custom-html-sr .pagination > li > a:hover,

#custom-html-sr .pagination > li > span:focus,

#custom-html-sr .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sr .pagination > .active > a,

#custom-html-sr .pagination > .active > a:focus,

#custom-html-sr .pagination > .active > a:hover,

#custom-html-sr .pagination > .active > span,

#custom-html-sr .pagination > .active > span:focus,

#custom-html-sr .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-sr .pagination > .disabled > a,

#custom-html-sr .pagination > .disabled > a:focus,

#custom-html-sr .pagination > .disabled > a:hover,

#custom-html-sr .pagination > .disabled > span,

#custom-html-sr .pagination > .disabled > span:focus,

#custom-html-sr .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sr .pagination-lg > li > a,

#custom-html-sr .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sr .pagination-lg > li:first-child > a,

#custom-html-sr .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sr .pagination-lg > li:last-child > a,

#custom-html-sr .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sr .pagination-sm > li > a,

#custom-html-sr .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sr .pagination-sm > li:first-child > a,

#custom-html-sr .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sr .pagination-sm > li:last-child > a,

#custom-html-sr .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sr .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sr .pager li {

  display: inline;

}

#custom-html-sr .pager li > a,

#custom-html-sr .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sr .pager li > a:focus,

#custom-html-sr .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sr .pager .next > a,

#custom-html-sr .pager .next > span {

  float: right;

}

#custom-html-sr .pager .previous > a,

#custom-html-sr .pager .previous > span {

  float: left;

}

#custom-html-sr .pager .disabled > a,

#custom-html-sr .pager .disabled > a:focus,

#custom-html-sr .pager .disabled > a:hover,

#custom-html-sr .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sr .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-sr a.label:focus,

#custom-html-sr a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sr .label:empty {

  display: none;

}

#custom-html-sr .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sr .label-default {

  background-color: #777777;

}

#custom-html-sr .label-default[href]:focus,

#custom-html-sr .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sr .label-primary {

  background-color: #337ab7;

}

#custom-html-sr .label-primary[href]:focus,

#custom-html-sr .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sr .label-success {

  background-color: #5cb85c;

}

#custom-html-sr .label-success[href]:focus,

#custom-html-sr .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sr .label-info {

  background-color: #5bc0de;

}

#custom-html-sr .label-info[href]:focus,

#custom-html-sr .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sr .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sr .label-warning[href]:focus,

#custom-html-sr .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sr .label-danger {

  background-color: #d9534f;

}

#custom-html-sr .label-danger[href]:focus,

#custom-html-sr .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sr .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sr .badge:empty {

  display: none;

}

#custom-html-sr .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sr .btn-group-xs > .btn .badge,

#custom-html-sr .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sr a.badge:focus,

#custom-html-sr a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sr .list-group-item.active > .badge,

#custom-html-sr .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sr .list-group-item > .badge {

  float: right;

}

#custom-html-sr .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sr .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sr .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sr .jumbotron .h1,

#custom-html-sr .jumbotron h1 {

  color: inherit;

}

#custom-html-sr .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sr .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sr .container .jumbotron,

#custom-html-sr .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sr .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sr .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sr .container .jumbotron,

  #custom-html-sr .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sr .jumbotron .h1,

  #custom-html-sr .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-sr .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sr .thumbnail a > img,

#custom-html-sr .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sr a.thumbnail.active,

#custom-html-sr a.thumbnail:focus,

#custom-html-sr a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sr .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sr .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sr .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sr .alert .alert-link {

  font-weight: 700;

}

#custom-html-sr .alert > p,

#custom-html-sr .alert > ul {

  margin-bottom: 0;

}

#custom-html-sr .alert > p + p {

  margin-top: 5px;

}

#custom-html-sr .alert-dismissable,

#custom-html-sr .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sr .alert-dismissable .close,

#custom-html-sr .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sr .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sr .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sr .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sr .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sr .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sr .alert-info .alert-link {

  color: #000000;

}

#custom-html-sr .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sr .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sr .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sr .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sr .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sr .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sr .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sr .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sr .progress-bar-striped,

#custom-html-sr .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sr .progress-bar.active,

#custom-html-sr .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sr .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sr .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sr .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sr .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sr .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sr .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sr .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sr .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sr .media {

  margin-top: 15px;

}

#custom-html-sr .media:first-child {

  margin-top: 0;

}

#custom-html-sr .media,

#custom-html-sr .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sr .media-body {

  width: 10000px;

}

#custom-html-sr .media-object {

  display: block;

}

#custom-html-sr .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sr .media-right,

#custom-html-sr .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sr .media-left,

#custom-html-sr .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sr .media-body,

#custom-html-sr .media-left,

#custom-html-sr .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sr .media-middle {

  vertical-align: middle;

}

#custom-html-sr .media-bottom {

  vertical-align: bottom;

}

#custom-html-sr .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sr .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sr .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-sr .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sr .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sr .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sr a.list-group-item,

#custom-html-sr button.list-group-item {

  color: #555555;

}

#custom-html-sr a.list-group-item .list-group-item-heading,

#custom-html-sr button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sr a.list-group-item:focus,

#custom-html-sr a.list-group-item:hover,

#custom-html-sr button.list-group-item:focus,

#custom-html-sr button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sr button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sr .list-group-item.disabled,

#custom-html-sr .list-group-item.disabled:focus,

#custom-html-sr .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sr .list-group-item.disabled .list-group-item-heading,

#custom-html-sr .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sr .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sr .list-group-item.disabled .list-group-item-text,

#custom-html-sr .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sr .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sr .list-group-item.active,

#custom-html-sr .list-group-item.active:focus,

#custom-html-sr .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sr .list-group-item.active .list-group-item-heading,

#custom-html-sr .list-group-item.active .list-group-item-heading > .small,

#custom-html-sr .list-group-item.active .list-group-item-heading > small,

#custom-html-sr .list-group-item.active:focus .list-group-item-heading,

#custom-html-sr .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sr .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sr .list-group-item.active:hover .list-group-item-heading,

#custom-html-sr .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sr .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sr .list-group-item.active .list-group-item-text,

#custom-html-sr .list-group-item.active:focus .list-group-item-text,

#custom-html-sr .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sr .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sr a.list-group-item-success,

#custom-html-sr button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sr a.list-group-item-success .list-group-item-heading,

#custom-html-sr button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sr a.list-group-item-success:focus,

#custom-html-sr a.list-group-item-success:hover,

#custom-html-sr button.list-group-item-success:focus,

#custom-html-sr button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sr a.list-group-item-success.active,

#custom-html-sr a.list-group-item-success.active:focus,

#custom-html-sr a.list-group-item-success.active:hover,

#custom-html-sr button.list-group-item-success.active,

#custom-html-sr button.list-group-item-success.active:focus,

#custom-html-sr button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sr .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sr a.list-group-item-info,

#custom-html-sr button.list-group-item-info {

  color: #31708f;

}

#custom-html-sr a.list-group-item-info .list-group-item-heading,

#custom-html-sr button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sr a.list-group-item-info:focus,

#custom-html-sr a.list-group-item-info:hover,

#custom-html-sr button.list-group-item-info:focus,

#custom-html-sr button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sr a.list-group-item-info.active,

#custom-html-sr a.list-group-item-info.active:focus,

#custom-html-sr a.list-group-item-info.active:hover,

#custom-html-sr button.list-group-item-info.active,

#custom-html-sr button.list-group-item-info.active:focus,

#custom-html-sr button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sr .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sr a.list-group-item-warning,

#custom-html-sr button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sr a.list-group-item-warning .list-group-item-heading,

#custom-html-sr button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sr a.list-group-item-warning:focus,

#custom-html-sr a.list-group-item-warning:hover,

#custom-html-sr button.list-group-item-warning:focus,

#custom-html-sr button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sr a.list-group-item-warning.active,

#custom-html-sr a.list-group-item-warning.active:focus,

#custom-html-sr a.list-group-item-warning.active:hover,

#custom-html-sr button.list-group-item-warning.active,

#custom-html-sr button.list-group-item-warning.active:focus,

#custom-html-sr button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sr .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sr a.list-group-item-danger,

#custom-html-sr button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sr a.list-group-item-danger .list-group-item-heading,

#custom-html-sr button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sr a.list-group-item-danger:focus,

#custom-html-sr a.list-group-item-danger:hover,

#custom-html-sr button.list-group-item-danger:focus,

#custom-html-sr button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sr a.list-group-item-danger.active,

#custom-html-sr a.list-group-item-danger.active:focus,

#custom-html-sr a.list-group-item-danger.active:hover,

#custom-html-sr button.list-group-item-danger.active,

#custom-html-sr button.list-group-item-danger.active:focus,

#custom-html-sr button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sr .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sr .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sr .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sr .panel-body {

  padding: 15px;

}

#custom-html-sr .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sr .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sr .panel-title > .small,

#custom-html-sr .panel-title > .small > a,

#custom-html-sr .panel-title > a,

#custom-html-sr .panel-title > small,

#custom-html-sr .panel-title > small > a {

  color: inherit;

}

#custom-html-sr .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sr .panel > .list-group,

#custom-html-sr .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sr .panel > .list-group .list-group-item,

#custom-html-sr .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sr .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sr .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sr .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sr .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sr .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sr .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sr .panel > .panel-collapse > .table,

#custom-html-sr .panel > .table,

#custom-html-sr .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sr .panel > .panel-collapse > .table caption,

#custom-html-sr .panel > .table caption,

#custom-html-sr .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sr .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sr .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sr .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sr .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sr .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sr .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sr .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sr .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sr .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sr .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sr .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sr .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sr .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sr .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sr .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sr .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sr .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sr .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sr .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sr .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sr .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sr .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sr .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sr .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sr .panel > .panel-body + .table,

#custom-html-sr .panel > .panel-body + .table-responsive,

#custom-html-sr .panel > .table + .panel-body,

#custom-html-sr .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sr .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sr .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sr .panel > .table-bordered,

#custom-html-sr .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sr .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sr .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sr .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sr .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sr .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sr .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sr .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sr .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sr .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sr .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sr .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sr .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sr .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sr .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sr .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sr .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sr .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sr .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sr .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sr .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sr .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sr .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sr .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sr .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sr .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sr .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sr .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sr .panel-group {

  margin-bottom: 20px;

}

#custom-html-sr .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sr .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sr .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sr .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sr .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sr .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sr .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sr .panel-default {

  border-color: #dddddd;

}

#custom-html-sr .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sr .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sr .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sr .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sr .panel-primary {

  border-color: #337ab7;

}

#custom-html-sr .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sr .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sr .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sr .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sr .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sr .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sr .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sr .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sr .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sr .panel-info {

  border-color: #bce8f1;

}

#custom-html-sr .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sr .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sr .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sr .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sr .panel-warning {

  border-color: #faebcc;

}

#custom-html-sr .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sr .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sr .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sr .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-sr .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sr .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sr .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sr .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sr .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sr .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sr .embed-responsive .embed-responsive-item,

#custom-html-sr .embed-responsive embed,

#custom-html-sr .embed-responsive iframe,

#custom-html-sr .embed-responsive object,

#custom-html-sr .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sr .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sr .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sr .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sr .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sr .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sr .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sr .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sr .close:focus,

#custom-html-sr .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sr button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sr .modal-open {

  overflow: hidden;

}

#custom-html-sr .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sr .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sr .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sr .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sr .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sr .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sr .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sr .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sr .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sr .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sr .modal-header .close {

  margin-top: -2px;

}

#custom-html-sr .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sr .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sr .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sr .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sr .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sr .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sr .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-sr .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sr .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sr .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-sr .modal-lg {

    width: 900px;

  }

}

#custom-html-sr .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sr .tooltip.in {

  opacity: 0.9;

}

#custom-html-sr .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sr .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sr .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sr .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sr .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sr .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sr .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sr .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sr .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sr .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sr .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sr .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sr .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sr .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sr .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sr .popover.top {

  margin-top: -10px;

}

#custom-html-sr .popover.right {

  margin-left: 10px;

}

#custom-html-sr .popover.bottom {

  margin-top: 10px;

}

#custom-html-sr .popover.left {

  margin-left: -10px;

}

#custom-html-sr .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sr .popover-content {

  padding: 9px 14px;

}

#custom-html-sr .popover > .arrow,

#custom-html-sr .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sr .popover > .arrow {

  border-width: 11px;

}

#custom-html-sr .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sr .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sr .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sr .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sr .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sr .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sr .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sr .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sr .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sr .carousel {

  position: relative;

}

#custom-html-sr .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sr .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sr .carousel-inner > .item > a > img,

#custom-html-sr .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sr .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sr .carousel-inner > .item.active.right,

  #custom-html-sr .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sr .carousel-inner > .item.active.left,

  #custom-html-sr .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sr .carousel-inner > .item.active,

  #custom-html-sr .carousel-inner > .item.next.left,

  #custom-html-sr .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sr .carousel-inner > .active,

#custom-html-sr .carousel-inner > .next,

#custom-html-sr .carousel-inner > .prev {

  display: block;

}

#custom-html-sr .carousel-inner > .active {

  left: 0;

}

#custom-html-sr .carousel-inner > .next,

#custom-html-sr .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sr .carousel-inner > .next {

  left: 100%;

}

#custom-html-sr .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sr .carousel-inner > .next.left,

#custom-html-sr .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sr .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sr .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sr .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sr .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sr .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sr .carousel-control:focus,

#custom-html-sr .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sr .carousel-control .glyphicon-chevron-left,

#custom-html-sr .carousel-control .glyphicon-chevron-right,

#custom-html-sr .carousel-control .icon-next,

#custom-html-sr .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sr .carousel-control .glyphicon-chevron-left,

#custom-html-sr .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sr .carousel-control .glyphicon-chevron-right,

#custom-html-sr .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sr .carousel-control .icon-next,

#custom-html-sr .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sr .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sr .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sr .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sr .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;


  border-radius: 10px;

}

#custom-html-sr .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sr .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sr .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-sr .carousel-control .glyphicon-chevron-left,

  #custom-html-sr .carousel-control .glyphicon-chevron-right,

  #custom-html-sr .carousel-control .icon-next,

  #custom-html-sr .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sr .carousel-control .glyphicon-chevron-left,

  #custom-html-sr .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sr .carousel-control .glyphicon-chevron-right,

  #custom-html-sr .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sr .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sr .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sr .btn-group-vertical > .btn-group:after,

#custom-html-sr .btn-group-vertical > .btn-group:before,

#custom-html-sr .btn-toolbar:after,

#custom-html-sr .btn-toolbar:before,

#custom-html-sr .clearfix:after,

#custom-html-sr .clearfix:before,

#custom-html-sr .container-fluid:after,

#custom-html-sr .container-fluid:before,

#custom-html-sr .container:after,

#custom-html-sr .container:before,

#custom-html-sr .dl-horizontal dd:after,

#custom-html-sr .dl-horizontal dd:before,

#custom-html-sr .form-horizontal .form-group:after,

#custom-html-sr .form-horizontal .form-group:before,

#custom-html-sr .modal-footer:after,

#custom-html-sr .modal-footer:before,

#custom-html-sr .modal-header:after,

#custom-html-sr .modal-header:before,

#custom-html-sr .nav:after,

#custom-html-sr .nav:before,

#custom-html-sr .navbar-collapse:after,

#custom-html-sr .navbar-collapse:before,

#custom-html-sr .navbar-header:after,

#custom-html-sr .navbar-header:before,

#custom-html-sr .navbar:after,

#custom-html-sr .navbar:before,

#custom-html-sr .pager:after,

#custom-html-sr .pager:before,

#custom-html-sr .panel-body:after,

#custom-html-sr .panel-body:before,

#custom-html-sr .row:after,

#custom-html-sr .row:before {

  display: table;

  content: " ";

}

#custom-html-sr .btn-group-vertical > .btn-group:after,

#custom-html-sr .btn-toolbar:after,

#custom-html-sr .clearfix:after,

#custom-html-sr .container-fluid:after,

#custom-html-sr .container:after,

#custom-html-sr .dl-horizontal dd:after,

#custom-html-sr .form-horizontal .form-group:after,

#custom-html-sr .modal-footer:after,

#custom-html-sr .modal-header:after,

#custom-html-sr .nav:after,

#custom-html-sr .navbar-collapse:after,

#custom-html-sr .navbar-header:after,

#custom-html-sr .navbar:after,

#custom-html-sr .pager:after,

#custom-html-sr .panel-body:after,

#custom-html-sr .row:after {

  clear: both;

}

#custom-html-sr .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sr .pull-right {

  float: right !important;

}

#custom-html-sr .pull-left {

  float: left !important;

}

#custom-html-sr .hide {

  display: none !important;

}

#custom-html-sr .show {

  display: block !important;

}

#custom-html-sr .invisible {

  visibility: hidden;

}

#custom-html-sr .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sr .hidden {

  display: none !important;

}

#custom-html-sr .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sr .visible-lg,

#custom-html-sr .visible-md,

#custom-html-sr .visible-sm,

#custom-html-sr .visible-xs {

  display: none !important;

}

#custom-html-sr .visible-lg-block,

#custom-html-sr .visible-lg-inline,

#custom-html-sr .visible-lg-inline-block,

#custom-html-sr .visible-md-block,

#custom-html-sr .visible-md-inline,

#custom-html-sr .visible-md-inline-block,

#custom-html-sr .visible-sm-block,

#custom-html-sr .visible-sm-inline,

#custom-html-sr .visible-sm-inline-block,

#custom-html-sr .visible-xs-block,

#custom-html-sr .visible-xs-inline,

#custom-html-sr .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-sr .visible-xs {

    display: block !important;

  }

  #custom-html-sr table.visible-xs {

    display: table !important;

  }

  #custom-html-sr tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sr td.visible-xs,

  #custom-html-sr th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sr .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sr .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sr .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sr .visible-sm {

    display: block !important;

  }

  #custom-html-sr table.visible-sm {

    display: table !important;

  }

  #custom-html-sr tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sr td.visible-sm,

  #custom-html-sr th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sr .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sr .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sr .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sr .visible-md {

    display: block !important;

  }

  #custom-html-sr table.visible-md {

    display: table !important;

  }

  #custom-html-sr tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sr td.visible-md,

  #custom-html-sr th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sr .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sr .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sr .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sr .visible-lg {

    display: block !important;

  }

  #custom-html-sr table.visible-lg {

    display: table !important;

  }

  #custom-html-sr tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sr td.visible-lg,

  #custom-html-sr th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sr .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sr .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sr .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sr .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sr .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sr .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sr .hidden-lg {

    display: none !important;

  }

}

#custom-html-sr .visible-print {

  display: none !important;

}

@media print {

  #custom-html-sr .visible-print {

    display: block !important;

  }

  #custom-html-sr table.visible-print {

    display: table !important;

  }

  #custom-html-sr tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sr td.visible-print,

  #custom-html-sr th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-sr .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-sr .visible-print-block {

    display: block !important;

  }

}

#custom-html-sr .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-sr .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-sr .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-sr .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-sr .hidden-print {

    display: none !important;

  }

}

#custom-html-sr .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-sr .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sr .intl-tel-input .hide {

  display: none;

}

#custom-html-sr .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sr .intl-tel-input input,

#custom-html-sr .intl-tel-input input[type=tel],

#custom-html-sr .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sr .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sr .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sr .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sr .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sr .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sr .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sr .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sr .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sr .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-sr .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sr .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sr .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sr .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sr .intl-tel-input .country-list .country-name,

#custom-html-sr .intl-tel-input .country-list .dial-code,

#custom-html-sr .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sr .intl-tel-input .country-list .country-name,

#custom-html-sr .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sr .intl-tel-input.allow-dropdown input,

#custom-html-sr .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sr .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sr .intl-tel-input.separate-dial-code input,

#custom-html-sr .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sr .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sr .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sr .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sr .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sr .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sr .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sr .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sr .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sr .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sr .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sr .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sr .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sr .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sr .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sr .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sr .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sr .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sr .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sr .iti-flag {

  width: 20px;

}

#custom-html-sr .iti-flag.be {

  width: 18px;

}

#custom-html-sr .iti-flag.ch {

  width: 15px;

}

#custom-html-sr .iti-flag.mc {

  width: 19px;

}

#custom-html-sr .iti-flag.ne {

  width: 18px;

}

#custom-html-sr .iti-flag.np {

  width: 13px;

}

#custom-html-sr .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sr .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-sr .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sr .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-sr .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sr .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sr .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sr .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sr .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sr .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sr .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sr .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sr .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sr .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sr .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sr .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sr .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sr .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sr .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sr .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sr .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sr .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sr .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sr .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sr .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sr .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sr .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sr .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sr .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sr .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sr .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sr .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sr .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sr .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sr .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sr .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sr .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sr .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sr .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sr .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sr .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sr .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sr .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sr .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sr .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sr .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sr .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-sr .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sr .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sr .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sr .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sr .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sr .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sr .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sr .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sr .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sr .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sr .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sr .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sr .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sr .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sr .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sr .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sr .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sr .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-sr .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sr .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sr .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sr .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sr .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sr .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sr .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sr .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sr .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sr .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sr .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sr .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sr .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sr .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sr .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sr .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sr .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sr .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sr .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sr .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sr .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sr .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sr .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sr .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sr .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sr .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sr .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sr .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sr .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sr .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sr .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sr .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sr .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sr .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sr .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sr .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sr .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sr .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sr .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sr .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sr .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sr .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sr .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sr .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sr .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sr .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sr .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sr .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sr .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sr .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sr .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sr .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sr .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-sr .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sr .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sr .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sr .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sr .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sr .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sr .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sr .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sr .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sr .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sr .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sr .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sr .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sr .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sr .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sr .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sr .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sr .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sr .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sr .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sr .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sr .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sr .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sr .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sr .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sr .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sr .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sr .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sr .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sr .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sr .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sr .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sr .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sr .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sr .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sr .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sr .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sr .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sr .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sr .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sr .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sr .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sr .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sr .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sr .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sr .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sr .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sr .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sr .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sr .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sr .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sr .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sr .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sr .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sr .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sr .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sr .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sr .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-sr .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sr .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sr .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sr .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sr .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sr .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sr .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sr .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sr .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sr .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sr .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sr .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sr .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sr .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sr .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sr .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sr .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sr .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sr .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sr .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sr .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sr .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sr .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sr .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sr .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sr .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sr .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sr .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sr .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sr .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sr .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sr .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sr .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sr .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sr .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sr .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sr .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sr .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sr .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sr .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sr .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sr .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sr .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sr .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sr .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sr .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sr .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sr .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sr .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sr .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sr .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sr .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sr .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sr .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sr .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sr .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sr .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sr .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sr .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sr .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sr .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sr .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sr .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sr .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sr .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sr .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sr .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sr .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sr .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-sr .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sr .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sr .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sr .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sr .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sr .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sr .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sr .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sr .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sr .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sr .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sr .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sr .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sr .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sr .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sr .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sr .iti-flag.np {

  background-color: transparent;

}

#custom-html-sr body,

#custom-html-sr button,

#custom-html-sr input,

#custom-html-sr select,

#custom-html-sr textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sr h1,

#custom-html-sr h2,

#custom-html-sr h3,

#custom-html-sr h4,

#custom-html-sr h5,

#custom-html-sr h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-sr .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sr .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sr .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sr .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-sr .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sr .navbar-main .navbar-nav > .active > a,

#custom-html-sr .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sr .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sr .navbar-main .navbar-nav > .open > a,

#custom-html-sr .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sr .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sr .navbar-main .navbar-nav > li > a:focus,

#custom-html-sr .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sr #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sr .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sr .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-sr .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sr .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-sr .navbar-header {

    float: none;

  }

  #custom-html-sr .navbar-left,

  #custom-html-sr .navbar-right {

    float: none !important;

  }

  #custom-html-sr .navbar-toggle {

    display: block;

  }

  #custom-html-sr .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sr .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sr .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sr .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sr .navbar-nav > li {

    float: none;

  }

  #custom-html-sr .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sr .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-sr .panel {

  font-size: 0.9em;

}

#custom-html-sr .list-group {

  font-size: 0.9em;

}

#custom-html-sr .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-sr .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sr a.list-group-item.active,

#custom-html-sr a.list-group-item.active:focus,

#custom-html-sr a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sr .pagination {

  font-size: 0.8em;

}

#custom-html-sr .pagination > .active > a,

#custom-html-sr .pagination > .active > a:focus,

#custom-html-sr .pagination > .active > a:hover,

#custom-html-sr .pagination > .active > span,

#custom-html-sr .pagination > .active > span:focus,

#custom-html-sr .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sr .dropdown-menu > li > a:focus,

#custom-html-sr .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sr .label {

  border-radius: 0;

}

#custom-html-sr input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sr .list-group-item {

  padding: 7px 15px;

}

#custom-html-sr .panel-body {

  padding: 10px 15px;

}

#custom-html-sr .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sr .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sr .btn {

  overflow: hidden;

}

#custom-html-sr body,

#custom-html-sr html {

  height: 100%;

}

#custom-html-sr body {

  background-color: #f8f8f8;

}

#custom-html-sr h1,

#custom-html-sr h2,

#custom-html-sr h3,

#custom-html-sr h4,

#custom-html-sr h5,

#custom-html-sr h6 {

  font-weight: 400;

}

#custom-html-sr a {

  color: #005588;

}

#custom-html-sr section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sr section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sr section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sr section#header .search {

  margin: 20px 0;

}

#custom-html-sr section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sr section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sr section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sr section#main-content {

  margin-bottom: 60px;

}

#custom-html-sr .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sr section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sr section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sr section#footer {

    line-height: 32px;

  }

}

#custom-html-sr section#footer .back-to-top {

  float: right;

}

#custom-html-sr section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sr .adminreturndiv {

  display: none !important;

}

#custom-html-sr .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sr .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sr .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sr .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sr .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sr .navbar-main .navbar-toggle:focus,

#custom-html-sr .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sr .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sr .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-sr .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sr .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sr .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-sr div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sr div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sr div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sr div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sr div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sr .h1,

  #custom-html-sr h1 {

    font-size: 26px;

  }

  #custom-html-sr .h2,

  #custom-html-sr h2 {

    font-size: 20px;

  }

  #custom-html-sr .h3,

  #custom-html-sr h3 {

    font-size: 16px;

  }

  #custom-html-sr .h4,

  #custom-html-sr h4 {

    font-size: 14px;

  }

  #custom-html-sr .h5,

  #custom-html-sr h5 {

    font-size: 12px;

  }

  #custom-html-sr .h6,

  #custom-html-sr h6 {

    font-size: 11px;

  }

  #custom-html-sr div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-sr .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sr .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sr .margin-10 {

  margin: 10px;

}

#custom-html-sr .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sr .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sr .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sr .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sr .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sr .input-inline {

  display: inline-block;

}

#custom-html-sr .input-inline-100 {

  width: 100px;

}

#custom-html-sr .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-sr .pull-md-left {

    float: left;

  }

  #custom-html-sr .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-sr .pull-sm-left {

    float: left;

  }

  #custom-html-sr .pull-sm-right {

    float: right;

  }

  #custom-html-sr .text-right-sm {

    text-align: right;

  }

}

#custom-html-sr .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sr .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sr .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-sr .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-sr .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-sr .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sr .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sr i.icon-rss {

  color: #ff6600;

}

#custom-html-sr section#main-menu {

  background-color: #000000;

}

#custom-html-sr section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sr section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sr section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sr section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sr section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sr section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sr section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sr section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sr section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sr section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sr section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sr section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-sr section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-sr .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sr .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sr .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sr .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sr .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sr .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sr .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sr .home-shortcuts li span {

  display: none;

}

#custom-html-sr .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sr .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-sr .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-sr .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sr .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sr .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sr .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-sr .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sr .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sr .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sr .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sr .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sr .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sr .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sr .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sr .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sr .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sr .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sr .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sr .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sr .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sr .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sr .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sr .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sr .tiles .tile a {

  text-decoration: none;

}

#custom-html-sr .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sr .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sr .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-sr .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sr .tiles .tile:nth-child(1),

  #custom-html-sr .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-sr .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sr .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sr .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sr .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sr .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sr .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sr .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sr .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sr .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sr .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sr .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sr .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sr .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sr .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sr .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sr .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sr .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sr .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sr .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sr .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sr .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sr .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sr .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sr .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sr .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sr .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sr .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sr .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sr .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sr .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sr .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sr .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sr .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sr .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sr .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sr .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sr .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sr .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sr .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sr .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sr .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sr ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sr ul.top-nav > li,

#custom-html-sr ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sr ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sr ul.top-nav > li:active > a,

#custom-html-sr ul.top-nav > li:focus > a,

#custom-html-sr ul.top-nav > li:hover > a,

#custom-html-sr ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sr ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sr ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sr ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sr ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-sr ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sr ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sr ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-sr ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sr ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sr ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-sr div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sr div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sr div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sr div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sr div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sr div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sr .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sr .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-sr .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-sr .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sr .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-sr .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sr .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sr .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-sr .domain-check-availability {

  width: 100px;

}

#custom-html-sr .domain-step-options {

  min-height: 300px;

}

#custom-html-sr .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sr .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sr .domain-checker-invalid,

#custom-html-sr .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sr div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sr .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sr .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sr .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sr a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sr .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sr .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sr .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sr .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-sr .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sr .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sr .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sr .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sr .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sr .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sr .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sr .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-sr .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sr .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sr .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sr .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sr .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sr .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sr .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sr .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sr .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sr .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sr .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sr .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sr .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sr .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sr div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sr div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sr div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sr .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sr .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sr .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sr .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sr div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sr div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-sr .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sr .product-status-pending {

  background-color: #f89406;

}

#custom-html-sr .product-status-active {

  background-color: #46a546;

}

#custom-html-sr .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sr .product-status-cancelled,

#custom-html-sr .product-status-terminated {

  background-color: #666666;

}

#custom-html-sr .product-status-fraud {

  background-color: #000000;

}

#custom-html-sr .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sr div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sr .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sr .ssl-inactive {

  cursor: pointer;

}

#custom-html-sr .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-sr .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sr .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sr .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sr .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sr .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sr .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sr .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sr .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-sr .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sr .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sr .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sr .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-sr .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sr .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sr .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sr .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sr .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sr .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sr .pagination > li > a,

#custom-html-sr .pagination > li > span {

  color: #444444;

}

#custom-html-sr .pagination > .active > a,

#custom-html-sr .pagination > .active > a:focus,

#custom-html-sr .pagination > .active > a:hover,

#custom-html-sr .pagination > .active > span,

#custom-html-sr .pagination > .active > span:focus,

#custom-html-sr .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sr table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sr .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sr table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sr .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-sr table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sr .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sr .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sr .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sr table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sr table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sr table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sr .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sr .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sr .status-pending {

  color: #d9534f;

}

#custom-html-sr .status-pending.transfer {

  color: #a68500;

}

#custom-html-sr .status-active,

#custom-html-sr .status-completed,

#custom-html-sr .status-open {

  color: #3fad46;

}

#custom-html-sr .status-suspended {

  color: #f0ad4e;

}

#custom-html-sr .status-customer-reply {

  color: #ff6600;

}

#custom-html-sr .status-answered,

#custom-html-sr .status-fraud {

  color: #000000;

}

#custom-html-sr .status-expired,

#custom-html-sr .status-transferred.away {

  color: #004258;

}

#custom-html-sr .status-cancelled {

  color: #9fa29a;

}

#custom-html-sr .status-terminated {

  color: #666666;

}

#custom-html-sr .status-onhold {

  color: #224488;

}

#custom-html-sr .status-inprogress {

  color: #cc0000;

}

#custom-html-sr .status-closed {

  color: #888888;

}

#custom-html-sr .status-paid {

  color: #498302;

}

#custom-html-sr .status-unpaid {

  color: #ed3e48;

}

#custom-html-sr .status-cancelled {

  color: #87939f;

}

#custom-html-sr .status-collections {

  color: #9a141e;

}

#custom-html-sr .status-refunded {

  color: #319fc3;

}

#custom-html-sr .status-customer-reply {

  color: #ff6600;

}

#custom-html-sr .status-delivered {

  color: #224488;

}

#custom-html-sr .status-accepted {

  color: #498302;

}

#custom-html-sr .status-dead,

#custom-html-sr .status-lost {

  color: #000000;

}

#custom-html-sr .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sr .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sr .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sr .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sr .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sr .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sr .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-sr .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-sr .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sr .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sr .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-sr .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sr .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sr .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sr .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sr .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sr .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sr .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sr .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sr .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sr .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sr .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sr .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sr .ticket-reply .rating,

#custom-html-sr .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sr .ticket-reply .rating span.star,

#custom-html-sr .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sr .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sr .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sr .ticket-reply .rating span.star:before,

#custom-html-sr .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sr .ticket-reply .rating span.star:hover:before,

#custom-html-sr .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sr .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sr .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sr .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sr .ticket-reply .clear {

  clear: both;

}

#custom-html-sr .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sr .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sr .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sr .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sr .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sr .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sr .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sr .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sr .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sr .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sr .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sr .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sr .popover-user-notifications ul li i.far,

#custom-html-sr .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sr .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sr .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sr .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sr .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sr .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sr .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sr .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sr .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sr .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sr div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sr div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sr div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sr div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sr div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sr div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sr div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-sr div.credit-card {

    max-width: 250px;

  }

  #custom-html-sr div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sr div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sr div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sr div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sr div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-sr .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sr .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sr .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sr .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sr .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sr .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sr div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sr div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sr div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sr div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sr div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sr div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sr .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-sr .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-sr .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sr .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sr .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sr .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sr .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-sr div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sr div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sr div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sr #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sr .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sr .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sr .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sr .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sr .kb-category a small {

  color: #888888;

}

#custom-html-sr .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sr .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sr .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sr .kbarticles a.admin-inline-edit,

#custom-html-sr .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sr h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sr .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sr .kb-article-title h2 {

  margin: 0;

}

#custom-html-sr .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sr .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sr .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sr .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sr .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sr .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sr .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sr .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sr #stepResults {

  font-size: 20px;

}

#custom-html-sr #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-sr #stepResults {

    font-size: 14px;

  }

  #custom-html-sr #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sr div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-sr #main-menu,

  #custom-html-sr #top-nav,

  #custom-html-sr .header-lined,

  #custom-html-sr .sidebar {

    display: none;

  }

  #custom-html-sr a[href]:after {

    content: "" !important;

  }

}

#custom-html-sr h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sr h3.with-badge i,

#custom-html-sr h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sr h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-sr h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sr .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-sr .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sr .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sr a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sr a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sr .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sr .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sr .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sr .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sr .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sr .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sr .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sr .login-popover {

  font-size: 12px;

}

#custom-html-sr .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sr .login-popover hr {

  margin: 5px 0;

}

#custom-html-sr tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sr tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sr .error-container {

  text-align: center;

}

#custom-html-sr .error-container h1 {

  margin-top: 40px;

}

#custom-html-sr .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sr .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sr .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sr .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sr .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sr #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sr #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sr #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sr .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-sr #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sr #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-sr #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sr #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sr #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sr #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sr .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sr .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sr .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sr .email-verification .btn:active,

#custom-html-sr .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sr .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sr .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sr .email-verification .far,

#custom-html-sr .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-sr .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sr .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sr .email-verification .button {

    float: right;

  }

  #custom-html-sr .email-verification .far,

  #custom-html-sr .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-sr .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sr .email-verification.success .far,

#custom-html-sr .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sr .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sr .email-verification.failed .far,

#custom-html-sr .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sr .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-sr .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sr .md-editor > .md-preview,

#custom-html-sr .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sr div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sr .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sr .small-font {

  font-size: 0.9em;

}

#custom-html-sr .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sr .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sr .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sr .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sr .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sr .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sr .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sr .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sr .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sr .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sr .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sr .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sr .panel-heading i.fab,

#custom-html-sr .panel-heading i.fal,

#custom-html-sr .panel-heading i.far,

#custom-html-sr .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sr .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sr .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sr .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sr .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sr .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sr .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sr .panel-sidebar .list-group-item.disabled,

#custom-html-sr .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sr .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sr .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sr .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sr .panel-sidebar a.list-group-item.active,

#custom-html-sr .panel-sidebar a.list-group-item.active:focus,

#custom-html-sr .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sr .panel-sidebar a.list-group-item.active i,

#custom-html-sr .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sr .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sr .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sr .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sr .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sr .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sr .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sr .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sr .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sr .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sr .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sr .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sr .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sr .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sr .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sr .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-sr .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sr .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-sr .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sr .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sr .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sr .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sr .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sr .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sr .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sr .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sr .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sr .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sr .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sr .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sr .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sr .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-sr .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sr .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sr .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sr .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sr .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sr .promo-banner p {

  margin: 5px 0;

}

#custom-html-sr .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sr .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-sr .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sr .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sr .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sr .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sr .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sr .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sr .promo-banner-slim {

  padding: 10px;

}

#custom-html-sr .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sr .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sr .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sr .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sr .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sr .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sr .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sr .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sr .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sr .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sr .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sr .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sr .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sr .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sr .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sr .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sr .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sr .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sr .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sr .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sr .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sr .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sr .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sr .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sr .panel-mc-sso .btn,

#custom-html-sr .panel-mc-sso .form-control,

#custom-html-sr .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sr .panel-mc-sso small {

  display: block;

}

#custom-html-sr .social-signin-btns {

  text-align: center;

}

#custom-html-sr .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sr .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sr .btn-social i.far,

#custom-html-sr .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-facebook.active,

#custom-html-sr .btn-facebook:active,

#custom-html-sr .btn-facebook:focus,

#custom-html-sr .btn-facebook:hover,

#custom-html-sr .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-facebook.active,

#custom-html-sr .btn-facebook:active,

#custom-html-sr .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sr .btn-facebook.disabled,

#custom-html-sr .btn-facebook.disabled.active,

#custom-html-sr .btn-facebook.disabled:active,

#custom-html-sr .btn-facebook.disabled:focus,

#custom-html-sr .btn-facebook.disabled:hover,

#custom-html-sr .btn-facebook[disabled],

#custom-html-sr .btn-facebook[disabled].active,

#custom-html-sr .btn-facebook[disabled]:active,

#custom-html-sr .btn-facebook[disabled]:focus,

#custom-html-sr .btn-facebook[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-facebook,

#custom-html-sr fieldset[disabled] .btn-facebook.active,

#custom-html-sr fieldset[disabled] .btn-facebook:active,

#custom-html-sr fieldset[disabled] .btn-facebook:focus,

#custom-html-sr fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-google.active,

#custom-html-sr .btn-google:active,

#custom-html-sr .btn-google:focus,

#custom-html-sr .btn-google:hover,

#custom-html-sr .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-google.active,

#custom-html-sr .btn-google:active,

#custom-html-sr .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sr .btn-google-plus.disabled.active,

#custom-html-sr .btn-google-plus.disabled:active,

#custom-html-sr .btn-google-plus.disabled:focus,

#custom-html-sr .btn-google-plus[disabled].active,

#custom-html-sr .btn-google-plus[disabled]:active,

#custom-html-sr .btn-google-plus[disabled]:focus,

#custom-html-sr .btn-google-plus[disabled]:hover,

#custom-html-sr .btn-google.disabled,

#custom-html-sr .btn-google.disabled:hover,

#custom-html-sr .btn-google[disabled],

#custom-html-sr fieldset[disabled] .btn-google,

#custom-html-sr fieldset[disabled] .btn-google-plus.active,

#custom-html-sr fieldset[disabled] .btn-google-plus:active,

#custom-html-sr fieldset[disabled] .btn-google-plus:focus,

#custom-html-sr fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-twitter.active,

#custom-html-sr .btn-twitter:active,

#custom-html-sr .btn-twitter:focus,

#custom-html-sr .btn-twitter:hover,

#custom-html-sr .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .btn-twitter.active,

#custom-html-sr .btn-twitter:active,

#custom-html-sr .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sr .btn-twitter.disabled,

#custom-html-sr .btn-twitter.disabled.active,

#custom-html-sr .btn-twitter.disabled:active,

#custom-html-sr .btn-twitter.disabled:focus,

#custom-html-sr .btn-twitter.disabled:hover,

#custom-html-sr .btn-twitter[disabled],

#custom-html-sr .btn-twitter[disabled].active,

#custom-html-sr .btn-twitter[disabled]:active,

#custom-html-sr .btn-twitter[disabled]:focus,

#custom-html-sr .btn-twitter[disabled]:hover,

#custom-html-sr fieldset[disabled] .btn-twitter,

#custom-html-sr fieldset[disabled] .btn-twitter.active,

#custom-html-sr fieldset[disabled] .btn-twitter:active,

#custom-html-sr fieldset[disabled] .btn-twitter:focus,

#custom-html-sr fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sr .providerPreLinking {

  min-height: 52px;

}

#custom-html-sr .providerLinkingFeedback {

  display: none;

}

#custom-html-sr #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sr #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sr #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sr #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sr .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sr #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sr #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sr #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sr #registration .field,

#custom-html-sr #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sr #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sr #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sr #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sr #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sr #registration textarea.field {

  height: auto;

}

#custom-html-sr #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sr #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sr #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sr #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sr #registration .field[disabled],

#custom-html-sr #registration .field[readonly],

#custom-html-sr #registration .form-control[disabled],

#custom-html-sr #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sr #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-sr .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sr .upgrade .product-to-be-upgraded h4,

#custom-html-sr .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sr .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sr .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sr .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sr .upgrade .products .product .current,

#custom-html-sr .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sr .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sr .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-sr .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-sr .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sr .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sr .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sr .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sr .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sr .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sr .upgrade .products .far,

#custom-html-sr .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sr .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sr .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-sr .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sr .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sr .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sr .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sr .intl-tel-input {

  width: 100%;

}

#custom-html-sr .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sr .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .bootstrap-switch input[type=checkbox],

#custom-html-sr .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sr .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sr .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sr .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sr .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sr .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sr .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sr .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sr .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sr .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sr .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sr .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sr .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-sr .md-editor .md-footer,

#custom-html-sr .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sr .md-editor > .md-header {

  margin: 0;

}

#custom-html-sr .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sr .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sr .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sr .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sr .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sr .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sr .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sr .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-input,

#custom-html-sr .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sr .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sr .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sr .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sr .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sr .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sr .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sr .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sr .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sr .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sr .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sr table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sr table.dataTable td,

#custom-html-sr table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sr table.dataTable td.dataTables_empty,

#custom-html-sr table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sr table.dataTable.nowrap td,

#custom-html-sr table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sr div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sr table.dataTable thead > tr > td.sorting,

#custom-html-sr table.dataTable thead > tr > td.sorting_asc,

#custom-html-sr table.dataTable thead > tr > td.sorting_desc,

#custom-html-sr table.dataTable thead > tr > th.sorting,

#custom-html-sr table.dataTable thead > tr > th.sorting_asc,

#custom-html-sr table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sr table.dataTable thead > tr > td:active,

#custom-html-sr table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sr table.dataTable thead .sorting,

#custom-html-sr table.dataTable thead .sorting_asc,

#custom-html-sr table.dataTable thead .sorting_asc_disabled,

#custom-html-sr table.dataTable thead .sorting_desc,

#custom-html-sr table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sr table.dataTable thead .sorting:after,

#custom-html-sr table.dataTable thead .sorting_asc:after,

#custom-html-sr table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sr table.dataTable thead .sorting_desc:after,

#custom-html-sr table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sr table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sr table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sr table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sr table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sr table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sr div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sr div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sr div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sr div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sr div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sr div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sr div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sr div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-sr div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sr div.dataTables_wrapper div.dataTables_info,

  #custom-html-sr div.dataTables_wrapper div.dataTables_length,

  #custom-html-sr div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-sr table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sr table.dataTable.table-condensed .sorting:after,

#custom-html-sr table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sr table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sr table.table-bordered.dataTable td,

#custom-html-sr table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sr table.table-bordered.dataTable td:last-child,

#custom-html-sr table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sr table.table-bordered.dataTable tbody td,

#custom-html-sr table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sr div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sr div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sr div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-sr div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sr table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sr table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sr table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sr table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sr table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sr table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sr table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sr table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sr table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sr table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sr table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sr table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sr table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sr table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sr table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sr table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sr div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sr div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sr div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sr div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sr div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sr div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-sr div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sr div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sr .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sr .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sr .multiselect-container > li {

  padding: 0;

}

#custom-html-sr .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sr .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sr .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sr .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sr .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sr .multiselect-container > li > a > label.checkbox,

#custom-html-sr .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sr .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sr .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sr .form-inline .multiselect-container label.checkbox,

#custom-html-sr .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sr .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sr .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7uO26YI4 {

  padding-top: 60px;

  padding-bottom: 45px;

  background-image: url("../../../assets/images/bg-main-normal.gif");

}

.cid-sl7uO26YI4 P {

  color: #767676;

}

.cid-sl7uO26YI4 H1 {

  color: #ffffff;

}

.cid-sl7uO26YI4 h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF37NDwBxu .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF37NDwBxu .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF37NDwBxu .divider-top::before,

.cid-sF37NDwBxu .divider-bottom::before,

.cid-sF37NDwBxu .divider-top::after,

.cid-sF37NDwBxu .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF37NDwBxu .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF37NDwBxu .divider-triangles::before {

  top: -50px;

}

.cid-sF37NDwBxu .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF37NDwBxu .divider-halfcircle::before {

  top: -50px;

}

.cid-sF37NDwBxu .divider-multitriangles::before,

.cid-sF37NDwBxu .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF37NDwBxu .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-rBH160oNIj {

  padding-top: 60px;

  padding-bottom: 0px;

  background-color: #efefef;

}

@media (min-width: 992px) {

  .cid-rBH160oNIj .mbr-figure {

    padding-right: 4rem;

  }

}

@media (max-width: 991px) {

  .cid-rBH160oNIj .mbr-figure {

    padding-bottom: 3rem;

  }

}

@media (max-width: 767px) {

  .cid-rBH160oNIj .mbr-text {

    text-align: center;

  }

}

.cid-rBH160oNIj .mbr-text,

.cid-rBH160oNIj .mbr-section-btn {

  color: #000000;

}

.cid-sF383OAwmr .divider-top {

  position: relative;

  padding: 0em;

  background: #efefef;

}

.cid-sF383OAwmr .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF383OAwmr .divider-top::before,

.cid-sF383OAwmr .divider-bottom::before,

.cid-sF383OAwmr .divider-top::after,

.cid-sF383OAwmr .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF383OAwmr .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF383OAwmr .divider-triangles::before {

  top: -50px;

}

.cid-sF383OAwmr .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF383OAwmr .divider-halfcircle::before {

  top: -50px;

}

.cid-sF383OAwmr .divider-multitriangles::before,

.cid-sF383OAwmr .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF383OAwmr .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-sl7vwWGlGx {

  padding-top: 75px;

  padding-bottom: 15px;

  background-color: #ffffff;

}

.cid-sl7vwWGlGx P {

  color: #767676;

}

.cid-sl7vwWGlGx H1 {

  color: #000000;

}

.cid-sl7vwWGlGx .mbr-text,

.cid-sl7vwWGlGx .mbr-section-btn {

  color: #ffffff;

}

.cid-sl7vwWGlGx h1 {

  text-shadow: 2px 2px gray;

}

.cid-rZIMlNpRFW {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #efefef;

  overflow: hidden;

}

.cid-rZIMlNpRFW .mbr-slider .carousel-control {

  background: #1b1b1b;

}

.cid-rZIMlNpRFW .mbr-slider .carousel-control-prev {

  left: 0;

  margin-left: 2.5rem;

}

.cid-rZIMlNpRFW .mbr-slider .carousel-control-next {

  right: 0;

  margin-right: 2.5rem;

}

.cid-rZIMlNpRFW .mbr-slider .modal-body .close {

  background: #1b1b1b;

}

.cid-rZIMlNpRFW .mbr-gallery-item > div::before {

  content: '';

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: #554346;

  opacity: 0;

  -webkit-transition: 0.2s opacity ease-in-out;

  transition: 0.2s opacity ease-in-out;

  background: linear-gradient(to left, #554346, #45505b) !important;

}

.cid-rZIMlNpRFW .mbr-gallery-item > div:hover .mbr-gallery-title::before {

  background: transparent !important;

}

.cid-rZIMlNpRFW .mbr-gallery-item > div:hover:before {

  opacity: 0.7 !important;

}

.cid-rZIMlNpRFW .mbr-gallery-title {

  font-size: .9em;

  position: absolute;

  display: block;

  width: 100%;

  bottom: 0;

  padding: 1rem;

  color: #fff;

  z-index: 2;

}

.cid-rZIMlNpRFW .mbr-gallery-title:before {

  content: " ";

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  z-index: -1;

  position: absolute;

  background: #554346 !important;

  opacity: 0.7;

  -webkit-transition: 0.2s background ease-in-out;

  transition: 0.2s background ease-in-out;

  background: linear-gradient(to left, #554346, #45505b) !important;

}

.cid-sF38spihx5 .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF38spihx5 .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF38spihx5 .divider-top::before,

.cid-sF38spihx5 .divider-bottom::before,

.cid-sF38spihx5 .divider-top::after,

.cid-sF38spihx5 .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF38spihx5 .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF38spihx5 .divider-triangles::before {

  top: -50px;

}

.cid-sF38spihx5 .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF38spihx5 .divider-halfcircle::before {

  top: -50px;

}

.cid-sF38spihx5 .divider-multitriangles::before,

.cid-sF38spihx5 .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF38spihx5 .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-s889sVzmqU {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s889sVzmqU h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s889sVzmqU p {

  color: #767676;

  text-align: left;

}

.cid-s889sVzmqU .card-box {

  padding-top: 2rem;

}

.cid-s889sVzmqU .card-wrapper {

  height: 100%;

}

.cid-svDwVKanxS {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDwVKanxS .content {

    text-align: center;

  }

  .cid-svDwVKanxS .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDwVKanxS .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDwVKanxS .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDwVKanxS .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDwVKanxS .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDwVKanxS .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDwVKanxS .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDwVKanxS .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDwVKanxS .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDwVKanxS .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDwVKanxS .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDwVKanxS .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDwVKanxS .copyright > p {

  text-align: left;

}

.cid-svDwVKanxS H5 {

  color: #000000;

}

.cid-svGGkXXJRM .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGGkXXJRM .my-float {

  margin-top: 16px;

}

.cid-svGGkXXJRM P {

  color: #232323;

}

.cid-svGGkXXJRM DIV {

  color: #ffffff;

}

.cid-svGGkXXJRM H10 {

  color: #767676;

}

.cid-svGGkXXJRM .hidden {

  display: none;

}

#custom-html-ss {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-ss html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-ss body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-ss article,

#custom-html-ss aside,

#custom-html-ss details,

#custom-html-ss figcaption,

#custom-html-ss figure,

#custom-html-ss footer,

#custom-html-ss header,

#custom-html-ss hgroup,

#custom-html-ss main,

#custom-html-ss menu,

#custom-html-ss nav,

#custom-html-ss section,

#custom-html-ss summary {

  display: block;

}

#custom-html-ss audio,

#custom-html-ss canvas,

#custom-html-ss progress,

#custom-html-ss video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-ss audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-ss [hidden],

#custom-html-ss template {

  display: none;

}

#custom-html-ss a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-ss a:active,

#custom-html-ss a:hover {

  outline: 0;

}

#custom-html-ss abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-ss b,

#custom-html-ss strong {

  font-weight: 700;

}

#custom-html-ss dfn {

  font-style: italic;

}

#custom-html-ss h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-ss mark {

  color: #000;

  background: #ffff00;

}

#custom-html-ss small {

  font-size: 80%;

}

#custom-html-ss sub,

#custom-html-ss sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-ss sup {

  top: -0.5em;

}

#custom-html-ss sub {

  bottom: -0.25em;

}

#custom-html-ss img {

  border: 0;

  vertical-align: middle;

}

#custom-html-ss svg:not(:root) {

  overflow: hidden;

}

#custom-html-ss figure {

  margin: 0;

}

#custom-html-ss hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-ss pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-ss code,

#custom-html-ss kbd,

#custom-html-ss pre,

#custom-html-ss samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-ss button,

#custom-html-ss input,

#custom-html-ss optgroup,

#custom-html-ss select,

#custom-html-ss textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-ss button {

  overflow: visible;

}

#custom-html-ss button,

#custom-html-ss select {

  text-transform: none;

}

#custom-html-ss button,

#custom-html-ss html input[type=button],

#custom-html-ss input[type=reset],

#custom-html-ss input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-ss button[disabled],

#custom-html-ss html input[disabled] {

  cursor: default;

}

#custom-html-ss button::-moz-focus-inner,

#custom-html-ss input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-ss input {

  line-height: normal;

}

#custom-html-ss input[type=checkbox],

#custom-html-ss input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-ss input[type=number]::-webkit-inner-spin-button,

#custom-html-ss input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-ss input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-ss input[type=search]::-webkit-search-cancel-button,

#custom-html-ss input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-ss fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-ss legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-ss textarea {

  overflow: auto;

}

#custom-html-ss optgroup {

  font-weight: 700;

}

#custom-html-ss table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-ss td,

#custom-html-ss th {

  padding: 0;

}

@media print {

  #custom-html-ss *,

  #custom-html-ss :after,

  #custom-html-ss :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-ss a,

  #custom-html-ss a:visited {

    text-decoration: underline;

  }

  #custom-html-ss a[href]:after {

    content: "" !important;

  }

  #custom-html-ss abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-ss a[href^="#"]:after,

  #custom-html-ss a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-ss blockquote,

  #custom-html-ss pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-ss thead {

    display: table-header-group;

  }

  #custom-html-ss img,

  #custom-html-ss tr {

    page-break-inside: avoid;

  }

  #custom-html-ss img {

    max-width: 100% !important;

  }

  #custom-html-ss h2,

  #custom-html-ss h3,

  #custom-html-ss p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-ss h2,

  #custom-html-ss h3 {

    page-break-after: avoid;

  }

  #custom-html-ss .navbar {

    display: none;

  }

  #custom-html-ss .btn > .caret,

  #custom-html-ss .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-ss .label {

    border: 1px solid #000000;

  }

  #custom-html-ss .table {

    border-collapse: collapse !important;

  }

  #custom-html-ss .table td,

  #custom-html-ss .table th {

    background-color: #ffffff !important;

  }

  #custom-html-ss .table-bordered td,

  #custom-html-ss .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-ss .visible-print {

    display: block !important;

  }

  #custom-html-ss table.visible-print {

    display: table !important;

  }

  #custom-html-ss tr.visible-print {

    display: table-row !important;

  }

  #custom-html-ss td.visible-print,

  #custom-html-ss th.visible-print {

    display: table-cell !important;

  }

  #custom-html-ss .visible-print-block {

    display: block !important;

  }

  #custom-html-ss .visible-print-inline {

    display: inline !important;

  }

  #custom-html-ss .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-ss .hidden-print {

    display: none !important;

  }

  #custom-html-ss #main-menu,

  #custom-html-ss #top-nav,

  #custom-html-ss .header-lined,

  #custom-html-ss .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-ss .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-ss .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-ss .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-ss .glyphicon-eur:before,

#custom-html-ss .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-ss .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-ss .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-ss .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-ss .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-ss .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-ss .glyphicon-music:before {

  content: "\e002";

}

#custom-html-ss .glyphicon-search:before {

  content: "\e003";

}

#custom-html-ss .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-ss .glyphicon-star:before {

  content: "\e006";

}

#custom-html-ss .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-ss .glyphicon-user:before {

  content: "\e008";

}

#custom-html-ss .glyphicon-film:before {

  content: "\e009";

}

#custom-html-ss .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-ss .glyphicon-th:before {

  content: "\e011";

}

#custom-html-ss .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-ss .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-ss .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-ss .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-ss .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-ss .glyphicon-off:before {

  content: "\e017";

}

#custom-html-ss .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-ss .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-ss .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-ss .glyphicon-home:before {

  content: "\e021";

}

#custom-html-ss .glyphicon-file:before {

  content: "\e022";

}

#custom-html-ss .glyphicon-time:before {

  content: "\e023";

}

#custom-html-ss .glyphicon-road:before {

  content: "\e024";

}

#custom-html-ss .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-ss .glyphicon-download:before {

  content: "\e026";

}

#custom-html-ss .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-ss .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-ss .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-ss .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-ss .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-ss .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-ss .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-ss .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-ss .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-ss .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-ss .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-ss .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-ss .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-ss .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-ss .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-ss .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-ss .glyphicon-book:before {

  content: "\e043";

}

#custom-html-ss .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-ss .glyphicon-print:before {

  content: "\e045";

}

#custom-html-ss .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-ss .glyphicon-font:before {

  content: "\e047";

}

#custom-html-ss .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-ss .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-ss .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-ss .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-ss .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-ss .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-ss .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-ss .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-ss .glyphicon-list:before {

  content: "\e056";

}

#custom-html-ss .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-ss .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-ss .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-ss .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-ss .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-ss .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-ss .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-ss .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-ss .glyphicon-share:before {

  content: "\e066";

}

#custom-html-ss .glyphicon-check:before {

  content: "\e067";

}

#custom-html-ss .glyphicon-move:before {

  content: "\e068";

}

#custom-html-ss .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-ss .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-ss .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-ss .glyphicon-play:before {

  content: "\e072";

}

#custom-html-ss .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-ss .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-ss .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-ss .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-ss .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-ss .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-ss .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-ss .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-ss .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-ss .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-ss .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-ss .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-ss .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-ss .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-ss .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-ss .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-ss .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-ss .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-ss .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-ss .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-ss .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-ss .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-ss .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-ss .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-ss .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-ss .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-ss .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-ss .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-ss .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-ss .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-ss .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-ss .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-ss .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-ss .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-ss .glyphicon-random:before {

  content: "\e110";

}

#custom-html-ss .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-ss .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-ss .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-ss .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-ss .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-ss .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-ss .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-ss .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-ss .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-ss .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-ss .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-ss .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-ss .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-ss .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-ss .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-ss .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-ss .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-ss .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-ss .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-ss .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-ss .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-ss .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-ss .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-ss .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-ss .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-ss .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-ss .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-ss .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-ss .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-ss .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-ss .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-ss .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-ss .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-ss .glyphicon-link:before {

  content: "\e144";

}

#custom-html-ss .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-ss .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-ss .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-ss .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-ss .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-ss .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-ss .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-ss .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-ss .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-ss .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-ss .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-ss .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-ss .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-ss .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-ss .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-ss .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-ss .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-ss .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-ss .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-ss .glyphicon-record:before {

  content: "\e165";

}

#custom-html-ss .glyphicon-save:before {

  content: "\e166";

}

#custom-html-ss .glyphicon-open:before {

  content: "\e167";

}

#custom-html-ss .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-ss .glyphicon-import:before {

  content: "\e169";

}

#custom-html-ss .glyphicon-export:before {

  content: "\e170";

}

#custom-html-ss .glyphicon-send:before {

  content: "\e171";

}

#custom-html-ss .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-ss .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-ss .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-ss .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-ss .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-ss .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-ss .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-ss .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-ss .glyphicon-header:before {

  content: "\e180";

}

#custom-html-ss .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-ss .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-ss .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-ss .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-ss .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-ss .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-ss .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-ss .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-ss .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-ss .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-ss .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-ss .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-ss .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-ss .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-ss .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-ss .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-ss .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-ss .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-ss .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-ss .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-ss .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-ss .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-ss .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-ss .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-ss .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-ss .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-ss .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-ss .glyphicon-king:before {

  content: "\e211";

}

#custom-html-ss .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-ss .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-ss .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-ss .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-ss .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-ss .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-ss .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-ss .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-ss .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-ss .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-ss .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-ss .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-ss .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-ss .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-ss .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-ss .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-ss .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-ss .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-ss .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-ss .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-ss .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-ss .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-ss .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-ss .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-ss .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-ss .glyphicon-education:before {

  content: "\e233";

}

#custom-html-ss .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-ss .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-ss .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-ss .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-ss .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-ss .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-ss .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-ss .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-ss .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-ss .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-ss .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-ss .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-ss .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-ss .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-ss .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-ss .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-ss .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-ss .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-ss .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-ss .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-ss .glyphicon-console:before {

  content: "\e254";

}

#custom-html-ss .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-ss .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-ss .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-ss .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-ss .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-ss .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-ss * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-ss :after,

#custom-html-ss :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-ss button,

#custom-html-ss input,

#custom-html-ss select,

#custom-html-ss textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-ss a:focus,

#custom-html-ss a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-ss a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-ss .carousel-inner > .item > a > img,

#custom-html-ss .carousel-inner > .item > img,

#custom-html-ss .img-responsive,

#custom-html-ss .thumbnail a > img,

#custom-html-ss .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-ss .img-rounded {

  border-radius: 6px;

}

#custom-html-ss .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-ss .img-circle {

  border-radius: 50%;

}

#custom-html-ss .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-ss .sr-only-focusable:active,

#custom-html-ss .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-ss [role=button] {

  cursor: pointer;

}

#custom-html-ss .h1,

#custom-html-ss .h2,

#custom-html-ss .h3,

#custom-html-ss .h4,

#custom-html-ss .h5,

#custom-html-ss .h6,

#custom-html-ss h1,

#custom-html-ss h2,

#custom-html-ss h3,

#custom-html-ss h4,

#custom-html-ss h5,

#custom-html-ss h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-ss .h1 .small,

#custom-html-ss .h1 small,

#custom-html-ss .h2 .small,

#custom-html-ss .h2 small,

#custom-html-ss .h3 .small,

#custom-html-ss .h3 small,

#custom-html-ss .h4 .small,

#custom-html-ss .h4 small,

#custom-html-ss .h5 .small,

#custom-html-ss .h5 small,

#custom-html-ss .h6 .small,

#custom-html-ss .h6 small,

#custom-html-ss h1 .small,

#custom-html-ss h1 small,

#custom-html-ss h2 .small,

#custom-html-ss h2 small,

#custom-html-ss h3 .small,

#custom-html-ss h3 small,

#custom-html-ss h4 .small,

#custom-html-ss h4 small,

#custom-html-ss h5 .small,

#custom-html-ss h5 small,

#custom-html-ss h6 .small,

#custom-html-ss h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-ss .h1,

#custom-html-ss .h2,

#custom-html-ss .h3,

#custom-html-ss h1,

#custom-html-ss h2,

#custom-html-ss h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-ss .h1 .small,

#custom-html-ss .h1 small,

#custom-html-ss .h2 .small,

#custom-html-ss .h2 small,

#custom-html-ss .h3 .small,

#custom-html-ss .h3 small,

#custom-html-ss h1 .small,

#custom-html-ss h1 small,

#custom-html-ss h2 .small,

#custom-html-ss h2 small,

#custom-html-ss h3 .small,

#custom-html-ss h3 small {

  font-size: 65%;

}

#custom-html-ss .h4,

#custom-html-ss .h5,

#custom-html-ss .h6,

#custom-html-ss h4,

#custom-html-ss h5,

#custom-html-ss h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-ss .h4 .small,

#custom-html-ss .h4 small,

#custom-html-ss .h5 .small,

#custom-html-ss .h5 small,

#custom-html-ss .h6 .small,

#custom-html-ss .h6 small,

#custom-html-ss h4 .small,

#custom-html-ss h4 small,

#custom-html-ss h5 .small,

#custom-html-ss h5 small,

#custom-html-ss h6 .small,

#custom-html-ss h6 small {

  font-size: 75%;

}

#custom-html-ss .h1,

#custom-html-ss h1 {

  font-size: 36px;

}

#custom-html-ss .h2,

#custom-html-ss h2 {

  font-size: 30px;

}

#custom-html-ss .h3,

#custom-html-ss h3 {

  font-size: 24px;

}

#custom-html-ss .h4,

#custom-html-ss h4 {

  font-size: 18px;

}

#custom-html-ss .h5,

#custom-html-ss h5 {

  font-size: 14px;

}

#custom-html-ss .h6,

#custom-html-ss h6 {

  font-size: 12px;

}

#custom-html-ss p {

  margin: 0 0 10px;

}

#custom-html-ss .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-ss .lead {

    font-size: 21px;

  }

  #custom-html-ss .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-ss .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-ss .container {

    width: 750px;

  }

  #custom-html-ss .col-sm-1,

  #custom-html-ss .col-sm-10,

  #custom-html-ss .col-sm-11,

  #custom-html-ss .col-sm-12,

  #custom-html-ss .col-sm-2,

  #custom-html-ss .col-sm-3,

  #custom-html-ss .col-sm-4,

  #custom-html-ss .col-sm-5,

  #custom-html-ss .col-sm-6,

  #custom-html-ss .col-sm-7,

  #custom-html-ss .col-sm-8,

  #custom-html-ss .col-sm-9 {

    float: left;

  }

  #custom-html-ss .col-sm-12 {

    width: 100%;

  }

  #custom-html-ss .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-ss .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-ss .col-sm-9 {

    width: 75%;

  }

  #custom-html-ss .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-ss .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-ss .col-sm-6 {

    width: 50%;

  }

  #custom-html-ss .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-ss .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-ss .col-sm-3 {

    width: 25%;

  }

  #custom-html-ss .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-ss .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-ss .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-ss .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-ss .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-ss .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-ss .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-ss .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-ss .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-ss .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-ss .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-ss .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-ss .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-ss .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-ss .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-ss .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-ss .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-ss .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-ss .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-ss .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-ss .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-ss .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-ss .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-ss .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-ss .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-ss .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-ss .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-ss .col-sm-push-0 {

    left: auto;

  }

  #custom-html-ss .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-ss .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-ss .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-ss .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-ss .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-ss .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-ss .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-ss .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-ss .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-ss .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-ss .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-ss .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-ss .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-ss .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-ss .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-ss .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-ss .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-ss .form-inline .input-group .form-control,

  #custom-html-ss .form-inline .input-group .input-group-addon,

  #custom-html-ss .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-ss .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-ss .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-ss .form-inline .checkbox,

  #custom-html-ss .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-ss .form-inline .checkbox label,

  #custom-html-ss .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-ss .form-inline .checkbox input[type=checkbox],

  #custom-html-ss .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-ss .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-ss .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-ss .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-ss .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-ss .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-ss .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-ss .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-ss .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-ss .nav-tabs.nav-justified > .active > a,

  #custom-html-ss .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-ss .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-ss .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-ss .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-ss .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-ss .nav-tabs-justified > .active > a,

  #custom-html-ss .nav-tabs-justified > .active > a:focus,

  #custom-html-ss .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-ss .navbar {

    border-radius: 4px;

  }

  #custom-html-ss .navbar-header {

    float: left;

  }

  #custom-html-ss .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-ss .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-ss .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-ss .navbar-fixed-bottom .navbar-collapse,

  #custom-html-ss .navbar-fixed-top .navbar-collapse,

  #custom-html-ss .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-ss .container-fluid > .navbar-collapse,

  #custom-html-ss .container-fluid > .navbar-header,

  #custom-html-ss .container > .navbar-collapse,

  #custom-html-ss .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-ss .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-ss .navbar-fixed-bottom,

  #custom-html-ss .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-ss .navbar > .container .navbar-brand,

  #custom-html-ss .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-ss .navbar-toggle {

    display: none;

  }

  #custom-html-ss .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-ss .navbar-nav > li {

    float: left;

  }

  #custom-html-ss .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-ss .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-ss .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-ss .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-ss .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-ss .navbar-form .input-group .form-control,

  #custom-html-ss .navbar-form .input-group .input-group-addon,

  #custom-html-ss .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-ss .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-ss .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-ss .navbar-form .checkbox,

  #custom-html-ss .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-ss .navbar-form .checkbox label,

  #custom-html-ss .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-ss .navbar-form .checkbox input[type=checkbox],

  #custom-html-ss .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-ss .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-ss .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-ss .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-ss .navbar-left {

    float: left !important;

  }

  #custom-html-ss .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-ss .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-ss .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-ss .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-ss .modal-sm {

    width: 300px;

  }

  #custom-html-ss .pull-sm-left {

    float: left;

  }

  #custom-html-ss .pull-sm-right {

    float: right;

  }

  #custom-html-ss .text-right-sm {

    text-align: right;

  }

  #custom-html-ss .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-ss .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-ss .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-ss .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-ss .email-verification .button {

    float: right;

  }

  #custom-html-ss .email-verification .far,

  #custom-html-ss .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-ss .store-order-container .payment-term {

    float: right;

  }

  #custom-html-ss .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-ss .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-ss .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-ss .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-ss .small,

#custom-html-ss small {

  font-size: 85%;

}

#custom-html-ss .mark,

#custom-html-ss mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-ss .text-left {

  text-align: left;

}

#custom-html-ss .text-right {

  text-align: right;

}

#custom-html-ss .text-center {

  text-align: center;

}

#custom-html-ss .text-justify {

  text-align: justify;

}

#custom-html-ss .text-nowrap {

  white-space: nowrap;

}

#custom-html-ss .text-lowercase {

  text-transform: lowercase;

}

#custom-html-ss .text-uppercase {

  text-transform: uppercase;

}

#custom-html-ss .text-capitalize {

  text-transform: capitalize;

}

#custom-html-ss .text-muted {

  color: #777777;

}

#custom-html-ss .text-primary {

  color: #000000;

}

#custom-html-ss a.text-primary:focus,

#custom-html-ss a.text-primary:hover {

  color: #000000;

}

#custom-html-ss .text-success {

  color: #3c763d;

}

#custom-html-ss a.text-success:focus,

#custom-html-ss a.text-success:hover {

  color: #2b542c;

}

#custom-html-ss .text-info {

  color: #31708f;

}

#custom-html-ss a.text-info:focus,

#custom-html-ss a.text-info:hover {

  color: #000000;

}

#custom-html-ss .text-warning {

  color: #8a6d3b;

}

#custom-html-ss a.text-warning:focus,

#custom-html-ss a.text-warning:hover {

  color: #66512c;

}

#custom-html-ss .text-danger {

  color: #a94442;

}

#custom-html-ss a.text-danger:focus,

#custom-html-ss a.text-danger:hover {

  color: #843534;

}

#custom-html-ss .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-ss a.bg-primary:focus,

#custom-html-ss a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-ss .bg-success {

  background-color: #dff0d8;

}

#custom-html-ss a.bg-success:focus,

#custom-html-ss a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-ss .bg-info {

  background-color: #d9edf7;

}

#custom-html-ss a.bg-info:focus,

#custom-html-ss a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-ss .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-ss a.bg-warning:focus,

#custom-html-ss a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-ss .bg-danger {

  background-color: #f2dede;

}

#custom-html-ss a.bg-danger:focus,

#custom-html-ss a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-ss .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-ss ol,

#custom-html-ss ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-ss ol ol,

#custom-html-ss ol ul,

#custom-html-ss ul ol,

#custom-html-ss ul ul {

  margin-bottom: 0;

}

#custom-html-ss .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-ss .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-ss .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-ss dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-ss dd,

#custom-html-ss dt {

  line-height: 1.42857143;

}

#custom-html-ss dt {

  font-weight: 700;

}

#custom-html-ss dd {

  margin-left: 0;

}

#custom-html-ss abbr[data-original-title],

#custom-html-ss abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-ss .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-ss blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-ss blockquote ol:last-child,

#custom-html-ss blockquote p:last-child,

#custom-html-ss blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-ss blockquote .small,

#custom-html-ss blockquote footer,

#custom-html-ss blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-ss blockquote .small:before,

#custom-html-ss blockquote footer:before,

#custom-html-ss blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-ss .blockquote-reverse,

#custom-html-ss blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-ss .blockquote-reverse .small:before,

#custom-html-ss .blockquote-reverse footer:before,

#custom-html-ss .blockquote-reverse small:before,

#custom-html-ss blockquote.pull-right .small:before,

#custom-html-ss blockquote.pull-right footer:before,

#custom-html-ss blockquote.pull-right small:before {

  content: '';

}

#custom-html-ss .blockquote-reverse .small:after,

#custom-html-ss .blockquote-reverse footer:after,

#custom-html-ss .blockquote-reverse small:after,

#custom-html-ss blockquote.pull-right .small:after,

#custom-html-ss blockquote.pull-right footer:after,

#custom-html-ss blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-ss address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-ss code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-ss kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-ss kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-ss pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-ss .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-ss .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-ss .container {

    width: 970px;

  }

  #custom-html-ss .col-md-1,

  #custom-html-ss .col-md-10,

  #custom-html-ss .col-md-11,

  #custom-html-ss .col-md-12,

  #custom-html-ss .col-md-2,

  #custom-html-ss .col-md-3,

  #custom-html-ss .col-md-4,

  #custom-html-ss .col-md-5,

  #custom-html-ss .col-md-6,

  #custom-html-ss .col-md-7,

  #custom-html-ss .col-md-8,

  #custom-html-ss .col-md-9 {

    float: left;

  }

  #custom-html-ss .col-md-12 {

    width: 100%;

  }

  #custom-html-ss .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-ss .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-ss .col-md-9 {

    width: 75%;

  }

  #custom-html-ss .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-ss .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-ss .col-md-6 {

    width: 50%;

  }

  #custom-html-ss .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-ss .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-ss .col-md-3 {

    width: 25%;

  }

  #custom-html-ss .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-ss .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-ss .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-ss .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-ss .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-ss .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-ss .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-ss .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-ss .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-ss .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-ss .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-ss .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-ss .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-ss .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-ss .col-md-pull-0 {

    right: auto;

  }

  #custom-html-ss .col-md-push-12 {

    left: 100%;

  }

  #custom-html-ss .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-ss .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-ss .col-md-push-9 {

    left: 75%;

  }

  #custom-html-ss .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-ss .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-ss .col-md-push-6 {

    left: 50%;

  }

  #custom-html-ss .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-ss .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-ss .col-md-push-3 {

    left: 25%;

  }

  #custom-html-ss .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-ss .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-ss .col-md-push-0 {

    left: auto;

  }

  #custom-html-ss .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-ss .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-ss .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-ss .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-ss .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-ss .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-ss .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-ss .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-ss .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-ss .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-ss .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-ss .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-ss .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-ss .modal-lg {

    width: 900px;

  }

  #custom-html-ss .pull-md-left {

    float: left;

  }

  #custom-html-ss .pull-md-right {

    float: right;

  }

  #custom-html-ss h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-ss .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-ss .container {

    width: 1170px;

  }

  #custom-html-ss .col-lg-1,

  #custom-html-ss .col-lg-10,

  #custom-html-ss .col-lg-11,

  #custom-html-ss .col-lg-12,

  #custom-html-ss .col-lg-2,

  #custom-html-ss .col-lg-3,

  #custom-html-ss .col-lg-4,

  #custom-html-ss .col-lg-5,

  #custom-html-ss .col-lg-6,

  #custom-html-ss .col-lg-7,

  #custom-html-ss .col-lg-8,

  #custom-html-ss .col-lg-9 {

    float: left;

  }

  #custom-html-ss .col-lg-12 {

    width: 100%;

  }

  #custom-html-ss .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-ss .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-ss .col-lg-9 {

    width: 75%;

  }

  #custom-html-ss .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-ss .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-ss .col-lg-6 {

    width: 50%;

  }

  #custom-html-ss .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-ss .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-ss .col-lg-3 {

    width: 25%;

  }

  #custom-html-ss .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-ss .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-ss .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-ss .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-ss .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-ss .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-ss .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-ss .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-ss .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-ss .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-ss .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-ss .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-ss .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-ss .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-ss .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-ss .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-ss .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-ss .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-ss .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-ss .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-ss .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-ss .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-ss .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-ss .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-ss .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-ss .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-ss .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-ss .col-lg-push-0 {

    left: auto;

  }

  #custom-html-ss .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-ss .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-ss .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-ss .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-ss .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-ss .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-ss .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-ss .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-ss .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-ss .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-ss .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-ss .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-ss .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-ss .visible-lg {

    display: block !important;

  }

  #custom-html-ss table.visible-lg {

    display: table !important;

  }

  #custom-html-ss tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-ss td.visible-lg,

  #custom-html-ss th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-ss .visible-lg-block {

    display: block !important;

  }

  #custom-html-ss .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-ss .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-ss .hidden-lg {

    display: none !important;

  }

  #custom-html-ss .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-ss .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-ss .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-ss .col-lg-1,

#custom-html-ss .col-lg-10,

#custom-html-ss .col-lg-11,

#custom-html-ss .col-lg-12,

#custom-html-ss .col-lg-2,

#custom-html-ss .col-lg-3,

#custom-html-ss .col-lg-4,

#custom-html-ss .col-lg-5,

#custom-html-ss .col-lg-6,

#custom-html-ss .col-lg-7,

#custom-html-ss .col-lg-8,

#custom-html-ss .col-lg-9,

#custom-html-ss .col-md-1,

#custom-html-ss .col-md-10,

#custom-html-ss .col-md-11,

#custom-html-ss .col-md-12,

#custom-html-ss .col-md-2,

#custom-html-ss .col-md-3,

#custom-html-ss .col-md-4,

#custom-html-ss .col-md-5,

#custom-html-ss .col-md-6,

#custom-html-ss .col-md-7,

#custom-html-ss .col-md-8,

#custom-html-ss .col-md-9,

#custom-html-ss .col-sm-1,

#custom-html-ss .col-sm-10,

#custom-html-ss .col-sm-11,

#custom-html-ss .col-sm-12,

#custom-html-ss .col-sm-2,

#custom-html-ss .col-sm-3,

#custom-html-ss .col-sm-4,

#custom-html-ss .col-sm-5,

#custom-html-ss .col-sm-6,

#custom-html-ss .col-sm-7,

#custom-html-ss .col-sm-8,

#custom-html-ss .col-sm-9,

#custom-html-ss .col-xs-1,

#custom-html-ss .col-xs-10,

#custom-html-ss .col-xs-11,

#custom-html-ss .col-xs-12,

#custom-html-ss .col-xs-2,

#custom-html-ss .col-xs-3,

#custom-html-ss .col-xs-4,

#custom-html-ss .col-xs-5,

#custom-html-ss .col-xs-6,

#custom-html-ss .col-xs-7,

#custom-html-ss .col-xs-8,

#custom-html-ss .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-ss .col-xs-1,

#custom-html-ss .col-xs-10,

#custom-html-ss .col-xs-11,

#custom-html-ss .col-xs-12,

#custom-html-ss .col-xs-2,

#custom-html-ss .col-xs-3,

#custom-html-ss .col-xs-4,

#custom-html-ss .col-xs-5,

#custom-html-ss .col-xs-6,

#custom-html-ss .col-xs-7,

#custom-html-ss .col-xs-8,

#custom-html-ss .col-xs-9 {

  float: left;

}

#custom-html-ss .col-xs-12 {

  width: 100%;

}

#custom-html-ss .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-ss .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-ss .col-xs-9 {

  width: 75%;

}

#custom-html-ss .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-ss .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-ss .col-xs-6 {

  width: 50%;

}

#custom-html-ss .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-ss .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-ss .col-xs-3 {

  width: 25%;

}

#custom-html-ss .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-ss .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-ss .col-xs-pull-12 {

  right: 100%;

}

#custom-html-ss .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-ss .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-ss .col-xs-pull-9 {

  right: 75%;

}

#custom-html-ss .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-ss .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-ss .col-xs-pull-6 {

  right: 50%;

}

#custom-html-ss .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-ss .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-ss .col-xs-pull-3 {

  right: 25%;

}

#custom-html-ss .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-ss .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-ss .col-xs-pull-0 {

  right: auto;

}

#custom-html-ss .col-xs-push-12 {

  left: 100%;

}

#custom-html-ss .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-ss .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-ss .col-xs-push-9 {

  left: 75%;

}

#custom-html-ss .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-ss .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-ss .col-xs-push-6 {

  left: 50%;

}

#custom-html-ss .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-ss .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-ss .col-xs-push-3 {

  left: 25%;

}

#custom-html-ss .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-ss .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-ss .col-xs-push-0 {

  left: auto;

}

#custom-html-ss .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-ss .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-ss .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-ss .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-ss .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-ss .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-ss .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-ss .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-ss .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-ss .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-ss .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-ss .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-ss .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-ss caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-ss th {

  text-align: left;

}

#custom-html-ss .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-ss .table > tbody > tr > td,

#custom-html-ss .table > tbody > tr > th,

#custom-html-ss .table > tfoot > tr > td,

#custom-html-ss .table > tfoot > tr > th,

#custom-html-ss .table > thead > tr > td,

#custom-html-ss .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-ss .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-ss .table > caption + thead > tr:first-child > td,

#custom-html-ss .table > caption + thead > tr:first-child > th,

#custom-html-ss .table > colgroup + thead > tr:first-child > td,

#custom-html-ss .table > colgroup + thead > tr:first-child > th,

#custom-html-ss .table > thead:first-child > tr:first-child > td,

#custom-html-ss .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-ss .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-ss .table .table {

  background-color: #ffffff;

}

#custom-html-ss .table-condensed > tbody > tr > td,

#custom-html-ss .table-condensed > tbody > tr > th,

#custom-html-ss .table-condensed > tfoot > tr > td,

#custom-html-ss .table-condensed > tfoot > tr > th,

#custom-html-ss .table-condensed > thead > tr > td,

#custom-html-ss .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-ss .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-ss .table-bordered > tbody > tr > td,

#custom-html-ss .table-bordered > tbody > tr > th,

#custom-html-ss .table-bordered > tfoot > tr > td,

#custom-html-ss .table-bordered > tfoot > tr > th,

#custom-html-ss .table-bordered > thead > tr > td,

#custom-html-ss .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-ss .table-bordered > thead > tr > td,

#custom-html-ss .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-ss .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-ss .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-ss table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-ss table td[class*=col-],

#custom-html-ss table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-ss .table > tbody > tr.active > td,

#custom-html-ss .table > tbody > tr.active > th,

#custom-html-ss .table > tbody > tr > td.active,

#custom-html-ss .table > tbody > tr > th.active,

#custom-html-ss .table > tfoot > tr.active > td,

#custom-html-ss .table > tfoot > tr.active > th,

#custom-html-ss .table > tfoot > tr > td.active,

#custom-html-ss .table > tfoot > tr > th.active,

#custom-html-ss .table > thead > tr.active > td,

#custom-html-ss .table > thead > tr.active > th,

#custom-html-ss .table > thead > tr > td.active,

#custom-html-ss .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-ss .table-hover > tbody > tr.active:hover > td,

#custom-html-ss .table-hover > tbody > tr.active:hover > th,

#custom-html-ss .table-hover > tbody > tr:hover > .active,

#custom-html-ss .table-hover > tbody > tr > td.active:hover,

#custom-html-ss .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-ss .table > tbody > tr.success > td,

#custom-html-ss .table > tbody > tr.success > th,

#custom-html-ss .table > tbody > tr > td.success,

#custom-html-ss .table > tbody > tr > th.success,

#custom-html-ss .table > tfoot > tr.success > td,

#custom-html-ss .table > tfoot > tr.success > th,

#custom-html-ss .table > tfoot > tr > td.success,

#custom-html-ss .table > tfoot > tr > th.success,

#custom-html-ss .table > thead > tr.success > td,

#custom-html-ss .table > thead > tr.success > th,

#custom-html-ss .table > thead > tr > td.success,

#custom-html-ss .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-ss .table-hover > tbody > tr.success:hover > td,

#custom-html-ss .table-hover > tbody > tr.success:hover > th,

#custom-html-ss .table-hover > tbody > tr:hover > .success,

#custom-html-ss .table-hover > tbody > tr > td.success:hover,

#custom-html-ss .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-ss .table > tbody > tr.info > td,

#custom-html-ss .table > tbody > tr.info > th,

#custom-html-ss .table > tbody > tr > td.info,

#custom-html-ss .table > tbody > tr > th.info,

#custom-html-ss .table > tfoot > tr.info > td,

#custom-html-ss .table > tfoot > tr.info > th,

#custom-html-ss .table > tfoot > tr > td.info,

#custom-html-ss .table > tfoot > tr > th.info,

#custom-html-ss .table > thead > tr.info > td,

#custom-html-ss .table > thead > tr.info > th,

#custom-html-ss .table > thead > tr > td.info,

#custom-html-ss .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-ss .table-hover > tbody > tr.info:hover > td,

#custom-html-ss .table-hover > tbody > tr.info:hover > th,

#custom-html-ss .table-hover > tbody > tr:hover > .info,

#custom-html-ss .table-hover > tbody > tr > td.info:hover,

#custom-html-ss .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-ss .table > tbody > tr.warning > td,

#custom-html-ss .table > tbody > tr.warning > th,

#custom-html-ss .table > tbody > tr > td.warning,

#custom-html-ss .table > tbody > tr > th.warning,

#custom-html-ss .table > tfoot > tr.warning > td,

#custom-html-ss .table > tfoot > tr.warning > th,

#custom-html-ss .table > tfoot > tr > td.warning,

#custom-html-ss .table > tfoot > tr > th.warning,

#custom-html-ss .table > thead > tr.warning > td,

#custom-html-ss .table > thead > tr.warning > th,

#custom-html-ss .table > thead > tr > td.warning,

#custom-html-ss .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-ss .table-hover > tbody > tr.warning:hover > td,

#custom-html-ss .table-hover > tbody > tr.warning:hover > th,

#custom-html-ss .table-hover > tbody > tr:hover > .warning,

#custom-html-ss .table-hover > tbody > tr > td.warning:hover,

#custom-html-ss .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-ss .table > tbody > tr.danger > td,

#custom-html-ss .table > tbody > tr.danger > th,

#custom-html-ss .table > tbody > tr > td.danger,

#custom-html-ss .table > tbody > tr > th.danger,

#custom-html-ss .table > tfoot > tr.danger > td,

#custom-html-ss .table > tfoot > tr.danger > th,

#custom-html-ss .table > tfoot > tr > td.danger,

#custom-html-ss .table > tfoot > tr > th.danger,

#custom-html-ss .table > thead > tr.danger > td,

#custom-html-ss .table > thead > tr.danger > th,

#custom-html-ss .table > thead > tr > td.danger,

#custom-html-ss .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-ss .table-hover > tbody > tr.danger:hover > td,

#custom-html-ss .table-hover > tbody > tr.danger:hover > th,

#custom-html-ss .table-hover > tbody > tr:hover > .danger,

#custom-html-ss .table-hover > tbody > tr > td.danger:hover,

#custom-html-ss .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-ss .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-ss .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-ss .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-ss .table-responsive > .table > tbody > tr > td,

  #custom-html-ss .table-responsive > .table > tbody > tr > th,

  #custom-html-ss .table-responsive > .table > tfoot > tr > td,

  #custom-html-ss .table-responsive > .table > tfoot > tr > th,

  #custom-html-ss .table-responsive > .table > thead > tr > td,

  #custom-html-ss .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-ss .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-ss .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-ss .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-ss .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-ss .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-ss .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-ss .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-ss .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-ss .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-ss .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-ss .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-ss .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-ss .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-ss .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-ss .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-ss .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-ss .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-ss div.dataTables_wrapper div.dataTables_filter,

  #custom-html-ss div.dataTables_wrapper div.dataTables_info,

  #custom-html-ss div.dataTables_wrapper div.dataTables_length,

  #custom-html-ss div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-ss div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-ss label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-ss input[type=file] {

  display: block;

}

#custom-html-ss input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-ss select[multiple],

#custom-html-ss select[size] {

  height: auto;

}

#custom-html-ss input[type=checkbox]:focus,

#custom-html-ss input[type=file]:focus,

#custom-html-ss input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-ss output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-ss .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-ss .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-ss .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-ss .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-ss .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-ss .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-ss .form-control[disabled],

#custom-html-ss .form-control[readonly],

#custom-html-ss fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-ss .form-control[disabled],

#custom-html-ss fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-ss textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-ss input[type=date].form-control,

  #custom-html-ss input[type=datetime-local].form-control,

  #custom-html-ss input[type=month].form-control,

  #custom-html-ss input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-ss .input-group-sm input[type=date],

  #custom-html-ss .input-group-sm input[type=datetime-local],

  #custom-html-ss .input-group-sm input[type=month],

  #custom-html-ss .input-group-sm input[type=time],

  #custom-html-ss input[type=date].input-sm,

  #custom-html-ss input[type=datetime-local].input-sm,

  #custom-html-ss input[type=month].input-sm,

  #custom-html-ss input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-ss .input-group-lg input[type=date],

  #custom-html-ss .input-group-lg input[type=datetime-local],

  #custom-html-ss .input-group-lg input[type=month],

  #custom-html-ss .input-group-lg input[type=time],

  #custom-html-ss input[type=date].input-lg,

  #custom-html-ss input[type=datetime-local].input-lg,

  #custom-html-ss input[type=month].input-lg,

  #custom-html-ss input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-ss .form-group {

  margin-bottom: 15px;

}

#custom-html-ss .checkbox,

#custom-html-ss .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-ss .checkbox label,

#custom-html-ss .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-ss .checkbox input[type=checkbox],

#custom-html-ss .checkbox-inline input[type=checkbox],

#custom-html-ss .radio input[type=radio],

#custom-html-ss .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-ss .checkbox + .checkbox,

#custom-html-ss .radio + .radio {

  margin-top: -5px;

}

#custom-html-ss .checkbox-inline,

#custom-html-ss .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-ss .checkbox-inline + .checkbox-inline,

#custom-html-ss .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-ss fieldset[disabled] input[type=checkbox],

#custom-html-ss fieldset[disabled] input[type=radio],

#custom-html-ss input[type=checkbox].disabled,

#custom-html-ss input[type=checkbox][disabled],

#custom-html-ss input[type=radio].disabled,

#custom-html-ss input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-ss .checkbox-inline.disabled,

#custom-html-ss .radio-inline.disabled,

#custom-html-ss fieldset[disabled] .checkbox-inline,

#custom-html-ss fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-ss .checkbox.disabled label,

#custom-html-ss .radio.disabled label,

#custom-html-ss fieldset[disabled] .checkbox label,

#custom-html-ss fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-ss .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-ss .form-control-static.input-lg,

#custom-html-ss .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-ss .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-ss select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-ss select[multiple].input-sm,

#custom-html-ss textarea.input-sm {

  height: auto;

}

#custom-html-ss .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-ss .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-ss .form-group-sm select[multiple].form-control,

#custom-html-ss .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-ss .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-ss .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-ss select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-ss select[multiple].input-lg,

#custom-html-ss textarea.input-lg {

  height: auto;

}

#custom-html-ss .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-ss .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-ss .form-group-lg select[multiple].form-control,

#custom-html-ss .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-ss .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-ss .has-feedback {

  position: relative;

}

#custom-html-ss .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-ss .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-ss .form-group-lg .form-control + .form-control-feedback,

#custom-html-ss .input-group-lg + .form-control-feedback,

#custom-html-ss .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-ss .form-group-sm .form-control + .form-control-feedback,

#custom-html-ss .input-group-sm + .form-control-feedback,

#custom-html-ss .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-ss .has-success .checkbox,

#custom-html-ss .has-success .checkbox-inline,

#custom-html-ss .has-success .control-label,

#custom-html-ss .has-success .help-block,

#custom-html-ss .has-success .radio,

#custom-html-ss .has-success .radio-inline,

#custom-html-ss .has-success.checkbox label,

#custom-html-ss .has-success.checkbox-inline label,

#custom-html-ss .has-success.radio label,

#custom-html-ss .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-ss .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-ss .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-ss .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-ss .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-ss .has-warning .checkbox,

#custom-html-ss .has-warning .checkbox-inline,

#custom-html-ss .has-warning .control-label,

#custom-html-ss .has-warning .help-block,

#custom-html-ss .has-warning .radio,

#custom-html-ss .has-warning .radio-inline,

#custom-html-ss .has-warning.checkbox label,

#custom-html-ss .has-warning.checkbox-inline label,

#custom-html-ss .has-warning.radio label,

#custom-html-ss .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-ss .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-ss .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-ss .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-ss .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-ss .has-error .checkbox,

#custom-html-ss .has-error .checkbox-inline,

#custom-html-ss .has-error .control-label,

#custom-html-ss .has-error .help-block,

#custom-html-ss .has-error .radio,

#custom-html-ss .has-error .radio-inline,

#custom-html-ss .has-error.checkbox label,

#custom-html-ss .has-error.checkbox-inline label,

#custom-html-ss .has-error.radio label,

#custom-html-ss .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-ss .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-ss .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-ss .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-ss .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-ss .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-ss .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-ss .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-ss .form-horizontal .checkbox,

#custom-html-ss .form-horizontal .checkbox-inline,

#custom-html-ss .form-horizontal .radio,

#custom-html-ss .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-ss .form-horizontal .checkbox,

#custom-html-ss .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-ss .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-ss .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-ss .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-ss .btn.active.focus,

#custom-html-ss .btn.active:focus,

#custom-html-ss .btn.focus,

#custom-html-ss .btn:active.focus,

#custom-html-ss .btn:active:focus,

#custom-html-ss .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-ss .btn.focus,

#custom-html-ss .btn:focus,

#custom-html-ss .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-ss .btn.active,

#custom-html-ss .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-ss .btn.disabled,

#custom-html-ss .btn[disabled],

#custom-html-ss fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-ss a.btn.disabled,

#custom-html-ss fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-ss .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-ss .btn-default.focus,

#custom-html-ss .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-ss .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-ss .btn-default.active,

#custom-html-ss .btn-default:active,

#custom-html-ss .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-ss .btn-default.active.focus,

#custom-html-ss .btn-default.active:focus,

#custom-html-ss .btn-default.active:hover,

#custom-html-ss .btn-default:active.focus,

#custom-html-ss .btn-default:active:focus,

#custom-html-ss .btn-default:active:hover,

#custom-html-ss .open > .dropdown-toggle.btn-default.focus,

#custom-html-ss .open > .dropdown-toggle.btn-default:focus,

#custom-html-ss .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-ss .btn-default.disabled.focus,

#custom-html-ss .btn-default.disabled:focus,

#custom-html-ss .btn-default.disabled:hover,

#custom-html-ss .btn-default[disabled].focus,

#custom-html-ss .btn-default[disabled]:focus,

#custom-html-ss .btn-default[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-default.focus,

#custom-html-ss fieldset[disabled] .btn-default:focus,

#custom-html-ss fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-ss .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-ss .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-ss .btn-primary.focus,

#custom-html-ss .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-ss .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-ss .btn-primary.active,

#custom-html-ss .btn-primary:active,

#custom-html-ss .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-ss .btn-primary.active.focus,

#custom-html-ss .btn-primary.active:focus,

#custom-html-ss .btn-primary.active:hover,

#custom-html-ss .btn-primary:active.focus,

#custom-html-ss .btn-primary:active:focus,

#custom-html-ss .btn-primary:active:hover,

#custom-html-ss .open > .dropdown-toggle.btn-primary.focus,

#custom-html-ss .open > .dropdown-toggle.btn-primary:focus,

#custom-html-ss .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-ss .btn-primary.disabled.focus,

#custom-html-ss .btn-primary.disabled:focus,

#custom-html-ss .btn-primary.disabled:hover,

#custom-html-ss .btn-primary[disabled].focus,

#custom-html-ss .btn-primary[disabled]:focus,

#custom-html-ss .btn-primary[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-primary.focus,

#custom-html-ss fieldset[disabled] .btn-primary:focus,

#custom-html-ss fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-ss .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-ss .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-ss .btn-success.focus,

#custom-html-ss .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-ss .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-ss .btn-success.active,

#custom-html-ss .btn-success:active,

#custom-html-ss .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-ss .btn-success.active.focus,

#custom-html-ss .btn-success.active:focus,

#custom-html-ss .btn-success.active:hover,

#custom-html-ss .btn-success:active.focus,

#custom-html-ss .btn-success:active:focus,

#custom-html-ss .btn-success:active:hover,

#custom-html-ss .open > .dropdown-toggle.btn-success.focus,

#custom-html-ss .open > .dropdown-toggle.btn-success:focus,

#custom-html-ss .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-ss .btn-success.disabled.focus,

#custom-html-ss .btn-success.disabled:focus,

#custom-html-ss .btn-success.disabled:hover,

#custom-html-ss .btn-success[disabled].focus,

#custom-html-ss .btn-success[disabled]:focus,

#custom-html-ss .btn-success[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-success.focus,

#custom-html-ss fieldset[disabled] .btn-success:focus,

#custom-html-ss fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-ss .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-ss .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-ss .btn-info.focus,

#custom-html-ss .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-ss .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-ss .btn-info.active,

#custom-html-ss .btn-info:active,

#custom-html-ss .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-ss .btn-info.active.focus,

#custom-html-ss .btn-info.active:focus,

#custom-html-ss .btn-info.active:hover,

#custom-html-ss .btn-info:active.focus,

#custom-html-ss .btn-info:active:focus,

#custom-html-ss .btn-info:active:hover,

#custom-html-ss .open > .dropdown-toggle.btn-info.focus,

#custom-html-ss .open > .dropdown-toggle.btn-info:focus,

#custom-html-ss .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-ss .btn-info.disabled.focus,

#custom-html-ss .btn-info.disabled:focus,

#custom-html-ss .btn-info.disabled:hover,

#custom-html-ss .btn-info[disabled].focus,

#custom-html-ss .btn-info[disabled]:focus,

#custom-html-ss .btn-info[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-info.focus,

#custom-html-ss fieldset[disabled] .btn-info:focus,

#custom-html-ss fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-ss .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-ss .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-ss .btn-warning.focus,

#custom-html-ss .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-ss .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-ss .btn-warning.active,

#custom-html-ss .btn-warning:active,

#custom-html-ss .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-ss .btn-warning.active.focus,

#custom-html-ss .btn-warning.active:focus,

#custom-html-ss .btn-warning.active:hover,

#custom-html-ss .btn-warning:active.focus,

#custom-html-ss .btn-warning:active:focus,

#custom-html-ss .btn-warning:active:hover,

#custom-html-ss .open > .dropdown-toggle.btn-warning.focus,

#custom-html-ss .open > .dropdown-toggle.btn-warning:focus,

#custom-html-ss .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-ss .btn-warning.disabled.focus,

#custom-html-ss .btn-warning.disabled:focus,

#custom-html-ss .btn-warning.disabled:hover,

#custom-html-ss .btn-warning[disabled].focus,

#custom-html-ss .btn-warning[disabled]:focus,

#custom-html-ss .btn-warning[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-warning.focus,

#custom-html-ss fieldset[disabled] .btn-warning:focus,

#custom-html-ss fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-ss .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-ss .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-ss .btn-danger.focus,

#custom-html-ss .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-ss .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-ss .btn-danger.active,

#custom-html-ss .btn-danger:active,

#custom-html-ss .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-ss .btn-danger.active.focus,

#custom-html-ss .btn-danger.active:focus,

#custom-html-ss .btn-danger.active:hover,

#custom-html-ss .btn-danger:active.focus,

#custom-html-ss .btn-danger:active:focus,

#custom-html-ss .btn-danger:active:hover,

#custom-html-ss .open > .dropdown-toggle.btn-danger.focus,

#custom-html-ss .open > .dropdown-toggle.btn-danger:focus,

#custom-html-ss .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-ss .btn-danger.disabled.focus,

#custom-html-ss .btn-danger.disabled:focus,

#custom-html-ss .btn-danger.disabled:hover,

#custom-html-ss .btn-danger[disabled].focus,

#custom-html-ss .btn-danger[disabled]:focus,

#custom-html-ss .btn-danger[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-danger.focus,

#custom-html-ss fieldset[disabled] .btn-danger:focus,

#custom-html-ss fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-ss .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-ss .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-ss .btn-link,

#custom-html-ss .btn-link.active,

#custom-html-ss .btn-link:active,

#custom-html-ss .btn-link[disabled],

#custom-html-ss fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-ss .btn-link,

#custom-html-ss .btn-link:active,

#custom-html-ss .btn-link:focus,

#custom-html-ss .btn-link:hover {

  border-color: transparent;

}

#custom-html-ss .btn-link:focus,

#custom-html-ss .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-ss .btn-link[disabled]:focus,

#custom-html-ss .btn-link[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-link:focus,

#custom-html-ss fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-ss .btn-group-lg > .btn,

#custom-html-ss .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-ss .btn-group-sm > .btn,

#custom-html-ss .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-ss .btn-group-xs > .btn,

#custom-html-ss .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-ss .btn-block {

  display: block;

  width: 100%;

}

#custom-html-ss .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-ss input[type=button].btn-block,

#custom-html-ss input[type=reset].btn-block,

#custom-html-ss input[type=submit].btn-block {

  width: 100%;

}

#custom-html-ss .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-ss .fade.in {

  opacity: 1;

}

#custom-html-ss .collapse {

  display: none;

}

#custom-html-ss .collapse.in {

  display: block;

}

#custom-html-ss tr.collapse.in {

  display: table-row;

}

#custom-html-ss tbody.collapse.in {

  display: table-row-group;

}

#custom-html-ss .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-ss .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-ss .dropdown,

#custom-html-ss .dropup {

  position: relative;

}

#custom-html-ss .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-ss .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-ss .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-ss .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-ss .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-ss .dropdown-menu > li > a:focus,

#custom-html-ss .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-ss .dropdown-menu > .active > a,

#custom-html-ss .dropdown-menu > .active > a:focus,

#custom-html-ss .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-ss .dropdown-menu > .disabled > a,

#custom-html-ss .dropdown-menu > .disabled > a:focus,

#custom-html-ss .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-ss .dropdown-menu > .disabled > a:focus,

#custom-html-ss .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-ss .open > .dropdown-menu {

  display: block;

}

#custom-html-ss .open > a {

  outline: 0;

}

#custom-html-ss .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-ss .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-ss .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-ss .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-ss .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-ss .dropup .caret,

#custom-html-ss .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-ss .dropup .dropdown-menu,

#custom-html-ss .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-ss .btn-group,

#custom-html-ss .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-ss .btn-group-vertical > .btn,

#custom-html-ss .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-ss .btn-group-vertical > .btn.active,

#custom-html-ss .btn-group-vertical > .btn:active,

#custom-html-ss .btn-group-vertical > .btn:focus,

#custom-html-ss .btn-group-vertical > .btn:hover,

#custom-html-ss .btn-group > .btn.active,

#custom-html-ss .btn-group > .btn:active,

#custom-html-ss .btn-group > .btn:focus,

#custom-html-ss .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-ss .btn-group .btn + .btn,

#custom-html-ss .btn-group .btn + .btn-group,

#custom-html-ss .btn-group .btn-group + .btn,

#custom-html-ss .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-ss .btn-toolbar {

  margin-left: -5px;

}

#custom-html-ss .btn-toolbar .btn,

#custom-html-ss .btn-toolbar .btn-group,

#custom-html-ss .btn-toolbar .input-group {

  float: left;

}

#custom-html-ss .btn-toolbar > .btn,

#custom-html-ss .btn-toolbar > .btn-group,

#custom-html-ss .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-ss .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-ss .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-ss .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-ss .btn-group > .btn:last-child:not(:first-child),

#custom-html-ss .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-ss .btn-group > .btn-group {

  float: left;

}

#custom-html-ss .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-ss .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-ss .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-ss .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-ss .btn-group .dropdown-toggle:active,

#custom-html-ss .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-ss .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-ss .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-ss .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-ss .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-ss .btn .caret {

  margin-left: 0;

}

#custom-html-ss .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-ss .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-ss .btn-group-vertical > .btn,

#custom-html-ss .btn-group-vertical > .btn-group,

#custom-html-ss .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-ss .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-ss .btn-group-vertical > .btn + .btn,

#custom-html-ss .btn-group-vertical > .btn + .btn-group,

#custom-html-ss .btn-group-vertical > .btn-group + .btn,

#custom-html-ss .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-ss .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-ss .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-ss .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-ss .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-ss .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-ss .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-ss .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-ss .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-ss .btn-group-justified > .btn,

#custom-html-ss .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-ss .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-ss .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-ss [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-ss [data-toggle=buttons] > .btn input[type=radio],

#custom-html-ss [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-ss [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-ss .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-ss .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-ss .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-ss .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-ss .input-group-lg > .form-control,

#custom-html-ss .input-group-lg > .input-group-addon,

#custom-html-ss .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-ss select.input-group-lg > .form-control,

#custom-html-ss select.input-group-lg > .input-group-addon,

#custom-html-ss select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-ss select[multiple].input-group-lg > .form-control,

#custom-html-ss select[multiple].input-group-lg > .input-group-addon,

#custom-html-ss select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-ss textarea.input-group-lg > .form-control,

#custom-html-ss textarea.input-group-lg > .input-group-addon,

#custom-html-ss textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-ss .input-group-sm > .form-control,

#custom-html-ss .input-group-sm > .input-group-addon,

#custom-html-ss .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-ss select.input-group-sm > .form-control,

#custom-html-ss select.input-group-sm > .input-group-addon,

#custom-html-ss select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-ss select[multiple].input-group-sm > .form-control,

#custom-html-ss select[multiple].input-group-sm > .input-group-addon,

#custom-html-ss select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-ss textarea.input-group-sm > .form-control,

#custom-html-ss textarea.input-group-sm > .input-group-addon,

#custom-html-ss textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-ss .input-group .form-control,

#custom-html-ss .input-group-addon,

#custom-html-ss .input-group-btn {

  display: table-cell;

}

#custom-html-ss .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-ss .input-group-addon:not(:first-child):not(:last-child),

#custom-html-ss .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-ss .input-group-addon,

#custom-html-ss .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-ss .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-ss .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-ss .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-ss .input-group-addon input[type=checkbox],

#custom-html-ss .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-ss .input-group .form-control:first-child,

#custom-html-ss .input-group-addon:first-child,

#custom-html-ss .input-group-btn:first-child > .btn,

#custom-html-ss .input-group-btn:first-child > .btn-group > .btn,

#custom-html-ss .input-group-btn:first-child > .dropdown-toggle,

#custom-html-ss .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-ss .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-ss .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-ss .input-group .form-control:last-child,

#custom-html-ss .input-group-addon:last-child,

#custom-html-ss .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-ss .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-ss .input-group-btn:last-child > .btn,

#custom-html-ss .input-group-btn:last-child > .btn-group > .btn,

#custom-html-ss .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-ss .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-ss .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-ss .input-group-btn > .btn {

  position: relative;

}

#custom-html-ss .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-ss .input-group-btn > .btn:active,

#custom-html-ss .input-group-btn > .btn:focus,

#custom-html-ss .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-ss .input-group-btn:first-child > .btn,

#custom-html-ss .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-ss .input-group-btn:last-child > .btn,

#custom-html-ss .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-ss .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-ss .nav > li {

  position: relative;

  display: block;

}

#custom-html-ss .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-ss .nav > li > a:focus,

#custom-html-ss .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-ss .nav > li.disabled > a {

  color: #777777;

}

#custom-html-ss .nav > li.disabled > a:focus,

#custom-html-ss .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-ss .nav .open > a,

#custom-html-ss .nav .open > a:focus,

#custom-html-ss .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-ss .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-ss .nav > li > a > img {

  max-width: none;

}

#custom-html-ss .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-ss .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-ss .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-ss .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-ss .nav-tabs > li.active > a,

#custom-html-ss .nav-tabs > li.active > a:focus,

#custom-html-ss .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-ss .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-ss .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-ss .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-ss .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-ss .nav-tabs.nav-justified > .active > a,

#custom-html-ss .nav-tabs.nav-justified > .active > a:focus,

#custom-html-ss .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-ss .nav-pills > li {

  float: left;

}

#custom-html-ss .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-ss .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-ss .nav-pills > li.active > a,

#custom-html-ss .nav-pills > li.active > a:focus,

#custom-html-ss .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-ss .nav-stacked > li {

  float: none;

}

#custom-html-ss .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-ss .nav-justified {

  width: 100%;

}

#custom-html-ss .nav-justified > li {

  float: none;

}

#custom-html-ss .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-ss .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-ss .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-ss .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-ss .nav-tabs-justified > .active > a,

#custom-html-ss .nav-tabs-justified > .active > a:focus,

#custom-html-ss .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-ss .tab-content > .tab-pane {

  display: none;

}

#custom-html-ss .tab-content > .active {

  display: block;

}

#custom-html-ss .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-ss .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-ss .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-ss .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-ss .navbar-fixed-bottom .navbar-collapse,

#custom-html-ss .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-ss .navbar-fixed-bottom .navbar-collapse,

  #custom-html-ss .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-ss .container-fluid > .navbar-collapse,

#custom-html-ss .container-fluid > .navbar-header,

#custom-html-ss .container > .navbar-collapse,

#custom-html-ss .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-ss .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-ss .navbar-fixed-bottom,

#custom-html-ss .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-ss .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-ss .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-ss .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-ss .navbar-brand:focus,

#custom-html-ss .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-ss .navbar-brand > img {

  display: block;

}

#custom-html-ss .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-ss .navbar-toggle:focus {

  outline: 0;

}

#custom-html-ss .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-ss .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-ss .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-ss .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-ss .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-ss .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-ss .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-ss .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-ss .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-ss .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-ss .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-ss .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-ss .visible-xs {

    display: block !important;

  }

  #custom-html-ss table.visible-xs {

    display: table !important;

  }

  #custom-html-ss tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-ss td.visible-xs,

  #custom-html-ss th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-ss .visible-xs-block {

    display: block !important;

  }

  #custom-html-ss .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-ss .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-ss .hidden-xs {

    display: none !important;

  }

  #custom-html-ss .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-ss .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-ss section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-ss .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-ss .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-ss .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-ss .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-ss .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-ss .tiles .tile:nth-child(1),

  #custom-html-ss .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-ss ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-ss ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-ss ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-ss .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-ss .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-ss .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-ss .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-ss .promo-banner form {

    text-align: center;

  }

}

#custom-html-ss .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-ss .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-ss .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-ss .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-ss .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-ss .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-ss .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-ss .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-ss .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-ss .navbar-default .navbar-brand:focus,

#custom-html-ss .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-ss .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-ss .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-ss .navbar-default .navbar-nav > li > a:focus,

#custom-html-ss .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-ss .navbar-default .navbar-nav > .active > a,

#custom-html-ss .navbar-default .navbar-nav > .active > a:focus,

#custom-html-ss .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-ss .navbar-default .navbar-nav > .disabled > a,

#custom-html-ss .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-ss .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-ss .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-ss .navbar-default .navbar-toggle:focus,

#custom-html-ss .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-ss .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-ss .navbar-default .navbar-collapse,

#custom-html-ss .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-ss .navbar-default .navbar-nav > .open > a,

#custom-html-ss .navbar-default .navbar-nav > .open > a:focus,

#custom-html-ss .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-ss .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-ss .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-ss .navbar-default .btn-link {

  color: #777777;

}

#custom-html-ss .navbar-default .btn-link:focus,

#custom-html-ss .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-ss .navbar-default .btn-link[disabled]:focus,

#custom-html-ss .navbar-default .btn-link[disabled]:hover,

#custom-html-ss fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-ss fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-ss .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-ss .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-ss .navbar-inverse .navbar-brand:focus,

#custom-html-ss .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-ss .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-ss .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-ss .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-ss .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-ss .navbar-inverse .navbar-nav > .active > a,

#custom-html-ss .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-ss .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-ss .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-ss .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-ss .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-ss .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-ss .navbar-inverse .navbar-toggle:focus,

#custom-html-ss .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-ss .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-ss .navbar-inverse .navbar-collapse,

#custom-html-ss .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-ss .navbar-inverse .navbar-nav > .open > a,

#custom-html-ss .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-ss .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-ss .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-ss .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-ss .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-ss .navbar-inverse .btn-link:focus,

#custom-html-ss .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-ss .navbar-inverse .btn-link[disabled]:focus,

#custom-html-ss .navbar-inverse .btn-link[disabled]:hover,

#custom-html-ss fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-ss fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-ss .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-ss .breadcrumb > li {

  display: inline-block;

}

#custom-html-ss .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-ss .breadcrumb > .active {

  color: #777777;

}

#custom-html-ss .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-ss .pagination > li {

  display: inline;

}

#custom-html-ss .pagination > li > a,

#custom-html-ss .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-ss .pagination > li:first-child > a,

#custom-html-ss .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-ss .pagination > li:last-child > a,

#custom-html-ss .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-ss .pagination > li > a:focus,

#custom-html-ss .pagination > li > a:hover,

#custom-html-ss .pagination > li > span:focus,

#custom-html-ss .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-ss .pagination > .active > a,

#custom-html-ss .pagination > .active > a:focus,

#custom-html-ss .pagination > .active > a:hover,

#custom-html-ss .pagination > .active > span,

#custom-html-ss .pagination > .active > span:focus,

#custom-html-ss .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-ss .pagination > .disabled > a,

#custom-html-ss .pagination > .disabled > a:focus,

#custom-html-ss .pagination > .disabled > a:hover,

#custom-html-ss .pagination > .disabled > span,

#custom-html-ss .pagination > .disabled > span:focus,

#custom-html-ss .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-ss .pagination-lg > li > a,

#custom-html-ss .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-ss .pagination-lg > li:first-child > a,

#custom-html-ss .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-ss .pagination-lg > li:last-child > a,

#custom-html-ss .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-ss .pagination-sm > li > a,

#custom-html-ss .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-ss .pagination-sm > li:first-child > a,

#custom-html-ss .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-ss .pagination-sm > li:last-child > a,

#custom-html-ss .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-ss .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-ss .pager li {

  display: inline;

}

#custom-html-ss .pager li > a,

#custom-html-ss .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-ss .pager li > a:focus,

#custom-html-ss .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-ss .pager .next > a,

#custom-html-ss .pager .next > span {

  float: right;

}

#custom-html-ss .pager .previous > a,

#custom-html-ss .pager .previous > span {

  float: left;

}

#custom-html-ss .pager .disabled > a,

#custom-html-ss .pager .disabled > a:focus,

#custom-html-ss .pager .disabled > a:hover,

#custom-html-ss .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-ss .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-ss a.label:focus,

#custom-html-ss a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-ss .label:empty {

  display: none;

}

#custom-html-ss .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-ss .label-default {

  background-color: #777777;

}

#custom-html-ss .label-default[href]:focus,

#custom-html-ss .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-ss .label-primary {

  background-color: #337ab7;

}

#custom-html-ss .label-primary[href]:focus,

#custom-html-ss .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-ss .label-success {

  background-color: #5cb85c;

}

#custom-html-ss .label-success[href]:focus,

#custom-html-ss .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-ss .label-info {

  background-color: #5bc0de;

}

#custom-html-ss .label-info[href]:focus,

#custom-html-ss .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-ss .label-warning {

  background-color: #f0ad4e;

}

#custom-html-ss .label-warning[href]:focus,

#custom-html-ss .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-ss .label-danger {

  background-color: #d9534f;

}

#custom-html-ss .label-danger[href]:focus,

#custom-html-ss .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-ss .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-ss .badge:empty {

  display: none;

}

#custom-html-ss .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-ss .btn-group-xs > .btn .badge,

#custom-html-ss .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-ss a.badge:focus,

#custom-html-ss a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-ss .list-group-item.active > .badge,

#custom-html-ss .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-ss .list-group-item > .badge {

  float: right;

}

#custom-html-ss .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-ss .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-ss .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-ss .jumbotron .h1,

#custom-html-ss .jumbotron h1 {

  color: inherit;

}

#custom-html-ss .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-ss .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-ss .container .jumbotron,

#custom-html-ss .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-ss .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-ss .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-ss .container .jumbotron,

  #custom-html-ss .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-ss .jumbotron .h1,

  #custom-html-ss .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-ss .carousel-control .glyphicon-chevron-left,

  #custom-html-ss .carousel-control .glyphicon-chevron-right,

  #custom-html-ss .carousel-control .icon-next,

  #custom-html-ss .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-ss .carousel-control .glyphicon-chevron-left,

  #custom-html-ss .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-ss .carousel-control .glyphicon-chevron-right,

  #custom-html-ss .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-ss .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-ss .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-ss .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-ss .thumbnail a > img,

#custom-html-ss .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-ss a.thumbnail.active,

#custom-html-ss a.thumbnail:focus,

#custom-html-ss a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-ss .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-ss .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-ss .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-ss .alert .alert-link {

  font-weight: 700;

}

#custom-html-ss .alert > p,

#custom-html-ss .alert > ul {

  margin-bottom: 0;

}

#custom-html-ss .alert > p + p {

  margin-top: 5px;

}

#custom-html-ss .alert-dismissable,

#custom-html-ss .alert-dismissible {

  padding-right: 35px;

}

#custom-html-ss .alert-dismissable .close,

#custom-html-ss .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-ss .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-ss .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-ss .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-ss .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-ss .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-ss .alert-info .alert-link {

  color: #000000;

}

#custom-html-ss .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-ss .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-ss .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-ss .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-ss .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-ss .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-ss .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-ss .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-ss .progress-bar-striped,

#custom-html-ss .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-ss .progress-bar.active,

#custom-html-ss .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-ss .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-ss .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-ss .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-ss .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-ss .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-ss .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-ss .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-ss .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-ss .media {

  margin-top: 15px;

}

#custom-html-ss .media:first-child {

  margin-top: 0;

}

#custom-html-ss .media,

#custom-html-ss .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-ss .media-body {

  width: 10000px;

}

#custom-html-ss .media-object {

  display: block;

}

#custom-html-ss .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-ss .media-right,

#custom-html-ss .media > .pull-right {

  padding-left: 10px;

}

#custom-html-ss .media-left,

#custom-html-ss .media > .pull-left {

  padding-right: 10px;

}

#custom-html-ss .media-body,

#custom-html-ss .media-left,

#custom-html-ss .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-ss .media-middle {

  vertical-align: middle;

}

#custom-html-ss .media-bottom {

  vertical-align: bottom;

}

#custom-html-ss .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-ss .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-ss .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-ss .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-ss .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-ss .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-ss a.list-group-item,

#custom-html-ss button.list-group-item {

  color: #555555;

}

#custom-html-ss a.list-group-item .list-group-item-heading,

#custom-html-ss button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-ss a.list-group-item:focus,

#custom-html-ss a.list-group-item:hover,

#custom-html-ss button.list-group-item:focus,

#custom-html-ss button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-ss button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-ss .list-group-item.disabled,

#custom-html-ss .list-group-item.disabled:focus,

#custom-html-ss .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-ss .list-group-item.disabled .list-group-item-heading,

#custom-html-ss .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-ss .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-ss .list-group-item.disabled .list-group-item-text,

#custom-html-ss .list-group-item.disabled:focus .list-group-item-text,

#custom-html-ss .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-ss .list-group-item.active,

#custom-html-ss .list-group-item.active:focus,

#custom-html-ss .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-ss .list-group-item.active .list-group-item-heading,

#custom-html-ss .list-group-item.active .list-group-item-heading > .small,

#custom-html-ss .list-group-item.active .list-group-item-heading > small,

#custom-html-ss .list-group-item.active:focus .list-group-item-heading,

#custom-html-ss .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-ss .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-ss .list-group-item.active:hover .list-group-item-heading,

#custom-html-ss .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-ss .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-ss .list-group-item.active .list-group-item-text,

#custom-html-ss .list-group-item.active:focus .list-group-item-text,

#custom-html-ss .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-ss .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-ss a.list-group-item-success,

#custom-html-ss button.list-group-item-success {

  color: #3c763d;

}

#custom-html-ss a.list-group-item-success .list-group-item-heading,

#custom-html-ss button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-ss a.list-group-item-success:focus,

#custom-html-ss a.list-group-item-success:hover,

#custom-html-ss button.list-group-item-success:focus,

#custom-html-ss button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-ss a.list-group-item-success.active,

#custom-html-ss a.list-group-item-success.active:focus,

#custom-html-ss a.list-group-item-success.active:hover,

#custom-html-ss button.list-group-item-success.active,

#custom-html-ss button.list-group-item-success.active:focus,

#custom-html-ss button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-ss .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-ss a.list-group-item-info,

#custom-html-ss button.list-group-item-info {

  color: #31708f;

}

#custom-html-ss a.list-group-item-info .list-group-item-heading,

#custom-html-ss button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-ss a.list-group-item-info:focus,

#custom-html-ss a.list-group-item-info:hover,

#custom-html-ss button.list-group-item-info:focus,

#custom-html-ss button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-ss a.list-group-item-info.active,

#custom-html-ss a.list-group-item-info.active:focus,

#custom-html-ss a.list-group-item-info.active:hover,

#custom-html-ss button.list-group-item-info.active,

#custom-html-ss button.list-group-item-info.active:focus,

#custom-html-ss button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-ss .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-ss a.list-group-item-warning,

#custom-html-ss button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-ss a.list-group-item-warning .list-group-item-heading,

#custom-html-ss button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-ss a.list-group-item-warning:focus,

#custom-html-ss a.list-group-item-warning:hover,

#custom-html-ss button.list-group-item-warning:focus,

#custom-html-ss button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-ss a.list-group-item-warning.active,

#custom-html-ss a.list-group-item-warning.active:focus,

#custom-html-ss a.list-group-item-warning.active:hover,

#custom-html-ss button.list-group-item-warning.active,

#custom-html-ss button.list-group-item-warning.active:focus,

#custom-html-ss button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-ss .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-ss a.list-group-item-danger,

#custom-html-ss button.list-group-item-danger {

  color: #a94442;

}

#custom-html-ss a.list-group-item-danger .list-group-item-heading,

#custom-html-ss button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-ss a.list-group-item-danger:focus,

#custom-html-ss a.list-group-item-danger:hover,

#custom-html-ss button.list-group-item-danger:focus,

#custom-html-ss button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-ss a.list-group-item-danger.active,

#custom-html-ss a.list-group-item-danger.active:focus,

#custom-html-ss a.list-group-item-danger.active:hover,

#custom-html-ss button.list-group-item-danger.active,

#custom-html-ss button.list-group-item-danger.active:focus,

#custom-html-ss button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-ss .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-ss .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-ss .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-ss .panel-body {

  padding: 10px 15px;

}

#custom-html-ss .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-ss .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-ss .panel-title > .small,

#custom-html-ss .panel-title > .small > a,

#custom-html-ss .panel-title > a,

#custom-html-ss .panel-title > small,

#custom-html-ss .panel-title > small > a {

  color: inherit;

}

#custom-html-ss .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-ss .panel > .list-group,

#custom-html-ss .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-ss .panel > .list-group .list-group-item,

#custom-html-ss .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-ss .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-ss .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-ss .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-ss .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-ss .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-ss .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-ss .panel > .panel-collapse > .table,

#custom-html-ss .panel > .table,

#custom-html-ss .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-ss .panel > .panel-collapse > .table caption,

#custom-html-ss .panel > .table caption,

#custom-html-ss .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child,

#custom-html-ss .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-ss .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-ss .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-ss .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-ss .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-ss .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-ss .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-ss .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-ss .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-ss .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-ss .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child,

#custom-html-ss .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-ss .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-ss .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-ss .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-ss .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-ss .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-ss .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-ss .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-ss .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-ss .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-ss .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-ss .panel > .panel-body + .table,

#custom-html-ss .panel > .panel-body + .table-responsive,

#custom-html-ss .panel > .table + .panel-body,

#custom-html-ss .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-ss .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-ss .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-ss .panel > .table-bordered,

#custom-html-ss .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-ss .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-ss .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-ss .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-ss .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-ss .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-ss .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-ss .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-ss .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-ss .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-ss .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-ss .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-ss .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-ss .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-ss .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-ss .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-ss .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-ss .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-ss .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-ss .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-ss .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-ss .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-ss .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-ss .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-ss .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-ss .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-ss .panel-group {

  margin-bottom: 20px;

}

#custom-html-ss .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-ss .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-ss .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-ss .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-ss .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-ss .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-ss .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-ss .panel-default {

  border-color: #dddddd;

}

#custom-html-ss .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-ss .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-ss .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-ss .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-ss .panel-primary {

  border-color: #337ab7;

}

#custom-html-ss .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-ss .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-ss .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-ss .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-ss .panel-success {

  border-color: #d6e9c6;

}

#custom-html-ss .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-ss .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-ss .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-ss .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-ss .panel-info {

  border-color: #bce8f1;

}

#custom-html-ss .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-ss .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-ss .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-ss .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-ss .panel-warning {

  border-color: #faebcc;

}

#custom-html-ss .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-ss .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-ss .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-ss .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-ss .panel-danger {

  border-color: #ebccd1;

}

#custom-html-ss .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-ss .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-ss .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-ss .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-ss .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-ss .embed-responsive .embed-responsive-item,

#custom-html-ss .embed-responsive embed,

#custom-html-ss .embed-responsive iframe,

#custom-html-ss .embed-responsive object,

#custom-html-ss .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-ss .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-ss .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-ss .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-ss .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-ss .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-ss .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-ss .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-ss .close:focus,

#custom-html-ss .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-ss button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-ss .modal-open {

  overflow: hidden;

}

#custom-html-ss .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-ss .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-ss .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-ss .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-ss .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-ss .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-ss .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-ss .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-ss .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-ss .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-ss .modal-header .close {

  margin-top: -2px;

}

#custom-html-ss .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-ss .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-ss .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-ss .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-ss .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-ss .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-ss .modal-scrollbar-measure {

  position: absolute;


  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-ss .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-ss .tooltip.in {

  opacity: 0.9;

}

#custom-html-ss .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-ss .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-ss .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-ss .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-ss .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-ss .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-ss .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-ss .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-ss .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-ss .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-ss .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-ss .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-ss .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-ss .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-ss .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-ss .popover.top {

  margin-top: -10px;

}

#custom-html-ss .popover.right {

  margin-left: 10px;

}

#custom-html-ss .popover.bottom {

  margin-top: 10px;

}

#custom-html-ss .popover.left {

  margin-left: -10px;

}

#custom-html-ss .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-ss .popover-content {

  padding: 9px 14px;

}

#custom-html-ss .popover > .arrow,

#custom-html-ss .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-ss .popover > .arrow {

  border-width: 11px;

}

#custom-html-ss .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-ss .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-ss .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-ss .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-ss .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-ss .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-ss .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-ss .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-ss .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-ss .carousel {

  position: relative;

}

#custom-html-ss .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-ss .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-ss .carousel-inner > .item > a > img,

#custom-html-ss .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-ss .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-ss .carousel-inner > .item.active.right,

  #custom-html-ss .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-ss .carousel-inner > .item.active.left,

  #custom-html-ss .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-ss .carousel-inner > .item.active,

  #custom-html-ss .carousel-inner > .item.next.left,

  #custom-html-ss .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-ss .carousel-inner > .active,

#custom-html-ss .carousel-inner > .next,

#custom-html-ss .carousel-inner > .prev {

  display: block;

}

#custom-html-ss .carousel-inner > .active {

  left: 0;

}

#custom-html-ss .carousel-inner > .next,

#custom-html-ss .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-ss .carousel-inner > .next {

  left: 100%;

}

#custom-html-ss .carousel-inner > .prev {

  left: -100%;

}

#custom-html-ss .carousel-inner > .next.left,

#custom-html-ss .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-ss .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-ss .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-ss .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-ss .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-ss .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-ss .carousel-control:focus,

#custom-html-ss .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-ss .carousel-control .glyphicon-chevron-left,

#custom-html-ss .carousel-control .glyphicon-chevron-right,

#custom-html-ss .carousel-control .icon-next,

#custom-html-ss .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-ss .carousel-control .glyphicon-chevron-left,

#custom-html-ss .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-ss .carousel-control .glyphicon-chevron-right,

#custom-html-ss .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-ss .carousel-control .icon-next,

#custom-html-ss .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-ss .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-ss .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-ss .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-ss .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-ss .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-ss .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-ss .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-ss .btn-group-vertical > .btn-group:after,

#custom-html-ss .btn-group-vertical > .btn-group:before,

#custom-html-ss .btn-toolbar:after,

#custom-html-ss .btn-toolbar:before,

#custom-html-ss .clearfix:after,

#custom-html-ss .clearfix:before,

#custom-html-ss .container-fluid:after,

#custom-html-ss .container-fluid:before,

#custom-html-ss .container:after,

#custom-html-ss .container:before,

#custom-html-ss .dl-horizontal dd:after,

#custom-html-ss .dl-horizontal dd:before,

#custom-html-ss .form-horizontal .form-group:after,

#custom-html-ss .form-horizontal .form-group:before,

#custom-html-ss .modal-footer:after,

#custom-html-ss .modal-footer:before,

#custom-html-ss .modal-header:after,

#custom-html-ss .modal-header:before,

#custom-html-ss .nav:after,

#custom-html-ss .nav:before,

#custom-html-ss .navbar-collapse:after,

#custom-html-ss .navbar-collapse:before,

#custom-html-ss .navbar-header:after,

#custom-html-ss .navbar-header:before,

#custom-html-ss .navbar:after,

#custom-html-ss .navbar:before,

#custom-html-ss .pager:after,

#custom-html-ss .pager:before,

#custom-html-ss .panel-body:after,

#custom-html-ss .panel-body:before,

#custom-html-ss .row:after,

#custom-html-ss .row:before {

  display: table;

  content: " ";

}

#custom-html-ss .btn-group-vertical > .btn-group:after,

#custom-html-ss .btn-toolbar:after,

#custom-html-ss .clearfix:after,

#custom-html-ss .container-fluid:after,

#custom-html-ss .container:after,

#custom-html-ss .dl-horizontal dd:after,

#custom-html-ss .form-horizontal .form-group:after,

#custom-html-ss .modal-footer:after,

#custom-html-ss .modal-header:after,

#custom-html-ss .nav:after,

#custom-html-ss .navbar-collapse:after,

#custom-html-ss .navbar-header:after,

#custom-html-ss .navbar:after,

#custom-html-ss .pager:after,

#custom-html-ss .panel-body:after,

#custom-html-ss .row:after {

  clear: both;

}

#custom-html-ss .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-ss .pull-right {

  float: right !important;

}

#custom-html-ss .pull-left {

  float: left !important;

}

#custom-html-ss .hide {

  display: none !important;

}

#custom-html-ss .show {

  display: block !important;

}

#custom-html-ss .invisible {

  visibility: hidden;

}

#custom-html-ss .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-ss .hidden {

  display: none !important;

}

#custom-html-ss .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-ss .visible-lg,

#custom-html-ss .visible-md,

#custom-html-ss .visible-sm,

#custom-html-ss .visible-xs {

  display: none !important;

}

#custom-html-ss .visible-lg-block,

#custom-html-ss .visible-lg-inline,

#custom-html-ss .visible-lg-inline-block,

#custom-html-ss .visible-md-block,

#custom-html-ss .visible-md-inline,

#custom-html-ss .visible-md-inline-block,

#custom-html-ss .visible-sm-block,

#custom-html-ss .visible-sm-inline,

#custom-html-ss .visible-sm-inline-block,

#custom-html-ss .visible-xs-block,

#custom-html-ss .visible-xs-inline,

#custom-html-ss .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-ss .visible-sm {

    display: block !important;

  }

  #custom-html-ss table.visible-sm {

    display: table !important;

  }

  #custom-html-ss tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-ss td.visible-sm,

  #custom-html-ss th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-ss .visible-sm-block {

    display: block !important;

  }

  #custom-html-ss .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-ss .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-ss .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-ss .visible-md {

    display: block !important;

  }

  #custom-html-ss table.visible-md {

    display: table !important;

  }

  #custom-html-ss tr.visible-md {

    display: table-row !important;

  }

  #custom-html-ss td.visible-md,

  #custom-html-ss th.visible-md {

    display: table-cell !important;

  }

  #custom-html-ss .visible-md-block {

    display: block !important;

  }

  #custom-html-ss .visible-md-inline {

    display: inline !important;

  }

  #custom-html-ss .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-ss .hidden-md {

    display: none !important;

  }

}

#custom-html-ss .visible-print {

  display: none !important;

}

#custom-html-ss .visible-print-block {

  display: none !important;

}

#custom-html-ss .visible-print-inline {

  display: none !important;

}

#custom-html-ss .visible-print-inline-block {

  display: none !important;

}

#custom-html-ss .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-ss .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-ss .intl-tel-input .hide {

  display: none;

}

#custom-html-ss .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-ss .intl-tel-input input,

#custom-html-ss .intl-tel-input input[type=tel],

#custom-html-ss .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-ss .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-ss .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-ss .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-ss .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-ss .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-ss .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-ss .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-ss .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-ss .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-ss .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-ss .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-ss .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-ss .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-ss .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-ss .intl-tel-input .country-list .country-name,

#custom-html-ss .intl-tel-input .country-list .dial-code,

#custom-html-ss .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-ss .intl-tel-input .country-list .country-name,

#custom-html-ss .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-ss .intl-tel-input.allow-dropdown input,

#custom-html-ss .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-ss .intl-tel-input.allow-dropdown input[type=text],

#custom-html-ss .intl-tel-input.separate-dial-code input,

#custom-html-ss .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-ss .intl-tel-input.allow-dropdown .flag-container,

#custom-html-ss .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-ss .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-ss .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-ss .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-ss .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-ss .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-ss .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-ss .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-ss .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-ss .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-ss .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-ss .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-ss .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-ss .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-ss .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-ss .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-ss .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-ss .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-ss .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-ss .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-ss .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-ss .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-ss .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-ss .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-ss .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-ss .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-ss .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-ss .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-ss .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-ss .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-ss .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-ss .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-ss .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-ss .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-ss .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-ss .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-ss .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-ss .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-ss .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-ss .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-ss .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-ss .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-ss .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-ss .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-ss .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-ss .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-ss .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-ss .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-ss .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-ss .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-ss .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-ss .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-ss .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-ss .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-ss .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-ss .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-ss .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-ss .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-ss .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-ss .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-ss .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-ss .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-ss .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-ss .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-ss .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-ss .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-ss .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-ss .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-ss .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-ss .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-ss .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-ss .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-ss .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-ss .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-ss .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-ss .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-ss .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-ss .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-ss .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-ss .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-ss .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-ss .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-ss .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-ss .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-ss .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-ss .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-ss .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-ss .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-ss .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-ss .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-ss .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-ss .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-ss .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-ss .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-ss .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-ss .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-ss .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-ss .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-ss .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-ss .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-ss .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-ss .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-ss .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-ss .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-ss .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-ss .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-ss .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-ss .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-ss .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-ss .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-ss .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-ss .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-ss .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-ss .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-ss .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-ss .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-ss .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-ss .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-ss .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-ss .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-ss .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-ss .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-ss .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-ss .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-ss .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-ss .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-ss .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-ss .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-ss .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-ss .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-ss .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-ss .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-ss .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-ss .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-ss .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-ss .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-ss .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-ss .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-ss .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-ss .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-ss .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-ss .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-ss .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-ss .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-ss .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-ss .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-ss .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-ss .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-ss .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-ss .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-ss .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-ss .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-ss .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-ss .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-ss .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-ss .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-ss .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-ss .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-ss .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-ss .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-ss .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-ss .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-ss .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-ss .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-ss .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-ss .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-ss .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-ss .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-ss .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-ss .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-ss .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-ss .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-ss .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-ss .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-ss .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-ss .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-ss .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-ss .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-ss .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-ss .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-ss .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-ss .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-ss .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-ss .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-ss .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-ss .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-ss .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-ss .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-ss .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-ss .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-ss .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-ss .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-ss .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-ss .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-ss .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-ss .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-ss .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-ss .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-ss .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-ss .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-ss .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-ss .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-ss .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-ss .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-ss .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-ss .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-ss .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-ss .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-ss .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-ss .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-ss .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-ss .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-ss .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-ss .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-ss .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-ss .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-ss .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-ss .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-ss .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-ss .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-ss .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-ss .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-ss .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-ss .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-ss .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-ss .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-ss .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-ss .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-ss .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-ss .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-ss .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-ss .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-ss .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-ss .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-ss .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-ss .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-ss .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-ss .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-ss .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-ss .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-ss .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-ss .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-ss .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-ss .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-ss .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-ss .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-ss .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-ss .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-ss .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-ss .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-ss .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-ss .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-ss .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-ss .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-ss .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-ss .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-ss .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-ss .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-ss .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-ss .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-ss .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-ss .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-ss .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-ss .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-ss .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-ss .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-ss .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-ss .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-ss .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-ss .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-ss .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-ss .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-ss .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-ss .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-ss .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-ss body,

#custom-html-ss button,

#custom-html-ss input,

#custom-html-ss select,

#custom-html-ss textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-ss h1,

#custom-html-ss h2,

#custom-html-ss h3,

#custom-html-ss h4,

#custom-html-ss h5,

#custom-html-ss h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-ss .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-ss .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-ss .navbar-main li.account {

  background-color: #000000;

}

#custom-html-ss .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-ss .navbar-main .navbar-nav > .active > a,

#custom-html-ss .navbar-main .navbar-nav > .active > a:focus,

#custom-html-ss .navbar-main .navbar-nav > .active > a:hover,

#custom-html-ss .navbar-main .navbar-nav > .open > a,

#custom-html-ss .navbar-main .navbar-nav > .open > a:focus,

#custom-html-ss .navbar-main .navbar-nav > .open > a:hover,

#custom-html-ss .navbar-main .navbar-nav > li > a:focus,

#custom-html-ss .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-ss #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-ss .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-ss .navbar-header {

    float: none;

  }

  #custom-html-ss .navbar-left,

  #custom-html-ss .navbar-right {

    float: none !important;

  }

  #custom-html-ss .navbar-toggle {

    display: block;

  }

  #custom-html-ss .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-ss .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-ss .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-ss .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-ss .navbar-nav > li {

    float: none;

  }

  #custom-html-ss .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-ss .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-ss .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-ss .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-ss .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-ss ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-ss ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-ss ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-ss .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-ss .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-ss .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-ss .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-ss .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-ss .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-ss #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-ss #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-ss .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-ss a.list-group-item.active,

#custom-html-ss a.list-group-item.active:focus,

#custom-html-ss a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-ss .dropdown-menu > li > a:focus,

#custom-html-ss .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-ss input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-ss .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-ss body,

#custom-html-ss html {

  height: 100%;

}

#custom-html-ss section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-ss section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-ss section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-ss section#header .search {

  margin: 20px 0;

}

#custom-html-ss section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-ss section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-ss section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-ss section#main-content {

  margin-bottom: 60px;

}

#custom-html-ss .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-ss section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-ss section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-ss section#footer {

    line-height: 32px;

  }

}

#custom-html-ss section#footer .back-to-top {

  float: right;

}

#custom-html-ss section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-ss .adminreturndiv {

  display: none !important;

}

#custom-html-ss .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-ss .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-ss .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-ss .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-ss .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-ss .navbar-main .navbar-toggle:focus,

#custom-html-ss .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-ss .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-ss .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-ss div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-ss div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-ss div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-ss div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-ss div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-ss .h1,

  #custom-html-ss h1 {

    font-size: 26px;

  }

  #custom-html-ss .h2,

  #custom-html-ss h2 {

    font-size: 20px;

  }

  #custom-html-ss .h3,

  #custom-html-ss h3 {

    font-size: 16px;

  }

  #custom-html-ss .h4,

  #custom-html-ss h4 {

    font-size: 14px;

  }

  #custom-html-ss .h5,

  #custom-html-ss h5 {

    font-size: 12px;

  }

  #custom-html-ss .h6,

  #custom-html-ss h6 {

    font-size: 11px;

  }

  #custom-html-ss div.header-lined small {

    display: none;

  }

  #custom-html-ss .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-ss .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-ss .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-ss .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-ss .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-ss div.credit-card {

    max-width: 250px;

  }

  #custom-html-ss div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-ss div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-ss div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-ss div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-ss div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-ss .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-ss .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-ss .margin-10 {

  margin: 10px;

}

#custom-html-ss .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-ss .margin-top-5 {

  margin-top: 5px;

}

#custom-html-ss .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-ss .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-ss .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-ss .input-inline {

  display: inline-block;

}

#custom-html-ss .input-inline-100 {

  width: 100px;

}

#custom-html-ss .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-ss .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-ss .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-ss .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-ss i.icon-rss {

  color: #ff6600;

}

#custom-html-ss section#main-menu {

  background-color: #000000;

}

#custom-html-ss section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-ss section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-ss section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-ss section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-ss section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-ss section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-ss section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-ss section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-ss section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-ss section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-ss section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-ss section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-ss .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-ss .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-ss .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-ss .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-ss .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-ss #stepResults {

    font-size: 14px;

  }

  #custom-html-ss #stepResults .label {

    font-size: 14px;

  }

  #custom-html-ss div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-ss .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-ss .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-ss .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-ss .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-ss .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-ss .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-ss .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-ss .home-shortcuts li span {

  display: none;

}

#custom-html-ss .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-ss .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-ss .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-ss .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-ss .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-ss .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-ss .client-home-panels .panel small {

  color: #888888;

}

#custom-html-ss .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-ss .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-ss .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-ss .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-ss .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-ss .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-ss .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-ss .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-ss .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-ss .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-ss .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-ss .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-ss .tiles .tile a {

  text-decoration: none;

}

#custom-html-ss .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-ss .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-ss .tiles .tile:last-child {

  border: 0;

}

#custom-html-ss .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-ss .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-ss .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-ss .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-ss .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-ss .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-ss .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-ss .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-ss .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-ss .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-ss .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-ss .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-ss .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-ss .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-ss .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-ss .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-ss .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-ss .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-ss .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-ss .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-ss .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-ss .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-ss .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-ss .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-ss .bg-color-red {

  background-color: #d9534f;

}

#custom-html-ss .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-ss .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-ss .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-ss .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-ss .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-ss .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-ss .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-ss .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-ss .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-ss .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-ss .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-ss .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-ss .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-ss .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-ss .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-ss .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-ss ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-ss ul.top-nav > li,

#custom-html-ss ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-ss ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-ss ul.top-nav > li:active > a,

#custom-html-ss ul.top-nav > li:focus > a,

#custom-html-ss ul.top-nav > li:hover > a,

#custom-html-ss ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-ss ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-ss ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-ss ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-ss ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-ss div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-ss div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-ss div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-ss div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-ss div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-ss div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-ss .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-ss .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-ss .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-ss .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-ss .domain-check-availability {

  width: 100px;

}

#custom-html-ss .domain-step-options {

  min-height: 300px;

}

#custom-html-ss .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-ss .domain-checker-available {

  color: #5cb85c;

}

#custom-html-ss .domain-checker-invalid,

#custom-html-ss .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-ss div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-ss .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-ss .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-ss .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-ss a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-ss .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-ss .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-ss .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-ss .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-ss .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-ss .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-ss .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-ss .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-ss .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-ss .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-ss .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-ss .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-ss .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-ss .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-ss .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-ss .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-ss .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-ss .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-ss .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-ss .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-ss .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-ss .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-ss .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-ss .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-ss div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-ss div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-ss div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-ss .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-ss .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-ss .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-ss .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-ss div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-ss div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-ss .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-ss .product-status-pending {

  background-color: #f89406;

}

#custom-html-ss .product-status-active {

  background-color: #46a546;

}

#custom-html-ss .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-ss .product-status-cancelled,

#custom-html-ss .product-status-terminated {

  background-color: #666666;

}

#custom-html-ss .product-status-fraud {

  background-color: #000000;

}

#custom-html-ss .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-ss div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-ss .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-ss .ssl-inactive {

  cursor: pointer;

}

#custom-html-ss .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-ss .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-ss .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-ss .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-ss .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-ss .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-ss .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-ss .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-ss .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-ss .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-ss .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-ss .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-ss .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-ss .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-ss .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-ss table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-ss .table-container {

  padding: 0 0 25px 0;

}

#custom-html-ss table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-ss .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-ss table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-ss .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-ss .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-ss .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-ss table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-ss table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-ss table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-ss .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-ss .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-ss .status-pending {

  color: #d9534f;

}

#custom-html-ss .status-pending.transfer {

  color: #a68500;

}

#custom-html-ss .status-active,

#custom-html-ss .status-completed,

#custom-html-ss .status-open {

  color: #3fad46;

}

#custom-html-ss .status-suspended {

  color: #f0ad4e;

}

#custom-html-ss .status-customer-reply {

  color: #ff6600;

}

#custom-html-ss .status-answered,

#custom-html-ss .status-fraud {

  color: #000000;

}

#custom-html-ss .status-expired,

#custom-html-ss .status-transferred.away {

  color: #004258;

}

#custom-html-ss .status-cancelled {

  color: #87939f;

}

#custom-html-ss .status-terminated {

  color: #666666;

}

#custom-html-ss .status-onhold {

  color: #224488;

}

#custom-html-ss .status-inprogress {

  color: #cc0000;

}

#custom-html-ss .status-closed {

  color: #888888;

}

#custom-html-ss .status-paid {

  color: #498302;

}

#custom-html-ss .status-unpaid {

  color: #ed3e48;

}

#custom-html-ss .status-collections {

  color: #9a141e;

}

#custom-html-ss .status-refunded {

  color: #319fc3;

}

#custom-html-ss .status-delivered {

  color: #224488;

}

#custom-html-ss .status-accepted {

  color: #498302;

}

#custom-html-ss .status-dead,

#custom-html-ss .status-lost {

  color: #000000;

}

#custom-html-ss .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-ss .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-ss .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-ss .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-ss .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-ss .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-ss .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-ss .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-ss .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-ss .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-ss .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-ss .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-ss .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-ss .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-ss .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-ss .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-ss .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-ss .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-ss .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-ss .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-ss .ticket-reply .rating,

#custom-html-ss .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-ss .ticket-reply .rating span.star,

#custom-html-ss .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-ss .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-ss .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-ss .ticket-reply .rating span.star:before,

#custom-html-ss .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-ss .ticket-reply .rating span.star:hover:before,

#custom-html-ss .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-ss .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-ss .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-ss .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-ss .ticket-reply .clear {

  clear: both;

}

#custom-html-ss .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-ss .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-ss .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-ss .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-ss .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-ss .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-ss .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-ss .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-ss .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-ss .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-ss .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-ss .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-ss .popover-user-notifications ul li i.far,

#custom-html-ss .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-ss .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-ss .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-ss .popover-user-notifications ul li i.far.fa-warning,

#custom-html-ss .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-ss .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-ss .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-ss .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-ss .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-ss .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-ss div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-ss div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-ss div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-ss div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-ss div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-ss div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-ss div.credit-card div.end {

  clear: both;

}

#custom-html-ss .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-ss .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-ss .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-ss .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-ss .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-ss .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-ss div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-ss div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-ss div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-ss div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-ss div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-ss div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-ss .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-ss div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-ss div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-ss div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-ss #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-ss .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-ss .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-ss .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-ss .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-ss .kb-category a small {

  color: #888888;

}

#custom-html-ss .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-ss .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-ss .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-ss .kbarticles a.admin-inline-edit,

#custom-html-ss .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-ss h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-ss .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-ss .kb-article-title h2 {

  margin: 0;

}

#custom-html-ss .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-ss .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-ss .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-ss .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-ss .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-ss .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-ss .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-ss .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-ss #stepResults {

  font-size: 20px;

}

#custom-html-ss #stepResults .label {

  font-size: 20px;

}

#custom-html-ss h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-ss h3.with-badge i,

#custom-html-ss h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-ss h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-ss .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-ss .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-ss a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-ss a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-ss .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-ss .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-ss .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-ss .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-ss .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-ss .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-ss .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-ss .login-popover {

  font-size: 12px;

}

#custom-html-ss .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-ss .login-popover hr {

  margin: 5px 0;

}

#custom-html-ss tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-ss tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-ss .error-container {

  text-align: center;

}

#custom-html-ss .error-container h1 {

  margin-top: 40px;

}

#custom-html-ss .error-container .buttons {

  margin: 25px 0;

}

#custom-html-ss .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-ss .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-ss .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-ss .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-ss #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-ss #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-ss #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-ss .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-ss #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-ss #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-ss #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-ss #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-ss .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-ss .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-ss .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-ss .email-verification .btn:active,

#custom-html-ss .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-ss .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-ss .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-ss .email-verification .far,

#custom-html-ss .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-ss .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-ss .email-verification.success .far,

#custom-html-ss .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-ss .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-ss .email-verification.failed .far,

#custom-html-ss .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-ss .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-ss .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-ss .md-editor > .md-preview,

#custom-html-ss .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-ss div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-ss .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-ss .small-font {

  font-size: 0.9em;

}

#custom-html-ss .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-ss .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-ss .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-ss .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-ss .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-ss .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-ss .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-ss .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-ss .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-ss .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-ss .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-ss .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-ss .panel-heading i.fab,

#custom-html-ss .panel-heading i.fal,

#custom-html-ss .panel-heading i.far,

#custom-html-ss .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-ss .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-ss .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-ss .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-ss .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-ss .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-ss .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-ss .panel-sidebar .list-group-item.disabled,

#custom-html-ss .panel-sidebar .list-group-item.disabled:focus,

#custom-html-ss .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-ss .panel-sidebar a.list-group-item:hover i.far,

#custom-html-ss .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-ss .panel-sidebar a.list-group-item.active,

#custom-html-ss .panel-sidebar a.list-group-item.active:focus,

#custom-html-ss .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-ss .panel-sidebar a.list-group-item.active i,

#custom-html-ss .panel-sidebar a.list-group-item.active:focus i,

#custom-html-ss .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-ss .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-ss .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-ss .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-ss .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-ss .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-ss .store-order-container h2 {

  margin-top: 0;

}

#custom-html-ss .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-ss .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-ss .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-ss .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-ss .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-ss .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-ss .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-ss .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-ss .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-ss .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-ss .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-ss .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-ss .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-ss .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-ss .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-ss .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-ss .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-ss .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-ss .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-ss .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-ss .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-ss .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-ss .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-ss .promo-banner p {

  margin: 5px 0;

}

#custom-html-ss .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-ss .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-ss .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-ss .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-ss .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-ss .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-ss .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-ss .promo-banner-slim {

  padding: 10px;

}

#custom-html-ss .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-ss .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-ss .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-ss .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-ss .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-ss .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-ss .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-ss .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-ss .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-ss .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-ss .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-ss .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-ss .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-ss .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-ss .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-ss .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-ss .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-ss .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-ss .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-ss .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-ss .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-ss .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-ss .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-ss .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-ss .panel-mc-sso .btn,

#custom-html-ss .panel-mc-sso .form-control,

#custom-html-ss .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-ss .panel-mc-sso small {

  display: block;

}

#custom-html-ss .social-signin-btns {

  text-align: center;

}

#custom-html-ss .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-ss .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-ss .btn-social i.far,

#custom-html-ss .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-facebook.active,

#custom-html-ss .btn-facebook:active,

#custom-html-ss .btn-facebook:focus,

#custom-html-ss .btn-facebook:hover,

#custom-html-ss .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-facebook.active,

#custom-html-ss .btn-facebook:active,

#custom-html-ss .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-ss .btn-facebook.disabled,

#custom-html-ss .btn-facebook.disabled.active,

#custom-html-ss .btn-facebook.disabled:active,

#custom-html-ss .btn-facebook.disabled:focus,

#custom-html-ss .btn-facebook.disabled:hover,

#custom-html-ss .btn-facebook[disabled],

#custom-html-ss .btn-facebook[disabled].active,

#custom-html-ss .btn-facebook[disabled]:active,

#custom-html-ss .btn-facebook[disabled]:focus,

#custom-html-ss .btn-facebook[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-facebook,

#custom-html-ss fieldset[disabled] .btn-facebook.active,

#custom-html-ss fieldset[disabled] .btn-facebook:active,

#custom-html-ss fieldset[disabled] .btn-facebook:focus,

#custom-html-ss fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-google.active,

#custom-html-ss .btn-google:active,

#custom-html-ss .btn-google:focus,

#custom-html-ss .btn-google:hover,

#custom-html-ss .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-google.active,

#custom-html-ss .btn-google:active,

#custom-html-ss .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-ss .btn-google-plus.disabled.active,

#custom-html-ss .btn-google-plus.disabled:active,

#custom-html-ss .btn-google-plus.disabled:focus,

#custom-html-ss .btn-google-plus[disabled].active,

#custom-html-ss .btn-google-plus[disabled]:active,

#custom-html-ss .btn-google-plus[disabled]:focus,

#custom-html-ss .btn-google-plus[disabled]:hover,

#custom-html-ss .btn-google.disabled,

#custom-html-ss .btn-google.disabled:hover,

#custom-html-ss .btn-google[disabled],

#custom-html-ss fieldset[disabled] .btn-google,

#custom-html-ss fieldset[disabled] .btn-google-plus.active,

#custom-html-ss fieldset[disabled] .btn-google-plus:active,

#custom-html-ss fieldset[disabled] .btn-google-plus:focus,

#custom-html-ss fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-twitter.active,

#custom-html-ss .btn-twitter:active,

#custom-html-ss .btn-twitter:focus,

#custom-html-ss .btn-twitter:hover,

#custom-html-ss .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-twitter.active,

#custom-html-ss .btn-twitter:active,

#custom-html-ss .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-ss .btn-twitter.disabled,

#custom-html-ss .btn-twitter.disabled.active,

#custom-html-ss .btn-twitter.disabled:active,

#custom-html-ss .btn-twitter.disabled:focus,

#custom-html-ss .btn-twitter.disabled:hover,

#custom-html-ss .btn-twitter[disabled],

#custom-html-ss .btn-twitter[disabled].active,

#custom-html-ss .btn-twitter[disabled]:active,

#custom-html-ss .btn-twitter[disabled]:focus,

#custom-html-ss .btn-twitter[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-twitter,

#custom-html-ss fieldset[disabled] .btn-twitter.active,

#custom-html-ss fieldset[disabled] .btn-twitter:active,

#custom-html-ss fieldset[disabled] .btn-twitter:focus,

#custom-html-ss fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .providerPreLinking {

  min-height: 52px;

}

#custom-html-ss .providerLinkingFeedback {

  display: none;

}

#custom-html-ss #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-ss #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-ss #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-ss #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-ss .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-ss #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-ss #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-ss #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-ss #registration .field,

#custom-html-ss #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-ss #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-ss #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-ss #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-ss #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-ss #registration textarea.field {

  height: auto;

}

#custom-html-ss #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-ss #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-ss #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-ss #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-ss #registration .field[disabled],

#custom-html-ss #registration .field[readonly],

#custom-html-ss #registration .form-control[disabled],

#custom-html-ss #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-ss #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-ss .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-ss .upgrade .product-to-be-upgraded h4,

#custom-html-ss .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-ss .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-ss .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-ss .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-ss .upgrade .products .product .current,

#custom-html-ss .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-ss .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-ss .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-ss .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-ss .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-ss .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-ss .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-ss .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-ss .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-ss .upgrade .products .far,

#custom-html-ss .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-ss .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-ss .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-ss .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-ss .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-ss .alert .alert-text {

  margin-left: 56px;

}

#custom-html-ss .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .bootstrap-switch input[type=checkbox],

#custom-html-ss .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-ss .bootstrap-switch input[type=checkbox].form-control,

#custom-html-ss .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-ss .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-ss .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-ss .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-ss .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-ss .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-ss .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-ss .md-editor .md-footer,

#custom-html-ss .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-ss .md-editor > .md-header {

  margin: 0;

}

#custom-html-ss .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-ss .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-ss .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-ss .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-ss .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-ss .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-ss .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-ss .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-input,

#custom-html-ss .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-ss .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-ss .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-ss .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-ss .md-editor.md-fullscreen-mode .btn.active,

#custom-html-ss .md-editor.md-fullscreen-mode .btn:active,

#custom-html-ss .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-ss .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-ss .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-ss .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-ss table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-ss table.dataTable td,

#custom-html-ss table.dataTable th {

  -webkit-box-sizing: content-box;


  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-ss table.dataTable td.dataTables_empty,

#custom-html-ss table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-ss table.dataTable.nowrap td,

#custom-html-ss table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-ss table.dataTable thead > tr > td.sorting,

#custom-html-ss table.dataTable thead > tr > td.sorting_asc,

#custom-html-ss table.dataTable thead > tr > td.sorting_desc,

#custom-html-ss table.dataTable thead > tr > th.sorting,

#custom-html-ss table.dataTable thead > tr > th.sorting_asc,

#custom-html-ss table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-ss table.dataTable thead > tr > td:active,

#custom-html-ss table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-ss table.dataTable thead .sorting,

#custom-html-ss table.dataTable thead .sorting_asc,

#custom-html-ss table.dataTable thead .sorting_asc_disabled,

#custom-html-ss table.dataTable thead .sorting_desc,

#custom-html-ss table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-ss table.dataTable thead .sorting:after,

#custom-html-ss table.dataTable thead .sorting_asc:after,

#custom-html-ss table.dataTable thead .sorting_asc_disabled:after,

#custom-html-ss table.dataTable thead .sorting_desc:after,

#custom-html-ss table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-ss table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-ss table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-ss table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-ss table.dataTable thead .sorting_asc_disabled:after,

#custom-html-ss table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-ss div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-ss div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-ss div.dataTables_scrollBody table thead .sorting:after,

#custom-html-ss div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-ss div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-ss div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-ss div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-ss div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-ss table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-ss table.dataTable.table-condensed .sorting:after,

#custom-html-ss table.dataTable.table-condensed .sorting_asc:after,

#custom-html-ss table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-ss table.table-bordered.dataTable td,

#custom-html-ss table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-ss table.table-bordered.dataTable td:last-child,

#custom-html-ss table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-ss table.table-bordered.dataTable tbody td,

#custom-html-ss table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-ss div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-ss div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-ss div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-ss div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-ss table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-ss table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-ss table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-ss table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-ss table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-ss table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-ss table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-ss table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-ss table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-ss table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-ss table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-ss table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-ss table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-ss table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-ss table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-ss div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-ss div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-ss div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-ss div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-ss div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-ss div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-ss div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-ss .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-ss .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-ss .multiselect-container > li {

  padding: 0;

}

#custom-html-ss .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-ss .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-ss .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-ss .multiselect-container > li > a {

  padding: 0;

}

#custom-html-ss .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-ss .multiselect-container > li > a > label.checkbox,

#custom-html-ss .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-ss .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-ss .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-ss .form-inline .multiselect-container label.checkbox,

#custom-html-ss .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-ss .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-ss .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-ss html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-ss body {

  margin: 0;

}

#custom-html-ss article,

#custom-html-ss aside,

#custom-html-ss details,

#custom-html-ss figcaption,

#custom-html-ss figure,

#custom-html-ss footer,

#custom-html-ss header,

#custom-html-ss hgroup,

#custom-html-ss main,

#custom-html-ss menu,

#custom-html-ss nav,

#custom-html-ss section,

#custom-html-ss summary {

  display: block;

}

#custom-html-ss audio,

#custom-html-ss canvas,

#custom-html-ss progress,

#custom-html-ss video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-ss audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-ss [hidden],

#custom-html-ss template {

  display: none;

}

#custom-html-ss a {

  background-color: transparent;

}

#custom-html-ss a:active,

#custom-html-ss a:hover {

  outline: 0;

}

#custom-html-ss abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-ss b,

#custom-html-ss strong {

  font-weight: 700;

}

#custom-html-ss dfn {

  font-style: italic;

}

#custom-html-ss h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-ss mark {

  color: #000;

  background: #ffff00;

}

#custom-html-ss small {

  font-size: 80%;

}

#custom-html-ss sub,

#custom-html-ss sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-ss sup {

  top: -0.5em;

}

#custom-html-ss sub {

  bottom: -0.25em;

}

#custom-html-ss img {

  border: 0;

}

#custom-html-ss svg:not(:root) {

  overflow: hidden;

}

#custom-html-ss figure {

  margin: 1em 40px;

}

#custom-html-ss hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-ss pre {

  overflow: auto;

}

#custom-html-ss code,

#custom-html-ss kbd,

#custom-html-ss pre,

#custom-html-ss samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-ss button,

#custom-html-ss input,

#custom-html-ss optgroup,

#custom-html-ss select,

#custom-html-ss textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-ss button {

  overflow: visible;

}

#custom-html-ss button,

#custom-html-ss select {

  text-transform: none;

}

#custom-html-ss button,

#custom-html-ss html input[type=button],

#custom-html-ss input[type=reset],

#custom-html-ss input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-ss button[disabled],

#custom-html-ss html input[disabled] {

  cursor: default;

}

#custom-html-ss button::-moz-focus-inner,

#custom-html-ss input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-ss input {

  line-height: normal;

}

#custom-html-ss input[type=checkbox],

#custom-html-ss input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-ss input[type=number]::-webkit-inner-spin-button,

#custom-html-ss input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-ss input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-ss input[type=search]::-webkit-search-cancel-button,

#custom-html-ss input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-ss fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-ss legend {

  padding: 0;

  border: 0;

}

#custom-html-ss textarea {

  overflow: auto;

}

#custom-html-ss optgroup {

  font-weight: 700;

}

#custom-html-ss table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-ss td,

#custom-html-ss th {

  padding: 0;

}

@media print {

  #custom-html-ss *,

  #custom-html-ss :after,

  #custom-html-ss :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-ss a,

  #custom-html-ss a:visited {

    text-decoration: underline;

  }

  #custom-html-ss a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-ss abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-ss a[href^="#"]:after,

  #custom-html-ss a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-ss blockquote,

  #custom-html-ss pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-ss thead {

    display: table-header-group;

  }

  #custom-html-ss img,

  #custom-html-ss tr {

    page-break-inside: avoid;

  }

  #custom-html-ss img {

    max-width: 100% !important;

  }

  #custom-html-ss h2,

  #custom-html-ss h3,

  #custom-html-ss p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-ss h2,

  #custom-html-ss h3 {

    page-break-after: avoid;

  }

  #custom-html-ss .navbar {

    display: none;

  }

  #custom-html-ss .btn > .caret,

  #custom-html-ss .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-ss .label {

    border: 1px solid #000000;

  }

  #custom-html-ss .table {

    border-collapse: collapse !important;

  }

  #custom-html-ss .table td,

  #custom-html-ss .table th {

    background-color: #ffffff !important;

  }

  #custom-html-ss .table-bordered td,

  #custom-html-ss .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-ss .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-ss .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-ss .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-ss .glyphicon-eur:before,

#custom-html-ss .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-ss .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-ss .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-ss .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-ss .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-ss .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-ss .glyphicon-music:before {

  content: "\e002";

}

#custom-html-ss .glyphicon-search:before {

  content: "\e003";

}

#custom-html-ss .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-ss .glyphicon-star:before {

  content: "\e006";

}

#custom-html-ss .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-ss .glyphicon-user:before {

  content: "\e008";

}

#custom-html-ss .glyphicon-film:before {

  content: "\e009";

}

#custom-html-ss .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-ss .glyphicon-th:before {

  content: "\e011";

}

#custom-html-ss .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-ss .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-ss .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-ss .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-ss .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-ss .glyphicon-off:before {

  content: "\e017";

}

#custom-html-ss .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-ss .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-ss .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-ss .glyphicon-home:before {

  content: "\e021";

}

#custom-html-ss .glyphicon-file:before {

  content: "\e022";

}

#custom-html-ss .glyphicon-time:before {

  content: "\e023";

}

#custom-html-ss .glyphicon-road:before {

  content: "\e024";

}

#custom-html-ss .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-ss .glyphicon-download:before {

  content: "\e026";

}

#custom-html-ss .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-ss .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-ss .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-ss .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-ss .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-ss .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-ss .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-ss .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-ss .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-ss .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-ss .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-ss .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-ss .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-ss .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-ss .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-ss .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-ss .glyphicon-book:before {

  content: "\e043";

}

#custom-html-ss .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-ss .glyphicon-print:before {

  content: "\e045";

}

#custom-html-ss .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-ss .glyphicon-font:before {

  content: "\e047";

}

#custom-html-ss .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-ss .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-ss .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-ss .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-ss .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-ss .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-ss .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-ss .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-ss .glyphicon-list:before {

  content: "\e056";

}

#custom-html-ss .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-ss .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-ss .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-ss .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-ss .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-ss .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-ss .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-ss .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-ss .glyphicon-share:before {

  content: "\e066";

}

#custom-html-ss .glyphicon-check:before {

  content: "\e067";

}

#custom-html-ss .glyphicon-move:before {

  content: "\e068";

}

#custom-html-ss .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-ss .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-ss .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-ss .glyphicon-play:before {

  content: "\e072";

}

#custom-html-ss .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-ss .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-ss .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-ss .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-ss .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-ss .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-ss .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-ss .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-ss .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-ss .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-ss .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-ss .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-ss .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-ss .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-ss .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-ss .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-ss .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-ss .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-ss .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-ss .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-ss .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-ss .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-ss .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-ss .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-ss .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-ss .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-ss .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-ss .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-ss .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-ss .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-ss .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-ss .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-ss .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-ss .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-ss .glyphicon-random:before {

  content: "\e110";

}

#custom-html-ss .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-ss .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-ss .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-ss .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-ss .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-ss .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-ss .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-ss .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-ss .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-ss .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-ss .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-ss .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-ss .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-ss .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-ss .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-ss .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-ss .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-ss .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-ss .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-ss .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-ss .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-ss .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-ss .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-ss .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-ss .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-ss .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-ss .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-ss .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-ss .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-ss .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-ss .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-ss .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-ss .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-ss .glyphicon-link:before {

  content: "\e144";

}

#custom-html-ss .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-ss .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-ss .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-ss .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-ss .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-ss .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-ss .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-ss .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-ss .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-ss .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-ss .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-ss .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-ss .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-ss .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-ss .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-ss .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-ss .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-ss .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-ss .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-ss .glyphicon-record:before {

  content: "\e165";

}

#custom-html-ss .glyphicon-save:before {

  content: "\e166";

}

#custom-html-ss .glyphicon-open:before {

  content: "\e167";

}

#custom-html-ss .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-ss .glyphicon-import:before {

  content: "\e169";

}

#custom-html-ss .glyphicon-export:before {

  content: "\e170";

}

#custom-html-ss .glyphicon-send:before {

  content: "\e171";

}

#custom-html-ss .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-ss .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-ss .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-ss .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-ss .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-ss .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-ss .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-ss .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-ss .glyphicon-header:before {

  content: "\e180";

}

#custom-html-ss .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-ss .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-ss .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-ss .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-ss .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-ss .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-ss .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-ss .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-ss .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-ss .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-ss .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-ss .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-ss .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-ss .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-ss .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-ss .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-ss .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-ss .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-ss .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-ss .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-ss .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-ss .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-ss .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-ss .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-ss .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-ss .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-ss .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-ss .glyphicon-king:before {

  content: "\e211";

}

#custom-html-ss .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-ss .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-ss .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-ss .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-ss .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-ss .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-ss .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-ss .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-ss .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-ss .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-ss .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-ss .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-ss .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-ss .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-ss .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-ss .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-ss .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-ss .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-ss .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-ss .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-ss .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-ss .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-ss .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-ss .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-ss .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-ss .glyphicon-education:before {

  content: "\e233";

}

#custom-html-ss .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-ss .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-ss .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-ss .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-ss .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-ss .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-ss .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-ss .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-ss .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-ss .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-ss .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-ss .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-ss .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-ss .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-ss .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-ss .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-ss .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-ss .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-ss .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-ss .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-ss .glyphicon-console:before {

  content: "\e254";

}

#custom-html-ss .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-ss .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-ss .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-ss .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-ss .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-ss .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-ss * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-ss :after,

#custom-html-ss :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-ss html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-ss body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-ss button,

#custom-html-ss input,

#custom-html-ss select,

#custom-html-ss textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-ss a {

  color: #000;

  text-decoration: none;

}

#custom-html-ss a:focus,

#custom-html-ss a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-ss a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-ss figure {

  margin: 0;

}

#custom-html-ss img {

  vertical-align: middle;

}

#custom-html-ss .carousel-inner > .item > a > img,

#custom-html-ss .carousel-inner > .item > img,

#custom-html-ss .img-responsive,

#custom-html-ss .thumbnail a > img,

#custom-html-ss .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-ss .img-rounded {

  border-radius: 6px;

}

#custom-html-ss .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-ss .img-circle {

  border-radius: 50%;

}

#custom-html-ss hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-ss .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-ss .sr-only-focusable:active,

#custom-html-ss .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-ss [role=button] {

  cursor: pointer;

}

#custom-html-ss .h1,

#custom-html-ss .h2,

#custom-html-ss .h3,

#custom-html-ss .h4,

#custom-html-ss .h5,

#custom-html-ss .h6,

#custom-html-ss h1,

#custom-html-ss h2,

#custom-html-ss h3,

#custom-html-ss h4,

#custom-html-ss h5,

#custom-html-ss h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-ss .h1 .small,

#custom-html-ss .h1 small,

#custom-html-ss .h2 .small,

#custom-html-ss .h2 small,

#custom-html-ss .h3 .small,

#custom-html-ss .h3 small,

#custom-html-ss .h4 .small,

#custom-html-ss .h4 small,

#custom-html-ss .h5 .small,

#custom-html-ss .h5 small,

#custom-html-ss .h6 .small,

#custom-html-ss .h6 small,

#custom-html-ss h1 .small,

#custom-html-ss h1 small,

#custom-html-ss h2 .small,

#custom-html-ss h2 small,

#custom-html-ss h3 .small,

#custom-html-ss h3 small,

#custom-html-ss h4 .small,

#custom-html-ss h4 small,

#custom-html-ss h5 .small,

#custom-html-ss h5 small,

#custom-html-ss h6 .small,

#custom-html-ss h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-ss .h1,

#custom-html-ss .h2,

#custom-html-ss .h3,

#custom-html-ss h1,

#custom-html-ss h2,

#custom-html-ss h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-ss .h1 .small,

#custom-html-ss .h1 small,

#custom-html-ss .h2 .small,

#custom-html-ss .h2 small,

#custom-html-ss .h3 .small,

#custom-html-ss .h3 small,

#custom-html-ss h1 .small,

#custom-html-ss h1 small,

#custom-html-ss h2 .small,

#custom-html-ss h2 small,

#custom-html-ss h3 .small,

#custom-html-ss h3 small {

  font-size: 65%;

}

#custom-html-ss .h4,

#custom-html-ss .h5,

#custom-html-ss .h6,

#custom-html-ss h4,

#custom-html-ss h5,

#custom-html-ss h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-ss .h4 .small,

#custom-html-ss .h4 small,

#custom-html-ss .h5 .small,

#custom-html-ss .h5 small,

#custom-html-ss .h6 .small,

#custom-html-ss .h6 small,

#custom-html-ss h4 .small,

#custom-html-ss h4 small,

#custom-html-ss h5 .small,

#custom-html-ss h5 small,

#custom-html-ss h6 .small,

#custom-html-ss h6 small {

  font-size: 75%;

}

#custom-html-ss .h1,

#custom-html-ss h1 {

  font-size: 36px;

}

#custom-html-ss .h2,

#custom-html-ss h2 {

  font-size: 30px;

}

#custom-html-ss .h3,

#custom-html-ss h3 {

  font-size: 24px;

}

#custom-html-ss .h4,

#custom-html-ss h4 {

  font-size: 18px;

}

#custom-html-ss .h5,

#custom-html-ss h5 {

  font-size: 14px;

}

#custom-html-ss .h6,

#custom-html-ss h6 {

  font-size: 12px;

}

#custom-html-ss p {

  margin: 0 0 10px;

}

#custom-html-ss .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-ss .lead {

    font-size: 21px;

  }

}

#custom-html-ss .small,

#custom-html-ss small {

  font-size: 85%;

}

#custom-html-ss .mark,

#custom-html-ss mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-ss .text-left {

  text-align: left;


}

#custom-html-ss .text-right {

  text-align: right;

}

#custom-html-ss .text-center {

  text-align: center;

}

#custom-html-ss .text-justify {

  text-align: justify;

}

#custom-html-ss .text-nowrap {

  white-space: nowrap;

}

#custom-html-ss .text-lowercase {

  text-transform: lowercase;

}

#custom-html-ss .text-uppercase {

  text-transform: uppercase;

}

#custom-html-ss .text-capitalize {

  text-transform: capitalize;

}

#custom-html-ss .text-muted {

  color: #777777;

}

#custom-html-ss .text-primary {

  color: #000000;

}

#custom-html-ss a.text-primary:focus,

#custom-html-ss a.text-primary:hover {

  color: #000000;

}

#custom-html-ss .text-success {

  color: #3c763d;

}

#custom-html-ss a.text-success:focus,

#custom-html-ss a.text-success:hover {

  color: #2b542c;

}

#custom-html-ss .text-info {

  color: #31708f;

}

#custom-html-ss a.text-info:focus,

#custom-html-ss a.text-info:hover {

  color: #000000;

}

#custom-html-ss .text-warning {

  color: #8a6d3b;

}

#custom-html-ss a.text-warning:focus,

#custom-html-ss a.text-warning:hover {

  color: #66512c;

}

#custom-html-ss .text-danger {

  color: #a94442;

}

#custom-html-ss a.text-danger:focus,

#custom-html-ss a.text-danger:hover {

  color: #843534;

}

#custom-html-ss .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-ss a.bg-primary:focus,

#custom-html-ss a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-ss .bg-success {

  background-color: #dff0d8;

}

#custom-html-ss a.bg-success:focus,

#custom-html-ss a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-ss .bg-info {

  background-color: #d9edf7;

}

#custom-html-ss a.bg-info:focus,

#custom-html-ss a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-ss .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-ss a.bg-warning:focus,

#custom-html-ss a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-ss .bg-danger {

  background-color: #f2dede;

}

#custom-html-ss a.bg-danger:focus,

#custom-html-ss a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-ss .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-ss ol,

#custom-html-ss ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-ss ol ol,

#custom-html-ss ol ul,

#custom-html-ss ul ol,

#custom-html-ss ul ul {

  margin-bottom: 0;

}

#custom-html-ss .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-ss .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-ss .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-ss dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-ss dd,

#custom-html-ss dt {

  line-height: 1.42857143;

}

#custom-html-ss dt {

  font-weight: 700;

}

#custom-html-ss dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-ss .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-ss .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-ss abbr[data-original-title],

#custom-html-ss abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-ss .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-ss blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-ss blockquote ol:last-child,

#custom-html-ss blockquote p:last-child,

#custom-html-ss blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-ss blockquote .small,

#custom-html-ss blockquote footer,

#custom-html-ss blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-ss blockquote .small:before,

#custom-html-ss blockquote footer:before,

#custom-html-ss blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-ss .blockquote-reverse,

#custom-html-ss blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-ss .blockquote-reverse .small:before,

#custom-html-ss .blockquote-reverse footer:before,

#custom-html-ss .blockquote-reverse small:before,

#custom-html-ss blockquote.pull-right .small:before,

#custom-html-ss blockquote.pull-right footer:before,

#custom-html-ss blockquote.pull-right small:before {

  content: '';

}

#custom-html-ss .blockquote-reverse .small:after,

#custom-html-ss .blockquote-reverse footer:after,

#custom-html-ss .blockquote-reverse small:after,

#custom-html-ss blockquote.pull-right .small:after,

#custom-html-ss blockquote.pull-right footer:after,

#custom-html-ss blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-ss address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-ss code,

#custom-html-ss kbd,

#custom-html-ss pre,

#custom-html-ss samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-ss code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-ss kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-ss kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-ss pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-ss pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-ss .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-ss .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-ss .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-ss .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-ss .container {

    width: 1170px;

  }

}

#custom-html-ss .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-ss .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-ss .col-lg-1,

#custom-html-ss .col-lg-10,

#custom-html-ss .col-lg-11,

#custom-html-ss .col-lg-12,

#custom-html-ss .col-lg-2,

#custom-html-ss .col-lg-3,

#custom-html-ss .col-lg-4,

#custom-html-ss .col-lg-5,

#custom-html-ss .col-lg-6,

#custom-html-ss .col-lg-7,

#custom-html-ss .col-lg-8,

#custom-html-ss .col-lg-9,

#custom-html-ss .col-md-1,

#custom-html-ss .col-md-10,

#custom-html-ss .col-md-11,

#custom-html-ss .col-md-12,

#custom-html-ss .col-md-2,

#custom-html-ss .col-md-3,

#custom-html-ss .col-md-4,

#custom-html-ss .col-md-5,

#custom-html-ss .col-md-6,

#custom-html-ss .col-md-7,

#custom-html-ss .col-md-8,

#custom-html-ss .col-md-9,

#custom-html-ss .col-sm-1,

#custom-html-ss .col-sm-10,

#custom-html-ss .col-sm-11,

#custom-html-ss .col-sm-12,

#custom-html-ss .col-sm-2,

#custom-html-ss .col-sm-3,

#custom-html-ss .col-sm-4,

#custom-html-ss .col-sm-5,

#custom-html-ss .col-sm-6,

#custom-html-ss .col-sm-7,

#custom-html-ss .col-sm-8,

#custom-html-ss .col-sm-9,

#custom-html-ss .col-xs-1,

#custom-html-ss .col-xs-10,

#custom-html-ss .col-xs-11,

#custom-html-ss .col-xs-12,

#custom-html-ss .col-xs-2,

#custom-html-ss .col-xs-3,

#custom-html-ss .col-xs-4,

#custom-html-ss .col-xs-5,

#custom-html-ss .col-xs-6,

#custom-html-ss .col-xs-7,

#custom-html-ss .col-xs-8,

#custom-html-ss .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-ss .col-xs-1,

#custom-html-ss .col-xs-10,

#custom-html-ss .col-xs-11,

#custom-html-ss .col-xs-12,

#custom-html-ss .col-xs-2,

#custom-html-ss .col-xs-3,

#custom-html-ss .col-xs-4,

#custom-html-ss .col-xs-5,

#custom-html-ss .col-xs-6,

#custom-html-ss .col-xs-7,

#custom-html-ss .col-xs-8,

#custom-html-ss .col-xs-9 {

  float: left;

}

#custom-html-ss .col-xs-12 {

  width: 100%;

}

#custom-html-ss .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-ss .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-ss .col-xs-9 {

  width: 75%;

}

#custom-html-ss .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-ss .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-ss .col-xs-6 {

  width: 50%;

}

#custom-html-ss .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-ss .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-ss .col-xs-3 {

  width: 25%;

}

#custom-html-ss .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-ss .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-ss .col-xs-pull-12 {

  right: 100%;

}

#custom-html-ss .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-ss .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-ss .col-xs-pull-9 {

  right: 75%;

}

#custom-html-ss .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-ss .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-ss .col-xs-pull-6 {

  right: 50%;

}

#custom-html-ss .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-ss .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-ss .col-xs-pull-3 {

  right: 25%;

}

#custom-html-ss .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-ss .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-ss .col-xs-pull-0 {

  right: auto;

}

#custom-html-ss .col-xs-push-12 {

  left: 100%;

}

#custom-html-ss .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-ss .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-ss .col-xs-push-9 {

  left: 75%;

}

#custom-html-ss .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-ss .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-ss .col-xs-push-6 {

  left: 50%;

}

#custom-html-ss .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-ss .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-ss .col-xs-push-3 {

  left: 25%;

}

#custom-html-ss .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-ss .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-ss .col-xs-push-0 {

  left: auto;

}

#custom-html-ss .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-ss .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-ss .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-ss .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-ss .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-ss .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-ss .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-ss .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-ss .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-ss .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-ss .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-ss .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-ss .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-ss .col-sm-1,

  #custom-html-ss .col-sm-10,

  #custom-html-ss .col-sm-11,

  #custom-html-ss .col-sm-12,

  #custom-html-ss .col-sm-2,

  #custom-html-ss .col-sm-3,

  #custom-html-ss .col-sm-4,

  #custom-html-ss .col-sm-5,

  #custom-html-ss .col-sm-6,

  #custom-html-ss .col-sm-7,

  #custom-html-ss .col-sm-8,

  #custom-html-ss .col-sm-9 {

    float: left;

  }

  #custom-html-ss .col-sm-12 {

    width: 100%;

  }

  #custom-html-ss .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-ss .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-ss .col-sm-9 {

    width: 75%;

  }

  #custom-html-ss .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-ss .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-ss .col-sm-6 {

    width: 50%;

  }

  #custom-html-ss .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-ss .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-ss .col-sm-3 {

    width: 25%;

  }

  #custom-html-ss .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-ss .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-ss .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-ss .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-ss .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-ss .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-ss .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-ss .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-ss .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-ss .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-ss .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-ss .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-ss .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-ss .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-ss .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-ss .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-ss .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-ss .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-ss .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-ss .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-ss .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-ss .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-ss .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-ss .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-ss .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-ss .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-ss .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-ss .col-sm-push-0 {

    left: auto;

  }

  #custom-html-ss .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-ss .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-ss .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-ss .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-ss .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-ss .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-ss .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-ss .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-ss .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-ss .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-ss .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-ss .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-ss .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-ss .col-md-1,

  #custom-html-ss .col-md-10,

  #custom-html-ss .col-md-11,

  #custom-html-ss .col-md-12,

  #custom-html-ss .col-md-2,

  #custom-html-ss .col-md-3,

  #custom-html-ss .col-md-4,

  #custom-html-ss .col-md-5,

  #custom-html-ss .col-md-6,

  #custom-html-ss .col-md-7,

  #custom-html-ss .col-md-8,

  #custom-html-ss .col-md-9 {

    float: left;

  }

  #custom-html-ss .col-md-12 {

    width: 100%;

  }

  #custom-html-ss .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-ss .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-ss .col-md-9 {

    width: 75%;

  }

  #custom-html-ss .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-ss .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-ss .col-md-6 {

    width: 50%;

  }

  #custom-html-ss .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-ss .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-ss .col-md-3 {

    width: 25%;

  }

  #custom-html-ss .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-ss .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-ss .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-ss .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-ss .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-ss .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-ss .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-ss .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-ss .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-ss .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-ss .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-ss .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-ss .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-ss .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-ss .col-md-pull-0 {

    right: auto;

  }

  #custom-html-ss .col-md-push-12 {

    left: 100%;

  }

  #custom-html-ss .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-ss .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-ss .col-md-push-9 {

    left: 75%;

  }

  #custom-html-ss .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-ss .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-ss .col-md-push-6 {

    left: 50%;

  }

  #custom-html-ss .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-ss .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-ss .col-md-push-3 {

    left: 25%;

  }

  #custom-html-ss .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-ss .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-ss .col-md-push-0 {

    left: auto;

  }

  #custom-html-ss .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-ss .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-ss .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-ss .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-ss .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-ss .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-ss .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-ss .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-ss .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-ss .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-ss .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-ss .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-ss .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-ss .col-lg-1,

  #custom-html-ss .col-lg-10,

  #custom-html-ss .col-lg-11,

  #custom-html-ss .col-lg-12,

  #custom-html-ss .col-lg-2,

  #custom-html-ss .col-lg-3,

  #custom-html-ss .col-lg-4,

  #custom-html-ss .col-lg-5,

  #custom-html-ss .col-lg-6,

  #custom-html-ss .col-lg-7,

  #custom-html-ss .col-lg-8,

  #custom-html-ss .col-lg-9 {

    float: left;

  }

  #custom-html-ss .col-lg-12 {

    width: 100%;

  }

  #custom-html-ss .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-ss .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-ss .col-lg-9 {

    width: 75%;

  }

  #custom-html-ss .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-ss .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-ss .col-lg-6 {

    width: 50%;

  }

  #custom-html-ss .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-ss .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-ss .col-lg-3 {

    width: 25%;

  }

  #custom-html-ss .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-ss .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-ss .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-ss .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-ss .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-ss .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-ss .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-ss .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-ss .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-ss .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-ss .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-ss .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-ss .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-ss .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-ss .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-ss .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-ss .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-ss .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-ss .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-ss .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-ss .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-ss .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-ss .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-ss .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-ss .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-ss .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-ss .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-ss .col-lg-push-0 {

    left: auto;

  }

  #custom-html-ss .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-ss .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-ss .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-ss .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-ss .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-ss .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-ss .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-ss .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-ss .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-ss .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-ss .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-ss .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-ss .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-ss table {

  background-color: transparent;

}

#custom-html-ss caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-ss th {

  text-align: left;

}

#custom-html-ss .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-ss .table > tbody > tr > td,

#custom-html-ss .table > tbody > tr > th,

#custom-html-ss .table > tfoot > tr > td,

#custom-html-ss .table > tfoot > tr > th,

#custom-html-ss .table > thead > tr > td,

#custom-html-ss .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-ss .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-ss .table > caption + thead > tr:first-child > td,

#custom-html-ss .table > caption + thead > tr:first-child > th,

#custom-html-ss .table > colgroup + thead > tr:first-child > td,

#custom-html-ss .table > colgroup + thead > tr:first-child > th,

#custom-html-ss .table > thead:first-child > tr:first-child > td,

#custom-html-ss .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-ss .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-ss .table .table {

  background-color: #ffffff;

}

#custom-html-ss .table-condensed > tbody > tr > td,

#custom-html-ss .table-condensed > tbody > tr > th,

#custom-html-ss .table-condensed > tfoot > tr > td,

#custom-html-ss .table-condensed > tfoot > tr > th,

#custom-html-ss .table-condensed > thead > tr > td,

#custom-html-ss .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-ss .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-ss .table-bordered > tbody > tr > td,

#custom-html-ss .table-bordered > tbody > tr > th,

#custom-html-ss .table-bordered > tfoot > tr > td,

#custom-html-ss .table-bordered > tfoot > tr > th,

#custom-html-ss .table-bordered > thead > tr > td,

#custom-html-ss .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-ss .table-bordered > thead > tr > td,

#custom-html-ss .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-ss .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-ss .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-ss table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-ss table td[class*=col-],

#custom-html-ss table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-ss .table > tbody > tr.active > td,

#custom-html-ss .table > tbody > tr.active > th,

#custom-html-ss .table > tbody > tr > td.active,

#custom-html-ss .table > tbody > tr > th.active,

#custom-html-ss .table > tfoot > tr.active > td,

#custom-html-ss .table > tfoot > tr.active > th,

#custom-html-ss .table > tfoot > tr > td.active,

#custom-html-ss .table > tfoot > tr > th.active,

#custom-html-ss .table > thead > tr.active > td,

#custom-html-ss .table > thead > tr.active > th,

#custom-html-ss .table > thead > tr > td.active,

#custom-html-ss .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-ss .table-hover > tbody > tr.active:hover > td,

#custom-html-ss .table-hover > tbody > tr.active:hover > th,

#custom-html-ss .table-hover > tbody > tr:hover > .active,

#custom-html-ss .table-hover > tbody > tr > td.active:hover,

#custom-html-ss .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-ss .table > tbody > tr.success > td,

#custom-html-ss .table > tbody > tr.success > th,

#custom-html-ss .table > tbody > tr > td.success,

#custom-html-ss .table > tbody > tr > th.success,

#custom-html-ss .table > tfoot > tr.success > td,

#custom-html-ss .table > tfoot > tr.success > th,

#custom-html-ss .table > tfoot > tr > td.success,

#custom-html-ss .table > tfoot > tr > th.success,

#custom-html-ss .table > thead > tr.success > td,

#custom-html-ss .table > thead > tr.success > th,

#custom-html-ss .table > thead > tr > td.success,

#custom-html-ss .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-ss .table-hover > tbody > tr.success:hover > td,

#custom-html-ss .table-hover > tbody > tr.success:hover > th,

#custom-html-ss .table-hover > tbody > tr:hover > .success,

#custom-html-ss .table-hover > tbody > tr > td.success:hover,

#custom-html-ss .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-ss .table > tbody > tr.info > td,

#custom-html-ss .table > tbody > tr.info > th,

#custom-html-ss .table > tbody > tr > td.info,

#custom-html-ss .table > tbody > tr > th.info,

#custom-html-ss .table > tfoot > tr.info > td,

#custom-html-ss .table > tfoot > tr.info > th,

#custom-html-ss .table > tfoot > tr > td.info,

#custom-html-ss .table > tfoot > tr > th.info,

#custom-html-ss .table > thead > tr.info > td,

#custom-html-ss .table > thead > tr.info > th,

#custom-html-ss .table > thead > tr > td.info,

#custom-html-ss .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-ss .table-hover > tbody > tr.info:hover > td,

#custom-html-ss .table-hover > tbody > tr.info:hover > th,

#custom-html-ss .table-hover > tbody > tr:hover > .info,

#custom-html-ss .table-hover > tbody > tr > td.info:hover,

#custom-html-ss .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-ss .table > tbody > tr.warning > td,

#custom-html-ss .table > tbody > tr.warning > th,

#custom-html-ss .table > tbody > tr > td.warning,

#custom-html-ss .table > tbody > tr > th.warning,

#custom-html-ss .table > tfoot > tr.warning > td,

#custom-html-ss .table > tfoot > tr.warning > th,

#custom-html-ss .table > tfoot > tr > td.warning,

#custom-html-ss .table > tfoot > tr > th.warning,

#custom-html-ss .table > thead > tr.warning > td,

#custom-html-ss .table > thead > tr.warning > th,

#custom-html-ss .table > thead > tr > td.warning,

#custom-html-ss .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-ss .table-hover > tbody > tr.warning:hover > td,

#custom-html-ss .table-hover > tbody > tr.warning:hover > th,

#custom-html-ss .table-hover > tbody > tr:hover > .warning,

#custom-html-ss .table-hover > tbody > tr > td.warning:hover,

#custom-html-ss .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-ss .table > tbody > tr.danger > td,

#custom-html-ss .table > tbody > tr.danger > th,

#custom-html-ss .table > tbody > tr > td.danger,

#custom-html-ss .table > tbody > tr > th.danger,

#custom-html-ss .table > tfoot > tr.danger > td,

#custom-html-ss .table > tfoot > tr.danger > th,

#custom-html-ss .table > tfoot > tr > td.danger,

#custom-html-ss .table > tfoot > tr > th.danger,

#custom-html-ss .table > thead > tr.danger > td,

#custom-html-ss .table > thead > tr.danger > th,

#custom-html-ss .table > thead > tr > td.danger,

#custom-html-ss .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-ss .table-hover > tbody > tr.danger:hover > td,

#custom-html-ss .table-hover > tbody > tr.danger:hover > th,

#custom-html-ss .table-hover > tbody > tr:hover > .danger,

#custom-html-ss .table-hover > tbody > tr > td.danger:hover,

#custom-html-ss .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-ss .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-ss .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-ss .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-ss .table-responsive > .table > tbody > tr > td,

  #custom-html-ss .table-responsive > .table > tbody > tr > th,

  #custom-html-ss .table-responsive > .table > tfoot > tr > td,

  #custom-html-ss .table-responsive > .table > tfoot > tr > th,

  #custom-html-ss .table-responsive > .table > thead > tr > td,

  #custom-html-ss .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-ss .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-ss .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-ss .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-ss .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-ss .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-ss .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-ss .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-ss .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-ss .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-ss .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-ss .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-ss .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-ss .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-ss .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-ss .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-ss .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-ss .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-ss fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-ss legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-ss label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-ss input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-ss input[type=checkbox],

#custom-html-ss input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-ss input[type=file] {

  display: block;

}

#custom-html-ss input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-ss select[multiple],

#custom-html-ss select[size] {

  height: auto;

}

#custom-html-ss input[type=checkbox]:focus,

#custom-html-ss input[type=file]:focus,

#custom-html-ss input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-ss output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-ss .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-ss .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-ss .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-ss .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-ss .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-ss .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-ss .form-control[disabled],

#custom-html-ss .form-control[readonly],

#custom-html-ss fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-ss .form-control[disabled],

#custom-html-ss fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-ss textarea.form-control {

  height: auto;

}

#custom-html-ss input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-ss input[type=date].form-control,

  #custom-html-ss input[type=datetime-local].form-control,

  #custom-html-ss input[type=month].form-control,

  #custom-html-ss input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-ss .input-group-sm input[type=date],

  #custom-html-ss .input-group-sm input[type=datetime-local],

  #custom-html-ss .input-group-sm input[type=month],

  #custom-html-ss .input-group-sm input[type=time],

  #custom-html-ss input[type=date].input-sm,

  #custom-html-ss input[type=datetime-local].input-sm,

  #custom-html-ss input[type=month].input-sm,

  #custom-html-ss input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-ss .input-group-lg input[type=date],

  #custom-html-ss .input-group-lg input[type=datetime-local],

  #custom-html-ss .input-group-lg input[type=month],

  #custom-html-ss .input-group-lg input[type=time],

  #custom-html-ss input[type=date].input-lg,

  #custom-html-ss input[type=datetime-local].input-lg,

  #custom-html-ss input[type=month].input-lg,

  #custom-html-ss input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-ss .form-group {

  margin-bottom: 15px;

}

#custom-html-ss .checkbox,

#custom-html-ss .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-ss .checkbox label,

#custom-html-ss .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-ss .checkbox input[type=checkbox],

#custom-html-ss .checkbox-inline input[type=checkbox],

#custom-html-ss .radio input[type=radio],

#custom-html-ss .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-ss .checkbox + .checkbox,

#custom-html-ss .radio + .radio {

  margin-top: -5px;

}

#custom-html-ss .checkbox-inline,

#custom-html-ss .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-ss .checkbox-inline + .checkbox-inline,

#custom-html-ss .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-ss fieldset[disabled] input[type=checkbox],

#custom-html-ss fieldset[disabled] input[type=radio],

#custom-html-ss input[type=checkbox].disabled,

#custom-html-ss input[type=checkbox][disabled],

#custom-html-ss input[type=radio].disabled,

#custom-html-ss input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-ss .checkbox-inline.disabled,

#custom-html-ss .radio-inline.disabled,

#custom-html-ss fieldset[disabled] .checkbox-inline,

#custom-html-ss fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-ss .checkbox.disabled label,

#custom-html-ss .radio.disabled label,

#custom-html-ss fieldset[disabled] .checkbox label,

#custom-html-ss fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-ss .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-ss .form-control-static.input-lg,

#custom-html-ss .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-ss .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-ss select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-ss select[multiple].input-sm,

#custom-html-ss textarea.input-sm {

  height: auto;

}

#custom-html-ss .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-ss .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-ss .form-group-sm select[multiple].form-control,

#custom-html-ss .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-ss .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-ss .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-ss select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-ss select[multiple].input-lg,

#custom-html-ss textarea.input-lg {

  height: auto;

}

#custom-html-ss .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-ss .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-ss .form-group-lg select[multiple].form-control,

#custom-html-ss .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-ss .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-ss .has-feedback {

  position: relative;

}

#custom-html-ss .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-ss .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-ss .form-group-lg .form-control + .form-control-feedback,

#custom-html-ss .input-group-lg + .form-control-feedback,

#custom-html-ss .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-ss .form-group-sm .form-control + .form-control-feedback,

#custom-html-ss .input-group-sm + .form-control-feedback,

#custom-html-ss .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-ss .has-success .checkbox,

#custom-html-ss .has-success .checkbox-inline,

#custom-html-ss .has-success .control-label,

#custom-html-ss .has-success .help-block,

#custom-html-ss .has-success .radio,

#custom-html-ss .has-success .radio-inline,

#custom-html-ss .has-success.checkbox label,

#custom-html-ss .has-success.checkbox-inline label,

#custom-html-ss .has-success.radio label,

#custom-html-ss .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-ss .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-ss .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-ss .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-ss .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-ss .has-warning .checkbox,

#custom-html-ss .has-warning .checkbox-inline,

#custom-html-ss .has-warning .control-label,

#custom-html-ss .has-warning .help-block,

#custom-html-ss .has-warning .radio,

#custom-html-ss .has-warning .radio-inline,

#custom-html-ss .has-warning.checkbox label,

#custom-html-ss .has-warning.checkbox-inline label,

#custom-html-ss .has-warning.radio label,

#custom-html-ss .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-ss .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-ss .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-ss .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-ss .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-ss .has-error .checkbox,

#custom-html-ss .has-error .checkbox-inline,

#custom-html-ss .has-error .control-label,

#custom-html-ss .has-error .help-block,

#custom-html-ss .has-error .radio,

#custom-html-ss .has-error .radio-inline,

#custom-html-ss .has-error.checkbox label,

#custom-html-ss .has-error.checkbox-inline label,

#custom-html-ss .has-error.radio label,

#custom-html-ss .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-ss .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-ss .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-ss .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-ss .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-ss .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-ss .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-ss .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-ss .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-ss .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-ss .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-ss .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-ss .form-inline .input-group .form-control,

  #custom-html-ss .form-inline .input-group .input-group-addon,

  #custom-html-ss .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-ss .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-ss .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-ss .form-inline .checkbox,

  #custom-html-ss .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-ss .form-inline .checkbox label,

  #custom-html-ss .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-ss .form-inline .checkbox input[type=checkbox],

  #custom-html-ss .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-ss .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-ss .form-horizontal .checkbox,

#custom-html-ss .form-horizontal .checkbox-inline,

#custom-html-ss .form-horizontal .radio,

#custom-html-ss .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-ss .form-horizontal .checkbox,

#custom-html-ss .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-ss .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-ss .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-ss .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-ss .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-ss .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-ss .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-ss .btn.active.focus,

#custom-html-ss .btn.active:focus,

#custom-html-ss .btn.focus,

#custom-html-ss .btn:active.focus,

#custom-html-ss .btn:active:focus,

#custom-html-ss .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-ss .btn.focus,

#custom-html-ss .btn:focus,

#custom-html-ss .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-ss .btn.active,

#custom-html-ss .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-ss .btn.disabled,

#custom-html-ss .btn[disabled],

#custom-html-ss fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-ss a.btn.disabled,

#custom-html-ss fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-ss .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-ss .btn-default.focus,

#custom-html-ss .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-ss .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-ss .btn-default.active,

#custom-html-ss .btn-default:active,

#custom-html-ss .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-ss .btn-default.active.focus,

#custom-html-ss .btn-default.active:focus,

#custom-html-ss .btn-default.active:hover,

#custom-html-ss .btn-default:active.focus,

#custom-html-ss .btn-default:active:focus,

#custom-html-ss .btn-default:active:hover,

#custom-html-ss .open > .dropdown-toggle.btn-default.focus,

#custom-html-ss .open > .dropdown-toggle.btn-default:focus,

#custom-html-ss .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-ss .btn-default.active,

#custom-html-ss .btn-default:active,

#custom-html-ss .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-ss .btn-default.disabled.focus,

#custom-html-ss .btn-default.disabled:focus,

#custom-html-ss .btn-default.disabled:hover,

#custom-html-ss .btn-default[disabled].focus,

#custom-html-ss .btn-default[disabled]:focus,

#custom-html-ss .btn-default[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-default.focus,

#custom-html-ss fieldset[disabled] .btn-default:focus,

#custom-html-ss fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-ss .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-ss .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-ss .btn-primary.focus,

#custom-html-ss .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-ss .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-ss .btn-primary.active,

#custom-html-ss .btn-primary:active,

#custom-html-ss .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-ss .btn-primary.active.focus,

#custom-html-ss .btn-primary.active:focus,

#custom-html-ss .btn-primary.active:hover,

#custom-html-ss .btn-primary:active.focus,

#custom-html-ss .btn-primary:active:focus,

#custom-html-ss .btn-primary:active:hover,

#custom-html-ss .open > .dropdown-toggle.btn-primary.focus,

#custom-html-ss .open > .dropdown-toggle.btn-primary:focus,

#custom-html-ss .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-ss .btn-primary.active,

#custom-html-ss .btn-primary:active,

#custom-html-ss .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-ss .btn-primary.disabled.focus,

#custom-html-ss .btn-primary.disabled:focus,

#custom-html-ss .btn-primary.disabled:hover,

#custom-html-ss .btn-primary[disabled].focus,

#custom-html-ss .btn-primary[disabled]:focus,

#custom-html-ss .btn-primary[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-primary.focus,

#custom-html-ss fieldset[disabled] .btn-primary:focus,

#custom-html-ss fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-ss .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-ss .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-ss .btn-success.focus,

#custom-html-ss .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-ss .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-ss .btn-success.active,

#custom-html-ss .btn-success:active,

#custom-html-ss .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-ss .btn-success.active.focus,

#custom-html-ss .btn-success.active:focus,

#custom-html-ss .btn-success.active:hover,

#custom-html-ss .btn-success:active.focus,

#custom-html-ss .btn-success:active:focus,

#custom-html-ss .btn-success:active:hover,

#custom-html-ss .open > .dropdown-toggle.btn-success.focus,

#custom-html-ss .open > .dropdown-toggle.btn-success:focus,

#custom-html-ss .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-ss .btn-success.active,

#custom-html-ss .btn-success:active,

#custom-html-ss .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-ss .btn-success.disabled.focus,

#custom-html-ss .btn-success.disabled:focus,

#custom-html-ss .btn-success.disabled:hover,

#custom-html-ss .btn-success[disabled].focus,

#custom-html-ss .btn-success[disabled]:focus,

#custom-html-ss .btn-success[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-success.focus,

#custom-html-ss fieldset[disabled] .btn-success:focus,

#custom-html-ss fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-ss .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-ss .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-ss .btn-info.focus,

#custom-html-ss .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-ss .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-ss .btn-info.active,

#custom-html-ss .btn-info:active,

#custom-html-ss .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-ss .btn-info.active.focus,

#custom-html-ss .btn-info.active:focus,

#custom-html-ss .btn-info.active:hover,

#custom-html-ss .btn-info:active.focus,

#custom-html-ss .btn-info:active:focus,

#custom-html-ss .btn-info:active:hover,

#custom-html-ss .open > .dropdown-toggle.btn-info.focus,

#custom-html-ss .open > .dropdown-toggle.btn-info:focus,

#custom-html-ss .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-ss .btn-info.active,

#custom-html-ss .btn-info:active,

#custom-html-ss .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-ss .btn-info.disabled.focus,

#custom-html-ss .btn-info.disabled:focus,

#custom-html-ss .btn-info.disabled:hover,

#custom-html-ss .btn-info[disabled].focus,

#custom-html-ss .btn-info[disabled]:focus,

#custom-html-ss .btn-info[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-info.focus,

#custom-html-ss fieldset[disabled] .btn-info:focus,

#custom-html-ss fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-ss .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-ss .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-ss .btn-warning.focus,

#custom-html-ss .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-ss .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-ss .btn-warning.active,

#custom-html-ss .btn-warning:active,

#custom-html-ss .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-ss .btn-warning.active.focus,

#custom-html-ss .btn-warning.active:focus,

#custom-html-ss .btn-warning.active:hover,

#custom-html-ss .btn-warning:active.focus,

#custom-html-ss .btn-warning:active:focus,

#custom-html-ss .btn-warning:active:hover,

#custom-html-ss .open > .dropdown-toggle.btn-warning.focus,

#custom-html-ss .open > .dropdown-toggle.btn-warning:focus,

#custom-html-ss .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-ss .btn-warning.active,

#custom-html-ss .btn-warning:active,

#custom-html-ss .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-ss .btn-warning.disabled.focus,

#custom-html-ss .btn-warning.disabled:focus,

#custom-html-ss .btn-warning.disabled:hover,

#custom-html-ss .btn-warning[disabled].focus,

#custom-html-ss .btn-warning[disabled]:focus,

#custom-html-ss .btn-warning[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-warning.focus,

#custom-html-ss fieldset[disabled] .btn-warning:focus,

#custom-html-ss fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-ss .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-ss .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-ss .btn-danger.focus,

#custom-html-ss .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-ss .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-ss .btn-danger.active,

#custom-html-ss .btn-danger:active,

#custom-html-ss .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-ss .btn-danger.active.focus,

#custom-html-ss .btn-danger.active:focus,

#custom-html-ss .btn-danger.active:hover,

#custom-html-ss .btn-danger:active.focus,

#custom-html-ss .btn-danger:active:focus,

#custom-html-ss .btn-danger:active:hover,

#custom-html-ss .open > .dropdown-toggle.btn-danger.focus,

#custom-html-ss .open > .dropdown-toggle.btn-danger:focus,

#custom-html-ss .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-ss .btn-danger.active,

#custom-html-ss .btn-danger:active,

#custom-html-ss .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-ss .btn-danger.disabled.focus,

#custom-html-ss .btn-danger.disabled:focus,

#custom-html-ss .btn-danger.disabled:hover,

#custom-html-ss .btn-danger[disabled].focus,

#custom-html-ss .btn-danger[disabled]:focus,

#custom-html-ss .btn-danger[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-danger.focus,

#custom-html-ss fieldset[disabled] .btn-danger:focus,

#custom-html-ss fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-ss .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-ss .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-ss .btn-link,

#custom-html-ss .btn-link.active,

#custom-html-ss .btn-link:active,

#custom-html-ss .btn-link[disabled],

#custom-html-ss fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-ss .btn-link,

#custom-html-ss .btn-link:active,

#custom-html-ss .btn-link:focus,

#custom-html-ss .btn-link:hover {

  border-color: transparent;

}

#custom-html-ss .btn-link:focus,

#custom-html-ss .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-ss .btn-link[disabled]:focus,

#custom-html-ss .btn-link[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-link:focus,

#custom-html-ss fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-ss .btn-group-lg > .btn,

#custom-html-ss .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-ss .btn-group-sm > .btn,

#custom-html-ss .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-ss .btn-group-xs > .btn,

#custom-html-ss .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-ss .btn-block {

  display: block;

  width: 100%;

}

#custom-html-ss .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-ss input[type=button].btn-block,

#custom-html-ss input[type=reset].btn-block,

#custom-html-ss input[type=submit].btn-block {

  width: 100%;

}

#custom-html-ss .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-ss .fade.in {

  opacity: 1;

}

#custom-html-ss .collapse {

  display: none;

}

#custom-html-ss .collapse.in {

  display: block;

}

#custom-html-ss tr.collapse.in {

  display: table-row;

}

#custom-html-ss tbody.collapse.in {

  display: table-row-group;

}

#custom-html-ss .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-ss .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-ss .dropdown,

#custom-html-ss .dropup {

  position: relative;

}

#custom-html-ss .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-ss .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-ss .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-ss .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-ss .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-ss .dropdown-menu > li > a:focus,

#custom-html-ss .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-ss .dropdown-menu > .active > a,

#custom-html-ss .dropdown-menu > .active > a:focus,

#custom-html-ss .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-ss .dropdown-menu > .disabled > a,

#custom-html-ss .dropdown-menu > .disabled > a:focus,

#custom-html-ss .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-ss .dropdown-menu > .disabled > a:focus,

#custom-html-ss .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-ss .open > .dropdown-menu {

  display: block;

}

#custom-html-ss .open > a {

  outline: 0;

}

#custom-html-ss .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-ss .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-ss .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-ss .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-ss .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-ss .dropup .caret,

#custom-html-ss .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-ss .dropup .dropdown-menu,

#custom-html-ss .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-ss .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-ss .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-ss .btn-group,

#custom-html-ss .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-ss .btn-group-vertical > .btn,

#custom-html-ss .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-ss .btn-group-vertical > .btn.active,

#custom-html-ss .btn-group-vertical > .btn:active,

#custom-html-ss .btn-group-vertical > .btn:focus,

#custom-html-ss .btn-group-vertical > .btn:hover,

#custom-html-ss .btn-group > .btn.active,

#custom-html-ss .btn-group > .btn:active,

#custom-html-ss .btn-group > .btn:focus,

#custom-html-ss .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-ss .btn-group .btn + .btn,

#custom-html-ss .btn-group .btn + .btn-group,

#custom-html-ss .btn-group .btn-group + .btn,

#custom-html-ss .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-ss .btn-toolbar {

  margin-left: -5px;

}

#custom-html-ss .btn-toolbar .btn,

#custom-html-ss .btn-toolbar .btn-group,

#custom-html-ss .btn-toolbar .input-group {

  float: left;

}

#custom-html-ss .btn-toolbar > .btn,

#custom-html-ss .btn-toolbar > .btn-group,

#custom-html-ss .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-ss .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-ss .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-ss .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-ss .btn-group > .btn:last-child:not(:first-child),

#custom-html-ss .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-ss .btn-group > .btn-group {

  float: left;

}

#custom-html-ss .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-ss .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-ss .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-ss .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-ss .btn-group .dropdown-toggle:active,

#custom-html-ss .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-ss .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-ss .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-ss .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-ss .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-ss .btn .caret {

  margin-left: 0;

}

#custom-html-ss .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-ss .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-ss .btn-group-vertical > .btn,

#custom-html-ss .btn-group-vertical > .btn-group,

#custom-html-ss .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-ss .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-ss .btn-group-vertical > .btn + .btn,

#custom-html-ss .btn-group-vertical > .btn + .btn-group,

#custom-html-ss .btn-group-vertical > .btn-group + .btn,

#custom-html-ss .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-ss .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-ss .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-ss .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-ss .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-ss .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-ss .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-ss .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-ss .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-ss .btn-group-justified > .btn,

#custom-html-ss .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-ss .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-ss .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-ss [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-ss [data-toggle=buttons] > .btn input[type=radio],

#custom-html-ss [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-ss [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-ss .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-ss .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-ss .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-ss .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-ss .input-group-lg > .form-control,

#custom-html-ss .input-group-lg > .input-group-addon,

#custom-html-ss .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-ss select.input-group-lg > .form-control,

#custom-html-ss select.input-group-lg > .input-group-addon,

#custom-html-ss select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-ss select[multiple].input-group-lg > .form-control,

#custom-html-ss select[multiple].input-group-lg > .input-group-addon,

#custom-html-ss select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-ss textarea.input-group-lg > .form-control,

#custom-html-ss textarea.input-group-lg > .input-group-addon,

#custom-html-ss textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-ss .input-group-sm > .form-control,

#custom-html-ss .input-group-sm > .input-group-addon,

#custom-html-ss .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-ss select.input-group-sm > .form-control,

#custom-html-ss select.input-group-sm > .input-group-addon,

#custom-html-ss select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-ss select[multiple].input-group-sm > .form-control,

#custom-html-ss select[multiple].input-group-sm > .input-group-addon,

#custom-html-ss select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-ss textarea.input-group-sm > .form-control,

#custom-html-ss textarea.input-group-sm > .input-group-addon,

#custom-html-ss textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-ss .input-group .form-control,

#custom-html-ss .input-group-addon,

#custom-html-ss .input-group-btn {

  display: table-cell;

}

#custom-html-ss .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-ss .input-group-addon:not(:first-child):not(:last-child),

#custom-html-ss .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-ss .input-group-addon,

#custom-html-ss .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-ss .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-ss .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-ss .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-ss .input-group-addon input[type=checkbox],

#custom-html-ss .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-ss .input-group .form-control:first-child,

#custom-html-ss .input-group-addon:first-child,

#custom-html-ss .input-group-btn:first-child > .btn,

#custom-html-ss .input-group-btn:first-child > .btn-group > .btn,

#custom-html-ss .input-group-btn:first-child > .dropdown-toggle,

#custom-html-ss .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-ss .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-ss .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-ss .input-group .form-control:last-child,

#custom-html-ss .input-group-addon:last-child,

#custom-html-ss .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-ss .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-ss .input-group-btn:last-child > .btn,

#custom-html-ss .input-group-btn:last-child > .btn-group > .btn,

#custom-html-ss .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-ss .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-ss .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-ss .input-group-btn > .btn {

  position: relative;

}

#custom-html-ss .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-ss .input-group-btn > .btn:active,

#custom-html-ss .input-group-btn > .btn:focus,

#custom-html-ss .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-ss .input-group-btn:first-child > .btn,

#custom-html-ss .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-ss .input-group-btn:last-child > .btn,

#custom-html-ss .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-ss .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-ss .nav > li {

  position: relative;

  display: block;

}

#custom-html-ss .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-ss .nav > li > a:focus,

#custom-html-ss .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-ss .nav > li.disabled > a {

  color: #777777;

}

#custom-html-ss .nav > li.disabled > a:focus,

#custom-html-ss .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-ss .nav .open > a,

#custom-html-ss .nav .open > a:focus,

#custom-html-ss .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-ss .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-ss .nav > li > a > img {

  max-width: none;

}

#custom-html-ss .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-ss .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-ss .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-ss .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-ss .nav-tabs > li.active > a,

#custom-html-ss .nav-tabs > li.active > a:focus,

#custom-html-ss .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-ss .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-ss .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-ss .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-ss .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-ss .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-ss .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-ss .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-ss .nav-tabs.nav-justified > .active > a,

#custom-html-ss .nav-tabs.nav-justified > .active > a:focus,

#custom-html-ss .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-ss .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-ss .nav-tabs.nav-justified > .active > a,

  #custom-html-ss .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-ss .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-ss .nav-pills > li {

  float: left;

}

#custom-html-ss .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-ss .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-ss .nav-pills > li.active > a,

#custom-html-ss .nav-pills > li.active > a:focus,

#custom-html-ss .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-ss .nav-stacked > li {

  float: none;

}

#custom-html-ss .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-ss .nav-justified {

  width: 100%;

}

#custom-html-ss .nav-justified > li {

  float: none;

}

#custom-html-ss .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-ss .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-ss .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-ss .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-ss .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-ss .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-ss .nav-tabs-justified > .active > a,

#custom-html-ss .nav-tabs-justified > .active > a:focus,

#custom-html-ss .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-ss .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-ss .nav-tabs-justified > .active > a,

  #custom-html-ss .nav-tabs-justified > .active > a:focus,

  #custom-html-ss .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-ss .tab-content > .tab-pane {

  display: none;

}

#custom-html-ss .tab-content > .active {

  display: block;

}

#custom-html-ss .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-ss .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-ss .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-ss .navbar-header {

    float: left;

  }

}

#custom-html-ss .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;


  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-ss .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-ss .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-ss .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-ss .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-ss .navbar-fixed-bottom .navbar-collapse,

  #custom-html-ss .navbar-fixed-top .navbar-collapse,

  #custom-html-ss .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-ss .navbar-fixed-bottom .navbar-collapse,

#custom-html-ss .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-ss .navbar-fixed-bottom .navbar-collapse,

  #custom-html-ss .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-ss .container-fluid > .navbar-collapse,

#custom-html-ss .container-fluid > .navbar-header,

#custom-html-ss .container > .navbar-collapse,

#custom-html-ss .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-ss .container-fluid > .navbar-collapse,

  #custom-html-ss .container-fluid > .navbar-header,

  #custom-html-ss .container > .navbar-collapse,

  #custom-html-ss .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-ss .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-ss .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-ss .navbar-fixed-bottom,

#custom-html-ss .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-ss .navbar-fixed-bottom,

  #custom-html-ss .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-ss .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-ss .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-ss .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-ss .navbar-brand:focus,

#custom-html-ss .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-ss .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-ss .navbar > .container .navbar-brand,

  #custom-html-ss .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-ss .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-ss .navbar-toggle:focus {

  outline: 0;

}

#custom-html-ss .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-ss .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-ss .navbar-toggle {

    display: none;

  }

}

#custom-html-ss .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-ss .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-ss .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-ss .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-ss .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-ss .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-ss .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-ss .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-ss .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-ss .navbar-nav > li {

    float: left;

  }

  #custom-html-ss .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-ss .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-ss .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-ss .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-ss .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-ss .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-ss .navbar-form .input-group .form-control,

  #custom-html-ss .navbar-form .input-group .input-group-addon,

  #custom-html-ss .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-ss .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-ss .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-ss .navbar-form .checkbox,

  #custom-html-ss .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-ss .navbar-form .checkbox label,

  #custom-html-ss .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-ss .navbar-form .checkbox input[type=checkbox],

  #custom-html-ss .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-ss .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-ss .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-ss .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-ss .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-ss .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-ss .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-ss .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-ss .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-ss .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-ss .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-ss .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-ss .navbar-left {

    float: left !important;

  }

  #custom-html-ss .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-ss .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-ss .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-ss .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-ss .navbar-default .navbar-brand:focus,

#custom-html-ss .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-ss .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-ss .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-ss .navbar-default .navbar-nav > li > a:focus,

#custom-html-ss .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-ss .navbar-default .navbar-nav > .active > a,

#custom-html-ss .navbar-default .navbar-nav > .active > a:focus,

#custom-html-ss .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-ss .navbar-default .navbar-nav > .disabled > a,

#custom-html-ss .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-ss .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-ss .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-ss .navbar-default .navbar-toggle:focus,

#custom-html-ss .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-ss .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-ss .navbar-default .navbar-collapse,

#custom-html-ss .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-ss .navbar-default .navbar-nav > .open > a,

#custom-html-ss .navbar-default .navbar-nav > .open > a:focus,

#custom-html-ss .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-ss .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-ss .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-ss .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-ss .navbar-default .btn-link {

  color: #777777;

}

#custom-html-ss .navbar-default .btn-link:focus,

#custom-html-ss .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-ss .navbar-default .btn-link[disabled]:focus,

#custom-html-ss .navbar-default .btn-link[disabled]:hover,

#custom-html-ss fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-ss fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-ss .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-ss .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-ss .navbar-inverse .navbar-brand:focus,

#custom-html-ss .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-ss .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-ss .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-ss .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-ss .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-ss .navbar-inverse .navbar-nav > .active > a,

#custom-html-ss .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-ss .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-ss .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-ss .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-ss .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-ss .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-ss .navbar-inverse .navbar-toggle:focus,

#custom-html-ss .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-ss .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-ss .navbar-inverse .navbar-collapse,

#custom-html-ss .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-ss .navbar-inverse .navbar-nav > .open > a,

#custom-html-ss .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-ss .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-ss .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-ss .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-ss .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-ss .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-ss .navbar-inverse .btn-link:focus,

#custom-html-ss .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-ss .navbar-inverse .btn-link[disabled]:focus,

#custom-html-ss .navbar-inverse .btn-link[disabled]:hover,

#custom-html-ss fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-ss fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-ss .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-ss .breadcrumb > li {

  display: inline-block;

}

#custom-html-ss .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-ss .breadcrumb > .active {

  color: #777777;

}

#custom-html-ss .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-ss .pagination > li {

  display: inline;

}

#custom-html-ss .pagination > li > a,

#custom-html-ss .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-ss .pagination > li:first-child > a,

#custom-html-ss .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-ss .pagination > li:last-child > a,

#custom-html-ss .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-ss .pagination > li > a:focus,

#custom-html-ss .pagination > li > a:hover,

#custom-html-ss .pagination > li > span:focus,

#custom-html-ss .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-ss .pagination > .active > a,

#custom-html-ss .pagination > .active > a:focus,

#custom-html-ss .pagination > .active > a:hover,

#custom-html-ss .pagination > .active > span,

#custom-html-ss .pagination > .active > span:focus,

#custom-html-ss .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-ss .pagination > .disabled > a,

#custom-html-ss .pagination > .disabled > a:focus,

#custom-html-ss .pagination > .disabled > a:hover,

#custom-html-ss .pagination > .disabled > span,

#custom-html-ss .pagination > .disabled > span:focus,

#custom-html-ss .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-ss .pagination-lg > li > a,

#custom-html-ss .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-ss .pagination-lg > li:first-child > a,

#custom-html-ss .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-ss .pagination-lg > li:last-child > a,

#custom-html-ss .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-ss .pagination-sm > li > a,

#custom-html-ss .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-ss .pagination-sm > li:first-child > a,

#custom-html-ss .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-ss .pagination-sm > li:last-child > a,

#custom-html-ss .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-ss .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-ss .pager li {

  display: inline;

}

#custom-html-ss .pager li > a,

#custom-html-ss .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-ss .pager li > a:focus,

#custom-html-ss .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-ss .pager .next > a,

#custom-html-ss .pager .next > span {

  float: right;

}

#custom-html-ss .pager .previous > a,

#custom-html-ss .pager .previous > span {

  float: left;

}

#custom-html-ss .pager .disabled > a,

#custom-html-ss .pager .disabled > a:focus,

#custom-html-ss .pager .disabled > a:hover,

#custom-html-ss .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-ss .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-ss a.label:focus,

#custom-html-ss a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-ss .label:empty {

  display: none;

}

#custom-html-ss .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-ss .label-default {

  background-color: #777777;

}

#custom-html-ss .label-default[href]:focus,

#custom-html-ss .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-ss .label-primary {

  background-color: #337ab7;

}

#custom-html-ss .label-primary[href]:focus,

#custom-html-ss .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-ss .label-success {

  background-color: #5cb85c;

}

#custom-html-ss .label-success[href]:focus,

#custom-html-ss .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-ss .label-info {

  background-color: #5bc0de;

}

#custom-html-ss .label-info[href]:focus,

#custom-html-ss .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-ss .label-warning {

  background-color: #f0ad4e;

}

#custom-html-ss .label-warning[href]:focus,

#custom-html-ss .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-ss .label-danger {

  background-color: #d9534f;

}

#custom-html-ss .label-danger[href]:focus,

#custom-html-ss .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-ss .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-ss .badge:empty {

  display: none;

}

#custom-html-ss .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-ss .btn-group-xs > .btn .badge,

#custom-html-ss .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-ss a.badge:focus,

#custom-html-ss a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-ss .list-group-item.active > .badge,

#custom-html-ss .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-ss .list-group-item > .badge {

  float: right;

}

#custom-html-ss .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-ss .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-ss .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-ss .jumbotron .h1,

#custom-html-ss .jumbotron h1 {

  color: inherit;

}

#custom-html-ss .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-ss .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-ss .container .jumbotron,

#custom-html-ss .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-ss .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-ss .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-ss .container .jumbotron,

  #custom-html-ss .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-ss .jumbotron .h1,

  #custom-html-ss .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-ss .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-ss .thumbnail a > img,

#custom-html-ss .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-ss a.thumbnail.active,

#custom-html-ss a.thumbnail:focus,

#custom-html-ss a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-ss .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-ss .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-ss .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-ss .alert .alert-link {

  font-weight: 700;

}

#custom-html-ss .alert > p,

#custom-html-ss .alert > ul {

  margin-bottom: 0;

}

#custom-html-ss .alert > p + p {

  margin-top: 5px;

}

#custom-html-ss .alert-dismissable,

#custom-html-ss .alert-dismissible {

  padding-right: 35px;

}

#custom-html-ss .alert-dismissable .close,

#custom-html-ss .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-ss .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-ss .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-ss .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-ss .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-ss .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-ss .alert-info .alert-link {

  color: #000000;

}

#custom-html-ss .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-ss .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-ss .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-ss .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-ss .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-ss .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-ss .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-ss .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-ss .progress-bar-striped,

#custom-html-ss .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-ss .progress-bar.active,

#custom-html-ss .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-ss .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-ss .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-ss .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-ss .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-ss .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-ss .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-ss .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-ss .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-ss .media {

  margin-top: 15px;

}

#custom-html-ss .media:first-child {

  margin-top: 0;

}

#custom-html-ss .media,

#custom-html-ss .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-ss .media-body {

  width: 10000px;

}

#custom-html-ss .media-object {

  display: block;

}

#custom-html-ss .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-ss .media-right,

#custom-html-ss .media > .pull-right {

  padding-left: 10px;

}

#custom-html-ss .media-left,

#custom-html-ss .media > .pull-left {

  padding-right: 10px;

}

#custom-html-ss .media-body,

#custom-html-ss .media-left,

#custom-html-ss .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-ss .media-middle {

  vertical-align: middle;

}

#custom-html-ss .media-bottom {

  vertical-align: bottom;

}

#custom-html-ss .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-ss .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-ss .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-ss .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-ss .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-ss .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-ss a.list-group-item,

#custom-html-ss button.list-group-item {

  color: #555555;

}

#custom-html-ss a.list-group-item .list-group-item-heading,

#custom-html-ss button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-ss a.list-group-item:focus,

#custom-html-ss a.list-group-item:hover,

#custom-html-ss button.list-group-item:focus,

#custom-html-ss button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-ss button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-ss .list-group-item.disabled,

#custom-html-ss .list-group-item.disabled:focus,

#custom-html-ss .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-ss .list-group-item.disabled .list-group-item-heading,

#custom-html-ss .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-ss .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-ss .list-group-item.disabled .list-group-item-text,

#custom-html-ss .list-group-item.disabled:focus .list-group-item-text,

#custom-html-ss .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-ss .list-group-item.active,

#custom-html-ss .list-group-item.active:focus,

#custom-html-ss .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-ss .list-group-item.active .list-group-item-heading,

#custom-html-ss .list-group-item.active .list-group-item-heading > .small,

#custom-html-ss .list-group-item.active .list-group-item-heading > small,

#custom-html-ss .list-group-item.active:focus .list-group-item-heading,

#custom-html-ss .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-ss .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-ss .list-group-item.active:hover .list-group-item-heading,

#custom-html-ss .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-ss .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-ss .list-group-item.active .list-group-item-text,

#custom-html-ss .list-group-item.active:focus .list-group-item-text,

#custom-html-ss .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-ss .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-ss a.list-group-item-success,

#custom-html-ss button.list-group-item-success {

  color: #3c763d;

}

#custom-html-ss a.list-group-item-success .list-group-item-heading,

#custom-html-ss button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-ss a.list-group-item-success:focus,

#custom-html-ss a.list-group-item-success:hover,

#custom-html-ss button.list-group-item-success:focus,

#custom-html-ss button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-ss a.list-group-item-success.active,

#custom-html-ss a.list-group-item-success.active:focus,

#custom-html-ss a.list-group-item-success.active:hover,

#custom-html-ss button.list-group-item-success.active,

#custom-html-ss button.list-group-item-success.active:focus,

#custom-html-ss button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-ss .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-ss a.list-group-item-info,

#custom-html-ss button.list-group-item-info {

  color: #31708f;

}

#custom-html-ss a.list-group-item-info .list-group-item-heading,

#custom-html-ss button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-ss a.list-group-item-info:focus,

#custom-html-ss a.list-group-item-info:hover,

#custom-html-ss button.list-group-item-info:focus,

#custom-html-ss button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-ss a.list-group-item-info.active,

#custom-html-ss a.list-group-item-info.active:focus,

#custom-html-ss a.list-group-item-info.active:hover,

#custom-html-ss button.list-group-item-info.active,

#custom-html-ss button.list-group-item-info.active:focus,

#custom-html-ss button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-ss .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-ss a.list-group-item-warning,

#custom-html-ss button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-ss a.list-group-item-warning .list-group-item-heading,

#custom-html-ss button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-ss a.list-group-item-warning:focus,

#custom-html-ss a.list-group-item-warning:hover,

#custom-html-ss button.list-group-item-warning:focus,

#custom-html-ss button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-ss a.list-group-item-warning.active,

#custom-html-ss a.list-group-item-warning.active:focus,

#custom-html-ss a.list-group-item-warning.active:hover,

#custom-html-ss button.list-group-item-warning.active,

#custom-html-ss button.list-group-item-warning.active:focus,

#custom-html-ss button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-ss .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-ss a.list-group-item-danger,

#custom-html-ss button.list-group-item-danger {

  color: #a94442;

}

#custom-html-ss a.list-group-item-danger .list-group-item-heading,

#custom-html-ss button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-ss a.list-group-item-danger:focus,

#custom-html-ss a.list-group-item-danger:hover,

#custom-html-ss button.list-group-item-danger:focus,

#custom-html-ss button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-ss a.list-group-item-danger.active,

#custom-html-ss a.list-group-item-danger.active:focus,

#custom-html-ss a.list-group-item-danger.active:hover,

#custom-html-ss button.list-group-item-danger.active,

#custom-html-ss button.list-group-item-danger.active:focus,

#custom-html-ss button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-ss .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-ss .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-ss .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-ss .panel-body {

  padding: 15px;

}

#custom-html-ss .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-ss .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-ss .panel-title > .small,

#custom-html-ss .panel-title > .small > a,

#custom-html-ss .panel-title > a,

#custom-html-ss .panel-title > small,

#custom-html-ss .panel-title > small > a {

  color: inherit;

}

#custom-html-ss .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-ss .panel > .list-group,

#custom-html-ss .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-ss .panel > .list-group .list-group-item,

#custom-html-ss .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-ss .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-ss .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-ss .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-ss .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-ss .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-ss .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-ss .panel > .panel-collapse > .table,

#custom-html-ss .panel > .table,

#custom-html-ss .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-ss .panel > .panel-collapse > .table caption,

#custom-html-ss .panel > .table caption,

#custom-html-ss .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child,

#custom-html-ss .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-ss .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-ss .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-ss .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-ss .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-ss .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-ss .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-ss .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-ss .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-ss .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-ss .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-ss .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child,

#custom-html-ss .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-ss .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-ss .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-ss .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-ss .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-ss .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-ss .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-ss .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-ss .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-ss .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-ss .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-ss .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-ss .panel > .panel-body + .table,

#custom-html-ss .panel > .panel-body + .table-responsive,

#custom-html-ss .panel > .table + .panel-body,

#custom-html-ss .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-ss .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-ss .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-ss .panel > .table-bordered,

#custom-html-ss .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-ss .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-ss .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-ss .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-ss .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-ss .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-ss .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-ss .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-ss .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-ss .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-ss .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-ss .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-ss .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-ss .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-ss .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-ss .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-ss .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-ss .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-ss .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-ss .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-ss .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-ss .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-ss .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-ss .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-ss .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-ss .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-ss .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-ss .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-ss .panel-group {

  margin-bottom: 20px;

}

#custom-html-ss .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-ss .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-ss .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-ss .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-ss .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-ss .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-ss .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-ss .panel-default {

  border-color: #dddddd;

}

#custom-html-ss .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-ss .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-ss .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-ss .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-ss .panel-primary {

  border-color: #337ab7;

}

#custom-html-ss .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-ss .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-ss .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-ss .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-ss .panel-success {

  border-color: #d6e9c6;

}

#custom-html-ss .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-ss .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-ss .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-ss .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-ss .panel-info {

  border-color: #bce8f1;

}

#custom-html-ss .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-ss .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-ss .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-ss .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-ss .panel-warning {

  border-color: #faebcc;

}

#custom-html-ss .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-ss .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-ss .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-ss .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-ss .panel-danger {

  border-color: #ebccd1;

}

#custom-html-ss .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-ss .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-ss .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-ss .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-ss .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-ss .embed-responsive .embed-responsive-item,

#custom-html-ss .embed-responsive embed,

#custom-html-ss .embed-responsive iframe,

#custom-html-ss .embed-responsive object,

#custom-html-ss .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-ss .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-ss .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-ss .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-ss .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-ss .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-ss .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-ss .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-ss .close:focus,

#custom-html-ss .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-ss button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-ss .modal-open {

  overflow: hidden;

}

#custom-html-ss .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-ss .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-ss .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-ss .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-ss .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-ss .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-ss .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-ss .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-ss .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-ss .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-ss .modal-header .close {

  margin-top: -2px;

}

#custom-html-ss .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-ss .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-ss .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-ss .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-ss .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-ss .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-ss .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-ss .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-ss .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-ss .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-ss .modal-lg {

    width: 900px;

  }

}

#custom-html-ss .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-ss .tooltip.in {

  opacity: 0.9;

}

#custom-html-ss .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-ss .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-ss .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-ss .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-ss .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-ss .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-ss .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-ss .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-ss .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-ss .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-ss .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-ss .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-ss .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-ss .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-ss .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-ss .popover.top {

  margin-top: -10px;

}

#custom-html-ss .popover.right {

  margin-left: 10px;

}

#custom-html-ss .popover.bottom {

  margin-top: 10px;

}

#custom-html-ss .popover.left {

  margin-left: -10px;

}

#custom-html-ss .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-ss .popover-content {

  padding: 9px 14px;

}

#custom-html-ss .popover > .arrow,

#custom-html-ss .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-ss .popover > .arrow {

  border-width: 11px;

}

#custom-html-ss .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-ss .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-ss .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-ss .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-ss .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-ss .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-ss .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-ss .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-ss .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-ss .carousel {

  position: relative;

}

#custom-html-ss .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-ss .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-ss .carousel-inner > .item > a > img,

#custom-html-ss .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-ss .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-ss .carousel-inner > .item.active.right,

  #custom-html-ss .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-ss .carousel-inner > .item.active.left,

  #custom-html-ss .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-ss .carousel-inner > .item.active,

  #custom-html-ss .carousel-inner > .item.next.left,

  #custom-html-ss .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-ss .carousel-inner > .active,

#custom-html-ss .carousel-inner > .next,

#custom-html-ss .carousel-inner > .prev {

  display: block;

}

#custom-html-ss .carousel-inner > .active {

  left: 0;

}

#custom-html-ss .carousel-inner > .next,

#custom-html-ss .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-ss .carousel-inner > .next {

  left: 100%;

}

#custom-html-ss .carousel-inner > .prev {

  left: -100%;

}

#custom-html-ss .carousel-inner > .next.left,

#custom-html-ss .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-ss .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-ss .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-ss .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-ss .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-ss .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-ss .carousel-control:focus,

#custom-html-ss .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-ss .carousel-control .glyphicon-chevron-left,

#custom-html-ss .carousel-control .glyphicon-chevron-right,

#custom-html-ss .carousel-control .icon-next,

#custom-html-ss .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-ss .carousel-control .glyphicon-chevron-left,

#custom-html-ss .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-ss .carousel-control .glyphicon-chevron-right,

#custom-html-ss .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-ss .carousel-control .icon-next,

#custom-html-ss .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-ss .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-ss .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-ss .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-ss .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-ss .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-ss .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-ss .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-ss .carousel-control .glyphicon-chevron-left,

  #custom-html-ss .carousel-control .glyphicon-chevron-right,

  #custom-html-ss .carousel-control .icon-next,

  #custom-html-ss .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-ss .carousel-control .glyphicon-chevron-left,

  #custom-html-ss .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-ss .carousel-control .glyphicon-chevron-right,

  #custom-html-ss .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-ss .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-ss .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-ss .btn-group-vertical > .btn-group:after,

#custom-html-ss .btn-group-vertical > .btn-group:before,

#custom-html-ss .btn-toolbar:after,

#custom-html-ss .btn-toolbar:before,

#custom-html-ss .clearfix:after,

#custom-html-ss .clearfix:before,

#custom-html-ss .container-fluid:after,

#custom-html-ss .container-fluid:before,

#custom-html-ss .container:after,

#custom-html-ss .container:before,

#custom-html-ss .dl-horizontal dd:after,

#custom-html-ss .dl-horizontal dd:before,

#custom-html-ss .form-horizontal .form-group:after,

#custom-html-ss .form-horizontal .form-group:before,

#custom-html-ss .modal-footer:after,

#custom-html-ss .modal-footer:before,

#custom-html-ss .modal-header:after,

#custom-html-ss .modal-header:before,

#custom-html-ss .nav:after,

#custom-html-ss .nav:before,

#custom-html-ss .navbar-collapse:after,

#custom-html-ss .navbar-collapse:before,

#custom-html-ss .navbar-header:after,

#custom-html-ss .navbar-header:before,

#custom-html-ss .navbar:after,

#custom-html-ss .navbar:before,

#custom-html-ss .pager:after,

#custom-html-ss .pager:before,

#custom-html-ss .panel-body:after,

#custom-html-ss .panel-body:before,

#custom-html-ss .row:after,

#custom-html-ss .row:before {

  display: table;

  content: " ";

}

#custom-html-ss .btn-group-vertical > .btn-group:after,

#custom-html-ss .btn-toolbar:after,

#custom-html-ss .clearfix:after,

#custom-html-ss .container-fluid:after,

#custom-html-ss .container:after,

#custom-html-ss .dl-horizontal dd:after,

#custom-html-ss .form-horizontal .form-group:after,

#custom-html-ss .modal-footer:after,

#custom-html-ss .modal-header:after,

#custom-html-ss .nav:after,

#custom-html-ss .navbar-collapse:after,

#custom-html-ss .navbar-header:after,

#custom-html-ss .navbar:after,

#custom-html-ss .pager:after,

#custom-html-ss .panel-body:after,

#custom-html-ss .row:after {

  clear: both;

}

#custom-html-ss .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-ss .pull-right {

  float: right !important;

}

#custom-html-ss .pull-left {

  float: left !important;

}

#custom-html-ss .hide {

  display: none !important;

}

#custom-html-ss .show {

  display: block !important;

}

#custom-html-ss .invisible {

  visibility: hidden;

}

#custom-html-ss .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-ss .hidden {

  display: none !important;

}

#custom-html-ss .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-ss .visible-lg,

#custom-html-ss .visible-md,

#custom-html-ss .visible-sm,

#custom-html-ss .visible-xs {

  display: none !important;

}

#custom-html-ss .visible-lg-block,

#custom-html-ss .visible-lg-inline,

#custom-html-ss .visible-lg-inline-block,

#custom-html-ss .visible-md-block,

#custom-html-ss .visible-md-inline,

#custom-html-ss .visible-md-inline-block,

#custom-html-ss .visible-sm-block,

#custom-html-ss .visible-sm-inline,

#custom-html-ss .visible-sm-inline-block,

#custom-html-ss .visible-xs-block,

#custom-html-ss .visible-xs-inline,

#custom-html-ss .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-ss .visible-xs {

    display: block !important;

  }

  #custom-html-ss table.visible-xs {

    display: table !important;

  }

  #custom-html-ss tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-ss td.visible-xs,

  #custom-html-ss th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-ss .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-ss .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-ss .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-ss .visible-sm {

    display: block !important;

  }

  #custom-html-ss table.visible-sm {

    display: table !important;

  }

  #custom-html-ss tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-ss td.visible-sm,

  #custom-html-ss th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-ss .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-ss .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-ss .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-ss .visible-md {

    display: block !important;

  }

  #custom-html-ss table.visible-md {

    display: table !important;

  }

  #custom-html-ss tr.visible-md {

    display: table-row !important;

  }

  #custom-html-ss td.visible-md,

  #custom-html-ss th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-ss .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-ss .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-ss .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-ss .visible-lg {

    display: block !important;

  }

  #custom-html-ss table.visible-lg {

    display: table !important;

  }

  #custom-html-ss tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-ss td.visible-lg,

  #custom-html-ss th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-ss .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-ss .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-ss .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-ss .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-ss .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-ss .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-ss .hidden-lg {

    display: none !important;

  }

}

#custom-html-ss .visible-print {

  display: none !important;

}

@media print {

  #custom-html-ss .visible-print {

    display: block !important;

  }

  #custom-html-ss table.visible-print {

    display: table !important;

  }

  #custom-html-ss tr.visible-print {

    display: table-row !important;

  }

  #custom-html-ss td.visible-print,

  #custom-html-ss th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-ss .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-ss .visible-print-block {

    display: block !important;

  }

}

#custom-html-ss .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-ss .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-ss .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-ss .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-ss .hidden-print {

    display: none !important;

  }

}

#custom-html-ss .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-ss .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-ss .intl-tel-input .hide {

  display: none;

}

#custom-html-ss .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-ss .intl-tel-input input,

#custom-html-ss .intl-tel-input input[type=tel],

#custom-html-ss .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-ss .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-ss .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-ss .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-ss .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-ss .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-ss .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-ss .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-ss .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-ss .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-ss .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-ss .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-ss .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-ss .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-ss .intl-tel-input .country-list .country-name,

#custom-html-ss .intl-tel-input .country-list .dial-code,

#custom-html-ss .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-ss .intl-tel-input .country-list .country-name,

#custom-html-ss .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-ss .intl-tel-input.allow-dropdown input,

#custom-html-ss .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-ss .intl-tel-input.allow-dropdown input[type=text],

#custom-html-ss .intl-tel-input.separate-dial-code input,

#custom-html-ss .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-ss .intl-tel-input.allow-dropdown .flag-container,

#custom-html-ss .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-ss .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-ss .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-ss .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-ss .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-ss .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-ss .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-ss .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-ss .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-ss .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-ss .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-ss .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-ss .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-ss .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-ss .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-ss .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-ss .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-ss .iti-flag {

  width: 20px;

}

#custom-html-ss .iti-flag.be {

  width: 18px;

}

#custom-html-ss .iti-flag.ch {

  width: 15px;

}

#custom-html-ss .iti-flag.mc {

  width: 19px;

}

#custom-html-ss .iti-flag.ne {

  width: 18px;

}

#custom-html-ss .iti-flag.np {

  width: 13px;

}

#custom-html-ss .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-ss .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-ss .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-ss .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-ss .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-ss .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-ss .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-ss .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-ss .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-ss .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-ss .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-ss .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-ss .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-ss .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-ss .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-ss .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-ss .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-ss .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-ss .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-ss .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-ss .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-ss .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-ss .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-ss .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-ss .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-ss .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-ss .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-ss .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-ss .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-ss .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-ss .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-ss .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-ss .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-ss .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-ss .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-ss .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-ss .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-ss .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-ss .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-ss .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-ss .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-ss .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-ss .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-ss .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-ss .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-ss .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-ss .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-ss .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-ss .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-ss .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-ss .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-ss .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-ss .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-ss .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-ss .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-ss .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-ss .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-ss .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-ss .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-ss .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-ss .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-ss .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-ss .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-ss .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-ss .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-ss .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-ss .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-ss .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-ss .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-ss .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-ss .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-ss .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-ss .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-ss .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-ss .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-ss .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-ss .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-ss .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-ss .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-ss .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-ss .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-ss .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-ss .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-ss .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-ss .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-ss .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-ss .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-ss .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-ss .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-ss .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-ss .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-ss .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-ss .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-ss .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-ss .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-ss .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-ss .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-ss .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-ss .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-ss .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-ss .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-ss .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-ss .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-ss .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-ss .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-ss .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-ss .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-ss .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-ss .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-ss .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-ss .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-ss .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-ss .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-ss .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-ss .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-ss .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-ss .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-ss .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-ss .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-ss .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-ss .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-ss .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-ss .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-ss .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-ss .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-ss .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-ss .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-ss .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-ss .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-ss .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-ss .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-ss .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-ss .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-ss .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-ss .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-ss .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-ss .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-ss .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-ss .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-ss .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-ss .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-ss .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-ss .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-ss .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-ss .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-ss .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-ss .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-ss .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-ss .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-ss .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-ss .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-ss .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-ss .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-ss .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-ss .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-ss .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-ss .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-ss .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-ss .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-ss .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-ss .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-ss .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-ss .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-ss .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-ss .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-ss .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-ss .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-ss .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-ss .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-ss .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-ss .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-ss .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-ss .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-ss .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-ss .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-ss .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-ss .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-ss .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-ss .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-ss .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-ss .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-ss .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-ss .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-ss .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-ss .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-ss .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-ss .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-ss .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-ss .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-ss .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-ss .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-ss .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-ss .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-ss .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-ss .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-ss .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-ss .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-ss .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-ss .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-ss .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-ss .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-ss .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-ss .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-ss .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-ss .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-ss .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-ss .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-ss .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-ss .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-ss .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-ss .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-ss .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-ss .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-ss .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-ss .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-ss .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-ss .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-ss .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-ss .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-ss .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-ss .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-ss .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-ss .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-ss .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-ss .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-ss .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-ss .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-ss .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-ss .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-ss .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-ss .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-ss .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-ss .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-ss .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-ss .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-ss .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-ss .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-ss .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-ss .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-ss .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-ss .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-ss .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-ss .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-ss .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-ss .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-ss .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-ss .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-ss .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-ss .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-ss .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-ss .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-ss .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-ss .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-ss .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-ss .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-ss .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-ss .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-ss .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-ss .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-ss .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-ss .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-ss .iti-flag.np {

  background-color: transparent;

}

#custom-html-ss body,

#custom-html-ss button,

#custom-html-ss input,

#custom-html-ss select,

#custom-html-ss textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-ss h1,

#custom-html-ss h2,

#custom-html-ss h3,

#custom-html-ss h4,

#custom-html-ss h5,

#custom-html-ss h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-ss .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-ss .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-ss .navbar-main li.account {

  background-color: #000000;

}

#custom-html-ss .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-ss .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-ss .navbar-main .navbar-nav > .active > a,

#custom-html-ss .navbar-main .navbar-nav > .active > a:focus,

#custom-html-ss .navbar-main .navbar-nav > .active > a:hover,

#custom-html-ss .navbar-main .navbar-nav > .open > a,

#custom-html-ss .navbar-main .navbar-nav > .open > a:focus,

#custom-html-ss .navbar-main .navbar-nav > .open > a:hover,

#custom-html-ss .navbar-main .navbar-nav > li > a:focus,

#custom-html-ss .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-ss #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-ss .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-ss .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-ss .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-ss .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-ss .navbar-header {

    float: none;

  }

  #custom-html-ss .navbar-left,

  #custom-html-ss .navbar-right {

    float: none !important;

  }

  #custom-html-ss .navbar-toggle {

    display: block;

  }

  #custom-html-ss .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-ss .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-ss .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-ss .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-ss .navbar-nav > li {

    float: none;

  }

  #custom-html-ss .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-ss .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-ss .panel {

  font-size: 0.9em;

}

#custom-html-ss .list-group {

  font-size: 0.9em;

}

#custom-html-ss .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-ss .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-ss a.list-group-item.active,

#custom-html-ss a.list-group-item.active:focus,

#custom-html-ss a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-ss .pagination {

  font-size: 0.8em;

}

#custom-html-ss .pagination > .active > a,

#custom-html-ss .pagination > .active > a:focus,

#custom-html-ss .pagination > .active > a:hover,

#custom-html-ss .pagination > .active > span,

#custom-html-ss .pagination > .active > span:focus,

#custom-html-ss .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-ss .dropdown-menu > li > a:focus,

#custom-html-ss .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-ss .label {

  border-radius: 0;

}

#custom-html-ss input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-ss .list-group-item {

  padding: 7px 15px;

}

#custom-html-ss .panel-body {

  padding: 10px 15px;

}

#custom-html-ss .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-ss .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-ss .btn {

  overflow: hidden;

}

#custom-html-ss body,

#custom-html-ss html {

  height: 100%;

}

#custom-html-ss body {

  background-color: #f8f8f8;

}

#custom-html-ss h1,

#custom-html-ss h2,

#custom-html-ss h3,

#custom-html-ss h4,

#custom-html-ss h5,

#custom-html-ss h6 {

  font-weight: 400;

}

#custom-html-ss a {

  color: #005588;

}

#custom-html-ss section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-ss section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-ss section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-ss section#header .search {

  margin: 20px 0;

}

#custom-html-ss section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-ss section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-ss section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-ss section#main-content {

  margin-bottom: 60px;

}

#custom-html-ss .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-ss section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-ss section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-ss section#footer {

    line-height: 32px;

  }

}

#custom-html-ss section#footer .back-to-top {

  float: right;

}

#custom-html-ss section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-ss .adminreturndiv {

  display: none !important;

}

#custom-html-ss .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-ss .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-ss .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-ss .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-ss .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-ss .navbar-main .navbar-toggle:focus,

#custom-html-ss .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-ss .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-ss .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-ss .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-ss .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-ss .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-ss div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-ss div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-ss div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-ss div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-ss div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-ss .h1,

  #custom-html-ss h1 {

    font-size: 26px;

  }

  #custom-html-ss .h2,

  #custom-html-ss h2 {

    font-size: 20px;

  }

  #custom-html-ss .h3,

  #custom-html-ss h3 {

    font-size: 16px;

  }

  #custom-html-ss .h4,

  #custom-html-ss h4 {

    font-size: 14px;

  }

  #custom-html-ss .h5,

  #custom-html-ss h5 {

    font-size: 12px;

  }

  #custom-html-ss .h6,

  #custom-html-ss h6 {

    font-size: 11px;

  }

  #custom-html-ss div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-ss .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-ss .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-ss .margin-10 {

  margin: 10px;

}

#custom-html-ss .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-ss .margin-top-5 {

  margin-top: 5px;

}

#custom-html-ss .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-ss .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-ss .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-ss .input-inline {

  display: inline-block;

}

#custom-html-ss .input-inline-100 {

  width: 100px;

}

#custom-html-ss .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-ss .pull-md-left {

    float: left;

  }

  #custom-html-ss .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-ss .pull-sm-left {

    float: left;

  }

  #custom-html-ss .pull-sm-right {

    float: right;

  }

  #custom-html-ss .text-right-sm {

    text-align: right;

  }

}

#custom-html-ss .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-ss .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-ss .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-ss .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-ss .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-ss .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-ss .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-ss i.icon-rss {

  color: #ff6600;

}

#custom-html-ss section#main-menu {

  background-color: #000000;

}

#custom-html-ss section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-ss section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-ss section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-ss section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-ss section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-ss section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-ss section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-ss section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-ss section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-ss section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-ss section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-ss section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-ss section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-ss .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-ss .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-ss .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-ss .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-ss .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-ss .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-ss .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-ss .home-shortcuts li span {

  display: none;

}

#custom-html-ss .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-ss .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-ss .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-ss .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-ss .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-ss .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-ss .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-ss .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-ss .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-ss .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-ss .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-ss .client-home-panels .panel small {

  color: #888888;

}

#custom-html-ss .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-ss .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-ss .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-ss .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-ss .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-ss .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-ss .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-ss .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-ss .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;


  box-shadow: none;

}

#custom-html-ss .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-ss .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-ss .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-ss .tiles .tile a {

  text-decoration: none;

}

#custom-html-ss .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-ss .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-ss .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-ss .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-ss .tiles .tile:nth-child(1),

  #custom-html-ss .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-ss .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-ss .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-ss .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-ss .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-ss .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-ss .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-ss .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-ss .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-ss .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-ss .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-ss .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-ss .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-ss .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-ss .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-ss .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-ss .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-ss .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-ss .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-ss .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-ss .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-ss .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-ss .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-ss .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-ss .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-ss .bg-color-red {

  background-color: #d9534f;

}

#custom-html-ss .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-ss .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-ss .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-ss .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-ss .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-ss .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-ss .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-ss .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-ss .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-ss .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-ss .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-ss .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-ss .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-ss .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-ss .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-ss .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-ss ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-ss ul.top-nav > li,

#custom-html-ss ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-ss ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-ss ul.top-nav > li:active > a,

#custom-html-ss ul.top-nav > li:focus > a,

#custom-html-ss ul.top-nav > li:hover > a,

#custom-html-ss ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-ss ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-ss ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-ss ul.top-nav > li > a.btn-logged-in-admin {


  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-ss ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-ss ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-ss ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-ss ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-ss ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-ss ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-ss ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-ss div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-ss div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-ss div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-ss div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-ss div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-ss div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-ss .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-ss .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-ss .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-ss .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-ss .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-ss .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-ss .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-ss .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-ss .domain-check-availability {

  width: 100px;

}

#custom-html-ss .domain-step-options {

  min-height: 300px;

}

#custom-html-ss .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-ss .domain-checker-available {

  color: #5cb85c;

}

#custom-html-ss .domain-checker-invalid,

#custom-html-ss .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-ss div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-ss .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-ss .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-ss .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-ss a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-ss .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-ss .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-ss .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-ss .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-ss .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-ss .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-ss .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-ss .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-ss .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-ss .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-ss .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-ss .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-ss .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-ss .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-ss .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-ss .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-ss .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-ss .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-ss .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-ss .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-ss .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-ss .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-ss .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-ss .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-ss .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-ss .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-ss div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-ss div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-ss div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-ss .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-ss .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-ss .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-ss .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-ss div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-ss div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-ss .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-ss .product-status-pending {

  background-color: #f89406;

}

#custom-html-ss .product-status-active {

  background-color: #46a546;

}

#custom-html-ss .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-ss .product-status-cancelled,

#custom-html-ss .product-status-terminated {

  background-color: #666666;

}

#custom-html-ss .product-status-fraud {

  background-color: #000000;

}

#custom-html-ss .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-ss div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-ss .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-ss .ssl-inactive {

  cursor: pointer;

}

#custom-html-ss .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-ss .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-ss .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-ss .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-ss .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-ss .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-ss .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-ss .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-ss .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-ss .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-ss .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-ss .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-ss .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;


    width: 100%;

  }

}

#custom-html-ss .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-ss .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-ss .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-ss .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-ss .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-ss .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-ss .pagination > li > a,

#custom-html-ss .pagination > li > span {

  color: #444444;

}

#custom-html-ss .pagination > .active > a,

#custom-html-ss .pagination > .active > a:focus,

#custom-html-ss .pagination > .active > a:hover,

#custom-html-ss .pagination > .active > span,

#custom-html-ss .pagination > .active > span:focus,

#custom-html-ss .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-ss table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-ss .table-container {

  padding: 0 0 25px 0;

}

#custom-html-ss table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-ss .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-ss table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-ss .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-ss .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-ss .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-ss table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-ss table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-ss table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-ss .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-ss .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-ss .status-pending {

  color: #d9534f;

}

#custom-html-ss .status-pending.transfer {

  color: #a68500;

}

#custom-html-ss .status-active,

#custom-html-ss .status-completed,

#custom-html-ss .status-open {

  color: #3fad46;

}

#custom-html-ss .status-suspended {

  color: #f0ad4e;

}

#custom-html-ss .status-customer-reply {

  color: #ff6600;

}

#custom-html-ss .status-answered,

#custom-html-ss .status-fraud {

  color: #000000;

}

#custom-html-ss .status-expired,

#custom-html-ss .status-transferred.away {

  color: #004258;

}

#custom-html-ss .status-cancelled {

  color: #9fa29a;

}

#custom-html-ss .status-terminated {

  color: #666666;

}

#custom-html-ss .status-onhold {

  color: #224488;

}

#custom-html-ss .status-inprogress {

  color: #cc0000;

}

#custom-html-ss .status-closed {

  color: #888888;

}

#custom-html-ss .status-paid {

  color: #498302;

}

#custom-html-ss .status-unpaid {

  color: #ed3e48;

}

#custom-html-ss .status-cancelled {

  color: #87939f;

}

#custom-html-ss .status-collections {

  color: #9a141e;

}

#custom-html-ss .status-refunded {

  color: #319fc3;

}

#custom-html-ss .status-customer-reply {

  color: #ff6600;

}

#custom-html-ss .status-delivered {

  color: #224488;

}

#custom-html-ss .status-accepted {

  color: #498302;

}

#custom-html-ss .status-dead,

#custom-html-ss .status-lost {

  color: #000000;

}

#custom-html-ss .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-ss .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-ss .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-ss .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-ss .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-ss .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-ss .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-ss .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-ss .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-ss .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-ss .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-ss .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-ss .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-ss .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-ss .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-ss .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-ss .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-ss .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-ss .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-ss .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-ss .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-ss .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-ss .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-ss .ticket-reply .rating,

#custom-html-ss .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-ss .ticket-reply .rating span.star,

#custom-html-ss .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-ss .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-ss .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-ss .ticket-reply .rating span.star:before,

#custom-html-ss .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-ss .ticket-reply .rating span.star:hover:before,

#custom-html-ss .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-ss .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-ss .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-ss .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-ss .ticket-reply .clear {

  clear: both;

}

#custom-html-ss .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-ss .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-ss .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-ss .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-ss .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-ss .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-ss .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-ss .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-ss .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-ss .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-ss .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-ss .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-ss .popover-user-notifications ul li i.far,

#custom-html-ss .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-ss .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-ss .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-ss .popover-user-notifications ul li i.far.fa-warning,

#custom-html-ss .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-ss .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-ss .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-ss .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-ss .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-ss .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-ss div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-ss div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-ss div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-ss div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-ss div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-ss div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-ss div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-ss div.credit-card {

    max-width: 250px;

  }

  #custom-html-ss div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-ss div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-ss div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-ss div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-ss div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-ss .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-ss .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-ss .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-ss .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-ss .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-ss .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-ss div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-ss div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-ss div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-ss div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-ss div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-ss div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-ss .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-ss .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-ss .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-ss .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-ss .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-ss .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-ss .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-ss div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-ss div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-ss div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-ss #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-ss .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-ss .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-ss .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-ss .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-ss .kb-category a small {

  color: #888888;

}

#custom-html-ss .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-ss .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-ss .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-ss .kbarticles a.admin-inline-edit,

#custom-html-ss .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-ss h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-ss .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-ss .kb-article-title h2 {

  margin: 0;

}

#custom-html-ss .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-ss .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-ss .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-ss .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-ss .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-ss .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-ss .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-ss .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-ss #stepResults {

  font-size: 20px;

}

#custom-html-ss #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-ss #stepResults {

    font-size: 14px;

  }

  #custom-html-ss #stepResults .label {

    font-size: 14px;

  }

  #custom-html-ss div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-ss #main-menu,

  #custom-html-ss #top-nav,

  #custom-html-ss .header-lined,

  #custom-html-ss .sidebar {

    display: none;

  }

  #custom-html-ss a[href]:after {

    content: "" !important;

  }

}

#custom-html-ss h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-ss h3.with-badge i,

#custom-html-ss h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-ss h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-ss h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-ss .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-ss .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-ss .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-ss a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-ss a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-ss .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-ss .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-ss .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-ss .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-ss .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-ss .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-ss .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-ss .login-popover {

  font-size: 12px;

}

#custom-html-ss .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-ss .login-popover hr {

  margin: 5px 0;

}

#custom-html-ss tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-ss tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-ss .error-container {

  text-align: center;

}

#custom-html-ss .error-container h1 {

  margin-top: 40px;

}

#custom-html-ss .error-container .buttons {

  margin: 25px 0;

}

#custom-html-ss .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-ss .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-ss .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-ss .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-ss #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-ss #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-ss #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-ss .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-ss #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-ss #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-ss #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-ss #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-ss #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-ss #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-ss .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-ss .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-ss .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-ss .email-verification .btn:active,

#custom-html-ss .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-ss .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-ss .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-ss .email-verification .far,

#custom-html-ss .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-ss .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-ss .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-ss .email-verification .button {

    float: right;

  }

  #custom-html-ss .email-verification .far,

  #custom-html-ss .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-ss .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-ss .email-verification.success .far,

#custom-html-ss .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-ss .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-ss .email-verification.failed .far,

#custom-html-ss .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-ss .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-ss .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-ss .md-editor > .md-preview,

#custom-html-ss .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-ss div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-ss .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-ss .small-font {

  font-size: 0.9em;

}

#custom-html-ss .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-ss .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-ss .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-ss .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-ss .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-ss .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-ss .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-ss .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-ss .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-ss .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-ss .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-ss .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-ss .panel-heading i.fab,

#custom-html-ss .panel-heading i.fal,

#custom-html-ss .panel-heading i.far,

#custom-html-ss .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-ss .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-ss .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;


  transition: transform 0.2s ease;

}

#custom-html-ss .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-ss .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-ss .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-ss .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-ss .panel-sidebar .list-group-item.disabled,

#custom-html-ss .panel-sidebar .list-group-item.disabled:focus,

#custom-html-ss .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-ss .panel-sidebar a.list-group-item:hover i.far,

#custom-html-ss .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-ss .panel-sidebar a.list-group-item.active,

#custom-html-ss .panel-sidebar a.list-group-item.active:focus,

#custom-html-ss .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-ss .panel-sidebar a.list-group-item.active i,

#custom-html-ss .panel-sidebar a.list-group-item.active:focus i,

#custom-html-ss .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-ss .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-ss .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-ss .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-ss .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-ss .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-ss .store-order-container h2 {

  margin-top: 0;

}

#custom-html-ss .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-ss .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-ss .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-ss .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-ss .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-ss .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-ss .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-ss .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-ss .store-order-container .payment-term {

    float: right;

  }

  #custom-html-ss .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-ss .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-ss .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-ss .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-ss .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-ss .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-ss .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-ss .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-ss .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-ss .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-ss .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-ss .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-ss .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-ss .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-ss .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-ss .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-ss .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-ss .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-ss .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-ss .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-ss .promo-banner p {

  margin: 5px 0;

}

#custom-html-ss .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-ss .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-ss .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-ss .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-ss .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-ss .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-ss .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-ss .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-ss .promo-banner-slim {

  padding: 10px;

}

#custom-html-ss .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-ss .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-ss .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-ss .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-ss .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-ss .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-ss .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-ss .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-ss .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-ss .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-ss .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-ss .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-ss .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-ss .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-ss .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-ss .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-ss .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-ss .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-ss .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-ss .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-ss .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-ss .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-ss .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-ss .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-ss .panel-mc-sso .btn,

#custom-html-ss .panel-mc-sso .form-control,

#custom-html-ss .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-ss .panel-mc-sso small {

  display: block;

}

#custom-html-ss .social-signin-btns {

  text-align: center;

}

#custom-html-ss .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-ss .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-ss .btn-social i.far,

#custom-html-ss .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-facebook.active,

#custom-html-ss .btn-facebook:active,

#custom-html-ss .btn-facebook:focus,

#custom-html-ss .btn-facebook:hover,

#custom-html-ss .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-facebook.active,

#custom-html-ss .btn-facebook:active,

#custom-html-ss .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-ss .btn-facebook.disabled,

#custom-html-ss .btn-facebook.disabled.active,

#custom-html-ss .btn-facebook.disabled:active,

#custom-html-ss .btn-facebook.disabled:focus,

#custom-html-ss .btn-facebook.disabled:hover,

#custom-html-ss .btn-facebook[disabled],

#custom-html-ss .btn-facebook[disabled].active,

#custom-html-ss .btn-facebook[disabled]:active,

#custom-html-ss .btn-facebook[disabled]:focus,

#custom-html-ss .btn-facebook[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-facebook,

#custom-html-ss fieldset[disabled] .btn-facebook.active,

#custom-html-ss fieldset[disabled] .btn-facebook:active,

#custom-html-ss fieldset[disabled] .btn-facebook:focus,

#custom-html-ss fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-google.active,

#custom-html-ss .btn-google:active,

#custom-html-ss .btn-google:focus,

#custom-html-ss .btn-google:hover,

#custom-html-ss .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-google.active,

#custom-html-ss .btn-google:active,

#custom-html-ss .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-ss .btn-google-plus.disabled.active,

#custom-html-ss .btn-google-plus.disabled:active,

#custom-html-ss .btn-google-plus.disabled:focus,

#custom-html-ss .btn-google-plus[disabled].active,

#custom-html-ss .btn-google-plus[disabled]:active,

#custom-html-ss .btn-google-plus[disabled]:focus,

#custom-html-ss .btn-google-plus[disabled]:hover,

#custom-html-ss .btn-google.disabled,

#custom-html-ss .btn-google.disabled:hover,

#custom-html-ss .btn-google[disabled],

#custom-html-ss fieldset[disabled] .btn-google,

#custom-html-ss fieldset[disabled] .btn-google-plus.active,

#custom-html-ss fieldset[disabled] .btn-google-plus:active,

#custom-html-ss fieldset[disabled] .btn-google-plus:focus,

#custom-html-ss fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-twitter.active,

#custom-html-ss .btn-twitter:active,

#custom-html-ss .btn-twitter:focus,

#custom-html-ss .btn-twitter:hover,

#custom-html-ss .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .btn-twitter.active,

#custom-html-ss .btn-twitter:active,

#custom-html-ss .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-ss .btn-twitter.disabled,

#custom-html-ss .btn-twitter.disabled.active,

#custom-html-ss .btn-twitter.disabled:active,

#custom-html-ss .btn-twitter.disabled:focus,

#custom-html-ss .btn-twitter.disabled:hover,

#custom-html-ss .btn-twitter[disabled],

#custom-html-ss .btn-twitter[disabled].active,

#custom-html-ss .btn-twitter[disabled]:active,

#custom-html-ss .btn-twitter[disabled]:focus,

#custom-html-ss .btn-twitter[disabled]:hover,

#custom-html-ss fieldset[disabled] .btn-twitter,

#custom-html-ss fieldset[disabled] .btn-twitter.active,

#custom-html-ss fieldset[disabled] .btn-twitter:active,

#custom-html-ss fieldset[disabled] .btn-twitter:focus,

#custom-html-ss fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-ss .providerPreLinking {

  min-height: 52px;

}

#custom-html-ss .providerLinkingFeedback {

  display: none;

}

#custom-html-ss #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-ss #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-ss #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-ss #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-ss .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-ss #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-ss #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-ss #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-ss #registration .field,

#custom-html-ss #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-ss #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-ss #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-ss #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-ss #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-ss #registration textarea.field {

  height: auto;

}

#custom-html-ss #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-ss #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-ss #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-ss #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-ss #registration .field[disabled],

#custom-html-ss #registration .field[readonly],

#custom-html-ss #registration .form-control[disabled],

#custom-html-ss #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-ss #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-ss .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-ss .upgrade .product-to-be-upgraded h4,

#custom-html-ss .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-ss .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-ss .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-ss .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-ss .upgrade .products .product .current,

#custom-html-ss .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-ss .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-ss .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-ss .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-ss .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-ss .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-ss .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-ss .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-ss .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-ss .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-ss .upgrade .products .far,

#custom-html-ss .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-ss .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-ss .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-ss .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-ss .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-ss .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-ss .alert .alert-text {

  margin-left: 56px;

}

#custom-html-ss .intl-tel-input {

  width: 100%;

}

#custom-html-ss .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-ss .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .bootstrap-switch input[type=checkbox],

#custom-html-ss .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-ss .bootstrap-switch input[type=checkbox].form-control,

#custom-html-ss .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-ss .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-ss .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-ss .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-ss .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-ss .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-ss .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-ss .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-ss .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-ss .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-ss .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-ss .md-editor .md-footer,

#custom-html-ss .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-ss .md-editor > .md-header {

  margin: 0;

}

#custom-html-ss .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-ss .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-ss .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-ss .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-ss .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-ss .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-ss .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-ss .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-input,

#custom-html-ss .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-ss .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-ss .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-ss .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-ss .md-editor.md-fullscreen-mode .btn.active,

#custom-html-ss .md-editor.md-fullscreen-mode .btn:active,

#custom-html-ss .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-ss .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-ss .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-ss .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-ss .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-ss table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-ss table.dataTable td,

#custom-html-ss table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-ss table.dataTable td.dataTables_empty,

#custom-html-ss table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-ss table.dataTable.nowrap td,

#custom-html-ss table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-ss div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-ss table.dataTable thead > tr > td.sorting,

#custom-html-ss table.dataTable thead > tr > td.sorting_asc,

#custom-html-ss table.dataTable thead > tr > td.sorting_desc,

#custom-html-ss table.dataTable thead > tr > th.sorting,

#custom-html-ss table.dataTable thead > tr > th.sorting_asc,

#custom-html-ss table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-ss table.dataTable thead > tr > td:active,

#custom-html-ss table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-ss table.dataTable thead .sorting,

#custom-html-ss table.dataTable thead .sorting_asc,

#custom-html-ss table.dataTable thead .sorting_asc_disabled,

#custom-html-ss table.dataTable thead .sorting_desc,

#custom-html-ss table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-ss table.dataTable thead .sorting:after,

#custom-html-ss table.dataTable thead .sorting_asc:after,

#custom-html-ss table.dataTable thead .sorting_asc_disabled:after,

#custom-html-ss table.dataTable thead .sorting_desc:after,

#custom-html-ss table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-ss table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-ss table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-ss table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-ss table.dataTable thead .sorting_asc_disabled:after,

#custom-html-ss table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-ss div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-ss div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-ss div.dataTables_scrollBody table thead .sorting:after,

#custom-html-ss div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-ss div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-ss div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-ss div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-ss div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-ss div.dataTables_wrapper div.dataTables_filter,

  #custom-html-ss div.dataTables_wrapper div.dataTables_info,

  #custom-html-ss div.dataTables_wrapper div.dataTables_length,

  #custom-html-ss div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-ss table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-ss table.dataTable.table-condensed .sorting:after,

#custom-html-ss table.dataTable.table-condensed .sorting_asc:after,

#custom-html-ss table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-ss table.table-bordered.dataTable td,

#custom-html-ss table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-ss table.table-bordered.dataTable td:last-child,

#custom-html-ss table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-ss table.table-bordered.dataTable tbody td,

#custom-html-ss table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-ss div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-ss div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-ss div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-ss div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-ss table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-ss table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-ss table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-ss table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-ss table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-ss table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-ss table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-ss table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-ss table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-ss table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-ss table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-ss table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-ss table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-ss table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-ss table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-ss table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-ss div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-ss div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-ss div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-ss div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-ss div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-ss div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-ss div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-ss div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-ss .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-ss .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-ss .multiselect-container > li {

  padding: 0;

}

#custom-html-ss .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-ss .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-ss .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-ss .multiselect-container > li > a {

  padding: 0;

}

#custom-html-ss .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-ss .multiselect-container > li > a > label.checkbox,

#custom-html-ss .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-ss .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-ss .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-ss .form-inline .multiselect-container label.checkbox,

#custom-html-ss .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-ss .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-ss .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7wEkMa5j {

  padding-top: 60px;

  padding-bottom: 0px;

  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");

}

.cid-sl7wEkMa5j P {

  color: #767676;

}

.cid-sl7wEkMa5j H1 {

  color: #ffffff;

}

.cid-sl7wEkMa5j .mbr-text,

.cid-sl7wEkMa5j .mbr-section-btn {

  color: #ffffff;

}

.cid-sl7wEkMa5j h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF39In7jpN .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF39In7jpN .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF39In7jpN .divider-top::before,

.cid-sF39In7jpN .divider-bottom::before,

.cid-sF39In7jpN .divider-top::after,

.cid-sF39In7jpN .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF39In7jpN .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF39In7jpN .divider-triangles::before {

  top: -50px;

}

.cid-sF39In7jpN .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF39In7jpN .divider-halfcircle::before {

  top: -50px;

}

.cid-sF39In7jpN .divider-multitriangles::before,

.cid-sF39In7jpN .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF39In7jpN .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-rBYl9dyrKm {

  padding-top: 15px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-rBYl9dyrKm .media-container-row {

  flex-direction: row-reverse;

  -webkit-flex-direction: row-reverse;

}

@media (min-width: 992px) {

  .cid-rBYl9dyrKm .mbr-figure {

    padding-right: 4rem;

    padding-right: 0;

    padding-left: 4rem;

  }

}

@media (max-width: 991px) {

  .cid-rBYl9dyrKm .mbr-figure {

    padding-bottom: 3rem;

  }

}

@media (max-width: 767px) {

  .cid-rBYl9dyrKm .mbr-text {

    text-align: center;

  }

}

.cid-rBYl9dyrKm H1 {

  color: #000000;

}

.cid-rBYl9dyrKm .mbr-text,

.cid-rBYl9dyrKm .mbr-section-btn {

  color: #000000;

}

.cid-sF3ay8HXVv .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3ay8HXVv .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3ay8HXVv .divider-top::before,

.cid-sF3ay8HXVv .divider-bottom::before,

.cid-sF3ay8HXVv .divider-top::after,

.cid-sF3ay8HXVv .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3ay8HXVv .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3ay8HXVv .divider-triangles::before {

  top: -50px;

}

.cid-sF3ay8HXVv .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3ay8HXVv .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3ay8HXVv .divider-multitriangles::before,

.cid-sF3ay8HXVv .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3ay8HXVv .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-rY5eqlvt5z {

  padding-top: 90px;

  padding-bottom: 90px;

  background-color: #efefef;

}

.cid-rY5eqlvt5z .media-container-row {

  flex-direction: row-reverse;

  -webkit-flex-direction: row-reverse;

}

@media (min-width: 992px) {

  .cid-rY5eqlvt5z .mbr-figure {

    padding-right: 4rem;

    padding-right: 0;

    padding-left: 4rem;

  }

}

@media (max-width: 991px) {

  .cid-rY5eqlvt5z .mbr-figure {

    padding-bottom: 3rem;

  }

}

@media (max-width: 767px) {

  .cid-rY5eqlvt5z .mbr-text {

    text-align: center;

  }

}

.cid-rY5eqlvt5z .mbr-text,

.cid-rY5eqlvt5z .mbr-section-btn {

  color: #000000;

}

.cid-sF43ObEb5x .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF43ObEb5x .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF43ObEb5x .divider-top::before,

.cid-sF43ObEb5x .divider-bottom::before,

.cid-sF43ObEb5x .divider-top::after,

.cid-sF43ObEb5x .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF43ObEb5x .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF43ObEb5x .divider-triangles::before {

  top: -50px;

}

.cid-sF43ObEb5x .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF43ObEb5x .divider-halfcircle::before {

  top: -50px;

}

.cid-sF43ObEb5x .divider-multitriangles::before,

.cid-sF43ObEb5x .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF43ObEb5x .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-s889vHnArm {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s889vHnArm h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s889vHnArm p {

  color: #767676;

  text-align: left;

}

.cid-s889vHnArm .card-box {

  padding-top: 2rem;

}

.cid-s889vHnArm .card-wrapper {

  height: 100%;

}

.cid-svDyFlwdY0 {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDyFlwdY0 .content {

    text-align: center;

  }

  .cid-svDyFlwdY0 .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDyFlwdY0 .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDyFlwdY0 .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDyFlwdY0 .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDyFlwdY0 .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDyFlwdY0 .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDyFlwdY0 .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDyFlwdY0 .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDyFlwdY0 .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDyFlwdY0 .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDyFlwdY0 .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDyFlwdY0 .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDyFlwdY0 .copyright > p {

  text-align: left;

}

.cid-svDyFlwdY0 H5 {

  color: #000000;

}

.cid-svGGoWfDVj .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGGoWfDVj .my-float {

  margin-top: 16px;

}

.cid-svGGoWfDVj P {

  color: #232323;

}

.cid-svGGoWfDVj DIV {

  color: #ffffff;

}

.cid-svGGoWfDVj H10 {

  color: #767676;

}

.cid-svGGoWfDVj .hidden {

  display: none;

}

#custom-html-sy {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-sy html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sy body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-sy article,

#custom-html-sy aside,

#custom-html-sy details,

#custom-html-sy figcaption,

#custom-html-sy figure,

#custom-html-sy footer,

#custom-html-sy header,

#custom-html-sy hgroup,

#custom-html-sy main,

#custom-html-sy menu,

#custom-html-sy nav,

#custom-html-sy section,

#custom-html-sy summary {

  display: block;

}

#custom-html-sy audio,

#custom-html-sy canvas,

#custom-html-sy progress,

#custom-html-sy video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sy audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sy [hidden],

#custom-html-sy template {

  display: none;

}

#custom-html-sy a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-sy a:active,

#custom-html-sy a:hover {

  outline: 0;

}

#custom-html-sy abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sy b,

#custom-html-sy strong {

  font-weight: 700;

}

#custom-html-sy dfn {

  font-style: italic;

}

#custom-html-sy h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sy mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sy small {

  font-size: 80%;

}

#custom-html-sy sub,

#custom-html-sy sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sy sup {

  top: -0.5em;

}

#custom-html-sy sub {

  bottom: -0.25em;

}

#custom-html-sy img {

  border: 0;

  vertical-align: middle;

}

#custom-html-sy svg:not(:root) {

  overflow: hidden;

}

#custom-html-sy figure {

  margin: 0;

}

#custom-html-sy hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sy pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sy code,

#custom-html-sy kbd,

#custom-html-sy pre,

#custom-html-sy samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-sy button,

#custom-html-sy input,

#custom-html-sy optgroup,

#custom-html-sy select,

#custom-html-sy textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sy button {

  overflow: visible;

}

#custom-html-sy button,

#custom-html-sy select {

  text-transform: none;

}

#custom-html-sy button,

#custom-html-sy html input[type=button],

#custom-html-sy input[type=reset],

#custom-html-sy input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sy button[disabled],

#custom-html-sy html input[disabled] {

  cursor: default;

}

#custom-html-sy button::-moz-focus-inner,

#custom-html-sy input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sy input {

  line-height: normal;

}

#custom-html-sy input[type=checkbox],

#custom-html-sy input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sy input[type=number]::-webkit-inner-spin-button,

#custom-html-sy input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sy input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-sy input[type=search]::-webkit-search-cancel-button,

#custom-html-sy input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sy fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-sy legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sy textarea {

  overflow: auto;

}

#custom-html-sy optgroup {

  font-weight: 700;

}

#custom-html-sy table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-sy td,

#custom-html-sy th {

  padding: 0;

}

@media print {

  #custom-html-sy *,

  #custom-html-sy :after,

  #custom-html-sy :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sy a,

  #custom-html-sy a:visited {

    text-decoration: underline;

  }

  #custom-html-sy a[href]:after {

    content: "" !important;

  }

  #custom-html-sy abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sy a[href^="#"]:after,

  #custom-html-sy a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sy blockquote,

  #custom-html-sy pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sy thead {

    display: table-header-group;

  }

  #custom-html-sy img,

  #custom-html-sy tr {

    page-break-inside: avoid;

  }

  #custom-html-sy img {

    max-width: 100% !important;

  }

  #custom-html-sy h2,

  #custom-html-sy h3,

  #custom-html-sy p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sy h2,

  #custom-html-sy h3 {

    page-break-after: avoid;

  }

  #custom-html-sy .navbar {

    display: none;

  }

  #custom-html-sy .btn > .caret,

  #custom-html-sy .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sy .label {

    border: 1px solid #000000;

  }

  #custom-html-sy .table {

    border-collapse: collapse !important;

  }

  #custom-html-sy .table td,

  #custom-html-sy .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sy .table-bordered td,

  #custom-html-sy .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-sy .visible-print {

    display: block !important;

  }

  #custom-html-sy table.visible-print {

    display: table !important;

  }

  #custom-html-sy tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sy td.visible-print,

  #custom-html-sy th.visible-print {

    display: table-cell !important;

  }

  #custom-html-sy .visible-print-block {

    display: block !important;

  }

  #custom-html-sy .visible-print-inline {

    display: inline !important;

  }

  #custom-html-sy .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-sy .hidden-print {

    display: none !important;

  }

  #custom-html-sy #main-menu,

  #custom-html-sy #top-nav,

  #custom-html-sy .header-lined,

  #custom-html-sy .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sy .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sy .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sy .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sy .glyphicon-eur:before,

#custom-html-sy .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sy .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sy .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sy .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sy .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sy .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sy .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sy .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sy .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sy .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sy .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sy .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sy .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sy .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sy .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sy .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sy .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sy .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sy .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sy .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sy .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sy .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sy .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sy .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sy .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sy .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sy .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sy .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sy .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sy .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sy .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sy .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sy .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sy .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sy .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sy .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sy .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sy .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sy .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sy .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sy .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sy .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sy .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sy .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sy .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sy .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sy .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sy .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sy .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sy .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sy .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sy .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sy .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sy .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sy .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sy .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sy .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sy .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sy .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sy .glyphicon-list:before {


  content: "\e056";

}

#custom-html-sy .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sy .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sy .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sy .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sy .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sy .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sy .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sy .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sy .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sy .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sy .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sy .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sy .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sy .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sy .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sy .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sy .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sy .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sy .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sy .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sy .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sy .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sy .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sy .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sy .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-sy .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sy .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sy .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sy .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sy .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sy .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sy .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sy .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sy .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sy .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sy .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sy .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sy .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sy .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sy .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sy .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sy .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sy .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sy .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sy .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sy .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sy .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sy .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sy .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sy .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sy .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sy .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sy .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sy .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sy .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sy .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sy .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sy .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sy .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sy .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sy .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sy .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sy .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sy .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sy .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sy .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sy .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sy .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sy .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sy .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sy .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sy .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sy .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sy .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sy .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sy .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sy .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sy .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sy .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sy .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sy .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sy .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sy .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sy .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sy .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sy .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sy .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sy .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sy .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sy .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sy .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sy .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sy .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sy .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sy .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sy .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sy .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sy .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sy .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-sy .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sy .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sy .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sy .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sy .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sy .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sy .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sy .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sy .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sy .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sy .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sy .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sy .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sy .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sy .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sy .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sy .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sy .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sy .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sy .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sy .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sy .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sy .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sy .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sy .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sy .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sy .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sy .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sy .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sy .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sy .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sy .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sy .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sy .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sy .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sy .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sy .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sy .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sy .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sy .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sy .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sy .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sy .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sy .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sy .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sy .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sy .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sy .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sy .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sy .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sy .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sy .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sy .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sy .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sy .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sy .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sy .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sy .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sy .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sy .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sy .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sy .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sy .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sy .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sy .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sy .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sy .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sy .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sy .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sy .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sy .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sy .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sy .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sy .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sy .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sy .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sy .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sy .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sy .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sy .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sy .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sy .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sy .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sy .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sy .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sy .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-sy .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sy .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sy .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sy .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sy .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sy .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sy .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sy .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sy .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sy .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sy .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sy .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sy .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sy .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sy .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sy * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sy :after,

#custom-html-sy :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sy button,

#custom-html-sy input,

#custom-html-sy select,

#custom-html-sy textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sy a:focus,

#custom-html-sy a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sy a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sy .carousel-inner > .item > a > img,

#custom-html-sy .carousel-inner > .item > img,

#custom-html-sy .img-responsive,

#custom-html-sy .thumbnail a > img,

#custom-html-sy .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sy .img-rounded {

  border-radius: 6px;

}

#custom-html-sy .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sy .img-circle {

  border-radius: 50%;

}

#custom-html-sy .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sy .sr-only-focusable:active,

#custom-html-sy .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sy [role=button] {

  cursor: pointer;

}

#custom-html-sy .h1,

#custom-html-sy .h2,

#custom-html-sy .h3,

#custom-html-sy .h4,

#custom-html-sy .h5,

#custom-html-sy .h6,

#custom-html-sy h1,

#custom-html-sy h2,

#custom-html-sy h3,

#custom-html-sy h4,

#custom-html-sy h5,

#custom-html-sy h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sy .h1 .small,

#custom-html-sy .h1 small,

#custom-html-sy .h2 .small,

#custom-html-sy .h2 small,

#custom-html-sy .h3 .small,

#custom-html-sy .h3 small,

#custom-html-sy .h4 .small,

#custom-html-sy .h4 small,

#custom-html-sy .h5 .small,

#custom-html-sy .h5 small,

#custom-html-sy .h6 .small,

#custom-html-sy .h6 small,

#custom-html-sy h1 .small,

#custom-html-sy h1 small,

#custom-html-sy h2 .small,

#custom-html-sy h2 small,

#custom-html-sy h3 .small,

#custom-html-sy h3 small,

#custom-html-sy h4 .small,

#custom-html-sy h4 small,

#custom-html-sy h5 .small,

#custom-html-sy h5 small,

#custom-html-sy h6 .small,

#custom-html-sy h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sy .h1,

#custom-html-sy .h2,

#custom-html-sy .h3,

#custom-html-sy h1,

#custom-html-sy h2,

#custom-html-sy h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sy .h1 .small,

#custom-html-sy .h1 small,

#custom-html-sy .h2 .small,

#custom-html-sy .h2 small,

#custom-html-sy .h3 .small,

#custom-html-sy .h3 small,

#custom-html-sy h1 .small,

#custom-html-sy h1 small,

#custom-html-sy h2 .small,

#custom-html-sy h2 small,

#custom-html-sy h3 .small,

#custom-html-sy h3 small {

  font-size: 65%;

}

#custom-html-sy .h4,

#custom-html-sy .h5,

#custom-html-sy .h6,

#custom-html-sy h4,

#custom-html-sy h5,

#custom-html-sy h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sy .h4 .small,

#custom-html-sy .h4 small,

#custom-html-sy .h5 .small,

#custom-html-sy .h5 small,

#custom-html-sy .h6 .small,

#custom-html-sy .h6 small,

#custom-html-sy h4 .small,

#custom-html-sy h4 small,

#custom-html-sy h5 .small,

#custom-html-sy h5 small,

#custom-html-sy h6 .small,

#custom-html-sy h6 small {

  font-size: 75%;

}

#custom-html-sy .h1,

#custom-html-sy h1 {

  font-size: 36px;

}

#custom-html-sy .h2,

#custom-html-sy h2 {

  font-size: 30px;

}

#custom-html-sy .h3,

#custom-html-sy h3 {

  font-size: 24px;

}

#custom-html-sy .h4,

#custom-html-sy h4 {

  font-size: 18px;

}

#custom-html-sy .h5,

#custom-html-sy h5 {

  font-size: 14px;

}

#custom-html-sy .h6,

#custom-html-sy h6 {

  font-size: 12px;

}

#custom-html-sy p {

  margin: 0 0 10px;

}

#custom-html-sy .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sy .lead {

    font-size: 21px;

  }

  #custom-html-sy .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sy .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-sy .container {

    width: 750px;

  }

  #custom-html-sy .col-sm-1,

  #custom-html-sy .col-sm-10,

  #custom-html-sy .col-sm-11,

  #custom-html-sy .col-sm-12,

  #custom-html-sy .col-sm-2,

  #custom-html-sy .col-sm-3,

  #custom-html-sy .col-sm-4,

  #custom-html-sy .col-sm-5,

  #custom-html-sy .col-sm-6,

  #custom-html-sy .col-sm-7,

  #custom-html-sy .col-sm-8,

  #custom-html-sy .col-sm-9 {

    float: left;

  }

  #custom-html-sy .col-sm-12 {

    width: 100%;

  }

  #custom-html-sy .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sy .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sy .col-sm-9 {

    width: 75%;

  }

  #custom-html-sy .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sy .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sy .col-sm-6 {

    width: 50%;

  }

  #custom-html-sy .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sy .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sy .col-sm-3 {

    width: 25%;

  }

  #custom-html-sy .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sy .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sy .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sy .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sy .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sy .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sy .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sy .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sy .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sy .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sy .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sy .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sy .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sy .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sy .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sy .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sy .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sy .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sy .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sy .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sy .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sy .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sy .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sy .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sy .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sy .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sy .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sy .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sy .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sy .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sy .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sy .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sy .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sy .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sy .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sy .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sy .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sy .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sy .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sy .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sy .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-sy .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sy .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sy .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sy .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sy .form-inline .input-group .form-control,

  #custom-html-sy .form-inline .input-group .input-group-addon,

  #custom-html-sy .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sy .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sy .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sy .form-inline .checkbox,

  #custom-html-sy .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sy .form-inline .checkbox label,

  #custom-html-sy .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sy .form-inline .checkbox input[type=checkbox],

  #custom-html-sy .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sy .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sy .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-sy .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-sy .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-sy .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sy .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-sy .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sy .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sy .nav-tabs.nav-justified > .active > a,

  #custom-html-sy .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sy .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sy .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sy .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-sy .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sy .nav-tabs-justified > .active > a,

  #custom-html-sy .nav-tabs-justified > .active > a:focus,

  #custom-html-sy .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sy .navbar {

    border-radius: 4px;

  }

  #custom-html-sy .navbar-header {

    float: left;

  }

  #custom-html-sy .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sy .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sy .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sy .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sy .navbar-fixed-top .navbar-collapse,

  #custom-html-sy .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-sy .container-fluid > .navbar-collapse,

  #custom-html-sy .container-fluid > .navbar-header,

  #custom-html-sy .container > .navbar-collapse,

  #custom-html-sy .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-sy .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-sy .navbar-fixed-bottom,

  #custom-html-sy .navbar-fixed-top {


    border-radius: 0;

  }

  #custom-html-sy .navbar > .container .navbar-brand,

  #custom-html-sy .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-sy .navbar-toggle {

    display: none;

  }

  #custom-html-sy .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sy .navbar-nav > li {

    float: left;

  }

  #custom-html-sy .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-sy .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sy .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sy .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sy .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sy .navbar-form .input-group .form-control,

  #custom-html-sy .navbar-form .input-group .input-group-addon,

  #custom-html-sy .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sy .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sy .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sy .navbar-form .checkbox,

  #custom-html-sy .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sy .navbar-form .checkbox label,

  #custom-html-sy .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sy .navbar-form .checkbox input[type=checkbox],

  #custom-html-sy .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sy .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sy .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sy .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-sy .navbar-left {

    float: left !important;

  }

  #custom-html-sy .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sy .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-sy .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sy .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sy .modal-sm {

    width: 300px;

  }

  #custom-html-sy .pull-sm-left {

    float: left;

  }

  #custom-html-sy .pull-sm-right {

    float: right;

  }

  #custom-html-sy .text-right-sm {

    text-align: right;

  }

  #custom-html-sy .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sy .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-sy .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sy .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sy .email-verification .button {

    float: right;

  }

  #custom-html-sy .email-verification .far,

  #custom-html-sy .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-sy .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sy .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-sy .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sy .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sy .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sy .small,

#custom-html-sy small {

  font-size: 85%;

}

#custom-html-sy .mark,

#custom-html-sy mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sy .text-left {

  text-align: left;

}

#custom-html-sy .text-right {

  text-align: right;

}

#custom-html-sy .text-center {

  text-align: center;

}

#custom-html-sy .text-justify {

  text-align: justify;

}

#custom-html-sy .text-nowrap {

  white-space: nowrap;

}

#custom-html-sy .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sy .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sy .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sy .text-muted {

  color: #777777;

}

#custom-html-sy .text-primary {

  color: #000000;

}

#custom-html-sy a.text-primary:focus,

#custom-html-sy a.text-primary:hover {

  color: #000000;

}

#custom-html-sy .text-success {

  color: #3c763d;

}

#custom-html-sy a.text-success:focus,

#custom-html-sy a.text-success:hover {

  color: #2b542c;

}

#custom-html-sy .text-info {

  color: #31708f;

}

#custom-html-sy a.text-info:focus,

#custom-html-sy a.text-info:hover {

  color: #000000;

}

#custom-html-sy .text-warning {

  color: #8a6d3b;

}

#custom-html-sy a.text-warning:focus,

#custom-html-sy a.text-warning:hover {

  color: #66512c;

}

#custom-html-sy .text-danger {

  color: #a94442;

}

#custom-html-sy a.text-danger:focus,

#custom-html-sy a.text-danger:hover {

  color: #843534;

}

#custom-html-sy .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-sy a.bg-primary:focus,

#custom-html-sy a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sy .bg-success {

  background-color: #dff0d8;

}

#custom-html-sy a.bg-success:focus,

#custom-html-sy a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sy .bg-info {

  background-color: #d9edf7;

}

#custom-html-sy a.bg-info:focus,

#custom-html-sy a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sy .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sy a.bg-warning:focus,

#custom-html-sy a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sy .bg-danger {

  background-color: #f2dede;

}

#custom-html-sy a.bg-danger:focus,

#custom-html-sy a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sy .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sy ol,

#custom-html-sy ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sy ol ol,

#custom-html-sy ol ul,

#custom-html-sy ul ol,

#custom-html-sy ul ul {

  margin-bottom: 0;

}

#custom-html-sy .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sy .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sy .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sy dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sy dd,

#custom-html-sy dt {

  line-height: 1.42857143;

}

#custom-html-sy dt {

  font-weight: 700;

}

#custom-html-sy dd {

  margin-left: 0;

}

#custom-html-sy abbr[data-original-title],

#custom-html-sy abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sy .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sy blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sy blockquote ol:last-child,

#custom-html-sy blockquote p:last-child,

#custom-html-sy blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sy blockquote .small,

#custom-html-sy blockquote footer,

#custom-html-sy blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sy blockquote .small:before,

#custom-html-sy blockquote footer:before,

#custom-html-sy blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sy .blockquote-reverse,

#custom-html-sy blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sy .blockquote-reverse .small:before,

#custom-html-sy .blockquote-reverse footer:before,

#custom-html-sy .blockquote-reverse small:before,

#custom-html-sy blockquote.pull-right .small:before,

#custom-html-sy blockquote.pull-right footer:before,

#custom-html-sy blockquote.pull-right small:before {

  content: '';

}

#custom-html-sy .blockquote-reverse .small:after,

#custom-html-sy .blockquote-reverse footer:after,

#custom-html-sy .blockquote-reverse small:after,

#custom-html-sy blockquote.pull-right .small:after,

#custom-html-sy blockquote.pull-right footer:after,

#custom-html-sy blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sy address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sy code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sy kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sy kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sy pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sy .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sy .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-sy .container {

    width: 970px;

  }

  #custom-html-sy .col-md-1,

  #custom-html-sy .col-md-10,

  #custom-html-sy .col-md-11,

  #custom-html-sy .col-md-12,

  #custom-html-sy .col-md-2,

  #custom-html-sy .col-md-3,

  #custom-html-sy .col-md-4,

  #custom-html-sy .col-md-5,

  #custom-html-sy .col-md-6,

  #custom-html-sy .col-md-7,

  #custom-html-sy .col-md-8,

  #custom-html-sy .col-md-9 {

    float: left;

  }

  #custom-html-sy .col-md-12 {

    width: 100%;

  }

  #custom-html-sy .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sy .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sy .col-md-9 {

    width: 75%;

  }

  #custom-html-sy .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sy .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sy .col-md-6 {

    width: 50%;

  }

  #custom-html-sy .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sy .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sy .col-md-3 {

    width: 25%;

  }

  #custom-html-sy .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sy .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sy .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sy .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sy .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sy .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sy .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sy .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sy .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sy .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sy .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sy .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sy .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sy .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sy .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sy .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sy .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sy .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sy .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sy .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sy .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sy .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sy .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sy .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sy .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sy .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sy .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sy .col-md-push-0 {

    left: auto;

  }

  #custom-html-sy .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sy .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sy .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sy .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sy .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sy .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sy .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sy .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sy .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sy .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sy .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sy .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sy .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-sy .modal-lg {

    width: 900px;

  }

  #custom-html-sy .pull-md-left {

    float: left;

  }

  #custom-html-sy .pull-md-right {

    float: right;

  }

  #custom-html-sy h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sy .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sy .container {

    width: 1170px;

  }

  #custom-html-sy .col-lg-1,

  #custom-html-sy .col-lg-10,

  #custom-html-sy .col-lg-11,

  #custom-html-sy .col-lg-12,

  #custom-html-sy .col-lg-2,

  #custom-html-sy .col-lg-3,

  #custom-html-sy .col-lg-4,

  #custom-html-sy .col-lg-5,

  #custom-html-sy .col-lg-6,

  #custom-html-sy .col-lg-7,

  #custom-html-sy .col-lg-8,

  #custom-html-sy .col-lg-9 {

    float: left;

  }

  #custom-html-sy .col-lg-12 {

    width: 100%;

  }

  #custom-html-sy .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sy .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sy .col-lg-9 {

    width: 75%;

  }

  #custom-html-sy .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sy .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sy .col-lg-6 {

    width: 50%;

  }

  #custom-html-sy .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sy .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sy .col-lg-3 {

    width: 25%;

  }

  #custom-html-sy .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sy .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sy .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sy .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sy .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sy .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sy .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sy .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sy .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sy .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sy .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sy .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sy .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sy .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sy .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sy .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sy .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sy .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sy .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sy .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sy .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sy .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sy .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sy .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sy .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sy .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sy .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sy .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sy .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sy .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sy .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sy .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sy .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sy .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sy .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sy .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sy .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sy .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sy .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sy .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sy .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-sy .visible-lg {

    display: block !important;

  }

  #custom-html-sy table.visible-lg {

    display: table !important;

  }

  #custom-html-sy tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sy td.visible-lg,

  #custom-html-sy th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-sy .visible-lg-block {

    display: block !important;

  }

  #custom-html-sy .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-sy .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-sy .hidden-lg {

    display: none !important;

  }

  #custom-html-sy .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sy .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sy .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sy .col-lg-1,

#custom-html-sy .col-lg-10,

#custom-html-sy .col-lg-11,

#custom-html-sy .col-lg-12,

#custom-html-sy .col-lg-2,

#custom-html-sy .col-lg-3,

#custom-html-sy .col-lg-4,

#custom-html-sy .col-lg-5,

#custom-html-sy .col-lg-6,

#custom-html-sy .col-lg-7,

#custom-html-sy .col-lg-8,

#custom-html-sy .col-lg-9,

#custom-html-sy .col-md-1,

#custom-html-sy .col-md-10,

#custom-html-sy .col-md-11,

#custom-html-sy .col-md-12,

#custom-html-sy .col-md-2,

#custom-html-sy .col-md-3,

#custom-html-sy .col-md-4,

#custom-html-sy .col-md-5,

#custom-html-sy .col-md-6,

#custom-html-sy .col-md-7,

#custom-html-sy .col-md-8,

#custom-html-sy .col-md-9,

#custom-html-sy .col-sm-1,

#custom-html-sy .col-sm-10,

#custom-html-sy .col-sm-11,

#custom-html-sy .col-sm-12,

#custom-html-sy .col-sm-2,

#custom-html-sy .col-sm-3,

#custom-html-sy .col-sm-4,

#custom-html-sy .col-sm-5,

#custom-html-sy .col-sm-6,

#custom-html-sy .col-sm-7,

#custom-html-sy .col-sm-8,

#custom-html-sy .col-sm-9,

#custom-html-sy .col-xs-1,

#custom-html-sy .col-xs-10,

#custom-html-sy .col-xs-11,

#custom-html-sy .col-xs-12,

#custom-html-sy .col-xs-2,

#custom-html-sy .col-xs-3,

#custom-html-sy .col-xs-4,

#custom-html-sy .col-xs-5,

#custom-html-sy .col-xs-6,

#custom-html-sy .col-xs-7,

#custom-html-sy .col-xs-8,

#custom-html-sy .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sy .col-xs-1,

#custom-html-sy .col-xs-10,

#custom-html-sy .col-xs-11,

#custom-html-sy .col-xs-12,

#custom-html-sy .col-xs-2,

#custom-html-sy .col-xs-3,

#custom-html-sy .col-xs-4,

#custom-html-sy .col-xs-5,

#custom-html-sy .col-xs-6,

#custom-html-sy .col-xs-7,

#custom-html-sy .col-xs-8,

#custom-html-sy .col-xs-9 {

  float: left;

}

#custom-html-sy .col-xs-12 {

  width: 100%;

}

#custom-html-sy .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sy .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sy .col-xs-9 {

  width: 75%;

}

#custom-html-sy .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sy .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sy .col-xs-6 {

  width: 50%;

}

#custom-html-sy .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sy .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sy .col-xs-3 {

  width: 25%;

}

#custom-html-sy .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sy .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sy .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sy .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sy .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sy .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sy .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sy .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sy .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sy .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sy .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sy .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sy .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sy .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sy .col-xs-pull-0 {

  right: auto;

}

#custom-html-sy .col-xs-push-12 {

  left: 100%;

}

#custom-html-sy .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sy .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sy .col-xs-push-9 {

  left: 75%;

}

#custom-html-sy .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sy .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sy .col-xs-push-6 {

  left: 50%;

}

#custom-html-sy .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sy .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sy .col-xs-push-3 {

  left: 25%;

}

#custom-html-sy .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sy .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sy .col-xs-push-0 {

  left: auto;

}

#custom-html-sy .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sy .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sy .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sy .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sy .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sy .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sy .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sy .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sy .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sy .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sy .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sy .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-sy .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-sy caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sy th {

  text-align: left;

}

#custom-html-sy .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sy .table > tbody > tr > td,

#custom-html-sy .table > tbody > tr > th,

#custom-html-sy .table > tfoot > tr > td,

#custom-html-sy .table > tfoot > tr > th,

#custom-html-sy .table > thead > tr > td,

#custom-html-sy .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sy .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sy .table > caption + thead > tr:first-child > td,

#custom-html-sy .table > caption + thead > tr:first-child > th,

#custom-html-sy .table > colgroup + thead > tr:first-child > td,

#custom-html-sy .table > colgroup + thead > tr:first-child > th,

#custom-html-sy .table > thead:first-child > tr:first-child > td,

#custom-html-sy .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sy .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sy .table .table {

  background-color: #ffffff;

}

#custom-html-sy .table-condensed > tbody > tr > td,

#custom-html-sy .table-condensed > tbody > tr > th,

#custom-html-sy .table-condensed > tfoot > tr > td,

#custom-html-sy .table-condensed > tfoot > tr > th,

#custom-html-sy .table-condensed > thead > tr > td,

#custom-html-sy .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sy .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sy .table-bordered > tbody > tr > td,

#custom-html-sy .table-bordered > tbody > tr > th,

#custom-html-sy .table-bordered > tfoot > tr > td,

#custom-html-sy .table-bordered > tfoot > tr > th,

#custom-html-sy .table-bordered > thead > tr > td,

#custom-html-sy .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sy .table-bordered > thead > tr > td,

#custom-html-sy .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sy .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sy .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sy table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sy table td[class*=col-],

#custom-html-sy table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-sy .table > tbody > tr.active > td,

#custom-html-sy .table > tbody > tr.active > th,

#custom-html-sy .table > tbody > tr > td.active,

#custom-html-sy .table > tbody > tr > th.active,

#custom-html-sy .table > tfoot > tr.active > td,

#custom-html-sy .table > tfoot > tr.active > th,

#custom-html-sy .table > tfoot > tr > td.active,

#custom-html-sy .table > tfoot > tr > th.active,

#custom-html-sy .table > thead > tr.active > td,

#custom-html-sy .table > thead > tr.active > th,

#custom-html-sy .table > thead > tr > td.active,

#custom-html-sy .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sy .table-hover > tbody > tr.active:hover > td,

#custom-html-sy .table-hover > tbody > tr.active:hover > th,

#custom-html-sy .table-hover > tbody > tr:hover > .active,

#custom-html-sy .table-hover > tbody > tr > td.active:hover,

#custom-html-sy .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sy .table > tbody > tr.success > td,

#custom-html-sy .table > tbody > tr.success > th,

#custom-html-sy .table > tbody > tr > td.success,

#custom-html-sy .table > tbody > tr > th.success,

#custom-html-sy .table > tfoot > tr.success > td,

#custom-html-sy .table > tfoot > tr.success > th,

#custom-html-sy .table > tfoot > tr > td.success,

#custom-html-sy .table > tfoot > tr > th.success,

#custom-html-sy .table > thead > tr.success > td,

#custom-html-sy .table > thead > tr.success > th,

#custom-html-sy .table > thead > tr > td.success,

#custom-html-sy .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sy .table-hover > tbody > tr.success:hover > td,

#custom-html-sy .table-hover > tbody > tr.success:hover > th,

#custom-html-sy .table-hover > tbody > tr:hover > .success,

#custom-html-sy .table-hover > tbody > tr > td.success:hover,

#custom-html-sy .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sy .table > tbody > tr.info > td,

#custom-html-sy .table > tbody > tr.info > th,

#custom-html-sy .table > tbody > tr > td.info,

#custom-html-sy .table > tbody > tr > th.info,

#custom-html-sy .table > tfoot > tr.info > td,

#custom-html-sy .table > tfoot > tr.info > th,

#custom-html-sy .table > tfoot > tr > td.info,

#custom-html-sy .table > tfoot > tr > th.info,

#custom-html-sy .table > thead > tr.info > td,

#custom-html-sy .table > thead > tr.info > th,

#custom-html-sy .table > thead > tr > td.info,

#custom-html-sy .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sy .table-hover > tbody > tr.info:hover > td,

#custom-html-sy .table-hover > tbody > tr.info:hover > th,

#custom-html-sy .table-hover > tbody > tr:hover > .info,

#custom-html-sy .table-hover > tbody > tr > td.info:hover,

#custom-html-sy .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sy .table > tbody > tr.warning > td,

#custom-html-sy .table > tbody > tr.warning > th,

#custom-html-sy .table > tbody > tr > td.warning,

#custom-html-sy .table > tbody > tr > th.warning,

#custom-html-sy .table > tfoot > tr.warning > td,

#custom-html-sy .table > tfoot > tr.warning > th,

#custom-html-sy .table > tfoot > tr > td.warning,

#custom-html-sy .table > tfoot > tr > th.warning,

#custom-html-sy .table > thead > tr.warning > td,

#custom-html-sy .table > thead > tr.warning > th,

#custom-html-sy .table > thead > tr > td.warning,

#custom-html-sy .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sy .table-hover > tbody > tr.warning:hover > td,

#custom-html-sy .table-hover > tbody > tr.warning:hover > th,

#custom-html-sy .table-hover > tbody > tr:hover > .warning,

#custom-html-sy .table-hover > tbody > tr > td.warning:hover,

#custom-html-sy .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sy .table > tbody > tr.danger > td,

#custom-html-sy .table > tbody > tr.danger > th,

#custom-html-sy .table > tbody > tr > td.danger,

#custom-html-sy .table > tbody > tr > th.danger,

#custom-html-sy .table > tfoot > tr.danger > td,

#custom-html-sy .table > tfoot > tr.danger > th,

#custom-html-sy .table > tfoot > tr > td.danger,

#custom-html-sy .table > tfoot > tr > th.danger,

#custom-html-sy .table > thead > tr.danger > td,

#custom-html-sy .table > thead > tr.danger > th,

#custom-html-sy .table > thead > tr > td.danger,

#custom-html-sy .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sy .table-hover > tbody > tr.danger:hover > td,

#custom-html-sy .table-hover > tbody > tr.danger:hover > th,

#custom-html-sy .table-hover > tbody > tr:hover > .danger,

#custom-html-sy .table-hover > tbody > tr > td.danger:hover,

#custom-html-sy .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sy .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sy .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sy .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sy .table-responsive > .table > tbody > tr > td,

  #custom-html-sy .table-responsive > .table > tbody > tr > th,

  #custom-html-sy .table-responsive > .table > tfoot > tr > td,

  #custom-html-sy .table-responsive > .table > tfoot > tr > th,

  #custom-html-sy .table-responsive > .table > thead > tr > td,

  #custom-html-sy .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sy .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sy .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sy .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sy .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sy .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sy .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sy .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sy .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sy .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sy .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sy .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sy .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sy .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sy .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sy .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sy .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sy .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-sy div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sy div.dataTables_wrapper div.dataTables_info,

  #custom-html-sy div.dataTables_wrapper div.dataTables_length,

  #custom-html-sy div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-sy div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sy label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sy input[type=file] {

  display: block;

}

#custom-html-sy input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sy select[multiple],

#custom-html-sy select[size] {

  height: auto;

}

#custom-html-sy input[type=checkbox]:focus,

#custom-html-sy input[type=file]:focus,

#custom-html-sy input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sy output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sy .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sy .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sy .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sy .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sy .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sy .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sy .form-control[disabled],

#custom-html-sy .form-control[readonly],

#custom-html-sy fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sy .form-control[disabled],

#custom-html-sy fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sy textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sy input[type=date].form-control,

  #custom-html-sy input[type=datetime-local].form-control,

  #custom-html-sy input[type=month].form-control,

  #custom-html-sy input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sy .input-group-sm input[type=date],

  #custom-html-sy .input-group-sm input[type=datetime-local],

  #custom-html-sy .input-group-sm input[type=month],

  #custom-html-sy .input-group-sm input[type=time],

  #custom-html-sy input[type=date].input-sm,

  #custom-html-sy input[type=datetime-local].input-sm,

  #custom-html-sy input[type=month].input-sm,

  #custom-html-sy input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sy .input-group-lg input[type=date],

  #custom-html-sy .input-group-lg input[type=datetime-local],

  #custom-html-sy .input-group-lg input[type=month],

  #custom-html-sy .input-group-lg input[type=time],

  #custom-html-sy input[type=date].input-lg,

  #custom-html-sy input[type=datetime-local].input-lg,

  #custom-html-sy input[type=month].input-lg,

  #custom-html-sy input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sy .form-group {

  margin-bottom: 15px;

}

#custom-html-sy .checkbox,

#custom-html-sy .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sy .checkbox label,

#custom-html-sy .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sy .checkbox input[type=checkbox],

#custom-html-sy .checkbox-inline input[type=checkbox],

#custom-html-sy .radio input[type=radio],

#custom-html-sy .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sy .checkbox + .checkbox,

#custom-html-sy .radio + .radio {

  margin-top: -5px;

}

#custom-html-sy .checkbox-inline,

#custom-html-sy .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sy .checkbox-inline + .checkbox-inline,

#custom-html-sy .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sy fieldset[disabled] input[type=checkbox],

#custom-html-sy fieldset[disabled] input[type=radio],

#custom-html-sy input[type=checkbox].disabled,

#custom-html-sy input[type=checkbox][disabled],

#custom-html-sy input[type=radio].disabled,

#custom-html-sy input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sy .checkbox-inline.disabled,

#custom-html-sy .radio-inline.disabled,

#custom-html-sy fieldset[disabled] .checkbox-inline,

#custom-html-sy fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sy .checkbox.disabled label,

#custom-html-sy .radio.disabled label,

#custom-html-sy fieldset[disabled] .checkbox label,

#custom-html-sy fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sy .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sy .form-control-static.input-lg,

#custom-html-sy .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sy .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sy select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sy select[multiple].input-sm,

#custom-html-sy textarea.input-sm {

  height: auto;

}

#custom-html-sy .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sy .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sy .form-group-sm select[multiple].form-control,

#custom-html-sy .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sy .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sy .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sy select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sy select[multiple].input-lg,

#custom-html-sy textarea.input-lg {

  height: auto;

}

#custom-html-sy .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sy .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sy .form-group-lg select[multiple].form-control,

#custom-html-sy .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sy .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sy .has-feedback {

  position: relative;

}

#custom-html-sy .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sy .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sy .form-group-lg .form-control + .form-control-feedback,

#custom-html-sy .input-group-lg + .form-control-feedback,

#custom-html-sy .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sy .form-group-sm .form-control + .form-control-feedback,

#custom-html-sy .input-group-sm + .form-control-feedback,

#custom-html-sy .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sy .has-success .checkbox,

#custom-html-sy .has-success .checkbox-inline,

#custom-html-sy .has-success .control-label,

#custom-html-sy .has-success .help-block,

#custom-html-sy .has-success .radio,

#custom-html-sy .has-success .radio-inline,

#custom-html-sy .has-success.checkbox label,

#custom-html-sy .has-success.checkbox-inline label,

#custom-html-sy .has-success.radio label,

#custom-html-sy .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sy .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sy .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sy .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sy .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sy .has-warning .checkbox,

#custom-html-sy .has-warning .checkbox-inline,

#custom-html-sy .has-warning .control-label,

#custom-html-sy .has-warning .help-block,

#custom-html-sy .has-warning .radio,

#custom-html-sy .has-warning .radio-inline,

#custom-html-sy .has-warning.checkbox label,

#custom-html-sy .has-warning.checkbox-inline label,

#custom-html-sy .has-warning.radio label,

#custom-html-sy .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sy .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sy .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sy .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sy .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sy .has-error .checkbox,

#custom-html-sy .has-error .checkbox-inline,

#custom-html-sy .has-error .control-label,

#custom-html-sy .has-error .help-block,

#custom-html-sy .has-error .radio,

#custom-html-sy .has-error .radio-inline,

#custom-html-sy .has-error.checkbox label,

#custom-html-sy .has-error.checkbox-inline label,

#custom-html-sy .has-error.radio label,

#custom-html-sy .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sy .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sy .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sy .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sy .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sy .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sy .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sy .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-sy .form-horizontal .checkbox,

#custom-html-sy .form-horizontal .checkbox-inline,

#custom-html-sy .form-horizontal .radio,

#custom-html-sy .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sy .form-horizontal .checkbox,

#custom-html-sy .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sy .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sy .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-sy .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-sy .btn.active.focus,

#custom-html-sy .btn.active:focus,

#custom-html-sy .btn.focus,

#custom-html-sy .btn:active.focus,

#custom-html-sy .btn:active:focus,

#custom-html-sy .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sy .btn.focus,

#custom-html-sy .btn:focus,

#custom-html-sy .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sy .btn.active,

#custom-html-sy .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sy .btn.disabled,

#custom-html-sy .btn[disabled],

#custom-html-sy fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sy a.btn.disabled,

#custom-html-sy fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sy .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sy .btn-default.focus,

#custom-html-sy .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sy .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sy .btn-default.active,

#custom-html-sy .btn-default:active,

#custom-html-sy .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-sy .btn-default.active.focus,

#custom-html-sy .btn-default.active:focus,

#custom-html-sy .btn-default.active:hover,

#custom-html-sy .btn-default:active.focus,

#custom-html-sy .btn-default:active:focus,

#custom-html-sy .btn-default:active:hover,

#custom-html-sy .open > .dropdown-toggle.btn-default.focus,

#custom-html-sy .open > .dropdown-toggle.btn-default:focus,

#custom-html-sy .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sy .btn-default.disabled.focus,

#custom-html-sy .btn-default.disabled:focus,

#custom-html-sy .btn-default.disabled:hover,

#custom-html-sy .btn-default[disabled].focus,

#custom-html-sy .btn-default[disabled]:focus,

#custom-html-sy .btn-default[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-default.focus,

#custom-html-sy fieldset[disabled] .btn-default:focus,

#custom-html-sy fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sy .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sy .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sy .btn-primary.focus,

#custom-html-sy .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sy .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sy .btn-primary.active,

#custom-html-sy .btn-primary:active,

#custom-html-sy .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-sy .btn-primary.active.focus,

#custom-html-sy .btn-primary.active:focus,

#custom-html-sy .btn-primary.active:hover,

#custom-html-sy .btn-primary:active.focus,

#custom-html-sy .btn-primary:active:focus,

#custom-html-sy .btn-primary:active:hover,

#custom-html-sy .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sy .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sy .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sy .btn-primary.disabled.focus,

#custom-html-sy .btn-primary.disabled:focus,

#custom-html-sy .btn-primary.disabled:hover,

#custom-html-sy .btn-primary[disabled].focus,

#custom-html-sy .btn-primary[disabled]:focus,

#custom-html-sy .btn-primary[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-primary.focus,

#custom-html-sy fieldset[disabled] .btn-primary:focus,

#custom-html-sy fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sy .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sy .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sy .btn-success.focus,

#custom-html-sy .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sy .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sy .btn-success.active,

#custom-html-sy .btn-success:active,

#custom-html-sy .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-sy .btn-success.active.focus,

#custom-html-sy .btn-success.active:focus,

#custom-html-sy .btn-success.active:hover,

#custom-html-sy .btn-success:active.focus,

#custom-html-sy .btn-success:active:focus,

#custom-html-sy .btn-success:active:hover,

#custom-html-sy .open > .dropdown-toggle.btn-success.focus,

#custom-html-sy .open > .dropdown-toggle.btn-success:focus,

#custom-html-sy .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sy .btn-success.disabled.focus,

#custom-html-sy .btn-success.disabled:focus,

#custom-html-sy .btn-success.disabled:hover,

#custom-html-sy .btn-success[disabled].focus,

#custom-html-sy .btn-success[disabled]:focus,

#custom-html-sy .btn-success[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-success.focus,

#custom-html-sy fieldset[disabled] .btn-success:focus,

#custom-html-sy fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sy .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sy .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sy .btn-info.focus,

#custom-html-sy .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sy .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sy .btn-info.active,

#custom-html-sy .btn-info:active,

#custom-html-sy .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-sy .btn-info.active.focus,

#custom-html-sy .btn-info.active:focus,

#custom-html-sy .btn-info.active:hover,

#custom-html-sy .btn-info:active.focus,

#custom-html-sy .btn-info:active:focus,

#custom-html-sy .btn-info:active:hover,

#custom-html-sy .open > .dropdown-toggle.btn-info.focus,

#custom-html-sy .open > .dropdown-toggle.btn-info:focus,

#custom-html-sy .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sy .btn-info.disabled.focus,

#custom-html-sy .btn-info.disabled:focus,

#custom-html-sy .btn-info.disabled:hover,

#custom-html-sy .btn-info[disabled].focus,

#custom-html-sy .btn-info[disabled]:focus,

#custom-html-sy .btn-info[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-info.focus,

#custom-html-sy fieldset[disabled] .btn-info:focus,

#custom-html-sy fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sy .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sy .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sy .btn-warning.focus,

#custom-html-sy .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sy .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sy .btn-warning.active,

#custom-html-sy .btn-warning:active,

#custom-html-sy .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-sy .btn-warning.active.focus,

#custom-html-sy .btn-warning.active:focus,

#custom-html-sy .btn-warning.active:hover,

#custom-html-sy .btn-warning:active.focus,

#custom-html-sy .btn-warning:active:focus,

#custom-html-sy .btn-warning:active:hover,

#custom-html-sy .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sy .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sy .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sy .btn-warning.disabled.focus,

#custom-html-sy .btn-warning.disabled:focus,

#custom-html-sy .btn-warning.disabled:hover,

#custom-html-sy .btn-warning[disabled].focus,

#custom-html-sy .btn-warning[disabled]:focus,

#custom-html-sy .btn-warning[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-warning.focus,

#custom-html-sy fieldset[disabled] .btn-warning:focus,

#custom-html-sy fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sy .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sy .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sy .btn-danger.focus,

#custom-html-sy .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sy .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sy .btn-danger.active,

#custom-html-sy .btn-danger:active,

#custom-html-sy .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-sy .btn-danger.active.focus,

#custom-html-sy .btn-danger.active:focus,

#custom-html-sy .btn-danger.active:hover,

#custom-html-sy .btn-danger:active.focus,

#custom-html-sy .btn-danger:active:focus,

#custom-html-sy .btn-danger:active:hover,

#custom-html-sy .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sy .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sy .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sy .btn-danger.disabled.focus,

#custom-html-sy .btn-danger.disabled:focus,

#custom-html-sy .btn-danger.disabled:hover,

#custom-html-sy .btn-danger[disabled].focus,

#custom-html-sy .btn-danger[disabled]:focus,

#custom-html-sy .btn-danger[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-danger.focus,

#custom-html-sy fieldset[disabled] .btn-danger:focus,

#custom-html-sy fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sy .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sy .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sy .btn-link,

#custom-html-sy .btn-link.active,

#custom-html-sy .btn-link:active,

#custom-html-sy .btn-link[disabled],

#custom-html-sy fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sy .btn-link,

#custom-html-sy .btn-link:active,

#custom-html-sy .btn-link:focus,

#custom-html-sy .btn-link:hover {

  border-color: transparent;

}

#custom-html-sy .btn-link:focus,

#custom-html-sy .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sy .btn-link[disabled]:focus,

#custom-html-sy .btn-link[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-link:focus,

#custom-html-sy fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sy .btn-group-lg > .btn,

#custom-html-sy .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sy .btn-group-sm > .btn,

#custom-html-sy .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sy .btn-group-xs > .btn,

#custom-html-sy .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sy .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sy .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sy input[type=button].btn-block,

#custom-html-sy input[type=reset].btn-block,

#custom-html-sy input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sy .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sy .fade.in {

  opacity: 1;

}

#custom-html-sy .collapse {

  display: none;

}

#custom-html-sy .collapse.in {

  display: block;

}

#custom-html-sy tr.collapse.in {

  display: table-row;

}

#custom-html-sy tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sy .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-sy .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sy .dropdown,

#custom-html-sy .dropup {

  position: relative;

}

#custom-html-sy .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sy .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sy .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sy .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sy .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sy .dropdown-menu > li > a:focus,

#custom-html-sy .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sy .dropdown-menu > .active > a,

#custom-html-sy .dropdown-menu > .active > a:focus,

#custom-html-sy .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sy .dropdown-menu > .disabled > a,

#custom-html-sy .dropdown-menu > .disabled > a:focus,

#custom-html-sy .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sy .dropdown-menu > .disabled > a:focus,

#custom-html-sy .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sy .open > .dropdown-menu {

  display: block;

}

#custom-html-sy .open > a {

  outline: 0;

}

#custom-html-sy .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sy .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sy .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sy .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sy .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sy .dropup .caret,

#custom-html-sy .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sy .dropup .dropdown-menu,

#custom-html-sy .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-sy .btn-group,

#custom-html-sy .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sy .btn-group-vertical > .btn,

#custom-html-sy .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sy .btn-group-vertical > .btn.active,

#custom-html-sy .btn-group-vertical > .btn:active,

#custom-html-sy .btn-group-vertical > .btn:focus,

#custom-html-sy .btn-group-vertical > .btn:hover,

#custom-html-sy .btn-group > .btn.active,

#custom-html-sy .btn-group > .btn:active,

#custom-html-sy .btn-group > .btn:focus,

#custom-html-sy .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sy .btn-group .btn + .btn,

#custom-html-sy .btn-group .btn + .btn-group,

#custom-html-sy .btn-group .btn-group + .btn,

#custom-html-sy .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sy .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sy .btn-toolbar .btn,

#custom-html-sy .btn-toolbar .btn-group,

#custom-html-sy .btn-toolbar .input-group {

  float: left;

}

#custom-html-sy .btn-toolbar > .btn,

#custom-html-sy .btn-toolbar > .btn-group,

#custom-html-sy .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sy .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sy .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sy .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sy .btn-group > .btn:last-child:not(:first-child),

#custom-html-sy .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sy .btn-group > .btn-group {

  float: left;

}

#custom-html-sy .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sy .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sy .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sy .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sy .btn-group .dropdown-toggle:active,

#custom-html-sy .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sy .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sy .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sy .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sy .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sy .btn .caret {

  margin-left: 0;

}

#custom-html-sy .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sy .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sy .btn-group-vertical > .btn,

#custom-html-sy .btn-group-vertical > .btn-group,

#custom-html-sy .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sy .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sy .btn-group-vertical > .btn + .btn,

#custom-html-sy .btn-group-vertical > .btn + .btn-group,

#custom-html-sy .btn-group-vertical > .btn-group + .btn,

#custom-html-sy .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sy .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sy .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sy .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sy .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sy .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sy .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sy .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sy .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sy .btn-group-justified > .btn,

#custom-html-sy .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sy .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sy .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sy [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sy [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sy [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sy [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sy .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sy .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sy .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sy .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sy .input-group-lg > .form-control,

#custom-html-sy .input-group-lg > .input-group-addon,

#custom-html-sy .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sy select.input-group-lg > .form-control,

#custom-html-sy select.input-group-lg > .input-group-addon,

#custom-html-sy select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sy select[multiple].input-group-lg > .form-control,

#custom-html-sy select[multiple].input-group-lg > .input-group-addon,

#custom-html-sy select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sy textarea.input-group-lg > .form-control,

#custom-html-sy textarea.input-group-lg > .input-group-addon,

#custom-html-sy textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sy .input-group-sm > .form-control,

#custom-html-sy .input-group-sm > .input-group-addon,

#custom-html-sy .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sy select.input-group-sm > .form-control,

#custom-html-sy select.input-group-sm > .input-group-addon,

#custom-html-sy select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sy select[multiple].input-group-sm > .form-control,

#custom-html-sy select[multiple].input-group-sm > .input-group-addon,

#custom-html-sy select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sy textarea.input-group-sm > .form-control,

#custom-html-sy textarea.input-group-sm > .input-group-addon,

#custom-html-sy textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sy .input-group .form-control,

#custom-html-sy .input-group-addon,

#custom-html-sy .input-group-btn {

  display: table-cell;

}

#custom-html-sy .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sy .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sy .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sy .input-group-addon,

#custom-html-sy .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sy .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sy .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sy .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sy .input-group-addon input[type=checkbox],

#custom-html-sy .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sy .input-group .form-control:first-child,

#custom-html-sy .input-group-addon:first-child,

#custom-html-sy .input-group-btn:first-child > .btn,

#custom-html-sy .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sy .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sy .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sy .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sy .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sy .input-group .form-control:last-child,

#custom-html-sy .input-group-addon:last-child,

#custom-html-sy .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sy .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sy .input-group-btn:last-child > .btn,

#custom-html-sy .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sy .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sy .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sy .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sy .input-group-btn > .btn {

  position: relative;

}

#custom-html-sy .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sy .input-group-btn > .btn:active,

#custom-html-sy .input-group-btn > .btn:focus,

#custom-html-sy .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sy .input-group-btn:first-child > .btn,

#custom-html-sy .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sy .input-group-btn:last-child > .btn,

#custom-html-sy .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sy .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sy .nav > li {

  position: relative;

  display: block;

}

#custom-html-sy .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sy .nav > li > a:focus,

#custom-html-sy .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sy .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sy .nav > li.disabled > a:focus,

#custom-html-sy .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sy .nav .open > a,

#custom-html-sy .nav .open > a:focus,

#custom-html-sy .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sy .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sy .nav > li > a > img {

  max-width: none;

}

#custom-html-sy .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sy .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sy .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sy .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sy .nav-tabs > li.active > a,

#custom-html-sy .nav-tabs > li.active > a:focus,

#custom-html-sy .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sy .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sy .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sy .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sy .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sy .nav-tabs.nav-justified > .active > a,

#custom-html-sy .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sy .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sy .nav-pills > li {

  float: left;

}

#custom-html-sy .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sy .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sy .nav-pills > li.active > a,

#custom-html-sy .nav-pills > li.active > a:focus,

#custom-html-sy .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sy .nav-stacked > li {

  float: none;

}

#custom-html-sy .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sy .nav-justified {

  width: 100%;

}

#custom-html-sy .nav-justified > li {

  float: none;

}

#custom-html-sy .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sy .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sy .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sy .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sy .nav-tabs-justified > .active > a,

#custom-html-sy .nav-tabs-justified > .active > a:focus,

#custom-html-sy .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sy .tab-content > .tab-pane {

  display: none;

}

#custom-html-sy .tab-content > .active {

  display: block;

}

#custom-html-sy .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sy .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-sy .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sy .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-sy .navbar-fixed-bottom .navbar-collapse,

#custom-html-sy .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sy .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sy .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sy .container-fluid > .navbar-collapse,

#custom-html-sy .container-fluid > .navbar-header,

#custom-html-sy .container > .navbar-collapse,

#custom-html-sy .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sy .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-sy .navbar-fixed-bottom,

#custom-html-sy .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-sy .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sy .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sy .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sy .navbar-brand:focus,

#custom-html-sy .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sy .navbar-brand > img {

  display: block;

}

#custom-html-sy .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sy .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sy .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sy .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-sy .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sy .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sy .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sy .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sy .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sy .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sy .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sy .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-sy .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sy .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-sy .visible-xs {

    display: block !important;

  }

  #custom-html-sy table.visible-xs {

    display: table !important;

  }

  #custom-html-sy tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sy td.visible-xs,

  #custom-html-sy th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-sy .visible-xs-block {

    display: block !important;

  }

  #custom-html-sy .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-sy .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-sy .hidden-xs {

    display: none !important;

  }

  #custom-html-sy .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sy .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-sy section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-sy .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sy .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sy .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sy .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-sy .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sy .tiles .tile:nth-child(1),

  #custom-html-sy .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-sy ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sy ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sy ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-sy .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sy .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sy .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-sy .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-sy .promo-banner form {

    text-align: center;

  }

}

#custom-html-sy .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sy .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sy .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sy .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sy .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sy .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sy .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sy .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sy .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sy .navbar-default .navbar-brand:focus,

#custom-html-sy .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sy .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sy .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sy .navbar-default .navbar-nav > li > a:focus,

#custom-html-sy .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sy .navbar-default .navbar-nav > .active > a,

#custom-html-sy .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sy .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sy .navbar-default .navbar-nav > .disabled > a,

#custom-html-sy .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sy .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sy .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sy .navbar-default .navbar-toggle:focus,

#custom-html-sy .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sy .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sy .navbar-default .navbar-collapse,

#custom-html-sy .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sy .navbar-default .navbar-nav > .open > a,

#custom-html-sy .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sy .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sy .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sy .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sy .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sy .navbar-default .btn-link:focus,

#custom-html-sy .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sy .navbar-default .btn-link[disabled]:focus,

#custom-html-sy .navbar-default .btn-link[disabled]:hover,

#custom-html-sy fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sy fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sy .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sy .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sy .navbar-inverse .navbar-brand:focus,

#custom-html-sy .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sy .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sy .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sy .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sy .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sy .navbar-inverse .navbar-nav > .active > a,

#custom-html-sy .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sy .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sy .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sy .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sy .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sy .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sy .navbar-inverse .navbar-toggle:focus,

#custom-html-sy .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sy .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sy .navbar-inverse .navbar-collapse,

#custom-html-sy .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sy .navbar-inverse .navbar-nav > .open > a,

#custom-html-sy .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sy .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sy .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sy .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sy .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sy .navbar-inverse .btn-link:focus,

#custom-html-sy .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sy .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sy .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sy fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sy fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sy .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sy .breadcrumb > li {

  display: inline-block;

}

#custom-html-sy .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sy .breadcrumb > .active {

  color: #777777;

}

#custom-html-sy .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-sy .pagination > li {

  display: inline;

}

#custom-html-sy .pagination > li > a,

#custom-html-sy .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sy .pagination > li:first-child > a,

#custom-html-sy .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sy .pagination > li:last-child > a,

#custom-html-sy .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sy .pagination > li > a:focus,

#custom-html-sy .pagination > li > a:hover,

#custom-html-sy .pagination > li > span:focus,

#custom-html-sy .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sy .pagination > .active > a,

#custom-html-sy .pagination > .active > a:focus,

#custom-html-sy .pagination > .active > a:hover,

#custom-html-sy .pagination > .active > span,

#custom-html-sy .pagination > .active > span:focus,

#custom-html-sy .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sy .pagination > .disabled > a,

#custom-html-sy .pagination > .disabled > a:focus,

#custom-html-sy .pagination > .disabled > a:hover,

#custom-html-sy .pagination > .disabled > span,

#custom-html-sy .pagination > .disabled > span:focus,

#custom-html-sy .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sy .pagination-lg > li > a,

#custom-html-sy .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sy .pagination-lg > li:first-child > a,

#custom-html-sy .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sy .pagination-lg > li:last-child > a,

#custom-html-sy .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sy .pagination-sm > li > a,

#custom-html-sy .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sy .pagination-sm > li:first-child > a,

#custom-html-sy .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sy .pagination-sm > li:last-child > a,

#custom-html-sy .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sy .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sy .pager li {

  display: inline;

}

#custom-html-sy .pager li > a,

#custom-html-sy .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sy .pager li > a:focus,

#custom-html-sy .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sy .pager .next > a,

#custom-html-sy .pager .next > span {

  float: right;

}

#custom-html-sy .pager .previous > a,

#custom-html-sy .pager .previous > span {

  float: left;

}

#custom-html-sy .pager .disabled > a,

#custom-html-sy .pager .disabled > a:focus,

#custom-html-sy .pager .disabled > a:hover,

#custom-html-sy .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sy .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-sy a.label:focus,

#custom-html-sy a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sy .label:empty {

  display: none;

}

#custom-html-sy .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sy .label-default {

  background-color: #777777;

}

#custom-html-sy .label-default[href]:focus,

#custom-html-sy .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sy .label-primary {

  background-color: #337ab7;

}

#custom-html-sy .label-primary[href]:focus,

#custom-html-sy .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sy .label-success {

  background-color: #5cb85c;

}

#custom-html-sy .label-success[href]:focus,

#custom-html-sy .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sy .label-info {

  background-color: #5bc0de;

}

#custom-html-sy .label-info[href]:focus,

#custom-html-sy .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sy .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sy .label-warning[href]:focus,

#custom-html-sy .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sy .label-danger {

  background-color: #d9534f;

}

#custom-html-sy .label-danger[href]:focus,

#custom-html-sy .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sy .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sy .badge:empty {

  display: none;

}

#custom-html-sy .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sy .btn-group-xs > .btn .badge,

#custom-html-sy .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sy a.badge:focus,

#custom-html-sy a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sy .list-group-item.active > .badge,

#custom-html-sy .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sy .list-group-item > .badge {

  float: right;

}

#custom-html-sy .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sy .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sy .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sy .jumbotron .h1,

#custom-html-sy .jumbotron h1 {

  color: inherit;

}

#custom-html-sy .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sy .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sy .container .jumbotron,

#custom-html-sy .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sy .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sy .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sy .container .jumbotron,

  #custom-html-sy .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sy .jumbotron .h1,

  #custom-html-sy .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-sy .carousel-control .glyphicon-chevron-left,

  #custom-html-sy .carousel-control .glyphicon-chevron-right,

  #custom-html-sy .carousel-control .icon-next,

  #custom-html-sy .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sy .carousel-control .glyphicon-chevron-left,

  #custom-html-sy .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sy .carousel-control .glyphicon-chevron-right,

  #custom-html-sy .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sy .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sy .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sy .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sy .thumbnail a > img,

#custom-html-sy .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sy a.thumbnail.active,

#custom-html-sy a.thumbnail:focus,

#custom-html-sy a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sy .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sy .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sy .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sy .alert .alert-link {

  font-weight: 700;

}

#custom-html-sy .alert > p,

#custom-html-sy .alert > ul {

  margin-bottom: 0;

}

#custom-html-sy .alert > p + p {

  margin-top: 5px;

}

#custom-html-sy .alert-dismissable,

#custom-html-sy .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sy .alert-dismissable .close,

#custom-html-sy .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sy .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sy .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sy .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sy .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sy .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sy .alert-info .alert-link {

  color: #000000;

}

#custom-html-sy .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sy .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sy .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sy .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sy .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sy .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sy .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sy .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sy .progress-bar-striped,

#custom-html-sy .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sy .progress-bar.active,

#custom-html-sy .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sy .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sy .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sy .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sy .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sy .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sy .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sy .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sy .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sy .media {

  margin-top: 15px;

}

#custom-html-sy .media:first-child {

  margin-top: 0;

}

#custom-html-sy .media,

#custom-html-sy .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sy .media-body {

  width: 10000px;

}

#custom-html-sy .media-object {

  display: block;

}

#custom-html-sy .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sy .media-right,

#custom-html-sy .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sy .media-left,

#custom-html-sy .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sy .media-body,

#custom-html-sy .media-left,

#custom-html-sy .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sy .media-middle {

  vertical-align: middle;

}

#custom-html-sy .media-bottom {

  vertical-align: bottom;

}

#custom-html-sy .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sy .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sy .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-sy .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-sy .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sy .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sy a.list-group-item,

#custom-html-sy button.list-group-item {

  color: #555555;

}

#custom-html-sy a.list-group-item .list-group-item-heading,

#custom-html-sy button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sy a.list-group-item:focus,

#custom-html-sy a.list-group-item:hover,

#custom-html-sy button.list-group-item:focus,

#custom-html-sy button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sy button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sy .list-group-item.disabled,

#custom-html-sy .list-group-item.disabled:focus,

#custom-html-sy .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sy .list-group-item.disabled .list-group-item-heading,

#custom-html-sy .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sy .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sy .list-group-item.disabled .list-group-item-text,

#custom-html-sy .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sy .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sy .list-group-item.active,

#custom-html-sy .list-group-item.active:focus,

#custom-html-sy .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sy .list-group-item.active .list-group-item-heading,

#custom-html-sy .list-group-item.active .list-group-item-heading > .small,

#custom-html-sy .list-group-item.active .list-group-item-heading > small,

#custom-html-sy .list-group-item.active:focus .list-group-item-heading,

#custom-html-sy .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sy .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sy .list-group-item.active:hover .list-group-item-heading,

#custom-html-sy .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sy .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sy .list-group-item.active .list-group-item-text,

#custom-html-sy .list-group-item.active:focus .list-group-item-text,

#custom-html-sy .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sy .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sy a.list-group-item-success,

#custom-html-sy button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sy a.list-group-item-success .list-group-item-heading,

#custom-html-sy button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sy a.list-group-item-success:focus,

#custom-html-sy a.list-group-item-success:hover,

#custom-html-sy button.list-group-item-success:focus,

#custom-html-sy button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sy a.list-group-item-success.active,

#custom-html-sy a.list-group-item-success.active:focus,

#custom-html-sy a.list-group-item-success.active:hover,

#custom-html-sy button.list-group-item-success.active,

#custom-html-sy button.list-group-item-success.active:focus,

#custom-html-sy button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sy .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sy a.list-group-item-info,

#custom-html-sy button.list-group-item-info {

  color: #31708f;

}

#custom-html-sy a.list-group-item-info .list-group-item-heading,

#custom-html-sy button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sy a.list-group-item-info:focus,

#custom-html-sy a.list-group-item-info:hover,

#custom-html-sy button.list-group-item-info:focus,

#custom-html-sy button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sy a.list-group-item-info.active,

#custom-html-sy a.list-group-item-info.active:focus,

#custom-html-sy a.list-group-item-info.active:hover,

#custom-html-sy button.list-group-item-info.active,

#custom-html-sy button.list-group-item-info.active:focus,

#custom-html-sy button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sy .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sy a.list-group-item-warning,

#custom-html-sy button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sy a.list-group-item-warning .list-group-item-heading,

#custom-html-sy button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sy a.list-group-item-warning:focus,

#custom-html-sy a.list-group-item-warning:hover,

#custom-html-sy button.list-group-item-warning:focus,

#custom-html-sy button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sy a.list-group-item-warning.active,

#custom-html-sy a.list-group-item-warning.active:focus,

#custom-html-sy a.list-group-item-warning.active:hover,

#custom-html-sy button.list-group-item-warning.active,

#custom-html-sy button.list-group-item-warning.active:focus,

#custom-html-sy button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sy .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sy a.list-group-item-danger,

#custom-html-sy button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sy a.list-group-item-danger .list-group-item-heading,

#custom-html-sy button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sy a.list-group-item-danger:focus,

#custom-html-sy a.list-group-item-danger:hover,

#custom-html-sy button.list-group-item-danger:focus,

#custom-html-sy button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sy a.list-group-item-danger.active,

#custom-html-sy a.list-group-item-danger.active:focus,

#custom-html-sy a.list-group-item-danger.active:hover,

#custom-html-sy button.list-group-item-danger.active,

#custom-html-sy button.list-group-item-danger.active:focus,

#custom-html-sy button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sy .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sy .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sy .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-sy .panel-body {

  padding: 10px 15px;

}

#custom-html-sy .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sy .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sy .panel-title > .small,

#custom-html-sy .panel-title > .small > a,

#custom-html-sy .panel-title > a,

#custom-html-sy .panel-title > small,

#custom-html-sy .panel-title > small > a {

  color: inherit;

}

#custom-html-sy .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sy .panel > .list-group,

#custom-html-sy .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sy .panel > .list-group .list-group-item,

#custom-html-sy .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sy .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sy .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sy .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sy .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sy .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sy .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sy .panel > .panel-collapse > .table,

#custom-html-sy .panel > .table,

#custom-html-sy .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sy .panel > .panel-collapse > .table caption,

#custom-html-sy .panel > .table caption,

#custom-html-sy .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sy .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sy .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sy .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sy .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sy .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sy .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sy .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sy .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sy .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sy .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sy .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sy .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sy .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sy .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sy .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sy .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sy .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sy .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sy .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sy .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sy .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sy .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sy .panel > .panel-body + .table,

#custom-html-sy .panel > .panel-body + .table-responsive,

#custom-html-sy .panel > .table + .panel-body,

#custom-html-sy .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sy .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sy .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sy .panel > .table-bordered,

#custom-html-sy .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sy .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sy .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sy .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sy .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sy .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sy .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sy .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sy .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sy .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sy .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sy .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sy .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sy .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sy .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sy .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sy .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sy .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sy .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sy .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sy .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sy .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sy .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sy .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sy .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sy .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sy .panel-group {

  margin-bottom: 20px;

}

#custom-html-sy .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sy .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sy .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sy .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sy .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sy .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sy .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sy .panel-default {

  border-color: #dddddd;

}

#custom-html-sy .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sy .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sy .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sy .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sy .panel-primary {

  border-color: #337ab7;

}

#custom-html-sy .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sy .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sy .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sy .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sy .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sy .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sy .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sy .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sy .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sy .panel-info {

  border-color: #bce8f1;

}

#custom-html-sy .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sy .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sy .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sy .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sy .panel-warning {

  border-color: #faebcc;

}

#custom-html-sy .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sy .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sy .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sy .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-sy .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sy .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sy .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sy .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sy .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sy .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sy .embed-responsive .embed-responsive-item,

#custom-html-sy .embed-responsive embed,

#custom-html-sy .embed-responsive iframe,

#custom-html-sy .embed-responsive object,

#custom-html-sy .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sy .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sy .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sy .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sy .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sy .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sy .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sy .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sy .close:focus,

#custom-html-sy .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sy button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sy .modal-open {

  overflow: hidden;

}

#custom-html-sy .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sy .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sy .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sy .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sy .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sy .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sy .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sy .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sy .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sy .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sy .modal-header .close {

  margin-top: -2px;

}

#custom-html-sy .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sy .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sy .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sy .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sy .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sy .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sy .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-sy .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sy .tooltip.in {

  opacity: 0.9;

}

#custom-html-sy .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sy .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sy .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sy .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sy .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sy .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sy .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sy .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sy .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sy .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sy .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sy .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sy .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sy .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sy .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sy .popover.top {

  margin-top: -10px;

}

#custom-html-sy .popover.right {

  margin-left: 10px;

}

#custom-html-sy .popover.bottom {

  margin-top: 10px;

}

#custom-html-sy .popover.left {

  margin-left: -10px;

}

#custom-html-sy .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sy .popover-content {

  padding: 9px 14px;

}

#custom-html-sy .popover > .arrow,

#custom-html-sy .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sy .popover > .arrow {

  border-width: 11px;

}

#custom-html-sy .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sy .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sy .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sy .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sy .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sy .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sy .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sy .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sy .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sy .carousel {

  position: relative;

}

#custom-html-sy .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sy .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sy .carousel-inner > .item > a > img,

#custom-html-sy .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sy .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;


    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sy .carousel-inner > .item.active.right,

  #custom-html-sy .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sy .carousel-inner > .item.active.left,

  #custom-html-sy .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sy .carousel-inner > .item.active,

  #custom-html-sy .carousel-inner > .item.next.left,

  #custom-html-sy .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sy .carousel-inner > .active,

#custom-html-sy .carousel-inner > .next,

#custom-html-sy .carousel-inner > .prev {

  display: block;

}

#custom-html-sy .carousel-inner > .active {

  left: 0;

}

#custom-html-sy .carousel-inner > .next,

#custom-html-sy .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sy .carousel-inner > .next {

  left: 100%;

}

#custom-html-sy .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sy .carousel-inner > .next.left,

#custom-html-sy .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sy .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sy .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sy .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sy .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sy .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sy .carousel-control:focus,

#custom-html-sy .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sy .carousel-control .glyphicon-chevron-left,

#custom-html-sy .carousel-control .glyphicon-chevron-right,

#custom-html-sy .carousel-control .icon-next,

#custom-html-sy .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sy .carousel-control .glyphicon-chevron-left,

#custom-html-sy .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sy .carousel-control .glyphicon-chevron-right,

#custom-html-sy .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sy .carousel-control .icon-next,

#custom-html-sy .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sy .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sy .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sy .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sy .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-sy .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sy .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sy .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-sy .btn-group-vertical > .btn-group:after,

#custom-html-sy .btn-group-vertical > .btn-group:before,

#custom-html-sy .btn-toolbar:after,

#custom-html-sy .btn-toolbar:before,

#custom-html-sy .clearfix:after,

#custom-html-sy .clearfix:before,

#custom-html-sy .container-fluid:after,

#custom-html-sy .container-fluid:before,

#custom-html-sy .container:after,

#custom-html-sy .container:before,

#custom-html-sy .dl-horizontal dd:after,

#custom-html-sy .dl-horizontal dd:before,

#custom-html-sy .form-horizontal .form-group:after,

#custom-html-sy .form-horizontal .form-group:before,

#custom-html-sy .modal-footer:after,

#custom-html-sy .modal-footer:before,

#custom-html-sy .modal-header:after,

#custom-html-sy .modal-header:before,

#custom-html-sy .nav:after,

#custom-html-sy .nav:before,

#custom-html-sy .navbar-collapse:after,

#custom-html-sy .navbar-collapse:before,

#custom-html-sy .navbar-header:after,

#custom-html-sy .navbar-header:before,

#custom-html-sy .navbar:after,

#custom-html-sy .navbar:before,

#custom-html-sy .pager:after,

#custom-html-sy .pager:before,

#custom-html-sy .panel-body:after,

#custom-html-sy .panel-body:before,

#custom-html-sy .row:after,

#custom-html-sy .row:before {

  display: table;

  content: " ";

}

#custom-html-sy .btn-group-vertical > .btn-group:after,

#custom-html-sy .btn-toolbar:after,

#custom-html-sy .clearfix:after,

#custom-html-sy .container-fluid:after,

#custom-html-sy .container:after,

#custom-html-sy .dl-horizontal dd:after,

#custom-html-sy .form-horizontal .form-group:after,

#custom-html-sy .modal-footer:after,

#custom-html-sy .modal-header:after,

#custom-html-sy .nav:after,

#custom-html-sy .navbar-collapse:after,

#custom-html-sy .navbar-header:after,

#custom-html-sy .navbar:after,

#custom-html-sy .pager:after,

#custom-html-sy .panel-body:after,

#custom-html-sy .row:after {

  clear: both;

}

#custom-html-sy .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sy .pull-right {

  float: right !important;

}

#custom-html-sy .pull-left {

  float: left !important;

}

#custom-html-sy .hide {

  display: none !important;

}

#custom-html-sy .show {

  display: block !important;

}

#custom-html-sy .invisible {

  visibility: hidden;

}

#custom-html-sy .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sy .hidden {

  display: none !important;

}

#custom-html-sy .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sy .visible-lg,

#custom-html-sy .visible-md,

#custom-html-sy .visible-sm,

#custom-html-sy .visible-xs {

  display: none !important;

}

#custom-html-sy .visible-lg-block,

#custom-html-sy .visible-lg-inline,

#custom-html-sy .visible-lg-inline-block,

#custom-html-sy .visible-md-block,

#custom-html-sy .visible-md-inline,

#custom-html-sy .visible-md-inline-block,

#custom-html-sy .visible-sm-block,

#custom-html-sy .visible-sm-inline,

#custom-html-sy .visible-sm-inline-block,

#custom-html-sy .visible-xs-block,

#custom-html-sy .visible-xs-inline,

#custom-html-sy .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sy .visible-sm {

    display: block !important;

  }

  #custom-html-sy table.visible-sm {

    display: table !important;

  }

  #custom-html-sy tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sy td.visible-sm,

  #custom-html-sy th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-sy .visible-sm-block {

    display: block !important;

  }

  #custom-html-sy .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-sy .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-sy .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sy .visible-md {

    display: block !important;

  }

  #custom-html-sy table.visible-md {

    display: table !important;

  }

  #custom-html-sy tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sy td.visible-md,

  #custom-html-sy th.visible-md {

    display: table-cell !important;

  }

  #custom-html-sy .visible-md-block {

    display: block !important;

  }

  #custom-html-sy .visible-md-inline {

    display: inline !important;

  }

  #custom-html-sy .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-sy .hidden-md {

    display: none !important;

  }

}

#custom-html-sy .visible-print {

  display: none !important;

}

#custom-html-sy .visible-print-block {

  display: none !important;

}

#custom-html-sy .visible-print-inline {

  display: none !important;

}

#custom-html-sy .visible-print-inline-block {

  display: none !important;

}

#custom-html-sy .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-sy .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sy .intl-tel-input .hide {

  display: none;

}

#custom-html-sy .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sy .intl-tel-input input,

#custom-html-sy .intl-tel-input input[type=tel],

#custom-html-sy .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sy .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sy .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sy .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sy .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sy .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sy .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sy .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sy .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sy .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-sy .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sy .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sy .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sy .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sy .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sy .intl-tel-input .country-list .country-name,

#custom-html-sy .intl-tel-input .country-list .dial-code,

#custom-html-sy .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sy .intl-tel-input .country-list .country-name,

#custom-html-sy .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sy .intl-tel-input.allow-dropdown input,

#custom-html-sy .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sy .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sy .intl-tel-input.separate-dial-code input,

#custom-html-sy .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sy .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sy .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sy .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sy .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sy .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sy .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sy .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sy .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sy .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sy .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sy .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sy .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sy .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sy .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sy .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sy .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sy .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sy .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-sy .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sy .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sy .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sy .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sy .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-sy .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sy .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sy .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sy .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-sy .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sy .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sy .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sy .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sy .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sy .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sy .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sy .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sy .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sy .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sy .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sy .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sy .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sy .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sy .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sy .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sy .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sy .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sy .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sy .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sy .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sy .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sy .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sy .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sy .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sy .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sy .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sy .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sy .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sy .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sy .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sy .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sy .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sy .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sy .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sy .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sy .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sy .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sy .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sy .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sy .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-sy .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sy .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sy .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sy .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sy .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sy .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sy .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sy .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sy .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sy .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sy .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sy .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sy .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sy .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sy .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sy .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sy .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sy .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-sy .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sy .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sy .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sy .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sy .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sy .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sy .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sy .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sy .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sy .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sy .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sy .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sy .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sy .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sy .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sy .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sy .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sy .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sy .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sy .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sy .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sy .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sy .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sy .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sy .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sy .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sy .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sy .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sy .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sy .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sy .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sy .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sy .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sy .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sy .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sy .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sy .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sy .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sy .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sy .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sy .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sy .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sy .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sy .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sy .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sy .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sy .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sy .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sy .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sy .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sy .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sy .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sy .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;


}

#custom-html-sy .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sy .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sy .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sy .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sy .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sy .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sy .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sy .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sy .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sy .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sy .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sy .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sy .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sy .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sy .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sy .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sy .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sy .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sy .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sy .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sy .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sy .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sy .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sy .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sy .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sy .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sy .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sy .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sy .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sy .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sy .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sy .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sy .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sy .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sy .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sy .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sy .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sy .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sy .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sy .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sy .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sy .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sy .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sy .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sy .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sy .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sy .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sy .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sy .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sy .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sy .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sy .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sy .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sy .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sy .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sy .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sy .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sy .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sy .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sy .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sy .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sy .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sy .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sy .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sy .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sy .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sy .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sy .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sy .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sy .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sy .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sy .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sy .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sy .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sy .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sy .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sy .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sy .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sy .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sy .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sy .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sy .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sy .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sy .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sy .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sy .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sy .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sy .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sy .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sy .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sy .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sy .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sy .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sy .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sy .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sy .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sy .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sy .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sy .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sy .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sy .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sy .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sy .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sy .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sy .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sy .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sy .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sy .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sy .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sy .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sy .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sy .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sy .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sy .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sy .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sy .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sy .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sy .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sy .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sy .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sy .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sy .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sy .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sy .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sy .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sy .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sy .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sy .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sy .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sy .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sy .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sy .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sy .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sy .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sy .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sy .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sy .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sy body,

#custom-html-sy button,

#custom-html-sy input,

#custom-html-sy select,

#custom-html-sy textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sy h1,

#custom-html-sy h2,

#custom-html-sy h3,

#custom-html-sy h4,

#custom-html-sy h5,

#custom-html-sy h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-sy .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sy .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sy .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sy .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sy .navbar-main .navbar-nav > .active > a,

#custom-html-sy .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sy .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sy .navbar-main .navbar-nav > .open > a,

#custom-html-sy .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sy .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sy .navbar-main .navbar-nav > li > a:focus,

#custom-html-sy .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sy #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sy .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-sy .navbar-header {

    float: none;

  }

  #custom-html-sy .navbar-left,

  #custom-html-sy .navbar-right {

    float: none !important;

  }

  #custom-html-sy .navbar-toggle {

    display: block;

  }

  #custom-html-sy .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sy .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sy .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sy .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sy .navbar-nav > li {

    float: none;

  }

  #custom-html-sy .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sy .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-sy .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sy .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sy .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-sy ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sy ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sy ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-sy .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-sy .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sy .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sy .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sy .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sy .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-sy #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sy #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-sy .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sy a.list-group-item.active,

#custom-html-sy a.list-group-item.active:focus,

#custom-html-sy a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sy .dropdown-menu > li > a:focus,

#custom-html-sy .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sy input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sy .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sy body,

#custom-html-sy html {

  height: 100%;

}

#custom-html-sy section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sy section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sy section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sy section#header .search {

  margin: 20px 0;

}

#custom-html-sy section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sy section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sy section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sy section#main-content {

  margin-bottom: 60px;

}

#custom-html-sy .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sy section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sy section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sy section#footer {

    line-height: 32px;

  }

}

#custom-html-sy section#footer .back-to-top {

  float: right;

}

#custom-html-sy section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sy .adminreturndiv {

  display: none !important;

}

#custom-html-sy .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sy .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sy .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sy .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sy .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sy .navbar-main .navbar-toggle:focus,

#custom-html-sy .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sy .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sy .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-sy div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sy div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sy div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sy div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sy div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sy .h1,

  #custom-html-sy h1 {

    font-size: 26px;

  }

  #custom-html-sy .h2,


  #custom-html-sy h2 {

    font-size: 20px;

  }

  #custom-html-sy .h3,

  #custom-html-sy h3 {

    font-size: 16px;

  }

  #custom-html-sy .h4,

  #custom-html-sy h4 {

    font-size: 14px;

  }

  #custom-html-sy .h5,

  #custom-html-sy h5 {

    font-size: 12px;

  }

  #custom-html-sy .h6,

  #custom-html-sy h6 {

    font-size: 11px;

  }

  #custom-html-sy div.header-lined small {

    display: none;

  }

  #custom-html-sy .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-sy .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sy .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sy .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sy .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-sy div.credit-card {

    max-width: 250px;

  }

  #custom-html-sy div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sy div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sy div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sy div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sy div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-sy .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sy .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sy .margin-10 {

  margin: 10px;

}

#custom-html-sy .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sy .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sy .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sy .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sy .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sy .input-inline {

  display: inline-block;

}

#custom-html-sy .input-inline-100 {

  width: 100px;

}

#custom-html-sy .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-sy .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sy .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sy .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-sy i.icon-rss {

  color: #ff6600;

}

#custom-html-sy section#main-menu {

  background-color: #000000;

}

#custom-html-sy section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sy section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sy section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sy section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sy section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sy section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sy section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sy section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sy section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sy section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sy section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sy section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-sy .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-sy .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-sy .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sy .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sy .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-sy #stepResults {

    font-size: 14px;

  }

  #custom-html-sy #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sy div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-sy .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sy .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sy .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sy .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sy .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sy .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sy .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sy .home-shortcuts li span {

  display: none;

}

#custom-html-sy .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sy .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-sy .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sy .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sy .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sy .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sy .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sy .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sy .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sy .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sy .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sy .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sy .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sy .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sy .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sy .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sy .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sy .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sy .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sy .tiles .tile a {

  text-decoration: none;

}

#custom-html-sy .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sy .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sy .tiles .tile:last-child {

  border: 0;

}

#custom-html-sy .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sy .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sy .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sy .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sy .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sy .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sy .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sy .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sy .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sy .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sy .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sy .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sy .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sy .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sy .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sy .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sy .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sy .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sy .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sy .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sy .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sy .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sy .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sy .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sy .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sy .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sy .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sy .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sy .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sy .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sy .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sy .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sy .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sy .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sy .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sy .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sy .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sy .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sy .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sy .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sy .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sy ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sy ul.top-nav > li,

#custom-html-sy ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sy ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sy ul.top-nav > li:active > a,

#custom-html-sy ul.top-nav > li:focus > a,

#custom-html-sy ul.top-nav > li:hover > a,

#custom-html-sy ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sy ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sy ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sy ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sy ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-sy div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sy div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sy div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sy div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sy div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sy div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sy .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sy .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-sy .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sy .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-sy .domain-check-availability {

  width: 100px;

}

#custom-html-sy .domain-step-options {

  min-height: 300px;

}

#custom-html-sy .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sy .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sy .domain-checker-invalid,

#custom-html-sy .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sy div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sy .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sy .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sy .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sy a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sy .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sy .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sy .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-sy .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sy .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sy .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sy .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sy .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sy .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sy .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-sy .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sy .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sy .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sy .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sy .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sy .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sy .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sy .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sy .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sy .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sy .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sy .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sy .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sy .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sy div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sy div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sy div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sy .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sy .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sy .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sy .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sy div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sy div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-sy .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sy .product-status-pending {

  background-color: #f89406;

}

#custom-html-sy .product-status-active {

  background-color: #46a546;

}

#custom-html-sy .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sy .product-status-cancelled,

#custom-html-sy .product-status-terminated {

  background-color: #666666;

}

#custom-html-sy .product-status-fraud {

  background-color: #000000;

}

#custom-html-sy .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sy div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sy .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sy .ssl-inactive {

  cursor: pointer;

}

#custom-html-sy .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sy .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sy .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sy .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sy .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sy .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sy .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sy .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sy .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-sy .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sy .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sy .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sy .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sy .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sy .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sy table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sy .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sy table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sy .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-sy table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sy .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sy .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sy .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sy table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sy table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sy table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sy .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sy .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sy .status-pending {

  color: #d9534f;

}

#custom-html-sy .status-pending.transfer {

  color: #a68500;

}

#custom-html-sy .status-active,

#custom-html-sy .status-completed,

#custom-html-sy .status-open {

  color: #3fad46;

}

#custom-html-sy .status-suspended {

  color: #f0ad4e;

}

#custom-html-sy .status-customer-reply {

  color: #ff6600;

}

#custom-html-sy .status-answered,

#custom-html-sy .status-fraud {

  color: #000000;

}

#custom-html-sy .status-expired,

#custom-html-sy .status-transferred.away {

  color: #004258;

}

#custom-html-sy .status-cancelled {

  color: #87939f;

}

#custom-html-sy .status-terminated {

  color: #666666;

}

#custom-html-sy .status-onhold {

  color: #224488;

}

#custom-html-sy .status-inprogress {

  color: #cc0000;

}

#custom-html-sy .status-closed {

  color: #888888;

}

#custom-html-sy .status-paid {

  color: #498302;

}

#custom-html-sy .status-unpaid {

  color: #ed3e48;

}

#custom-html-sy .status-collections {

  color: #9a141e;

}

#custom-html-sy .status-refunded {

  color: #319fc3;

}

#custom-html-sy .status-delivered {

  color: #224488;

}

#custom-html-sy .status-accepted {

  color: #498302;

}

#custom-html-sy .status-dead,

#custom-html-sy .status-lost {

  color: #000000;

}

#custom-html-sy .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sy .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sy .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sy .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sy .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sy .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sy .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-sy .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-sy .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sy .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sy .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sy .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sy .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sy .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sy .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sy .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sy .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sy .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sy .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sy .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sy .ticket-reply .rating,

#custom-html-sy .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sy .ticket-reply .rating span.star,

#custom-html-sy .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sy .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sy .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sy .ticket-reply .rating span.star:before,

#custom-html-sy .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sy .ticket-reply .rating span.star:hover:before,

#custom-html-sy .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sy .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sy .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sy .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sy .ticket-reply .clear {

  clear: both;

}

#custom-html-sy .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sy .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sy .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sy .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sy .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sy .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sy .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sy .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sy .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sy .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sy .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sy .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sy .popover-user-notifications ul li i.far,

#custom-html-sy .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sy .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sy .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sy .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sy .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sy .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sy .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sy .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sy .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sy .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sy div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sy div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sy div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sy div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sy div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sy div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sy div.credit-card div.end {

  clear: both;

}

#custom-html-sy .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sy .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sy .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sy .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sy .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sy .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sy div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sy div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sy div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sy div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sy div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sy div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sy .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-sy div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sy div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sy div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sy #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sy .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sy .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sy .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sy .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sy .kb-category a small {

  color: #888888;

}

#custom-html-sy .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sy .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sy .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sy .kbarticles a.admin-inline-edit,

#custom-html-sy .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sy h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sy .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sy .kb-article-title h2 {

  margin: 0;

}

#custom-html-sy .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sy .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sy .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sy .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sy .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sy .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sy .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sy .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sy #stepResults {

  font-size: 20px;

}

#custom-html-sy #stepResults .label {

  font-size: 20px;

}

#custom-html-sy h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sy h3.with-badge i,

#custom-html-sy h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sy h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-sy .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sy .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sy a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sy a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sy .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sy .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sy .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sy .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sy .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sy .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sy .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sy .login-popover {

  font-size: 12px;

}

#custom-html-sy .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sy .login-popover hr {

  margin: 5px 0;

}

#custom-html-sy tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sy tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sy .error-container {

  text-align: center;

}

#custom-html-sy .error-container h1 {

  margin-top: 40px;

}

#custom-html-sy .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sy .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sy .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sy .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sy .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sy #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sy #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sy #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sy .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-sy #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sy #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sy #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sy #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sy .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sy .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sy .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sy .email-verification .btn:active,

#custom-html-sy .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sy .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sy .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sy .email-verification .far,

#custom-html-sy .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-sy .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sy .email-verification.success .far,

#custom-html-sy .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sy .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sy .email-verification.failed .far,

#custom-html-sy .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sy .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-sy .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sy .md-editor > .md-preview,

#custom-html-sy .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sy div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sy .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sy .small-font {

  font-size: 0.9em;

}

#custom-html-sy .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sy .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sy .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sy .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sy .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sy .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sy .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sy .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sy .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sy .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sy .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sy .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sy .panel-heading i.fab,

#custom-html-sy .panel-heading i.fal,

#custom-html-sy .panel-heading i.far,

#custom-html-sy .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sy .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sy .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sy .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sy .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sy .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sy .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sy .panel-sidebar .list-group-item.disabled,

#custom-html-sy .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sy .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sy .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sy .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sy .panel-sidebar a.list-group-item.active,

#custom-html-sy .panel-sidebar a.list-group-item.active:focus,

#custom-html-sy .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sy .panel-sidebar a.list-group-item.active i,

#custom-html-sy .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sy .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sy .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sy .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sy .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sy .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sy .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sy .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sy .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sy .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sy .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sy .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sy .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sy .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sy .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sy .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-sy .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sy .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sy .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sy .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sy .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sy .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sy .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sy .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sy .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sy .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sy .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sy .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sy .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-sy .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sy .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sy .promo-banner p {

  margin: 5px 0;

}

#custom-html-sy .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sy .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-sy .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sy .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sy .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sy .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sy .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sy .promo-banner-slim {

  padding: 10px;

}

#custom-html-sy .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sy .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sy .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sy .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sy .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sy .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sy .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sy .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sy .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sy .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sy .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sy .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sy .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sy .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sy .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sy .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sy .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sy .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sy .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sy .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sy .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sy .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sy .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sy .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sy .panel-mc-sso .btn,

#custom-html-sy .panel-mc-sso .form-control,

#custom-html-sy .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sy .panel-mc-sso small {

  display: block;

}

#custom-html-sy .social-signin-btns {

  text-align: center;

}

#custom-html-sy .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sy .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sy .btn-social i.far,

#custom-html-sy .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-facebook.active,

#custom-html-sy .btn-facebook:active,

#custom-html-sy .btn-facebook:focus,

#custom-html-sy .btn-facebook:hover,

#custom-html-sy .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-facebook.active,

#custom-html-sy .btn-facebook:active,

#custom-html-sy .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sy .btn-facebook.disabled,

#custom-html-sy .btn-facebook.disabled.active,

#custom-html-sy .btn-facebook.disabled:active,

#custom-html-sy .btn-facebook.disabled:focus,

#custom-html-sy .btn-facebook.disabled:hover,

#custom-html-sy .btn-facebook[disabled],

#custom-html-sy .btn-facebook[disabled].active,

#custom-html-sy .btn-facebook[disabled]:active,

#custom-html-sy .btn-facebook[disabled]:focus,

#custom-html-sy .btn-facebook[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-facebook,

#custom-html-sy fieldset[disabled] .btn-facebook.active,

#custom-html-sy fieldset[disabled] .btn-facebook:active,

#custom-html-sy fieldset[disabled] .btn-facebook:focus,

#custom-html-sy fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-google.active,

#custom-html-sy .btn-google:active,

#custom-html-sy .btn-google:focus,

#custom-html-sy .btn-google:hover,

#custom-html-sy .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-google.active,

#custom-html-sy .btn-google:active,

#custom-html-sy .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sy .btn-google-plus.disabled.active,

#custom-html-sy .btn-google-plus.disabled:active,

#custom-html-sy .btn-google-plus.disabled:focus,

#custom-html-sy .btn-google-plus[disabled].active,

#custom-html-sy .btn-google-plus[disabled]:active,

#custom-html-sy .btn-google-plus[disabled]:focus,

#custom-html-sy .btn-google-plus[disabled]:hover,

#custom-html-sy .btn-google.disabled,

#custom-html-sy .btn-google.disabled:hover,

#custom-html-sy .btn-google[disabled],

#custom-html-sy fieldset[disabled] .btn-google,

#custom-html-sy fieldset[disabled] .btn-google-plus.active,

#custom-html-sy fieldset[disabled] .btn-google-plus:active,

#custom-html-sy fieldset[disabled] .btn-google-plus:focus,

#custom-html-sy fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-twitter.active,

#custom-html-sy .btn-twitter:active,

#custom-html-sy .btn-twitter:focus,

#custom-html-sy .btn-twitter:hover,

#custom-html-sy .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-twitter.active,

#custom-html-sy .btn-twitter:active,

#custom-html-sy .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sy .btn-twitter.disabled,

#custom-html-sy .btn-twitter.disabled.active,

#custom-html-sy .btn-twitter.disabled:active,

#custom-html-sy .btn-twitter.disabled:focus,

#custom-html-sy .btn-twitter.disabled:hover,

#custom-html-sy .btn-twitter[disabled],

#custom-html-sy .btn-twitter[disabled].active,

#custom-html-sy .btn-twitter[disabled]:active,

#custom-html-sy .btn-twitter[disabled]:focus,

#custom-html-sy .btn-twitter[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-twitter,

#custom-html-sy fieldset[disabled] .btn-twitter.active,

#custom-html-sy fieldset[disabled] .btn-twitter:active,

#custom-html-sy fieldset[disabled] .btn-twitter:focus,

#custom-html-sy fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .providerPreLinking {

  min-height: 52px;

}

#custom-html-sy .providerLinkingFeedback {

  display: none;

}

#custom-html-sy #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sy #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sy #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sy #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sy .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sy #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sy #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sy #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sy #registration .field,

#custom-html-sy #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sy #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sy #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sy #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sy #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sy #registration textarea.field {

  height: auto;

}

#custom-html-sy #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sy #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sy #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sy #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sy #registration .field[disabled],

#custom-html-sy #registration .field[readonly],

#custom-html-sy #registration .form-control[disabled],

#custom-html-sy #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sy #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-sy .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sy .upgrade .product-to-be-upgraded h4,

#custom-html-sy .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sy .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sy .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sy .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sy .upgrade .products .product .current,

#custom-html-sy .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sy .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sy .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sy .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-sy .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sy .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sy .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sy .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sy .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sy .upgrade .products .far,

#custom-html-sy .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sy .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sy .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sy .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sy .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sy .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sy .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .bootstrap-switch input[type=checkbox],

#custom-html-sy .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sy .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sy .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sy .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sy .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sy .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sy .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sy .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sy .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sy .md-editor .md-footer,

#custom-html-sy .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sy .md-editor > .md-header {

  margin: 0;

}

#custom-html-sy .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sy .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sy .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sy .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sy .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sy .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sy .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sy .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-input,

#custom-html-sy .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sy .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sy .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sy .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sy .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sy .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sy .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sy .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sy .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sy .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sy table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sy table.dataTable td,

#custom-html-sy table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sy table.dataTable td.dataTables_empty,

#custom-html-sy table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sy table.dataTable.nowrap td,

#custom-html-sy table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sy table.dataTable thead > tr > td.sorting,

#custom-html-sy table.dataTable thead > tr > td.sorting_asc,

#custom-html-sy table.dataTable thead > tr > td.sorting_desc,

#custom-html-sy table.dataTable thead > tr > th.sorting,

#custom-html-sy table.dataTable thead > tr > th.sorting_asc,

#custom-html-sy table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sy table.dataTable thead > tr > td:active,

#custom-html-sy table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sy table.dataTable thead .sorting,

#custom-html-sy table.dataTable thead .sorting_asc,

#custom-html-sy table.dataTable thead .sorting_asc_disabled,

#custom-html-sy table.dataTable thead .sorting_desc,

#custom-html-sy table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sy table.dataTable thead .sorting:after,

#custom-html-sy table.dataTable thead .sorting_asc:after,

#custom-html-sy table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sy table.dataTable thead .sorting_desc:after,

#custom-html-sy table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sy table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sy table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sy table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sy table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sy table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sy div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sy div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sy div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sy div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sy div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sy div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sy div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sy div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-sy table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sy table.dataTable.table-condensed .sorting:after,

#custom-html-sy table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sy table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sy table.table-bordered.dataTable td,

#custom-html-sy table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sy table.table-bordered.dataTable td:last-child,

#custom-html-sy table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sy table.table-bordered.dataTable tbody td,

#custom-html-sy table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sy div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sy div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sy div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-sy div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sy table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sy table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sy table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sy table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sy table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sy table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sy table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sy table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sy table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sy table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sy table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sy table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sy table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sy table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sy table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sy div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sy div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sy div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sy div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sy div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sy div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-sy div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sy .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sy .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sy .multiselect-container > li {

  padding: 0;

}

#custom-html-sy .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sy .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sy .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sy .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sy .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sy .multiselect-container > li > a > label.checkbox,

#custom-html-sy .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sy .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sy .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sy .form-inline .multiselect-container label.checkbox,

#custom-html-sy .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sy .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sy .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-sy html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-sy body {

  margin: 0;

}

#custom-html-sy article,

#custom-html-sy aside,

#custom-html-sy details,

#custom-html-sy figcaption,

#custom-html-sy figure,

#custom-html-sy footer,

#custom-html-sy header,

#custom-html-sy hgroup,

#custom-html-sy main,

#custom-html-sy menu,

#custom-html-sy nav,

#custom-html-sy section,

#custom-html-sy summary {

  display: block;

}

#custom-html-sy audio,

#custom-html-sy canvas,

#custom-html-sy progress,

#custom-html-sy video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sy audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sy [hidden],

#custom-html-sy template {

  display: none;

}

#custom-html-sy a {

  background-color: transparent;

}

#custom-html-sy a:active,

#custom-html-sy a:hover {

  outline: 0;

}

#custom-html-sy abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sy b,

#custom-html-sy strong {

  font-weight: 700;

}

#custom-html-sy dfn {

  font-style: italic;

}

#custom-html-sy h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sy mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sy small {

  font-size: 80%;

}

#custom-html-sy sub,

#custom-html-sy sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sy sup {

  top: -0.5em;

}

#custom-html-sy sub {

  bottom: -0.25em;

}

#custom-html-sy img {

  border: 0;

}

#custom-html-sy svg:not(:root) {

  overflow: hidden;

}

#custom-html-sy figure {

  margin: 1em 40px;

}

#custom-html-sy hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sy pre {

  overflow: auto;

}

#custom-html-sy code,

#custom-html-sy kbd,

#custom-html-sy pre,

#custom-html-sy samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-sy button,

#custom-html-sy input,

#custom-html-sy optgroup,

#custom-html-sy select,

#custom-html-sy textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sy button {

  overflow: visible;

}

#custom-html-sy button,

#custom-html-sy select {

  text-transform: none;

}

#custom-html-sy button,

#custom-html-sy html input[type=button],

#custom-html-sy input[type=reset],

#custom-html-sy input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sy button[disabled],

#custom-html-sy html input[disabled] {

  cursor: default;

}

#custom-html-sy button::-moz-focus-inner,

#custom-html-sy input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sy input {

  line-height: normal;

}

#custom-html-sy input[type=checkbox],

#custom-html-sy input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-sy input[type=number]::-webkit-inner-spin-button,

#custom-html-sy input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sy input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-sy input[type=search]::-webkit-search-cancel-button,

#custom-html-sy input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sy fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-sy legend {

  padding: 0;

  border: 0;

}

#custom-html-sy textarea {

  overflow: auto;

}

#custom-html-sy optgroup {

  font-weight: 700;

}

#custom-html-sy table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-sy td,

#custom-html-sy th {

  padding: 0;

}

@media print {

  #custom-html-sy *,

  #custom-html-sy :after,

  #custom-html-sy :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sy a,

  #custom-html-sy a:visited {

    text-decoration: underline;

  }

  #custom-html-sy a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-sy abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sy a[href^="#"]:after,

  #custom-html-sy a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sy blockquote,

  #custom-html-sy pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sy thead {

    display: table-header-group;

  }

  #custom-html-sy img,

  #custom-html-sy tr {

    page-break-inside: avoid;

  }

  #custom-html-sy img {

    max-width: 100% !important;

  }

  #custom-html-sy h2,

  #custom-html-sy h3,

  #custom-html-sy p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sy h2,

  #custom-html-sy h3 {

    page-break-after: avoid;

  }

  #custom-html-sy .navbar {

    display: none;

  }

  #custom-html-sy .btn > .caret,

  #custom-html-sy .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sy .label {

    border: 1px solid #000000;

  }

  #custom-html-sy .table {

    border-collapse: collapse !important;

  }

  #custom-html-sy .table td,

  #custom-html-sy .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sy .table-bordered td,

  #custom-html-sy .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sy .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sy .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sy .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sy .glyphicon-eur:before,

#custom-html-sy .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sy .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sy .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sy .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sy .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sy .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sy .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sy .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sy .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sy .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sy .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sy .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sy .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sy .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sy .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sy .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sy .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sy .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sy .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sy .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sy .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sy .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sy .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sy .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sy .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sy .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sy .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sy .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sy .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sy .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sy .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sy .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sy .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sy .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sy .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sy .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sy .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sy .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sy .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sy .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sy .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sy .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sy .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sy .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sy .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sy .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sy .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sy .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sy .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sy .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sy .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sy .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sy .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sy .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sy .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sy .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sy .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sy .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sy .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sy .glyphicon-list:before {

  content: "\e056";

}

#custom-html-sy .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sy .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sy .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sy .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sy .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sy .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sy .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sy .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sy .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sy .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sy .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sy .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sy .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sy .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sy .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sy .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sy .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sy .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sy .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sy .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sy .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sy .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sy .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sy .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sy .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-sy .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sy .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sy .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sy .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sy .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sy .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sy .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sy .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sy .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sy .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sy .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sy .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sy .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sy .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sy .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sy .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sy .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sy .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sy .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sy .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sy .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sy .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sy .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sy .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sy .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sy .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sy .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sy .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sy .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sy .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sy .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sy .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sy .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sy .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sy .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sy .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sy .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sy .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sy .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sy .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sy .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sy .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sy .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sy .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sy .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sy .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sy .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sy .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sy .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sy .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sy .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sy .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sy .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sy .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sy .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sy .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sy .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sy .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sy .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sy .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sy .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sy .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sy .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sy .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sy .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sy .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sy .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sy .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sy .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sy .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sy .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sy .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sy .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sy .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-sy .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sy .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sy .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sy .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sy .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sy .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sy .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sy .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sy .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sy .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sy .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sy .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sy .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sy .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sy .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sy .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sy .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sy .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sy .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sy .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sy .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sy .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sy .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sy .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sy .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sy .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sy .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sy .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sy .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sy .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sy .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sy .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sy .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sy .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sy .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sy .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sy .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sy .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sy .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sy .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sy .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sy .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sy .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sy .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sy .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sy .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sy .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sy .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sy .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sy .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sy .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sy .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sy .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sy .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sy .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sy .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sy .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sy .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sy .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sy .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sy .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sy .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sy .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sy .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sy .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sy .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sy .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sy .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sy .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sy .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sy .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sy .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sy .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sy .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sy .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sy .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sy .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sy .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sy .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sy .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sy .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sy .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sy .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sy .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sy .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sy .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-sy .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sy .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sy .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sy .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sy .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sy .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sy .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sy .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sy .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sy .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sy .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sy .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sy .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sy .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sy .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sy * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sy :after,

#custom-html-sy :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sy html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sy body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-sy button,

#custom-html-sy input,

#custom-html-sy select,

#custom-html-sy textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sy a {

  color: #000;

  text-decoration: none;

}

#custom-html-sy a:focus,

#custom-html-sy a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sy a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sy figure {

  margin: 0;

}

#custom-html-sy img {

  vertical-align: middle;

}

#custom-html-sy .carousel-inner > .item > a > img,

#custom-html-sy .carousel-inner > .item > img,

#custom-html-sy .img-responsive,

#custom-html-sy .thumbnail a > img,

#custom-html-sy .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sy .img-rounded {

  border-radius: 6px;

}

#custom-html-sy .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sy .img-circle {

  border-radius: 50%;

}

#custom-html-sy hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sy .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sy .sr-only-focusable:active,

#custom-html-sy .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sy [role=button] {

  cursor: pointer;

}

#custom-html-sy .h1,

#custom-html-sy .h2,

#custom-html-sy .h3,

#custom-html-sy .h4,

#custom-html-sy .h5,

#custom-html-sy .h6,

#custom-html-sy h1,

#custom-html-sy h2,

#custom-html-sy h3,

#custom-html-sy h4,

#custom-html-sy h5,

#custom-html-sy h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sy .h1 .small,

#custom-html-sy .h1 small,

#custom-html-sy .h2 .small,

#custom-html-sy .h2 small,

#custom-html-sy .h3 .small,

#custom-html-sy .h3 small,

#custom-html-sy .h4 .small,

#custom-html-sy .h4 small,

#custom-html-sy .h5 .small,

#custom-html-sy .h5 small,

#custom-html-sy .h6 .small,

#custom-html-sy .h6 small,

#custom-html-sy h1 .small,

#custom-html-sy h1 small,

#custom-html-sy h2 .small,

#custom-html-sy h2 small,

#custom-html-sy h3 .small,

#custom-html-sy h3 small,

#custom-html-sy h4 .small,

#custom-html-sy h4 small,

#custom-html-sy h5 .small,

#custom-html-sy h5 small,

#custom-html-sy h6 .small,

#custom-html-sy h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sy .h1,

#custom-html-sy .h2,

#custom-html-sy .h3,

#custom-html-sy h1,

#custom-html-sy h2,

#custom-html-sy h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sy .h1 .small,

#custom-html-sy .h1 small,

#custom-html-sy .h2 .small,

#custom-html-sy .h2 small,

#custom-html-sy .h3 .small,

#custom-html-sy .h3 small,

#custom-html-sy h1 .small,

#custom-html-sy h1 small,

#custom-html-sy h2 .small,

#custom-html-sy h2 small,

#custom-html-sy h3 .small,

#custom-html-sy h3 small {

  font-size: 65%;

}

#custom-html-sy .h4,

#custom-html-sy .h5,

#custom-html-sy .h6,

#custom-html-sy h4,

#custom-html-sy h5,

#custom-html-sy h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sy .h4 .small,

#custom-html-sy .h4 small,

#custom-html-sy .h5 .small,

#custom-html-sy .h5 small,

#custom-html-sy .h6 .small,

#custom-html-sy .h6 small,

#custom-html-sy h4 .small,

#custom-html-sy h4 small,

#custom-html-sy h5 .small,

#custom-html-sy h5 small,

#custom-html-sy h6 .small,

#custom-html-sy h6 small {

  font-size: 75%;

}

#custom-html-sy .h1,

#custom-html-sy h1 {

  font-size: 36px;

}

#custom-html-sy .h2,

#custom-html-sy h2 {

  font-size: 30px;

}

#custom-html-sy .h3,

#custom-html-sy h3 {

  font-size: 24px;

}

#custom-html-sy .h4,

#custom-html-sy h4 {

  font-size: 18px;

}

#custom-html-sy .h5,

#custom-html-sy h5 {

  font-size: 14px;

}

#custom-html-sy .h6,

#custom-html-sy h6 {

  font-size: 12px;

}

#custom-html-sy p {

  margin: 0 0 10px;

}

#custom-html-sy .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sy .lead {

    font-size: 21px;

  }

}

#custom-html-sy .small,

#custom-html-sy small {

  font-size: 85%;

}

#custom-html-sy .mark,

#custom-html-sy mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sy .text-left {

  text-align: left;

}

#custom-html-sy .text-right {

  text-align: right;

}

#custom-html-sy .text-center {

  text-align: center;

}

#custom-html-sy .text-justify {

  text-align: justify;

}

#custom-html-sy .text-nowrap {

  white-space: nowrap;

}

#custom-html-sy .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sy .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sy .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sy .text-muted {

  color: #777777;

}

#custom-html-sy .text-primary {

  color: #000000;

}

#custom-html-sy a.text-primary:focus,

#custom-html-sy a.text-primary:hover {

  color: #000000;

}

#custom-html-sy .text-success {

  color: #3c763d;

}

#custom-html-sy a.text-success:focus,

#custom-html-sy a.text-success:hover {

  color: #2b542c;

}

#custom-html-sy .text-info {

  color: #31708f;

}

#custom-html-sy a.text-info:focus,

#custom-html-sy a.text-info:hover {

  color: #000000;

}

#custom-html-sy .text-warning {

  color: #8a6d3b;

}

#custom-html-sy a.text-warning:focus,

#custom-html-sy a.text-warning:hover {

  color: #66512c;

}

#custom-html-sy .text-danger {

  color: #a94442;

}

#custom-html-sy a.text-danger:focus,

#custom-html-sy a.text-danger:hover {

  color: #843534;

}

#custom-html-sy .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-sy a.bg-primary:focus,

#custom-html-sy a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sy .bg-success {

  background-color: #dff0d8;

}

#custom-html-sy a.bg-success:focus,

#custom-html-sy a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sy .bg-info {

  background-color: #d9edf7;

}

#custom-html-sy a.bg-info:focus,

#custom-html-sy a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sy .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sy a.bg-warning:focus,

#custom-html-sy a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sy .bg-danger {

  background-color: #f2dede;

}

#custom-html-sy a.bg-danger:focus,

#custom-html-sy a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sy .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sy ol,

#custom-html-sy ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sy ol ol,

#custom-html-sy ol ul,

#custom-html-sy ul ol,

#custom-html-sy ul ul {

  margin-bottom: 0;

}

#custom-html-sy .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sy .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sy .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sy dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sy dd,

#custom-html-sy dt {

  line-height: 1.42857143;

}

#custom-html-sy dt {

  font-weight: 700;

}

#custom-html-sy dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sy .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sy .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-sy abbr[data-original-title],

#custom-html-sy abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sy .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sy blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sy blockquote ol:last-child,

#custom-html-sy blockquote p:last-child,

#custom-html-sy blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sy blockquote .small,

#custom-html-sy blockquote footer,

#custom-html-sy blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sy blockquote .small:before,

#custom-html-sy blockquote footer:before,

#custom-html-sy blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sy .blockquote-reverse,

#custom-html-sy blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sy .blockquote-reverse .small:before,

#custom-html-sy .blockquote-reverse footer:before,

#custom-html-sy .blockquote-reverse small:before,

#custom-html-sy blockquote.pull-right .small:before,

#custom-html-sy blockquote.pull-right footer:before,

#custom-html-sy blockquote.pull-right small:before {

  content: '';

}

#custom-html-sy .blockquote-reverse .small:after,

#custom-html-sy .blockquote-reverse footer:after,

#custom-html-sy .blockquote-reverse small:after,

#custom-html-sy blockquote.pull-right .small:after,

#custom-html-sy blockquote.pull-right footer:after,

#custom-html-sy blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sy address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sy code,

#custom-html-sy kbd,

#custom-html-sy pre,

#custom-html-sy samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-sy code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sy kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sy kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sy pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sy pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sy .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sy .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-sy .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-sy .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sy .container {

    width: 1170px;

  }

}

#custom-html-sy .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sy .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sy .col-lg-1,

#custom-html-sy .col-lg-10,

#custom-html-sy .col-lg-11,

#custom-html-sy .col-lg-12,

#custom-html-sy .col-lg-2,

#custom-html-sy .col-lg-3,

#custom-html-sy .col-lg-4,

#custom-html-sy .col-lg-5,

#custom-html-sy .col-lg-6,

#custom-html-sy .col-lg-7,

#custom-html-sy .col-lg-8,

#custom-html-sy .col-lg-9,

#custom-html-sy .col-md-1,

#custom-html-sy .col-md-10,

#custom-html-sy .col-md-11,

#custom-html-sy .col-md-12,

#custom-html-sy .col-md-2,

#custom-html-sy .col-md-3,

#custom-html-sy .col-md-4,

#custom-html-sy .col-md-5,

#custom-html-sy .col-md-6,

#custom-html-sy .col-md-7,

#custom-html-sy .col-md-8,

#custom-html-sy .col-md-9,

#custom-html-sy .col-sm-1,

#custom-html-sy .col-sm-10,

#custom-html-sy .col-sm-11,

#custom-html-sy .col-sm-12,

#custom-html-sy .col-sm-2,

#custom-html-sy .col-sm-3,

#custom-html-sy .col-sm-4,

#custom-html-sy .col-sm-5,

#custom-html-sy .col-sm-6,

#custom-html-sy .col-sm-7,

#custom-html-sy .col-sm-8,

#custom-html-sy .col-sm-9,

#custom-html-sy .col-xs-1,

#custom-html-sy .col-xs-10,

#custom-html-sy .col-xs-11,

#custom-html-sy .col-xs-12,

#custom-html-sy .col-xs-2,

#custom-html-sy .col-xs-3,

#custom-html-sy .col-xs-4,

#custom-html-sy .col-xs-5,

#custom-html-sy .col-xs-6,

#custom-html-sy .col-xs-7,

#custom-html-sy .col-xs-8,

#custom-html-sy .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sy .col-xs-1,

#custom-html-sy .col-xs-10,

#custom-html-sy .col-xs-11,

#custom-html-sy .col-xs-12,

#custom-html-sy .col-xs-2,

#custom-html-sy .col-xs-3,

#custom-html-sy .col-xs-4,

#custom-html-sy .col-xs-5,

#custom-html-sy .col-xs-6,

#custom-html-sy .col-xs-7,

#custom-html-sy .col-xs-8,

#custom-html-sy .col-xs-9 {

  float: left;

}

#custom-html-sy .col-xs-12 {

  width: 100%;

}

#custom-html-sy .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sy .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sy .col-xs-9 {

  width: 75%;

}

#custom-html-sy .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sy .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sy .col-xs-6 {

  width: 50%;

}

#custom-html-sy .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sy .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sy .col-xs-3 {

  width: 25%;

}

#custom-html-sy .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sy .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sy .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sy .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sy .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sy .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sy .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sy .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sy .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sy .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sy .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sy .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sy .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sy .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sy .col-xs-pull-0 {

  right: auto;

}

#custom-html-sy .col-xs-push-12 {

  left: 100%;

}

#custom-html-sy .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sy .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sy .col-xs-push-9 {

  left: 75%;

}

#custom-html-sy .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sy .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sy .col-xs-push-6 {

  left: 50%;

}

#custom-html-sy .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sy .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sy .col-xs-push-3 {

  left: 25%;

}

#custom-html-sy .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sy .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sy .col-xs-push-0 {

  left: auto;

}

#custom-html-sy .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sy .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sy .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sy .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sy .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sy .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sy .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sy .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sy .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sy .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sy .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sy .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-sy .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sy .col-sm-1,

  #custom-html-sy .col-sm-10,

  #custom-html-sy .col-sm-11,

  #custom-html-sy .col-sm-12,

  #custom-html-sy .col-sm-2,

  #custom-html-sy .col-sm-3,

  #custom-html-sy .col-sm-4,

  #custom-html-sy .col-sm-5,

  #custom-html-sy .col-sm-6,

  #custom-html-sy .col-sm-7,

  #custom-html-sy .col-sm-8,

  #custom-html-sy .col-sm-9 {

    float: left;

  }

  #custom-html-sy .col-sm-12 {

    width: 100%;

  }

  #custom-html-sy .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sy .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sy .col-sm-9 {

    width: 75%;

  }

  #custom-html-sy .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sy .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sy .col-sm-6 {

    width: 50%;

  }

  #custom-html-sy .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sy .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sy .col-sm-3 {

    width: 25%;

  }

  #custom-html-sy .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sy .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sy .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sy .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sy .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sy .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sy .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sy .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sy .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sy .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sy .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sy .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sy .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sy .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sy .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sy .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sy .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sy .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sy .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sy .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sy .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sy .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sy .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sy .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sy .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sy .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sy .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sy .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sy .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sy .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sy .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sy .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sy .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sy .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sy .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sy .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sy .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sy .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sy .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sy .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sy .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-sy .col-md-1,

  #custom-html-sy .col-md-10,

  #custom-html-sy .col-md-11,

  #custom-html-sy .col-md-12,

  #custom-html-sy .col-md-2,

  #custom-html-sy .col-md-3,

  #custom-html-sy .col-md-4,

  #custom-html-sy .col-md-5,

  #custom-html-sy .col-md-6,

  #custom-html-sy .col-md-7,

  #custom-html-sy .col-md-8,

  #custom-html-sy .col-md-9 {

    float: left;

  }

  #custom-html-sy .col-md-12 {

    width: 100%;

  }

  #custom-html-sy .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sy .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sy .col-md-9 {

    width: 75%;

  }

  #custom-html-sy .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sy .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sy .col-md-6 {

    width: 50%;

  }

  #custom-html-sy .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sy .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sy .col-md-3 {

    width: 25%;

  }

  #custom-html-sy .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sy .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sy .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sy .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sy .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sy .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sy .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sy .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sy .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sy .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sy .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sy .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sy .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sy .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sy .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sy .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sy .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sy .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sy .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sy .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sy .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sy .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sy .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sy .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sy .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sy .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sy .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sy .col-md-push-0 {

    left: auto;

  }

  #custom-html-sy .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sy .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sy .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sy .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sy .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sy .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sy .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sy .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sy .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sy .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sy .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sy .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sy .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-sy .col-lg-1,

  #custom-html-sy .col-lg-10,

  #custom-html-sy .col-lg-11,

  #custom-html-sy .col-lg-12,

  #custom-html-sy .col-lg-2,

  #custom-html-sy .col-lg-3,

  #custom-html-sy .col-lg-4,

  #custom-html-sy .col-lg-5,

  #custom-html-sy .col-lg-6,

  #custom-html-sy .col-lg-7,

  #custom-html-sy .col-lg-8,

  #custom-html-sy .col-lg-9 {

    float: left;

  }

  #custom-html-sy .col-lg-12 {

    width: 100%;

  }

  #custom-html-sy .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sy .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sy .col-lg-9 {

    width: 75%;

  }

  #custom-html-sy .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sy .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sy .col-lg-6 {

    width: 50%;

  }

  #custom-html-sy .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sy .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sy .col-lg-3 {

    width: 25%;

  }

  #custom-html-sy .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sy .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sy .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sy .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sy .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sy .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sy .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sy .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sy .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sy .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sy .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sy .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sy .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sy .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sy .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sy .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sy .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sy .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sy .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sy .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sy .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sy .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sy .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sy .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sy .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sy .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sy .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sy .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sy .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sy .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sy .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sy .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sy .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sy .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sy .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sy .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sy .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sy .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sy .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sy .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sy .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-sy table {

  background-color: transparent;

}

#custom-html-sy caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sy th {

  text-align: left;

}

#custom-html-sy .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sy .table > tbody > tr > td,

#custom-html-sy .table > tbody > tr > th,

#custom-html-sy .table > tfoot > tr > td,

#custom-html-sy .table > tfoot > tr > th,

#custom-html-sy .table > thead > tr > td,

#custom-html-sy .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sy .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sy .table > caption + thead > tr:first-child > td,

#custom-html-sy .table > caption + thead > tr:first-child > th,

#custom-html-sy .table > colgroup + thead > tr:first-child > td,

#custom-html-sy .table > colgroup + thead > tr:first-child > th,

#custom-html-sy .table > thead:first-child > tr:first-child > td,

#custom-html-sy .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sy .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sy .table .table {

  background-color: #ffffff;

}

#custom-html-sy .table-condensed > tbody > tr > td,

#custom-html-sy .table-condensed > tbody > tr > th,

#custom-html-sy .table-condensed > tfoot > tr > td,

#custom-html-sy .table-condensed > tfoot > tr > th,

#custom-html-sy .table-condensed > thead > tr > td,

#custom-html-sy .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sy .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sy .table-bordered > tbody > tr > td,

#custom-html-sy .table-bordered > tbody > tr > th,

#custom-html-sy .table-bordered > tfoot > tr > td,

#custom-html-sy .table-bordered > tfoot > tr > th,

#custom-html-sy .table-bordered > thead > tr > td,

#custom-html-sy .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sy .table-bordered > thead > tr > td,

#custom-html-sy .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sy .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sy .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sy table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sy table td[class*=col-],

#custom-html-sy table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-sy .table > tbody > tr.active > td,

#custom-html-sy .table > tbody > tr.active > th,

#custom-html-sy .table > tbody > tr > td.active,

#custom-html-sy .table > tbody > tr > th.active,

#custom-html-sy .table > tfoot > tr.active > td,

#custom-html-sy .table > tfoot > tr.active > th,

#custom-html-sy .table > tfoot > tr > td.active,

#custom-html-sy .table > tfoot > tr > th.active,

#custom-html-sy .table > thead > tr.active > td,

#custom-html-sy .table > thead > tr.active > th,

#custom-html-sy .table > thead > tr > td.active,

#custom-html-sy .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sy .table-hover > tbody > tr.active:hover > td,

#custom-html-sy .table-hover > tbody > tr.active:hover > th,

#custom-html-sy .table-hover > tbody > tr:hover > .active,

#custom-html-sy .table-hover > tbody > tr > td.active:hover,

#custom-html-sy .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sy .table > tbody > tr.success > td,

#custom-html-sy .table > tbody > tr.success > th,

#custom-html-sy .table > tbody > tr > td.success,

#custom-html-sy .table > tbody > tr > th.success,

#custom-html-sy .table > tfoot > tr.success > td,

#custom-html-sy .table > tfoot > tr.success > th,

#custom-html-sy .table > tfoot > tr > td.success,

#custom-html-sy .table > tfoot > tr > th.success,

#custom-html-sy .table > thead > tr.success > td,

#custom-html-sy .table > thead > tr.success > th,

#custom-html-sy .table > thead > tr > td.success,

#custom-html-sy .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sy .table-hover > tbody > tr.success:hover > td,

#custom-html-sy .table-hover > tbody > tr.success:hover > th,

#custom-html-sy .table-hover > tbody > tr:hover > .success,

#custom-html-sy .table-hover > tbody > tr > td.success:hover,

#custom-html-sy .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sy .table > tbody > tr.info > td,

#custom-html-sy .table > tbody > tr.info > th,

#custom-html-sy .table > tbody > tr > td.info,

#custom-html-sy .table > tbody > tr > th.info,

#custom-html-sy .table > tfoot > tr.info > td,

#custom-html-sy .table > tfoot > tr.info > th,

#custom-html-sy .table > tfoot > tr > td.info,

#custom-html-sy .table > tfoot > tr > th.info,

#custom-html-sy .table > thead > tr.info > td,

#custom-html-sy .table > thead > tr.info > th,

#custom-html-sy .table > thead > tr > td.info,

#custom-html-sy .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sy .table-hover > tbody > tr.info:hover > td,

#custom-html-sy .table-hover > tbody > tr.info:hover > th,

#custom-html-sy .table-hover > tbody > tr:hover > .info,

#custom-html-sy .table-hover > tbody > tr > td.info:hover,

#custom-html-sy .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sy .table > tbody > tr.warning > td,

#custom-html-sy .table > tbody > tr.warning > th,

#custom-html-sy .table > tbody > tr > td.warning,

#custom-html-sy .table > tbody > tr > th.warning,

#custom-html-sy .table > tfoot > tr.warning > td,

#custom-html-sy .table > tfoot > tr.warning > th,

#custom-html-sy .table > tfoot > tr > td.warning,

#custom-html-sy .table > tfoot > tr > th.warning,

#custom-html-sy .table > thead > tr.warning > td,

#custom-html-sy .table > thead > tr.warning > th,

#custom-html-sy .table > thead > tr > td.warning,

#custom-html-sy .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sy .table-hover > tbody > tr.warning:hover > td,

#custom-html-sy .table-hover > tbody > tr.warning:hover > th,

#custom-html-sy .table-hover > tbody > tr:hover > .warning,

#custom-html-sy .table-hover > tbody > tr > td.warning:hover,

#custom-html-sy .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sy .table > tbody > tr.danger > td,

#custom-html-sy .table > tbody > tr.danger > th,

#custom-html-sy .table > tbody > tr > td.danger,

#custom-html-sy .table > tbody > tr > th.danger,

#custom-html-sy .table > tfoot > tr.danger > td,

#custom-html-sy .table > tfoot > tr.danger > th,

#custom-html-sy .table > tfoot > tr > td.danger,

#custom-html-sy .table > tfoot > tr > th.danger,

#custom-html-sy .table > thead > tr.danger > td,

#custom-html-sy .table > thead > tr.danger > th,

#custom-html-sy .table > thead > tr > td.danger,

#custom-html-sy .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sy .table-hover > tbody > tr.danger:hover > td,

#custom-html-sy .table-hover > tbody > tr.danger:hover > th,

#custom-html-sy .table-hover > tbody > tr:hover > .danger,

#custom-html-sy .table-hover > tbody > tr > td.danger:hover,

#custom-html-sy .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sy .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sy .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sy .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sy .table-responsive > .table > tbody > tr > td,

  #custom-html-sy .table-responsive > .table > tbody > tr > th,

  #custom-html-sy .table-responsive > .table > tfoot > tr > td,

  #custom-html-sy .table-responsive > .table > tfoot > tr > th,

  #custom-html-sy .table-responsive > .table > thead > tr > td,

  #custom-html-sy .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sy .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sy .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sy .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sy .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sy .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sy .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sy .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sy .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sy .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sy .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sy .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sy .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sy .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sy .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sy .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sy .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sy .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-sy fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-sy legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sy label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sy input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sy input[type=checkbox],

#custom-html-sy input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sy input[type=file] {

  display: block;

}

#custom-html-sy input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sy select[multiple],

#custom-html-sy select[size] {

  height: auto;

}

#custom-html-sy input[type=checkbox]:focus,

#custom-html-sy input[type=file]:focus,

#custom-html-sy input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sy output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sy .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sy .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sy .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sy .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sy .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sy .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sy .form-control[disabled],

#custom-html-sy .form-control[readonly],

#custom-html-sy fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sy .form-control[disabled],

#custom-html-sy fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sy textarea.form-control {

  height: auto;

}

#custom-html-sy input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sy input[type=date].form-control,

  #custom-html-sy input[type=datetime-local].form-control,

  #custom-html-sy input[type=month].form-control,

  #custom-html-sy input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sy .input-group-sm input[type=date],

  #custom-html-sy .input-group-sm input[type=datetime-local],

  #custom-html-sy .input-group-sm input[type=month],

  #custom-html-sy .input-group-sm input[type=time],

  #custom-html-sy input[type=date].input-sm,

  #custom-html-sy input[type=datetime-local].input-sm,

  #custom-html-sy input[type=month].input-sm,

  #custom-html-sy input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sy .input-group-lg input[type=date],

  #custom-html-sy .input-group-lg input[type=datetime-local],

  #custom-html-sy .input-group-lg input[type=month],

  #custom-html-sy .input-group-lg input[type=time],

  #custom-html-sy input[type=date].input-lg,

  #custom-html-sy input[type=datetime-local].input-lg,

  #custom-html-sy input[type=month].input-lg,

  #custom-html-sy input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sy .form-group {

  margin-bottom: 15px;

}

#custom-html-sy .checkbox,

#custom-html-sy .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sy .checkbox label,

#custom-html-sy .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sy .checkbox input[type=checkbox],

#custom-html-sy .checkbox-inline input[type=checkbox],

#custom-html-sy .radio input[type=radio],

#custom-html-sy .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sy .checkbox + .checkbox,

#custom-html-sy .radio + .radio {

  margin-top: -5px;

}

#custom-html-sy .checkbox-inline,

#custom-html-sy .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sy .checkbox-inline + .checkbox-inline,

#custom-html-sy .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sy fieldset[disabled] input[type=checkbox],

#custom-html-sy fieldset[disabled] input[type=radio],

#custom-html-sy input[type=checkbox].disabled,

#custom-html-sy input[type=checkbox][disabled],

#custom-html-sy input[type=radio].disabled,

#custom-html-sy input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sy .checkbox-inline.disabled,

#custom-html-sy .radio-inline.disabled,

#custom-html-sy fieldset[disabled] .checkbox-inline,

#custom-html-sy fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sy .checkbox.disabled label,

#custom-html-sy .radio.disabled label,

#custom-html-sy fieldset[disabled] .checkbox label,

#custom-html-sy fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sy .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sy .form-control-static.input-lg,

#custom-html-sy .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sy .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sy select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sy select[multiple].input-sm,

#custom-html-sy textarea.input-sm {

  height: auto;

}

#custom-html-sy .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sy .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sy .form-group-sm select[multiple].form-control,

#custom-html-sy .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sy .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sy .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sy select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sy select[multiple].input-lg,

#custom-html-sy textarea.input-lg {

  height: auto;

}

#custom-html-sy .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sy .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sy .form-group-lg select[multiple].form-control,

#custom-html-sy .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sy .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sy .has-feedback {

  position: relative;

}

#custom-html-sy .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sy .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sy .form-group-lg .form-control + .form-control-feedback,

#custom-html-sy .input-group-lg + .form-control-feedback,

#custom-html-sy .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sy .form-group-sm .form-control + .form-control-feedback,

#custom-html-sy .input-group-sm + .form-control-feedback,

#custom-html-sy .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sy .has-success .checkbox,

#custom-html-sy .has-success .checkbox-inline,

#custom-html-sy .has-success .control-label,

#custom-html-sy .has-success .help-block,

#custom-html-sy .has-success .radio,

#custom-html-sy .has-success .radio-inline,

#custom-html-sy .has-success.checkbox label,

#custom-html-sy .has-success.checkbox-inline label,

#custom-html-sy .has-success.radio label,

#custom-html-sy .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sy .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sy .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sy .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sy .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sy .has-warning .checkbox,

#custom-html-sy .has-warning .checkbox-inline,

#custom-html-sy .has-warning .control-label,

#custom-html-sy .has-warning .help-block,

#custom-html-sy .has-warning .radio,

#custom-html-sy .has-warning .radio-inline,

#custom-html-sy .has-warning.checkbox label,

#custom-html-sy .has-warning.checkbox-inline label,

#custom-html-sy .has-warning.radio label,

#custom-html-sy .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sy .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sy .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sy .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sy .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sy .has-error .checkbox,

#custom-html-sy .has-error .checkbox-inline,

#custom-html-sy .has-error .control-label,

#custom-html-sy .has-error .help-block,

#custom-html-sy .has-error .radio,

#custom-html-sy .has-error .radio-inline,

#custom-html-sy .has-error.checkbox label,

#custom-html-sy .has-error.checkbox-inline label,

#custom-html-sy .has-error.radio label,

#custom-html-sy .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sy .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sy .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sy .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sy .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sy .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-sy .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sy .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-sy .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sy .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sy .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sy .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sy .form-inline .input-group .form-control,

  #custom-html-sy .form-inline .input-group .input-group-addon,

  #custom-html-sy .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sy .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sy .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sy .form-inline .checkbox,

  #custom-html-sy .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sy .form-inline .checkbox label,

  #custom-html-sy .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sy .form-inline .checkbox input[type=checkbox],

  #custom-html-sy .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sy .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-sy .form-horizontal .checkbox,

#custom-html-sy .form-horizontal .checkbox-inline,

#custom-html-sy .form-horizontal .radio,

#custom-html-sy .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sy .form-horizontal .checkbox,

#custom-html-sy .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sy .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sy .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-sy .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-sy .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-sy .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-sy .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sy .btn.active.focus,

#custom-html-sy .btn.active:focus,

#custom-html-sy .btn.focus,

#custom-html-sy .btn:active.focus,

#custom-html-sy .btn:active:focus,

#custom-html-sy .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sy .btn.focus,

#custom-html-sy .btn:focus,

#custom-html-sy .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sy .btn.active,

#custom-html-sy .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sy .btn.disabled,

#custom-html-sy .btn[disabled],

#custom-html-sy fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sy a.btn.disabled,

#custom-html-sy fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sy .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sy .btn-default.focus,

#custom-html-sy .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sy .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sy .btn-default.active,

#custom-html-sy .btn-default:active,

#custom-html-sy .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sy .btn-default.active.focus,

#custom-html-sy .btn-default.active:focus,

#custom-html-sy .btn-default.active:hover,

#custom-html-sy .btn-default:active.focus,

#custom-html-sy .btn-default:active:focus,

#custom-html-sy .btn-default:active:hover,

#custom-html-sy .open > .dropdown-toggle.btn-default.focus,

#custom-html-sy .open > .dropdown-toggle.btn-default:focus,

#custom-html-sy .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sy .btn-default.active,

#custom-html-sy .btn-default:active,

#custom-html-sy .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-sy .btn-default.disabled.focus,

#custom-html-sy .btn-default.disabled:focus,

#custom-html-sy .btn-default.disabled:hover,

#custom-html-sy .btn-default[disabled].focus,

#custom-html-sy .btn-default[disabled]:focus,

#custom-html-sy .btn-default[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-default.focus,

#custom-html-sy fieldset[disabled] .btn-default:focus,

#custom-html-sy fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sy .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sy .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sy .btn-primary.focus,

#custom-html-sy .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sy .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sy .btn-primary.active,

#custom-html-sy .btn-primary:active,

#custom-html-sy .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sy .btn-primary.active.focus,

#custom-html-sy .btn-primary.active:focus,

#custom-html-sy .btn-primary.active:hover,

#custom-html-sy .btn-primary:active.focus,

#custom-html-sy .btn-primary:active:focus,

#custom-html-sy .btn-primary:active:hover,

#custom-html-sy .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sy .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sy .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sy .btn-primary.active,

#custom-html-sy .btn-primary:active,

#custom-html-sy .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-sy .btn-primary.disabled.focus,

#custom-html-sy .btn-primary.disabled:focus,

#custom-html-sy .btn-primary.disabled:hover,

#custom-html-sy .btn-primary[disabled].focus,

#custom-html-sy .btn-primary[disabled]:focus,

#custom-html-sy .btn-primary[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-primary.focus,

#custom-html-sy fieldset[disabled] .btn-primary:focus,

#custom-html-sy fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sy .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sy .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sy .btn-success.focus,

#custom-html-sy .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sy .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sy .btn-success.active,

#custom-html-sy .btn-success:active,

#custom-html-sy .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sy .btn-success.active.focus,

#custom-html-sy .btn-success.active:focus,

#custom-html-sy .btn-success.active:hover,

#custom-html-sy .btn-success:active.focus,

#custom-html-sy .btn-success:active:focus,

#custom-html-sy .btn-success:active:hover,

#custom-html-sy .open > .dropdown-toggle.btn-success.focus,

#custom-html-sy .open > .dropdown-toggle.btn-success:focus,

#custom-html-sy .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sy .btn-success.active,

#custom-html-sy .btn-success:active,

#custom-html-sy .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-sy .btn-success.disabled.focus,

#custom-html-sy .btn-success.disabled:focus,

#custom-html-sy .btn-success.disabled:hover,

#custom-html-sy .btn-success[disabled].focus,

#custom-html-sy .btn-success[disabled]:focus,

#custom-html-sy .btn-success[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-success.focus,

#custom-html-sy fieldset[disabled] .btn-success:focus,

#custom-html-sy fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sy .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sy .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sy .btn-info.focus,

#custom-html-sy .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sy .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sy .btn-info.active,

#custom-html-sy .btn-info:active,

#custom-html-sy .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sy .btn-info.active.focus,

#custom-html-sy .btn-info.active:focus,

#custom-html-sy .btn-info.active:hover,

#custom-html-sy .btn-info:active.focus,

#custom-html-sy .btn-info:active:focus,

#custom-html-sy .btn-info:active:hover,

#custom-html-sy .open > .dropdown-toggle.btn-info.focus,

#custom-html-sy .open > .dropdown-toggle.btn-info:focus,

#custom-html-sy .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sy .btn-info.active,

#custom-html-sy .btn-info:active,

#custom-html-sy .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-sy .btn-info.disabled.focus,

#custom-html-sy .btn-info.disabled:focus,

#custom-html-sy .btn-info.disabled:hover,

#custom-html-sy .btn-info[disabled].focus,

#custom-html-sy .btn-info[disabled]:focus,

#custom-html-sy .btn-info[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-info.focus,

#custom-html-sy fieldset[disabled] .btn-info:focus,

#custom-html-sy fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sy .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sy .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sy .btn-warning.focus,

#custom-html-sy .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sy .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sy .btn-warning.active,

#custom-html-sy .btn-warning:active,

#custom-html-sy .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sy .btn-warning.active.focus,

#custom-html-sy .btn-warning.active:focus,

#custom-html-sy .btn-warning.active:hover,

#custom-html-sy .btn-warning:active.focus,

#custom-html-sy .btn-warning:active:focus,

#custom-html-sy .btn-warning:active:hover,

#custom-html-sy .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sy .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sy .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sy .btn-warning.active,

#custom-html-sy .btn-warning:active,

#custom-html-sy .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-sy .btn-warning.disabled.focus,

#custom-html-sy .btn-warning.disabled:focus,

#custom-html-sy .btn-warning.disabled:hover,

#custom-html-sy .btn-warning[disabled].focus,

#custom-html-sy .btn-warning[disabled]:focus,

#custom-html-sy .btn-warning[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-warning.focus,

#custom-html-sy fieldset[disabled] .btn-warning:focus,

#custom-html-sy fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sy .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sy .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sy .btn-danger.focus,

#custom-html-sy .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sy .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sy .btn-danger.active,

#custom-html-sy .btn-danger:active,

#custom-html-sy .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sy .btn-danger.active.focus,

#custom-html-sy .btn-danger.active:focus,

#custom-html-sy .btn-danger.active:hover,

#custom-html-sy .btn-danger:active.focus,

#custom-html-sy .btn-danger:active:focus,

#custom-html-sy .btn-danger:active:hover,

#custom-html-sy .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sy .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sy .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sy .btn-danger.active,

#custom-html-sy .btn-danger:active,

#custom-html-sy .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-sy .btn-danger.disabled.focus,

#custom-html-sy .btn-danger.disabled:focus,

#custom-html-sy .btn-danger.disabled:hover,

#custom-html-sy .btn-danger[disabled].focus,

#custom-html-sy .btn-danger[disabled]:focus,

#custom-html-sy .btn-danger[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-danger.focus,

#custom-html-sy fieldset[disabled] .btn-danger:focus,

#custom-html-sy fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sy .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sy .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sy .btn-link,

#custom-html-sy .btn-link.active,

#custom-html-sy .btn-link:active,

#custom-html-sy .btn-link[disabled],

#custom-html-sy fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sy .btn-link,

#custom-html-sy .btn-link:active,

#custom-html-sy .btn-link:focus,

#custom-html-sy .btn-link:hover {

  border-color: transparent;

}

#custom-html-sy .btn-link:focus,

#custom-html-sy .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sy .btn-link[disabled]:focus,

#custom-html-sy .btn-link[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-link:focus,

#custom-html-sy fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sy .btn-group-lg > .btn,

#custom-html-sy .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sy .btn-group-sm > .btn,

#custom-html-sy .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sy .btn-group-xs > .btn,

#custom-html-sy .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sy .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sy .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sy input[type=button].btn-block,

#custom-html-sy input[type=reset].btn-block,

#custom-html-sy input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sy .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sy .fade.in {

  opacity: 1;

}

#custom-html-sy .collapse {

  display: none;

}

#custom-html-sy .collapse.in {

  display: block;

}

#custom-html-sy tr.collapse.in {

  display: table-row;

}

#custom-html-sy tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sy .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-sy .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sy .dropdown,

#custom-html-sy .dropup {

  position: relative;

}

#custom-html-sy .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sy .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sy .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sy .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sy .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sy .dropdown-menu > li > a:focus,

#custom-html-sy .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sy .dropdown-menu > .active > a,

#custom-html-sy .dropdown-menu > .active > a:focus,

#custom-html-sy .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sy .dropdown-menu > .disabled > a,

#custom-html-sy .dropdown-menu > .disabled > a:focus,

#custom-html-sy .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sy .dropdown-menu > .disabled > a:focus,

#custom-html-sy .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sy .open > .dropdown-menu {

  display: block;

}

#custom-html-sy .open > a {

  outline: 0;

}

#custom-html-sy .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sy .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sy .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sy .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sy .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sy .dropup .caret,

#custom-html-sy .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sy .dropup .dropdown-menu,

#custom-html-sy .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-sy .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sy .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-sy .btn-group,

#custom-html-sy .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sy .btn-group-vertical > .btn,

#custom-html-sy .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sy .btn-group-vertical > .btn.active,

#custom-html-sy .btn-group-vertical > .btn:active,

#custom-html-sy .btn-group-vertical > .btn:focus,

#custom-html-sy .btn-group-vertical > .btn:hover,

#custom-html-sy .btn-group > .btn.active,

#custom-html-sy .btn-group > .btn:active,

#custom-html-sy .btn-group > .btn:focus,

#custom-html-sy .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sy .btn-group .btn + .btn,

#custom-html-sy .btn-group .btn + .btn-group,

#custom-html-sy .btn-group .btn-group + .btn,

#custom-html-sy .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sy .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sy .btn-toolbar .btn,

#custom-html-sy .btn-toolbar .btn-group,

#custom-html-sy .btn-toolbar .input-group {

  float: left;

}

#custom-html-sy .btn-toolbar > .btn,

#custom-html-sy .btn-toolbar > .btn-group,

#custom-html-sy .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sy .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sy .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sy .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sy .btn-group > .btn:last-child:not(:first-child),

#custom-html-sy .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sy .btn-group > .btn-group {

  float: left;

}

#custom-html-sy .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sy .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sy .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sy .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sy .btn-group .dropdown-toggle:active,

#custom-html-sy .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sy .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sy .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sy .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sy .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sy .btn .caret {

  margin-left: 0;

}

#custom-html-sy .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sy .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sy .btn-group-vertical > .btn,

#custom-html-sy .btn-group-vertical > .btn-group,

#custom-html-sy .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sy .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sy .btn-group-vertical > .btn + .btn,

#custom-html-sy .btn-group-vertical > .btn + .btn-group,

#custom-html-sy .btn-group-vertical > .btn-group + .btn,

#custom-html-sy .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sy .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sy .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sy .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sy .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sy .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sy .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sy .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sy .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sy .btn-group-justified > .btn,

#custom-html-sy .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sy .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sy .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sy [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sy [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sy [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sy [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sy .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sy .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sy .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sy .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sy .input-group-lg > .form-control,

#custom-html-sy .input-group-lg > .input-group-addon,

#custom-html-sy .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sy select.input-group-lg > .form-control,

#custom-html-sy select.input-group-lg > .input-group-addon,

#custom-html-sy select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sy select[multiple].input-group-lg > .form-control,

#custom-html-sy select[multiple].input-group-lg > .input-group-addon,

#custom-html-sy select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sy textarea.input-group-lg > .form-control,

#custom-html-sy textarea.input-group-lg > .input-group-addon,

#custom-html-sy textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sy .input-group-sm > .form-control,

#custom-html-sy .input-group-sm > .input-group-addon,

#custom-html-sy .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sy select.input-group-sm > .form-control,

#custom-html-sy select.input-group-sm > .input-group-addon,

#custom-html-sy select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sy select[multiple].input-group-sm > .form-control,

#custom-html-sy select[multiple].input-group-sm > .input-group-addon,

#custom-html-sy select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sy textarea.input-group-sm > .form-control,

#custom-html-sy textarea.input-group-sm > .input-group-addon,

#custom-html-sy textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sy .input-group .form-control,

#custom-html-sy .input-group-addon,

#custom-html-sy .input-group-btn {

  display: table-cell;

}

#custom-html-sy .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sy .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sy .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sy .input-group-addon,

#custom-html-sy .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sy .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sy .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sy .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sy .input-group-addon input[type=checkbox],

#custom-html-sy .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sy .input-group .form-control:first-child,

#custom-html-sy .input-group-addon:first-child,

#custom-html-sy .input-group-btn:first-child > .btn,

#custom-html-sy .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sy .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sy .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sy .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sy .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sy .input-group .form-control:last-child,

#custom-html-sy .input-group-addon:last-child,

#custom-html-sy .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sy .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sy .input-group-btn:last-child > .btn,

#custom-html-sy .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sy .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sy .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sy .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sy .input-group-btn > .btn {

  position: relative;

}

#custom-html-sy .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sy .input-group-btn > .btn:active,

#custom-html-sy .input-group-btn > .btn:focus,

#custom-html-sy .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sy .input-group-btn:first-child > .btn,

#custom-html-sy .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sy .input-group-btn:last-child > .btn,

#custom-html-sy .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sy .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sy .nav > li {

  position: relative;

  display: block;

}

#custom-html-sy .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sy .nav > li > a:focus,

#custom-html-sy .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sy .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sy .nav > li.disabled > a:focus,

#custom-html-sy .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sy .nav .open > a,

#custom-html-sy .nav .open > a:focus,

#custom-html-sy .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sy .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sy .nav > li > a > img {

  max-width: none;

}

#custom-html-sy .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sy .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sy .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sy .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sy .nav-tabs > li.active > a,

#custom-html-sy .nav-tabs > li.active > a:focus,

#custom-html-sy .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sy .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sy .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sy .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sy .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sy .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sy .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sy .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sy .nav-tabs.nav-justified > .active > a,

#custom-html-sy .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sy .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sy .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sy .nav-tabs.nav-justified > .active > a,

  #custom-html-sy .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sy .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sy .nav-pills > li {

  float: left;

}

#custom-html-sy .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sy .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sy .nav-pills > li.active > a,

#custom-html-sy .nav-pills > li.active > a:focus,

#custom-html-sy .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sy .nav-stacked > li {

  float: none;

}

#custom-html-sy .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sy .nav-justified {

  width: 100%;

}

#custom-html-sy .nav-justified > li {

  float: none;

}

#custom-html-sy .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sy .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sy .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sy .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sy .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sy .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sy .nav-tabs-justified > .active > a,

#custom-html-sy .nav-tabs-justified > .active > a:focus,

#custom-html-sy .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sy .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sy .nav-tabs-justified > .active > a,

  #custom-html-sy .nav-tabs-justified > .active > a:focus,

  #custom-html-sy .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sy .tab-content > .tab-pane {

  display: none;

}

#custom-html-sy .tab-content > .active {

  display: block;

}

#custom-html-sy .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sy .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-sy .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-sy .navbar-header {

    float: left;

  }

}

#custom-html-sy .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sy .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-sy .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sy .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sy .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sy .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sy .navbar-fixed-top .navbar-collapse,

  #custom-html-sy .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-sy .navbar-fixed-bottom .navbar-collapse,

#custom-html-sy .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sy .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sy .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sy .container-fluid > .navbar-collapse,

#custom-html-sy .container-fluid > .navbar-header,

#custom-html-sy .container > .navbar-collapse,

#custom-html-sy .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sy .container-fluid > .navbar-collapse,

  #custom-html-sy .container-fluid > .navbar-header,

  #custom-html-sy .container > .navbar-collapse,

  #custom-html-sy .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-sy .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-sy .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-sy .navbar-fixed-bottom,

#custom-html-sy .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-sy .navbar-fixed-bottom,

  #custom-html-sy .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-sy .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sy .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sy .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sy .navbar-brand:focus,

#custom-html-sy .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sy .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-sy .navbar > .container .navbar-brand,

  #custom-html-sy .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-sy .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sy .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sy .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sy .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-sy .navbar-toggle {

    display: none;

  }

}

#custom-html-sy .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sy .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sy .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sy .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sy .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sy .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sy .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sy .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-sy .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sy .navbar-nav > li {

    float: left;

  }

  #custom-html-sy .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-sy .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-sy .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sy .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sy .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sy .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sy .navbar-form .input-group .form-control,

  #custom-html-sy .navbar-form .input-group .input-group-addon,

  #custom-html-sy .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sy .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sy .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sy .navbar-form .checkbox,

  #custom-html-sy .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sy .navbar-form .checkbox label,

  #custom-html-sy .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sy .navbar-form .checkbox input[type=checkbox],

  #custom-html-sy .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sy .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-sy .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sy .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-sy .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-sy .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sy .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sy .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sy .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sy .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sy .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-sy .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-sy .navbar-left {

    float: left !important;

  }

  #custom-html-sy .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sy .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-sy .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sy .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sy .navbar-default .navbar-brand:focus,

#custom-html-sy .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sy .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sy .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sy .navbar-default .navbar-nav > li > a:focus,

#custom-html-sy .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sy .navbar-default .navbar-nav > .active > a,

#custom-html-sy .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sy .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sy .navbar-default .navbar-nav > .disabled > a,

#custom-html-sy .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sy .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sy .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sy .navbar-default .navbar-toggle:focus,

#custom-html-sy .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sy .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sy .navbar-default .navbar-collapse,

#custom-html-sy .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sy .navbar-default .navbar-nav > .open > a,

#custom-html-sy .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sy .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sy .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-sy .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sy .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sy .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sy .navbar-default .btn-link:focus,

#custom-html-sy .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sy .navbar-default .btn-link[disabled]:focus,

#custom-html-sy .navbar-default .btn-link[disabled]:hover,

#custom-html-sy fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sy fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sy .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sy .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sy .navbar-inverse .navbar-brand:focus,

#custom-html-sy .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sy .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sy .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sy .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sy .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sy .navbar-inverse .navbar-nav > .active > a,

#custom-html-sy .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sy .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sy .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sy .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sy .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sy .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sy .navbar-inverse .navbar-toggle:focus,

#custom-html-sy .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sy .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sy .navbar-inverse .navbar-collapse,

#custom-html-sy .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sy .navbar-inverse .navbar-nav > .open > a,

#custom-html-sy .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sy .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sy .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-sy .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sy .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sy .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sy .navbar-inverse .btn-link:focus,

#custom-html-sy .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sy .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sy .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sy fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sy fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sy .breadcrumb {

  padding: 8px 15px;


  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sy .breadcrumb > li {

  display: inline-block;

}

#custom-html-sy .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sy .breadcrumb > .active {

  color: #777777;

}

#custom-html-sy .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-sy .pagination > li {

  display: inline;

}

#custom-html-sy .pagination > li > a,

#custom-html-sy .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sy .pagination > li:first-child > a,

#custom-html-sy .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sy .pagination > li:last-child > a,

#custom-html-sy .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sy .pagination > li > a:focus,

#custom-html-sy .pagination > li > a:hover,

#custom-html-sy .pagination > li > span:focus,

#custom-html-sy .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sy .pagination > .active > a,

#custom-html-sy .pagination > .active > a:focus,

#custom-html-sy .pagination > .active > a:hover,

#custom-html-sy .pagination > .active > span,

#custom-html-sy .pagination > .active > span:focus,

#custom-html-sy .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-sy .pagination > .disabled > a,

#custom-html-sy .pagination > .disabled > a:focus,

#custom-html-sy .pagination > .disabled > a:hover,

#custom-html-sy .pagination > .disabled > span,

#custom-html-sy .pagination > .disabled > span:focus,

#custom-html-sy .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sy .pagination-lg > li > a,

#custom-html-sy .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sy .pagination-lg > li:first-child > a,

#custom-html-sy .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sy .pagination-lg > li:last-child > a,

#custom-html-sy .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sy .pagination-sm > li > a,

#custom-html-sy .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sy .pagination-sm > li:first-child > a,

#custom-html-sy .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sy .pagination-sm > li:last-child > a,

#custom-html-sy .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sy .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sy .pager li {

  display: inline;

}

#custom-html-sy .pager li > a,

#custom-html-sy .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sy .pager li > a:focus,

#custom-html-sy .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sy .pager .next > a,

#custom-html-sy .pager .next > span {

  float: right;

}

#custom-html-sy .pager .previous > a,

#custom-html-sy .pager .previous > span {

  float: left;

}

#custom-html-sy .pager .disabled > a,

#custom-html-sy .pager .disabled > a:focus,

#custom-html-sy .pager .disabled > a:hover,

#custom-html-sy .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sy .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-sy a.label:focus,

#custom-html-sy a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sy .label:empty {

  display: none;

}

#custom-html-sy .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sy .label-default {

  background-color: #777777;

}

#custom-html-sy .label-default[href]:focus,

#custom-html-sy .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sy .label-primary {

  background-color: #337ab7;

}

#custom-html-sy .label-primary[href]:focus,

#custom-html-sy .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sy .label-success {

  background-color: #5cb85c;

}

#custom-html-sy .label-success[href]:focus,

#custom-html-sy .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sy .label-info {

  background-color: #5bc0de;

}

#custom-html-sy .label-info[href]:focus,

#custom-html-sy .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sy .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sy .label-warning[href]:focus,

#custom-html-sy .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sy .label-danger {

  background-color: #d9534f;

}

#custom-html-sy .label-danger[href]:focus,

#custom-html-sy .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sy .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sy .badge:empty {

  display: none;

}

#custom-html-sy .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sy .btn-group-xs > .btn .badge,

#custom-html-sy .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sy a.badge:focus,

#custom-html-sy a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sy .list-group-item.active > .badge,

#custom-html-sy .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sy .list-group-item > .badge {

  float: right;

}

#custom-html-sy .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sy .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sy .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sy .jumbotron .h1,

#custom-html-sy .jumbotron h1 {

  color: inherit;

}

#custom-html-sy .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sy .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sy .container .jumbotron,

#custom-html-sy .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sy .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sy .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sy .container .jumbotron,

  #custom-html-sy .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sy .jumbotron .h1,

  #custom-html-sy .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-sy .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sy .thumbnail a > img,

#custom-html-sy .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sy a.thumbnail.active,

#custom-html-sy a.thumbnail:focus,

#custom-html-sy a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sy .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sy .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sy .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sy .alert .alert-link {

  font-weight: 700;

}

#custom-html-sy .alert > p,

#custom-html-sy .alert > ul {

  margin-bottom: 0;

}

#custom-html-sy .alert > p + p {

  margin-top: 5px;

}

#custom-html-sy .alert-dismissable,

#custom-html-sy .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sy .alert-dismissable .close,

#custom-html-sy .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sy .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sy .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sy .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sy .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sy .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sy .alert-info .alert-link {

  color: #000000;

}

#custom-html-sy .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sy .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sy .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sy .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sy .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sy .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sy .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sy .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sy .progress-bar-striped,

#custom-html-sy .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sy .progress-bar.active,

#custom-html-sy .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sy .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sy .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sy .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sy .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sy .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sy .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sy .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sy .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sy .media {

  margin-top: 15px;

}

#custom-html-sy .media:first-child {

  margin-top: 0;

}

#custom-html-sy .media,

#custom-html-sy .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sy .media-body {

  width: 10000px;

}

#custom-html-sy .media-object {

  display: block;

}

#custom-html-sy .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sy .media-right,

#custom-html-sy .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sy .media-left,

#custom-html-sy .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sy .media-body,

#custom-html-sy .media-left,

#custom-html-sy .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sy .media-middle {

  vertical-align: middle;

}

#custom-html-sy .media-bottom {

  vertical-align: bottom;

}

#custom-html-sy .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sy .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sy .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-sy .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sy .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sy .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sy a.list-group-item,

#custom-html-sy button.list-group-item {

  color: #555555;

}

#custom-html-sy a.list-group-item .list-group-item-heading,

#custom-html-sy button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sy a.list-group-item:focus,

#custom-html-sy a.list-group-item:hover,

#custom-html-sy button.list-group-item:focus,

#custom-html-sy button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sy button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sy .list-group-item.disabled,

#custom-html-sy .list-group-item.disabled:focus,

#custom-html-sy .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sy .list-group-item.disabled .list-group-item-heading,

#custom-html-sy .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sy .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sy .list-group-item.disabled .list-group-item-text,

#custom-html-sy .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sy .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sy .list-group-item.active,

#custom-html-sy .list-group-item.active:focus,

#custom-html-sy .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sy .list-group-item.active .list-group-item-heading,

#custom-html-sy .list-group-item.active .list-group-item-heading > .small,

#custom-html-sy .list-group-item.active .list-group-item-heading > small,

#custom-html-sy .list-group-item.active:focus .list-group-item-heading,

#custom-html-sy .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sy .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sy .list-group-item.active:hover .list-group-item-heading,

#custom-html-sy .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sy .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sy .list-group-item.active .list-group-item-text,

#custom-html-sy .list-group-item.active:focus .list-group-item-text,

#custom-html-sy .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sy .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sy a.list-group-item-success,

#custom-html-sy button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sy a.list-group-item-success .list-group-item-heading,

#custom-html-sy button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sy a.list-group-item-success:focus,

#custom-html-sy a.list-group-item-success:hover,

#custom-html-sy button.list-group-item-success:focus,

#custom-html-sy button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sy a.list-group-item-success.active,

#custom-html-sy a.list-group-item-success.active:focus,

#custom-html-sy a.list-group-item-success.active:hover,

#custom-html-sy button.list-group-item-success.active,

#custom-html-sy button.list-group-item-success.active:focus,

#custom-html-sy button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sy .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sy a.list-group-item-info,

#custom-html-sy button.list-group-item-info {

  color: #31708f;

}

#custom-html-sy a.list-group-item-info .list-group-item-heading,

#custom-html-sy button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sy a.list-group-item-info:focus,

#custom-html-sy a.list-group-item-info:hover,

#custom-html-sy button.list-group-item-info:focus,

#custom-html-sy button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sy a.list-group-item-info.active,

#custom-html-sy a.list-group-item-info.active:focus,

#custom-html-sy a.list-group-item-info.active:hover,

#custom-html-sy button.list-group-item-info.active,

#custom-html-sy button.list-group-item-info.active:focus,

#custom-html-sy button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sy .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sy a.list-group-item-warning,

#custom-html-sy button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sy a.list-group-item-warning .list-group-item-heading,

#custom-html-sy button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sy a.list-group-item-warning:focus,

#custom-html-sy a.list-group-item-warning:hover,

#custom-html-sy button.list-group-item-warning:focus,

#custom-html-sy button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sy a.list-group-item-warning.active,

#custom-html-sy a.list-group-item-warning.active:focus,

#custom-html-sy a.list-group-item-warning.active:hover,

#custom-html-sy button.list-group-item-warning.active,

#custom-html-sy button.list-group-item-warning.active:focus,

#custom-html-sy button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sy .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sy a.list-group-item-danger,

#custom-html-sy button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sy a.list-group-item-danger .list-group-item-heading,

#custom-html-sy button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sy a.list-group-item-danger:focus,

#custom-html-sy a.list-group-item-danger:hover,

#custom-html-sy button.list-group-item-danger:focus,

#custom-html-sy button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sy a.list-group-item-danger.active,

#custom-html-sy a.list-group-item-danger.active:focus,

#custom-html-sy a.list-group-item-danger.active:hover,

#custom-html-sy button.list-group-item-danger.active,

#custom-html-sy button.list-group-item-danger.active:focus,

#custom-html-sy button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sy .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sy .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sy .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sy .panel-body {

  padding: 15px;

}

#custom-html-sy .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sy .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sy .panel-title > .small,

#custom-html-sy .panel-title > .small > a,

#custom-html-sy .panel-title > a,

#custom-html-sy .panel-title > small,

#custom-html-sy .panel-title > small > a {

  color: inherit;

}

#custom-html-sy .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sy .panel > .list-group,

#custom-html-sy .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sy .panel > .list-group .list-group-item,

#custom-html-sy .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sy .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sy .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sy .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sy .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sy .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sy .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sy .panel > .panel-collapse > .table,

#custom-html-sy .panel > .table,

#custom-html-sy .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sy .panel > .panel-collapse > .table caption,

#custom-html-sy .panel > .table caption,

#custom-html-sy .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sy .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sy .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sy .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sy .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sy .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sy .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sy .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sy .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sy .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sy .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sy .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sy .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sy .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sy .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sy .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sy .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sy .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sy .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sy .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sy .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sy .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sy .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sy .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sy .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sy .panel > .panel-body + .table,

#custom-html-sy .panel > .panel-body + .table-responsive,

#custom-html-sy .panel > .table + .panel-body,

#custom-html-sy .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sy .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sy .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sy .panel > .table-bordered,

#custom-html-sy .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sy .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sy .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sy .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sy .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sy .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sy .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sy .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sy .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sy .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sy .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sy .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sy .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sy .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sy .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sy .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sy .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sy .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sy .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sy .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sy .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sy .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sy .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sy .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sy .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sy .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sy .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sy .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sy .panel-group {

  margin-bottom: 20px;

}

#custom-html-sy .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sy .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sy .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sy .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sy .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sy .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sy .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sy .panel-default {

  border-color: #dddddd;

}

#custom-html-sy .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sy .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sy .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sy .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sy .panel-primary {

  border-color: #337ab7;

}

#custom-html-sy .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sy .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sy .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sy .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sy .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sy .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sy .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sy .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sy .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sy .panel-info {

  border-color: #bce8f1;

}

#custom-html-sy .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sy .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sy .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sy .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sy .panel-warning {

  border-color: #faebcc;

}

#custom-html-sy .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sy .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sy .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sy .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-sy .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sy .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sy .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sy .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sy .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sy .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sy .embed-responsive .embed-responsive-item,

#custom-html-sy .embed-responsive embed,

#custom-html-sy .embed-responsive iframe,

#custom-html-sy .embed-responsive object,

#custom-html-sy .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sy .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sy .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sy .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sy .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sy .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sy .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sy .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sy .close:focus,

#custom-html-sy .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sy button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sy .modal-open {

  overflow: hidden;

}

#custom-html-sy .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sy .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sy .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sy .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sy .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sy .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sy .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sy .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sy .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sy .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sy .modal-header .close {

  margin-top: -2px;

}

#custom-html-sy .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sy .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sy .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sy .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sy .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sy .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sy .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-sy .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sy .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sy .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-sy .modal-lg {

    width: 900px;

  }

}

#custom-html-sy .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sy .tooltip.in {

  opacity: 0.9;

}

#custom-html-sy .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sy .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sy .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sy .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sy .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sy .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sy .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sy .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sy .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sy .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sy .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sy .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sy .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sy .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sy .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sy .popover.top {

  margin-top: -10px;

}

#custom-html-sy .popover.right {

  margin-left: 10px;

}

#custom-html-sy .popover.bottom {

  margin-top: 10px;

}

#custom-html-sy .popover.left {

  margin-left: -10px;

}

#custom-html-sy .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sy .popover-content {

  padding: 9px 14px;

}

#custom-html-sy .popover > .arrow,

#custom-html-sy .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sy .popover > .arrow {

  border-width: 11px;

}

#custom-html-sy .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sy .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sy .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sy .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sy .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sy .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sy .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sy .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sy .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sy .carousel {

  position: relative;

}

#custom-html-sy .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sy .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sy .carousel-inner > .item > a > img,

#custom-html-sy .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sy .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sy .carousel-inner > .item.active.right,

  #custom-html-sy .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sy .carousel-inner > .item.active.left,

  #custom-html-sy .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sy .carousel-inner > .item.active,

  #custom-html-sy .carousel-inner > .item.next.left,

  #custom-html-sy .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sy .carousel-inner > .active,

#custom-html-sy .carousel-inner > .next,

#custom-html-sy .carousel-inner > .prev {

  display: block;

}

#custom-html-sy .carousel-inner > .active {

  left: 0;

}

#custom-html-sy .carousel-inner > .next,

#custom-html-sy .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sy .carousel-inner > .next {

  left: 100%;

}

#custom-html-sy .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sy .carousel-inner > .next.left,

#custom-html-sy .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sy .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sy .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sy .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sy .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sy .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sy .carousel-control:focus,

#custom-html-sy .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sy .carousel-control .glyphicon-chevron-left,

#custom-html-sy .carousel-control .glyphicon-chevron-right,

#custom-html-sy .carousel-control .icon-next,

#custom-html-sy .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sy .carousel-control .glyphicon-chevron-left,

#custom-html-sy .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sy .carousel-control .glyphicon-chevron-right,

#custom-html-sy .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sy .carousel-control .icon-next,

#custom-html-sy .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sy .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sy .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sy .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sy .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-sy .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sy .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sy .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-sy .carousel-control .glyphicon-chevron-left,

  #custom-html-sy .carousel-control .glyphicon-chevron-right,

  #custom-html-sy .carousel-control .icon-next,

  #custom-html-sy .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sy .carousel-control .glyphicon-chevron-left,

  #custom-html-sy .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sy .carousel-control .glyphicon-chevron-right,

  #custom-html-sy .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sy .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sy .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sy .btn-group-vertical > .btn-group:after,

#custom-html-sy .btn-group-vertical > .btn-group:before,

#custom-html-sy .btn-toolbar:after,

#custom-html-sy .btn-toolbar:before,

#custom-html-sy .clearfix:after,

#custom-html-sy .clearfix:before,

#custom-html-sy .container-fluid:after,

#custom-html-sy .container-fluid:before,

#custom-html-sy .container:after,

#custom-html-sy .container:before,

#custom-html-sy .dl-horizontal dd:after,

#custom-html-sy .dl-horizontal dd:before,

#custom-html-sy .form-horizontal .form-group:after,

#custom-html-sy .form-horizontal .form-group:before,

#custom-html-sy .modal-footer:after,

#custom-html-sy .modal-footer:before,

#custom-html-sy .modal-header:after,

#custom-html-sy .modal-header:before,

#custom-html-sy .nav:after,

#custom-html-sy .nav:before,

#custom-html-sy .navbar-collapse:after,

#custom-html-sy .navbar-collapse:before,

#custom-html-sy .navbar-header:after,

#custom-html-sy .navbar-header:before,

#custom-html-sy .navbar:after,

#custom-html-sy .navbar:before,

#custom-html-sy .pager:after,

#custom-html-sy .pager:before,

#custom-html-sy .panel-body:after,

#custom-html-sy .panel-body:before,

#custom-html-sy .row:after,

#custom-html-sy .row:before {

  display: table;

  content: " ";

}

#custom-html-sy .btn-group-vertical > .btn-group:after,

#custom-html-sy .btn-toolbar:after,

#custom-html-sy .clearfix:after,

#custom-html-sy .container-fluid:after,

#custom-html-sy .container:after,

#custom-html-sy .dl-horizontal dd:after,

#custom-html-sy .form-horizontal .form-group:after,

#custom-html-sy .modal-footer:after,

#custom-html-sy .modal-header:after,

#custom-html-sy .nav:after,

#custom-html-sy .navbar-collapse:after,

#custom-html-sy .navbar-header:after,

#custom-html-sy .navbar:after,

#custom-html-sy .pager:after,

#custom-html-sy .panel-body:after,

#custom-html-sy .row:after {

  clear: both;

}

#custom-html-sy .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sy .pull-right {

  float: right !important;

}

#custom-html-sy .pull-left {

  float: left !important;

}

#custom-html-sy .hide {

  display: none !important;

}

#custom-html-sy .show {

  display: block !important;

}

#custom-html-sy .invisible {

  visibility: hidden;

}


#custom-html-sy .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sy .hidden {

  display: none !important;

}

#custom-html-sy .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sy .visible-lg,

#custom-html-sy .visible-md,

#custom-html-sy .visible-sm,

#custom-html-sy .visible-xs {

  display: none !important;

}

#custom-html-sy .visible-lg-block,

#custom-html-sy .visible-lg-inline,

#custom-html-sy .visible-lg-inline-block,

#custom-html-sy .visible-md-block,

#custom-html-sy .visible-md-inline,

#custom-html-sy .visible-md-inline-block,

#custom-html-sy .visible-sm-block,

#custom-html-sy .visible-sm-inline,

#custom-html-sy .visible-sm-inline-block,

#custom-html-sy .visible-xs-block,

#custom-html-sy .visible-xs-inline,

#custom-html-sy .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-sy .visible-xs {

    display: block !important;

  }

  #custom-html-sy table.visible-xs {

    display: table !important;

  }

  #custom-html-sy tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sy td.visible-xs,

  #custom-html-sy th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sy .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sy .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sy .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sy .visible-sm {

    display: block !important;

  }

  #custom-html-sy table.visible-sm {

    display: table !important;

  }

  #custom-html-sy tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sy td.visible-sm,

  #custom-html-sy th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sy .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sy .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sy .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sy .visible-md {

    display: block !important;

  }

  #custom-html-sy table.visible-md {

    display: table !important;

  }

  #custom-html-sy tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sy td.visible-md,

  #custom-html-sy th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sy .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sy .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sy .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sy .visible-lg {

    display: block !important;

  }

  #custom-html-sy table.visible-lg {

    display: table !important;

  }

  #custom-html-sy tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sy td.visible-lg,

  #custom-html-sy th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sy .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sy .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sy .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sy .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sy .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sy .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sy .hidden-lg {

    display: none !important;

  }

}

#custom-html-sy .visible-print {

  display: none !important;

}

@media print {

  #custom-html-sy .visible-print {

    display: block !important;

  }

  #custom-html-sy table.visible-print {

    display: table !important;

  }

  #custom-html-sy tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sy td.visible-print,

  #custom-html-sy th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-sy .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-sy .visible-print-block {

    display: block !important;

  }

}

#custom-html-sy .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-sy .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-sy .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-sy .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-sy .hidden-print {

    display: none !important;

  }

}

#custom-html-sy .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-sy .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sy .intl-tel-input .hide {

  display: none;

}

#custom-html-sy .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sy .intl-tel-input input,

#custom-html-sy .intl-tel-input input[type=tel],

#custom-html-sy .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sy .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sy .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sy .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sy .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sy .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sy .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sy .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sy .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sy .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-sy .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sy .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sy .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sy .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sy .intl-tel-input .country-list .country-name,

#custom-html-sy .intl-tel-input .country-list .dial-code,

#custom-html-sy .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sy .intl-tel-input .country-list .country-name,

#custom-html-sy .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sy .intl-tel-input.allow-dropdown input,

#custom-html-sy .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sy .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sy .intl-tel-input.separate-dial-code input,

#custom-html-sy .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sy .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sy .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sy .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sy .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sy .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sy .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sy .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sy .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sy .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sy .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sy .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sy .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sy .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sy .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sy .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sy .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sy .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sy .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sy .iti-flag {

  width: 20px;

}

#custom-html-sy .iti-flag.be {

  width: 18px;

}

#custom-html-sy .iti-flag.ch {

  width: 15px;

}

#custom-html-sy .iti-flag.mc {

  width: 19px;

}

#custom-html-sy .iti-flag.ne {

  width: 18px;

}

#custom-html-sy .iti-flag.np {

  width: 13px;

}

#custom-html-sy .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sy .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-sy .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sy .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-sy .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sy .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sy .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sy .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sy .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sy .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sy .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sy .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sy .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sy .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sy .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sy .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sy .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sy .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sy .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sy .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sy .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sy .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sy .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sy .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sy .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sy .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sy .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sy .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sy .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sy .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sy .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sy .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sy .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sy .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sy .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sy .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sy .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sy .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sy .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sy .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sy .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sy .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sy .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sy .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sy .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sy .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sy .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-sy .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sy .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sy .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sy .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sy .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sy .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sy .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sy .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sy .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sy .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sy .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sy .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sy .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sy .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sy .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sy .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sy .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sy .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-sy .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sy .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sy .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sy .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sy .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sy .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sy .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sy .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sy .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sy .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sy .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sy .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sy .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sy .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sy .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sy .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sy .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sy .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sy .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sy .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sy .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sy .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sy .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sy .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sy .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sy .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sy .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sy .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sy .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sy .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sy .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sy .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sy .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sy .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sy .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sy .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sy .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sy .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sy .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sy .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sy .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sy .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sy .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sy .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sy .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sy .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sy .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sy .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sy .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sy .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sy .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sy .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sy .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-sy .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sy .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sy .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sy .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sy .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sy .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sy .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sy .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sy .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sy .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sy .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sy .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sy .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sy .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sy .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sy .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sy .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sy .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sy .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sy .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sy .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sy .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sy .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sy .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sy .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sy .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sy .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sy .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sy .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sy .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sy .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sy .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sy .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sy .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sy .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sy .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sy .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sy .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sy .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sy .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sy .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sy .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sy .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sy .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sy .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sy .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sy .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sy .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sy .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sy .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sy .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sy .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sy .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sy .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sy .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sy .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sy .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sy .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-sy .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sy .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sy .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sy .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sy .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sy .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sy .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sy .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sy .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sy .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sy .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sy .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sy .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sy .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sy .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sy .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sy .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sy .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sy .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sy .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sy .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sy .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sy .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sy .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sy .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sy .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sy .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sy .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sy .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sy .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sy .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sy .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sy .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sy .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sy .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sy .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sy .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sy .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sy .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sy .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sy .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sy .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sy .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sy .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sy .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sy .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sy .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sy .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sy .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sy .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sy .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sy .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sy .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sy .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sy .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sy .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sy .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sy .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sy .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sy .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sy .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sy .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sy .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sy .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sy .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sy .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sy .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sy .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sy .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-sy .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sy .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sy .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sy .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sy .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sy .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sy .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sy .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sy .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sy .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sy .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sy .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sy .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sy .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sy .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sy .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sy .iti-flag.np {

  background-color: transparent;

}

#custom-html-sy body,

#custom-html-sy button,

#custom-html-sy input,

#custom-html-sy select,

#custom-html-sy textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sy h1,

#custom-html-sy h2,

#custom-html-sy h3,

#custom-html-sy h4,

#custom-html-sy h5,

#custom-html-sy h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-sy .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sy .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sy .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sy .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-sy .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sy .navbar-main .navbar-nav > .active > a,

#custom-html-sy .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sy .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sy .navbar-main .navbar-nav > .open > a,

#custom-html-sy .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sy .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sy .navbar-main .navbar-nav > li > a:focus,

#custom-html-sy .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sy #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sy .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sy .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-sy .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sy .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-sy .navbar-header {

    float: none;

  }

  #custom-html-sy .navbar-left,

  #custom-html-sy .navbar-right {

    float: none !important;

  }

  #custom-html-sy .navbar-toggle {

    display: block;

  }

  #custom-html-sy .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sy .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sy .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sy .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sy .navbar-nav > li {

    float: none;

  }

  #custom-html-sy .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sy .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-sy .panel {

  font-size: 0.9em;

}

#custom-html-sy .list-group {

  font-size: 0.9em;

}

#custom-html-sy .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-sy .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sy a.list-group-item.active,

#custom-html-sy a.list-group-item.active:focus,

#custom-html-sy a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sy .pagination {

  font-size: 0.8em;

}

#custom-html-sy .pagination > .active > a,

#custom-html-sy .pagination > .active > a:focus,

#custom-html-sy .pagination > .active > a:hover,

#custom-html-sy .pagination > .active > span,

#custom-html-sy .pagination > .active > span:focus,

#custom-html-sy .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sy .dropdown-menu > li > a:focus,

#custom-html-sy .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sy .label {

  border-radius: 0;

}

#custom-html-sy input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sy .list-group-item {

  padding: 7px 15px;

}

#custom-html-sy .panel-body {

  padding: 10px 15px;

}

#custom-html-sy .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sy .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sy .btn {

  overflow: hidden;

}

#custom-html-sy body,

#custom-html-sy html {

  height: 100%;

}

#custom-html-sy body {

  background-color: #f8f8f8;

}

#custom-html-sy h1,

#custom-html-sy h2,

#custom-html-sy h3,

#custom-html-sy h4,

#custom-html-sy h5,

#custom-html-sy h6 {

  font-weight: 400;

}

#custom-html-sy a {

  color: #005588;

}

#custom-html-sy section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sy section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sy section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sy section#header .search {

  margin: 20px 0;

}

#custom-html-sy section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sy section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sy section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sy section#main-content {

  margin-bottom: 60px;

}

#custom-html-sy .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sy section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sy section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sy section#footer {

    line-height: 32px;

  }

}

#custom-html-sy section#footer .back-to-top {

  float: right;

}

#custom-html-sy section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sy .adminreturndiv {

  display: none !important;

}

#custom-html-sy .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sy .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sy .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sy .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sy .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sy .navbar-main .navbar-toggle:focus,

#custom-html-sy .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sy .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sy .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-sy .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sy .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sy .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-sy div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sy div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sy div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sy div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sy div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sy .h1,

  #custom-html-sy h1 {

    font-size: 26px;

  }

  #custom-html-sy .h2,

  #custom-html-sy h2 {

    font-size: 20px;

  }

  #custom-html-sy .h3,

  #custom-html-sy h3 {

    font-size: 16px;

  }

  #custom-html-sy .h4,

  #custom-html-sy h4 {

    font-size: 14px;

  }

  #custom-html-sy .h5,

  #custom-html-sy h5 {

    font-size: 12px;

  }

  #custom-html-sy .h6,

  #custom-html-sy h6 {

    font-size: 11px;

  }

  #custom-html-sy div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-sy .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sy .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sy .margin-10 {

  margin: 10px;

}

#custom-html-sy .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sy .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sy .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sy .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sy .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sy .input-inline {

  display: inline-block;

}

#custom-html-sy .input-inline-100 {

  width: 100px;

}

#custom-html-sy .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-sy .pull-md-left {

    float: left;

  }

  #custom-html-sy .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-sy .pull-sm-left {

    float: left;

  }

  #custom-html-sy .pull-sm-right {

    float: right;

  }

  #custom-html-sy .text-right-sm {

    text-align: right;

  }

}

#custom-html-sy .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sy .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sy .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-sy .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-sy .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-sy .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sy .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sy i.icon-rss {

  color: #ff6600;

}

#custom-html-sy section#main-menu {

  background-color: #000000;

}

#custom-html-sy section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sy section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sy section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sy section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sy section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sy section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sy section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sy section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sy section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sy section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sy section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sy section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-sy section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-sy .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sy .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sy .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sy .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sy .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sy .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sy .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sy .home-shortcuts li span {

  display: none;

}

#custom-html-sy .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sy .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-sy .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-sy .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sy .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sy .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sy .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-sy .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sy .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sy .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sy .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sy .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sy .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sy .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sy .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sy .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sy .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sy .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sy .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sy .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sy .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sy .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sy .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sy .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sy .tiles .tile a {

  text-decoration: none;

}

#custom-html-sy .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sy .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sy .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-sy .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sy .tiles .tile:nth-child(1),

  #custom-html-sy .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-sy .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sy .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sy .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sy .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sy .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sy .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sy .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sy .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sy .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sy .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sy .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sy .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sy .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sy .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sy .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sy .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sy .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sy .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sy .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sy .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sy .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sy .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sy .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sy .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sy .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sy .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sy .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sy .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sy .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sy .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sy .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sy .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sy .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sy .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sy .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sy .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sy .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sy .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sy .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sy .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sy .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sy ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sy ul.top-nav > li,

#custom-html-sy ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sy ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sy ul.top-nav > li:active > a,

#custom-html-sy ul.top-nav > li:focus > a,

#custom-html-sy ul.top-nav > li:hover > a,

#custom-html-sy ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sy ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sy ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sy ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sy ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-sy ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sy ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sy ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-sy ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sy ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sy ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-sy div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sy div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sy div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sy div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sy div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sy div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sy .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sy .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-sy .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-sy .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sy .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-sy .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sy .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sy .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-sy .domain-check-availability {

  width: 100px;

}

#custom-html-sy .domain-step-options {

  min-height: 300px;

}

#custom-html-sy .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sy .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sy .domain-checker-invalid,

#custom-html-sy .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sy div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sy .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sy .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sy .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sy a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sy .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sy .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sy .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sy .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-sy .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sy .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sy .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sy .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sy .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sy .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sy .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sy .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-sy .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sy .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sy .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sy .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sy .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sy .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sy .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sy .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sy .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sy .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sy .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sy .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sy .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sy .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sy div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sy div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sy div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sy .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sy .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sy .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sy .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sy div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sy div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-sy .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sy .product-status-pending {

  background-color: #f89406;

}

#custom-html-sy .product-status-active {

  background-color: #46a546;

}

#custom-html-sy .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sy .product-status-cancelled,

#custom-html-sy .product-status-terminated {

  background-color: #666666;

}

#custom-html-sy .product-status-fraud {

  background-color: #000000;

}

#custom-html-sy .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sy div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sy .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sy .ssl-inactive {

  cursor: pointer;

}

#custom-html-sy .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-sy .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sy .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sy .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sy .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sy .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sy .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sy .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sy .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-sy .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sy .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sy .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sy .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-sy .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sy .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sy .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sy .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sy .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sy .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sy .pagination > li > a,

#custom-html-sy .pagination > li > span {

  color: #444444;

}

#custom-html-sy .pagination > .active > a,

#custom-html-sy .pagination > .active > a:focus,

#custom-html-sy .pagination > .active > a:hover,

#custom-html-sy .pagination > .active > span,

#custom-html-sy .pagination > .active > span:focus,

#custom-html-sy .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sy table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sy .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sy table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sy .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-sy table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sy .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sy .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sy .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sy table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sy table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sy table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sy .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sy .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sy .status-pending {

  color: #d9534f;

}

#custom-html-sy .status-pending.transfer {

  color: #a68500;

}

#custom-html-sy .status-active,

#custom-html-sy .status-completed,

#custom-html-sy .status-open {

  color: #3fad46;

}

#custom-html-sy .status-suspended {

  color: #f0ad4e;

}

#custom-html-sy .status-customer-reply {

  color: #ff6600;

}

#custom-html-sy .status-answered,

#custom-html-sy .status-fraud {

  color: #000000;

}

#custom-html-sy .status-expired,

#custom-html-sy .status-transferred.away {

  color: #004258;

}

#custom-html-sy .status-cancelled {

  color: #9fa29a;

}

#custom-html-sy .status-terminated {

  color: #666666;

}

#custom-html-sy .status-onhold {

  color: #224488;

}

#custom-html-sy .status-inprogress {

  color: #cc0000;

}

#custom-html-sy .status-closed {

  color: #888888;

}

#custom-html-sy .status-paid {

  color: #498302;

}

#custom-html-sy .status-unpaid {

  color: #ed3e48;

}

#custom-html-sy .status-cancelled {

  color: #87939f;

}

#custom-html-sy .status-collections {

  color: #9a141e;

}

#custom-html-sy .status-refunded {

  color: #319fc3;

}

#custom-html-sy .status-customer-reply {

  color: #ff6600;

}

#custom-html-sy .status-delivered {

  color: #224488;

}

#custom-html-sy .status-accepted {

  color: #498302;

}

#custom-html-sy .status-dead,

#custom-html-sy .status-lost {

  color: #000000;

}

#custom-html-sy .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sy .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sy .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sy .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sy .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sy .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sy .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-sy .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-sy .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sy .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sy .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-sy .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sy .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sy .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sy .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sy .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sy .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sy .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sy .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sy .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sy .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sy .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sy .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sy .ticket-reply .rating,

#custom-html-sy .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sy .ticket-reply .rating span.star,

#custom-html-sy .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sy .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sy .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sy .ticket-reply .rating span.star:before,

#custom-html-sy .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sy .ticket-reply .rating span.star:hover:before,

#custom-html-sy .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sy .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sy .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sy .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sy .ticket-reply .clear {

  clear: both;

}

#custom-html-sy .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sy .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sy .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sy .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sy .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sy .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sy .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sy .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sy .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sy .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sy .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sy .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sy .popover-user-notifications ul li i.far,

#custom-html-sy .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sy .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sy .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sy .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sy .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sy .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sy .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sy .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sy .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sy .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sy div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sy div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sy div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sy div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sy div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sy div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sy div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-sy div.credit-card {

    max-width: 250px;

  }

  #custom-html-sy div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sy div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sy div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sy div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sy div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-sy .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sy .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sy .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sy .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sy .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sy .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sy div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sy div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sy div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sy div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sy div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sy div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sy .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-sy .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-sy .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sy .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sy .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sy .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sy .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-sy div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sy div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sy div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sy #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sy .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sy .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sy .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sy .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sy .kb-category a small {

  color: #888888;

}

#custom-html-sy .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sy .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sy .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sy .kbarticles a.admin-inline-edit,

#custom-html-sy .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sy h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sy .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sy .kb-article-title h2 {

  margin: 0;

}

#custom-html-sy .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sy .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sy .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sy .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sy .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sy .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sy .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sy .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sy #stepResults {

  font-size: 20px;

}

#custom-html-sy #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-sy #stepResults {

    font-size: 14px;

  }

  #custom-html-sy #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sy div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-sy #main-menu,

  #custom-html-sy #top-nav,

  #custom-html-sy .header-lined,

  #custom-html-sy .sidebar {

    display: none;

  }

  #custom-html-sy a[href]:after {

    content: "" !important;

  }

}

#custom-html-sy h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sy h3.with-badge i,

#custom-html-sy h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sy h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-sy h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sy .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-sy .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sy .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sy a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sy a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sy .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sy .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sy .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sy .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sy .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sy .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sy .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sy .login-popover {

  font-size: 12px;

}

#custom-html-sy .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sy .login-popover hr {

  margin: 5px 0;

}

#custom-html-sy tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sy tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sy .error-container {

  text-align: center;

}

#custom-html-sy .error-container h1 {

  margin-top: 40px;

}

#custom-html-sy .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sy .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sy .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sy .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sy .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sy #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sy #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sy #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sy .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-sy #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sy #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-sy #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sy #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sy #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sy #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sy .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sy .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sy .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sy .email-verification .btn:active,

#custom-html-sy .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sy .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sy .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sy .email-verification .far,

#custom-html-sy .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-sy .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sy .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sy .email-verification .button {

    float: right;

  }

  #custom-html-sy .email-verification .far,

  #custom-html-sy .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-sy .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sy .email-verification.success .far,

#custom-html-sy .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sy .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sy .email-verification.failed .far,

#custom-html-sy .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sy .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-sy .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sy .md-editor > .md-preview,

#custom-html-sy .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sy div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sy .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sy .small-font {

  font-size: 0.9em;

}

#custom-html-sy .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sy .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sy .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sy .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sy .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sy .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sy .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sy .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sy .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sy .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sy .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sy .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sy .panel-heading i.fab,

#custom-html-sy .panel-heading i.fal,

#custom-html-sy .panel-heading i.far,

#custom-html-sy .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sy .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sy .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sy .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sy .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sy .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sy .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sy .panel-sidebar .list-group-item.disabled,

#custom-html-sy .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sy .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sy .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sy .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sy .panel-sidebar a.list-group-item.active,

#custom-html-sy .panel-sidebar a.list-group-item.active:focus,

#custom-html-sy .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sy .panel-sidebar a.list-group-item.active i,

#custom-html-sy .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sy .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sy .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sy .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sy .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sy .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sy .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sy .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sy .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sy .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sy .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sy .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sy .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sy .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sy .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sy .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-sy .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sy .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-sy .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sy .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sy .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sy .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sy .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sy .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sy .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sy .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sy .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sy .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sy .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sy .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sy .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sy .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-sy .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sy .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sy .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sy .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sy .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sy .promo-banner p {

  margin: 5px 0;

}

#custom-html-sy .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sy .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-sy .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sy .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sy .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sy .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sy .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sy .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sy .promo-banner-slim {

  padding: 10px;

}

#custom-html-sy .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sy .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sy .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sy .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sy .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sy .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sy .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sy .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sy .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sy .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sy .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sy .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sy .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sy .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sy .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sy .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sy .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sy .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sy .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sy .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sy .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sy .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sy .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sy .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sy .panel-mc-sso .btn,

#custom-html-sy .panel-mc-sso .form-control,

#custom-html-sy .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sy .panel-mc-sso small {

  display: block;

}

#custom-html-sy .social-signin-btns {

  text-align: center;

}

#custom-html-sy .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sy .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sy .btn-social i.far,

#custom-html-sy .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-facebook.active,

#custom-html-sy .btn-facebook:active,

#custom-html-sy .btn-facebook:focus,

#custom-html-sy .btn-facebook:hover,

#custom-html-sy .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-facebook.active,

#custom-html-sy .btn-facebook:active,

#custom-html-sy .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sy .btn-facebook.disabled,

#custom-html-sy .btn-facebook.disabled.active,

#custom-html-sy .btn-facebook.disabled:active,

#custom-html-sy .btn-facebook.disabled:focus,

#custom-html-sy .btn-facebook.disabled:hover,

#custom-html-sy .btn-facebook[disabled],

#custom-html-sy .btn-facebook[disabled].active,

#custom-html-sy .btn-facebook[disabled]:active,

#custom-html-sy .btn-facebook[disabled]:focus,

#custom-html-sy .btn-facebook[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-facebook,

#custom-html-sy fieldset[disabled] .btn-facebook.active,

#custom-html-sy fieldset[disabled] .btn-facebook:active,

#custom-html-sy fieldset[disabled] .btn-facebook:focus,

#custom-html-sy fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-google.active,

#custom-html-sy .btn-google:active,

#custom-html-sy .btn-google:focus,

#custom-html-sy .btn-google:hover,

#custom-html-sy .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-google.active,

#custom-html-sy .btn-google:active,

#custom-html-sy .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sy .btn-google-plus.disabled.active,

#custom-html-sy .btn-google-plus.disabled:active,

#custom-html-sy .btn-google-plus.disabled:focus,

#custom-html-sy .btn-google-plus[disabled].active,

#custom-html-sy .btn-google-plus[disabled]:active,

#custom-html-sy .btn-google-plus[disabled]:focus,

#custom-html-sy .btn-google-plus[disabled]:hover,

#custom-html-sy .btn-google.disabled,

#custom-html-sy .btn-google.disabled:hover,

#custom-html-sy .btn-google[disabled],

#custom-html-sy fieldset[disabled] .btn-google,

#custom-html-sy fieldset[disabled] .btn-google-plus.active,

#custom-html-sy fieldset[disabled] .btn-google-plus:active,

#custom-html-sy fieldset[disabled] .btn-google-plus:focus,

#custom-html-sy fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-twitter.active,

#custom-html-sy .btn-twitter:active,

#custom-html-sy .btn-twitter:focus,

#custom-html-sy .btn-twitter:hover,

#custom-html-sy .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .btn-twitter.active,

#custom-html-sy .btn-twitter:active,

#custom-html-sy .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sy .btn-twitter.disabled,

#custom-html-sy .btn-twitter.disabled.active,

#custom-html-sy .btn-twitter.disabled:active,

#custom-html-sy .btn-twitter.disabled:focus,

#custom-html-sy .btn-twitter.disabled:hover,

#custom-html-sy .btn-twitter[disabled],

#custom-html-sy .btn-twitter[disabled].active,

#custom-html-sy .btn-twitter[disabled]:active,

#custom-html-sy .btn-twitter[disabled]:focus,

#custom-html-sy .btn-twitter[disabled]:hover,

#custom-html-sy fieldset[disabled] .btn-twitter,

#custom-html-sy fieldset[disabled] .btn-twitter.active,

#custom-html-sy fieldset[disabled] .btn-twitter:active,

#custom-html-sy fieldset[disabled] .btn-twitter:focus,

#custom-html-sy fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sy .providerPreLinking {

  min-height: 52px;

}

#custom-html-sy .providerLinkingFeedback {

  display: none;

}

#custom-html-sy #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sy #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sy #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sy #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sy .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sy #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sy #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sy #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sy #registration .field,

#custom-html-sy #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sy #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sy #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sy #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sy #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sy #registration textarea.field {

  height: auto;

}

#custom-html-sy #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sy #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sy #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sy #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sy #registration .field[disabled],

#custom-html-sy #registration .field[readonly],

#custom-html-sy #registration .form-control[disabled],

#custom-html-sy #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sy #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-sy .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sy .upgrade .product-to-be-upgraded h4,

#custom-html-sy .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sy .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sy .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sy .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sy .upgrade .products .product .current,

#custom-html-sy .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sy .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sy .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-sy .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-sy .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sy .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sy .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sy .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sy .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sy .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sy .upgrade .products .far,

#custom-html-sy .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sy .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sy .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-sy .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sy .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sy .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sy .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sy .intl-tel-input {

  width: 100%;

}

#custom-html-sy .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sy .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .bootstrap-switch input[type=checkbox],

#custom-html-sy .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sy .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sy .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sy .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sy .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sy .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sy .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sy .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sy .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sy .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sy .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sy .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sy .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-sy .md-editor .md-footer,

#custom-html-sy .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sy .md-editor > .md-header {

  margin: 0;

}

#custom-html-sy .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sy .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sy .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sy .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sy .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sy .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sy .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sy .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-input,

#custom-html-sy .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sy .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sy .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sy .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sy .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sy .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sy .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sy .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sy .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sy .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sy .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sy table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sy table.dataTable td,

#custom-html-sy table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sy table.dataTable td.dataTables_empty,

#custom-html-sy table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sy table.dataTable.nowrap td,

#custom-html-sy table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sy div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sy table.dataTable thead > tr > td.sorting,

#custom-html-sy table.dataTable thead > tr > td.sorting_asc,

#custom-html-sy table.dataTable thead > tr > td.sorting_desc,

#custom-html-sy table.dataTable thead > tr > th.sorting,

#custom-html-sy table.dataTable thead > tr > th.sorting_asc,

#custom-html-sy table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sy table.dataTable thead > tr > td:active,

#custom-html-sy table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sy table.dataTable thead .sorting,

#custom-html-sy table.dataTable thead .sorting_asc,

#custom-html-sy table.dataTable thead .sorting_asc_disabled,

#custom-html-sy table.dataTable thead .sorting_desc,

#custom-html-sy table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sy table.dataTable thead .sorting:after,

#custom-html-sy table.dataTable thead .sorting_asc:after,

#custom-html-sy table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sy table.dataTable thead .sorting_desc:after,

#custom-html-sy table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sy table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sy table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sy table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sy table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sy table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sy div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sy div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sy div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sy div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sy div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sy div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sy div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sy div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-sy div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sy div.dataTables_wrapper div.dataTables_info,

  #custom-html-sy div.dataTables_wrapper div.dataTables_length,

  #custom-html-sy div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-sy table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sy table.dataTable.table-condensed .sorting:after,

#custom-html-sy table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sy table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sy table.table-bordered.dataTable td,

#custom-html-sy table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sy table.table-bordered.dataTable td:last-child,

#custom-html-sy table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sy table.table-bordered.dataTable tbody td,

#custom-html-sy table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sy div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sy div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sy div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-sy div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sy table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sy table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sy table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sy table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sy table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sy table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sy table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sy table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sy table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sy table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sy table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sy table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sy table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sy table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sy table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sy table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sy div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sy div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sy div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sy div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sy div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sy div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-sy div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sy div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sy .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sy .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sy .multiselect-container > li {

  padding: 0;

}

#custom-html-sy .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sy .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sy .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sy .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sy .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sy .multiselect-container > li > a > label.checkbox,

#custom-html-sy .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sy .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sy .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sy .form-inline .multiselect-container label.checkbox,

#custom-html-sy .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sy .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sy .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7xUjHvEs {

  padding-top: 45px;

  padding-bottom: 45px;

  background-image: url("../../../assets/images/mbr-1920x1783.jpg");

}

.cid-sl7xUjHvEs P {

  color: #767676;

}

.cid-sl7xUjHvEs H1 {

  color: #ffffff;

}

.cid-sl7xUjHvEs .mbr-text,

.cid-sl7xUjHvEs .mbr-section-btn {

  color: #ffffff;

}

.cid-sl7xUjHvEs h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3pVmDGus .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3pVmDGus .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3pVmDGus .divider-top::before,

.cid-sF3pVmDGus .divider-bottom::before,

.cid-sF3pVmDGus .divider-top::after,

.cid-sF3pVmDGus .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3pVmDGus .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3pVmDGus .divider-triangles::before {

  top: -50px;

}

.cid-sF3pVmDGus .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3pVmDGus .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3pVmDGus .divider-multitriangles::before,

.cid-sF3pVmDGus .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3pVmDGus .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-rAc6Q3Yx1X {

  padding-top: 0px;

  padding-bottom: 90px;

  background-color: #efefef;

}

.cid-rAc6Q3Yx1X .mbr-figure {

  margin: 0 auto;

  width: 100%;

  display: -webkit-flex;

  justify-content: center;

  -webkit-justify-content: center;

}

.cid-rAc6Q3Yx1X .mbr-figure img {

  height: 100%;

  margin: 0 auto;

}

@media (max-width: 991px) {

  .cid-rAc6Q3Yx1X .mbr-figure img {

    width: 100% !important;

  }

}

.cid-rAc6Q3Yx1X .mbr-text,

.cid-rAc6Q3Yx1X .mbr-section-btn {

  text-align: left;

  color: #000000;

}

.cid-rAc6Q3Yx1X H1 {

  color: #000000;

}

.cid-sF3qbvOrc4 .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3qbvOrc4 .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3qbvOrc4 .divider-top::before,

.cid-sF3qbvOrc4 .divider-bottom::before,

.cid-sF3qbvOrc4 .divider-top::after,

.cid-sF3qbvOrc4 .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3qbvOrc4 .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3qbvOrc4 .divider-triangles::before {

  top: -50px;

}

.cid-sF3qbvOrc4 .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3qbvOrc4 .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3qbvOrc4 .divider-multitriangles::before,

.cid-sF3qbvOrc4 .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3qbvOrc4 .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-rAc1imAcmB {

  padding-top: 0px;

  padding-bottom: 15px;

  background-color: #ffffff;

}

.cid-rAc1imAcmB .card-img {

  background-color: #fff;

}

.cid-rAc1imAcmB .card-box {

  padding: 2rem;

}

.cid-rAc1imAcmB h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-rAc1imAcmB p {

  text-align: left;

}

.cid-rAc1imAcmB .mbr-text {

  color: #000000;

}

.cid-rAc1imAcmB .card-wrapper {

  height: 100%;

  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);

  transition: box-shadow 0.3s;

}

.cid-rAc1imAcmB .card-wrapper:hover {

  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);

  transition: box-shadow 0.3s;

}

@media (min-width: 992px) {

  .cid-rAc1imAcmB .my-col {

    flex: 0 0 20%;

    max-width: 20%;

    padding: 15px;

    -webkit-flex: 0 0 20%;

  }

}

.cid-rAc1imAcmB .card-title {

  color: #000000;

}

.cid-rAc34wd4HP {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-rAc34wd4HP .card-img {

  background-color: #fff;

}

.cid-rAc34wd4HP .card-box {

  padding: 2rem;

}

.cid-rAc34wd4HP h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-rAc34wd4HP p {

  text-align: left;

}

.cid-rAc34wd4HP .mbr-text {

  color: #000000;

}

.cid-rAc34wd4HP .card-wrapper {

  height: 100%;

  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);

  transition: box-shadow 0.3s;

}

.cid-rAc34wd4HP .card-wrapper:hover {

  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);

  transition: box-shadow 0.3s;

}

@media (min-width: 992px) {

  .cid-rAc34wd4HP .my-col {

    flex: 0 0 20%;

    max-width: 20%;

    padding: 15px;

    -webkit-flex: 0 0 20%;

  }

}

.cid-rAc34wd4HP .card-title {

  color: #000000;

}

.cid-sF3qudg6Kf .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3qudg6Kf .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3qudg6Kf .divider-top::before,

.cid-sF3qudg6Kf .divider-bottom::before,

.cid-sF3qudg6Kf .divider-top::after,

.cid-sF3qudg6Kf .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3qudg6Kf .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3qudg6Kf .divider-triangles::before {

  top: -50px;

}

.cid-sF3qudg6Kf .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3qudg6Kf .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3qudg6Kf .divider-multitriangles::before,

.cid-sF3qudg6Kf .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3qudg6Kf .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-s889NJQIZg {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s889NJQIZg h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s889NJQIZg p {

  color: #767676;

  text-align: left;

}

.cid-s889NJQIZg .card-box {

  padding-top: 2rem;

}

.cid-s889NJQIZg .card-wrapper {

  height: 100%;

}

.cid-svDAaKFCAM {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDAaKFCAM .content {

    text-align: center;

  }

  .cid-svDAaKFCAM .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDAaKFCAM .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDAaKFCAM .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDAaKFCAM .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDAaKFCAM .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDAaKFCAM .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDAaKFCAM .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDAaKFCAM .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDAaKFCAM .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDAaKFCAM .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDAaKFCAM .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDAaKFCAM .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDAaKFCAM .copyright > p {

  text-align: left;

}

.cid-svDAaKFCAM H5 {

  color: #000000;

}

.cid-svGGK8IrqE .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGGK8IrqE .my-float {

  margin-top: 16px;

}

.cid-svGGK8IrqE P {

  color: #232323;

}

.cid-svGGK8IrqE DIV {

  color: #ffffff;

}

.cid-svGGK8IrqE H10 {

  color: #767676;

}

.cid-svGGK8IrqE .hidden {

  display: none;

}

#custom-html-sz {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-sz html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sz body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-sz article,

#custom-html-sz aside,

#custom-html-sz details,

#custom-html-sz figcaption,

#custom-html-sz figure,

#custom-html-sz footer,

#custom-html-sz header,

#custom-html-sz hgroup,

#custom-html-sz main,

#custom-html-sz menu,

#custom-html-sz nav,

#custom-html-sz section,

#custom-html-sz summary {

  display: block;

}

#custom-html-sz audio,

#custom-html-sz canvas,

#custom-html-sz progress,

#custom-html-sz video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sz audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sz [hidden],

#custom-html-sz template {

  display: none;

}

#custom-html-sz a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-sz a:active,

#custom-html-sz a:hover {

  outline: 0;

}

#custom-html-sz abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sz b,

#custom-html-sz strong {

  font-weight: 700;

}

#custom-html-sz dfn {

  font-style: italic;

}

#custom-html-sz h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sz mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sz small {

  font-size: 80%;

}

#custom-html-sz sub,

#custom-html-sz sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sz sup {

  top: -0.5em;

}

#custom-html-sz sub {

  bottom: -0.25em;

}

#custom-html-sz img {

  border: 0;

  vertical-align: middle;

}

#custom-html-sz svg:not(:root) {

  overflow: hidden;

}

#custom-html-sz figure {

  margin: 0;

}

#custom-html-sz hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sz pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sz code,

#custom-html-sz kbd,

#custom-html-sz pre,

#custom-html-sz samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-sz button,

#custom-html-sz input,

#custom-html-sz optgroup,

#custom-html-sz select,

#custom-html-sz textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sz button {

  overflow: visible;

}

#custom-html-sz button,

#custom-html-sz select {

  text-transform: none;

}

#custom-html-sz button,

#custom-html-sz html input[type=button],

#custom-html-sz input[type=reset],

#custom-html-sz input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sz button[disabled],

#custom-html-sz html input[disabled] {

  cursor: default;

}

#custom-html-sz button::-moz-focus-inner,

#custom-html-sz input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sz input {

  line-height: normal;

}

#custom-html-sz input[type=checkbox],

#custom-html-sz input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sz input[type=number]::-webkit-inner-spin-button,

#custom-html-sz input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sz input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-sz input[type=search]::-webkit-search-cancel-button,

#custom-html-sz input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sz fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-sz legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sz textarea {

  overflow: auto;

}

#custom-html-sz optgroup {

  font-weight: 700;

}

#custom-html-sz table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-sz td,

#custom-html-sz th {

  padding: 0;

}

@media print {

  #custom-html-sz *,

  #custom-html-sz :after,

  #custom-html-sz :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sz a,

  #custom-html-sz a:visited {

    text-decoration: underline;

  }

  #custom-html-sz a[href]:after {

    content: "" !important;

  }

  #custom-html-sz abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sz a[href^="#"]:after,

  #custom-html-sz a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sz blockquote,

  #custom-html-sz pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sz thead {

    display: table-header-group;

  }

  #custom-html-sz img,

  #custom-html-sz tr {

    page-break-inside: avoid;

  }

  #custom-html-sz img {

    max-width: 100% !important;

  }

  #custom-html-sz h2,

  #custom-html-sz h3,

  #custom-html-sz p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sz h2,

  #custom-html-sz h3 {

    page-break-after: avoid;

  }

  #custom-html-sz .navbar {

    display: none;

  }

  #custom-html-sz .btn > .caret,

  #custom-html-sz .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sz .label {

    border: 1px solid #000000;

  }

  #custom-html-sz .table {

    border-collapse: collapse !important;

  }

  #custom-html-sz .table td,

  #custom-html-sz .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sz .table-bordered td,

  #custom-html-sz .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-sz .visible-print {

    display: block !important;

  }

  #custom-html-sz table.visible-print {

    display: table !important;

  }

  #custom-html-sz tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sz td.visible-print,

  #custom-html-sz th.visible-print {

    display: table-cell !important;

  }

  #custom-html-sz .visible-print-block {

    display: block !important;

  }

  #custom-html-sz .visible-print-inline {

    display: inline !important;

  }

  #custom-html-sz .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-sz .hidden-print {

    display: none !important;

  }

  #custom-html-sz #main-menu,

  #custom-html-sz #top-nav,

  #custom-html-sz .header-lined,

  #custom-html-sz .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sz .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sz .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sz .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sz .glyphicon-eur:before,

#custom-html-sz .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sz .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sz .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sz .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sz .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sz .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sz .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sz .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sz .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sz .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sz .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sz .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sz .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sz .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sz .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sz .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sz .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sz .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sz .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sz .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sz .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sz .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sz .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sz .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sz .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sz .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sz .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sz .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sz .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sz .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sz .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sz .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sz .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sz .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sz .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sz .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sz .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sz .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sz .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sz .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sz .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sz .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sz .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sz .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sz .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sz .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sz .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sz .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sz .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sz .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sz .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sz .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sz .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sz .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sz .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sz .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sz .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sz .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sz .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sz .glyphicon-list:before {

  content: "\e056";

}

#custom-html-sz .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sz .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sz .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sz .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sz .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sz .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sz .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sz .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sz .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sz .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sz .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sz .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sz .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sz .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sz .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sz .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sz .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sz .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sz .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sz .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sz .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sz .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sz .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sz .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sz .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-sz .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sz .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sz .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sz .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sz .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sz .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sz .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sz .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sz .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sz .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sz .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sz .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sz .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sz .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sz .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sz .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sz .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sz .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sz .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sz .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sz .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sz .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sz .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sz .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sz .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sz .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sz .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sz .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sz .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sz .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sz .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sz .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sz .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sz .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sz .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sz .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sz .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sz .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sz .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sz .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sz .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sz .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sz .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sz .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sz .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sz .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sz .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sz .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sz .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sz .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sz .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sz .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sz .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sz .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sz .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sz .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sz .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sz .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sz .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sz .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sz .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sz .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sz .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sz .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sz .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sz .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sz .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sz .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sz .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sz .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sz .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sz .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sz .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sz .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-sz .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sz .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sz .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sz .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sz .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sz .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sz .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sz .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sz .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sz .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sz .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sz .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sz .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sz .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sz .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sz .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sz .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sz .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sz .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sz .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sz .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sz .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sz .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sz .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sz .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sz .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sz .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sz .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sz .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sz .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sz .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sz .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sz .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sz .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sz .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sz .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sz .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sz .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sz .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sz .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sz .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sz .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sz .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sz .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sz .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sz .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sz .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sz .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sz .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sz .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sz .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sz .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sz .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sz .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sz .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sz .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sz .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sz .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sz .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sz .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sz .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sz .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sz .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sz .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sz .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sz .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sz .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sz .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sz .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sz .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sz .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sz .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sz .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sz .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sz .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sz .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sz .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sz .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sz .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sz .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sz .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sz .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sz .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sz .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sz .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sz .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-sz .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sz .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sz .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sz .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sz .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sz .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sz .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sz .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sz .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sz .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sz .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sz .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sz .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sz .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sz .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sz * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sz :after,

#custom-html-sz :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sz button,

#custom-html-sz input,

#custom-html-sz select,

#custom-html-sz textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sz a:focus,

#custom-html-sz a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sz a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sz .carousel-inner > .item > a > img,

#custom-html-sz .carousel-inner > .item > img,

#custom-html-sz .img-responsive,

#custom-html-sz .thumbnail a > img,

#custom-html-sz .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sz .img-rounded {

  border-radius: 6px;

}

#custom-html-sz .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sz .img-circle {

  border-radius: 50%;

}

#custom-html-sz .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sz .sr-only-focusable:active,

#custom-html-sz .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sz [role=button] {

  cursor: pointer;

}

#custom-html-sz .h1,

#custom-html-sz .h2,

#custom-html-sz .h3,

#custom-html-sz .h4,

#custom-html-sz .h5,

#custom-html-sz .h6,

#custom-html-sz h1,

#custom-html-sz h2,

#custom-html-sz h3,

#custom-html-sz h4,

#custom-html-sz h5,

#custom-html-sz h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sz .h1 .small,

#custom-html-sz .h1 small,

#custom-html-sz .h2 .small,

#custom-html-sz .h2 small,

#custom-html-sz .h3 .small,

#custom-html-sz .h3 small,

#custom-html-sz .h4 .small,

#custom-html-sz .h4 small,

#custom-html-sz .h5 .small,

#custom-html-sz .h5 small,

#custom-html-sz .h6 .small,

#custom-html-sz .h6 small,

#custom-html-sz h1 .small,

#custom-html-sz h1 small,

#custom-html-sz h2 .small,

#custom-html-sz h2 small,

#custom-html-sz h3 .small,

#custom-html-sz h3 small,

#custom-html-sz h4 .small,

#custom-html-sz h4 small,

#custom-html-sz h5 .small,

#custom-html-sz h5 small,

#custom-html-sz h6 .small,

#custom-html-sz h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sz .h1,

#custom-html-sz .h2,

#custom-html-sz .h3,

#custom-html-sz h1,

#custom-html-sz h2,

#custom-html-sz h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sz .h1 .small,

#custom-html-sz .h1 small,

#custom-html-sz .h2 .small,

#custom-html-sz .h2 small,

#custom-html-sz .h3 .small,

#custom-html-sz .h3 small,

#custom-html-sz h1 .small,

#custom-html-sz h1 small,

#custom-html-sz h2 .small,

#custom-html-sz h2 small,

#custom-html-sz h3 .small,

#custom-html-sz h3 small {

  font-size: 65%;

}

#custom-html-sz .h4,

#custom-html-sz .h5,

#custom-html-sz .h6,

#custom-html-sz h4,

#custom-html-sz h5,

#custom-html-sz h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sz .h4 .small,

#custom-html-sz .h4 small,

#custom-html-sz .h5 .small,

#custom-html-sz .h5 small,

#custom-html-sz .h6 .small,

#custom-html-sz .h6 small,

#custom-html-sz h4 .small,

#custom-html-sz h4 small,

#custom-html-sz h5 .small,

#custom-html-sz h5 small,

#custom-html-sz h6 .small,

#custom-html-sz h6 small {

  font-size: 75%;

}

#custom-html-sz .h1,

#custom-html-sz h1 {

  font-size: 36px;

}

#custom-html-sz .h2,

#custom-html-sz h2 {

  font-size: 30px;

}

#custom-html-sz .h3,

#custom-html-sz h3 {

  font-size: 24px;

}

#custom-html-sz .h4,

#custom-html-sz h4 {

  font-size: 18px;

}

#custom-html-sz .h5,

#custom-html-sz h5 {

  font-size: 14px;

}

#custom-html-sz .h6,

#custom-html-sz h6 {

  font-size: 12px;

}

#custom-html-sz p {

  margin: 0 0 10px;

}

#custom-html-sz .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sz .lead {

    font-size: 21px;

  }

  #custom-html-sz .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sz .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-sz .container {

    width: 750px;

  }

  #custom-html-sz .col-sm-1,

  #custom-html-sz .col-sm-10,

  #custom-html-sz .col-sm-11,

  #custom-html-sz .col-sm-12,

  #custom-html-sz .col-sm-2,

  #custom-html-sz .col-sm-3,

  #custom-html-sz .col-sm-4,

  #custom-html-sz .col-sm-5,

  #custom-html-sz .col-sm-6,

  #custom-html-sz .col-sm-7,

  #custom-html-sz .col-sm-8,

  #custom-html-sz .col-sm-9 {

    float: left;

  }

  #custom-html-sz .col-sm-12 {

    width: 100%;

  }

  #custom-html-sz .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sz .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sz .col-sm-9 {

    width: 75%;

  }

  #custom-html-sz .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sz .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sz .col-sm-6 {

    width: 50%;

  }

  #custom-html-sz .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sz .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sz .col-sm-3 {

    width: 25%;

  }

  #custom-html-sz .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sz .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sz .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sz .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sz .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sz .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sz .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sz .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sz .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sz .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sz .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sz .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sz .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sz .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sz .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sz .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sz .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sz .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sz .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sz .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sz .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sz .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sz .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sz .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sz .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sz .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sz .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sz .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sz .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sz .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sz .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sz .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sz .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sz .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sz .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sz .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sz .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sz .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sz .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sz .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sz .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-sz .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sz .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sz .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sz .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sz .form-inline .input-group .form-control,

  #custom-html-sz .form-inline .input-group .input-group-addon,

  #custom-html-sz .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sz .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sz .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sz .form-inline .checkbox,

  #custom-html-sz .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sz .form-inline .checkbox label,

  #custom-html-sz .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sz .form-inline .checkbox input[type=checkbox],

  #custom-html-sz .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sz .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sz .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-sz .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-sz .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-sz .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sz .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-sz .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sz .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sz .nav-tabs.nav-justified > .active > a,

  #custom-html-sz .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sz .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sz .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sz .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-sz .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sz .nav-tabs-justified > .active > a,

  #custom-html-sz .nav-tabs-justified > .active > a:focus,

  #custom-html-sz .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sz .navbar {

    border-radius: 4px;

  }

  #custom-html-sz .navbar-header {

    float: left;

  }

  #custom-html-sz .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sz .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sz .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sz .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sz .navbar-fixed-top .navbar-collapse,

  #custom-html-sz .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-sz .container-fluid > .navbar-collapse,

  #custom-html-sz .container-fluid > .navbar-header,

  #custom-html-sz .container > .navbar-collapse,

  #custom-html-sz .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-sz .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-sz .navbar-fixed-bottom,

  #custom-html-sz .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-sz .navbar > .container .navbar-brand,

  #custom-html-sz .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-sz .navbar-toggle {

    display: none;

  }

  #custom-html-sz .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sz .navbar-nav > li {

    float: left;

  }

  #custom-html-sz .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-sz .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sz .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sz .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sz .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sz .navbar-form .input-group .form-control,

  #custom-html-sz .navbar-form .input-group .input-group-addon,

  #custom-html-sz .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sz .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sz .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sz .navbar-form .checkbox,

  #custom-html-sz .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sz .navbar-form .checkbox label,

  #custom-html-sz .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sz .navbar-form .checkbox input[type=checkbox],

  #custom-html-sz .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sz .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sz .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sz .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-sz .navbar-left {

    float: left !important;

  }

  #custom-html-sz .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sz .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-sz .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sz .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sz .modal-sm {

    width: 300px;

  }

  #custom-html-sz .pull-sm-left {

    float: left;

  }

  #custom-html-sz .pull-sm-right {

    float: right;

  }

  #custom-html-sz .text-right-sm {

    text-align: right;

  }

  #custom-html-sz .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sz .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-sz .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sz .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sz .email-verification .button {

    float: right;

  }

  #custom-html-sz .email-verification .far,

  #custom-html-sz .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-sz .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sz .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-sz .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sz .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sz .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sz .small,

#custom-html-sz small {

  font-size: 85%;

}

#custom-html-sz .mark,

#custom-html-sz mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sz .text-left {

  text-align: left;

}

#custom-html-sz .text-right {

  text-align: right;

}

#custom-html-sz .text-center {

  text-align: center;

}

#custom-html-sz .text-justify {

  text-align: justify;

}

#custom-html-sz .text-nowrap {

  white-space: nowrap;

}

#custom-html-sz .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sz .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sz .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sz .text-muted {

  color: #777777;

}

#custom-html-sz .text-primary {

  color: #000000;

}

#custom-html-sz a.text-primary:focus,

#custom-html-sz a.text-primary:hover {

  color: #000000;

}

#custom-html-sz .text-success {

  color: #3c763d;

}

#custom-html-sz a.text-success:focus,

#custom-html-sz a.text-success:hover {

  color: #2b542c;

}

#custom-html-sz .text-info {

  color: #31708f;

}

#custom-html-sz a.text-info:focus,

#custom-html-sz a.text-info:hover {

  color: #000000;

}

#custom-html-sz .text-warning {

  color: #8a6d3b;

}

#custom-html-sz a.text-warning:focus,

#custom-html-sz a.text-warning:hover {

  color: #66512c;

}

#custom-html-sz .text-danger {

  color: #a94442;

}

#custom-html-sz a.text-danger:focus,

#custom-html-sz a.text-danger:hover {

  color: #843534;

}

#custom-html-sz .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-sz a.bg-primary:focus,

#custom-html-sz a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sz .bg-success {

  background-color: #dff0d8;

}

#custom-html-sz a.bg-success:focus,

#custom-html-sz a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sz .bg-info {

  background-color: #d9edf7;

}

#custom-html-sz a.bg-info:focus,

#custom-html-sz a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sz .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sz a.bg-warning:focus,

#custom-html-sz a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sz .bg-danger {

  background-color: #f2dede;

}

#custom-html-sz a.bg-danger:focus,

#custom-html-sz a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sz .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sz ol,

#custom-html-sz ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sz ol ol,

#custom-html-sz ol ul,

#custom-html-sz ul ol,

#custom-html-sz ul ul {

  margin-bottom: 0;

}

#custom-html-sz .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sz .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sz .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sz dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sz dd,

#custom-html-sz dt {

  line-height: 1.42857143;

}

#custom-html-sz dt {

  font-weight: 700;

}

#custom-html-sz dd {

  margin-left: 0;

}

#custom-html-sz abbr[data-original-title],

#custom-html-sz abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sz .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sz blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sz blockquote ol:last-child,

#custom-html-sz blockquote p:last-child,

#custom-html-sz blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sz blockquote .small,

#custom-html-sz blockquote footer,

#custom-html-sz blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sz blockquote .small:before,

#custom-html-sz blockquote footer:before,

#custom-html-sz blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sz .blockquote-reverse,

#custom-html-sz blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sz .blockquote-reverse .small:before,

#custom-html-sz .blockquote-reverse footer:before,

#custom-html-sz .blockquote-reverse small:before,

#custom-html-sz blockquote.pull-right .small:before,

#custom-html-sz blockquote.pull-right footer:before,

#custom-html-sz blockquote.pull-right small:before {

  content: '';

}

#custom-html-sz .blockquote-reverse .small:after,

#custom-html-sz .blockquote-reverse footer:after,

#custom-html-sz .blockquote-reverse small:after,

#custom-html-sz blockquote.pull-right .small:after,

#custom-html-sz blockquote.pull-right footer:after,

#custom-html-sz blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sz address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sz code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sz kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sz kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sz pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sz .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sz .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-sz .container {

    width: 970px;

  }

  #custom-html-sz .col-md-1,

  #custom-html-sz .col-md-10,

  #custom-html-sz .col-md-11,

  #custom-html-sz .col-md-12,

  #custom-html-sz .col-md-2,

  #custom-html-sz .col-md-3,

  #custom-html-sz .col-md-4,

  #custom-html-sz .col-md-5,

  #custom-html-sz .col-md-6,

  #custom-html-sz .col-md-7,

  #custom-html-sz .col-md-8,

  #custom-html-sz .col-md-9 {

    float: left;

  }

  #custom-html-sz .col-md-12 {

    width: 100%;

  }

  #custom-html-sz .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sz .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sz .col-md-9 {

    width: 75%;

  }

  #custom-html-sz .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sz .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sz .col-md-6 {

    width: 50%;

  }

  #custom-html-sz .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sz .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sz .col-md-3 {

    width: 25%;

  }

  #custom-html-sz .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sz .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sz .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sz .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sz .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sz .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sz .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sz .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sz .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sz .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sz .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sz .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sz .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sz .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sz .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sz .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sz .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sz .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sz .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sz .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sz .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sz .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sz .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sz .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sz .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sz .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sz .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sz .col-md-push-0 {

    left: auto;

  }

  #custom-html-sz .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sz .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sz .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sz .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sz .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sz .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sz .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sz .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sz .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sz .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sz .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sz .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sz .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-sz .modal-lg {

    width: 900px;

  }

  #custom-html-sz .pull-md-left {

    float: left;

  }

  #custom-html-sz .pull-md-right {

    float: right;

  }

  #custom-html-sz h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sz .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sz .container {

    width: 1170px;

  }

  #custom-html-sz .col-lg-1,

  #custom-html-sz .col-lg-10,

  #custom-html-sz .col-lg-11,

  #custom-html-sz .col-lg-12,

  #custom-html-sz .col-lg-2,

  #custom-html-sz .col-lg-3,

  #custom-html-sz .col-lg-4,

  #custom-html-sz .col-lg-5,

  #custom-html-sz .col-lg-6,

  #custom-html-sz .col-lg-7,

  #custom-html-sz .col-lg-8,

  #custom-html-sz .col-lg-9 {

    float: left;

  }

  #custom-html-sz .col-lg-12 {

    width: 100%;

  }

  #custom-html-sz .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sz .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sz .col-lg-9 {

    width: 75%;

  }

  #custom-html-sz .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sz .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sz .col-lg-6 {

    width: 50%;

  }

  #custom-html-sz .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sz .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sz .col-lg-3 {

    width: 25%;

  }

  #custom-html-sz .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sz .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sz .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sz .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sz .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sz .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sz .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sz .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sz .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sz .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sz .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sz .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sz .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sz .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sz .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sz .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sz .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sz .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sz .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sz .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sz .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sz .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sz .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sz .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sz .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sz .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sz .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sz .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sz .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sz .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sz .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sz .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sz .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sz .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sz .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sz .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sz .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sz .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sz .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sz .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sz .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-sz .visible-lg {

    display: block !important;

  }

  #custom-html-sz table.visible-lg {

    display: table !important;

  }

  #custom-html-sz tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sz td.visible-lg,

  #custom-html-sz th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-sz .visible-lg-block {

    display: block !important;

  }

  #custom-html-sz .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-sz .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-sz .hidden-lg {

    display: none !important;

  }

  #custom-html-sz .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sz .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sz .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sz .col-lg-1,

#custom-html-sz .col-lg-10,

#custom-html-sz .col-lg-11,

#custom-html-sz .col-lg-12,

#custom-html-sz .col-lg-2,

#custom-html-sz .col-lg-3,

#custom-html-sz .col-lg-4,

#custom-html-sz .col-lg-5,

#custom-html-sz .col-lg-6,

#custom-html-sz .col-lg-7,

#custom-html-sz .col-lg-8,

#custom-html-sz .col-lg-9,

#custom-html-sz .col-md-1,

#custom-html-sz .col-md-10,

#custom-html-sz .col-md-11,

#custom-html-sz .col-md-12,

#custom-html-sz .col-md-2,

#custom-html-sz .col-md-3,

#custom-html-sz .col-md-4,

#custom-html-sz .col-md-5,

#custom-html-sz .col-md-6,

#custom-html-sz .col-md-7,

#custom-html-sz .col-md-8,

#custom-html-sz .col-md-9,

#custom-html-sz .col-sm-1,

#custom-html-sz .col-sm-10,

#custom-html-sz .col-sm-11,

#custom-html-sz .col-sm-12,

#custom-html-sz .col-sm-2,

#custom-html-sz .col-sm-3,

#custom-html-sz .col-sm-4,

#custom-html-sz .col-sm-5,

#custom-html-sz .col-sm-6,

#custom-html-sz .col-sm-7,

#custom-html-sz .col-sm-8,

#custom-html-sz .col-sm-9,

#custom-html-sz .col-xs-1,

#custom-html-sz .col-xs-10,

#custom-html-sz .col-xs-11,

#custom-html-sz .col-xs-12,

#custom-html-sz .col-xs-2,

#custom-html-sz .col-xs-3,

#custom-html-sz .col-xs-4,

#custom-html-sz .col-xs-5,

#custom-html-sz .col-xs-6,

#custom-html-sz .col-xs-7,

#custom-html-sz .col-xs-8,

#custom-html-sz .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sz .col-xs-1,

#custom-html-sz .col-xs-10,

#custom-html-sz .col-xs-11,

#custom-html-sz .col-xs-12,

#custom-html-sz .col-xs-2,

#custom-html-sz .col-xs-3,

#custom-html-sz .col-xs-4,

#custom-html-sz .col-xs-5,

#custom-html-sz .col-xs-6,

#custom-html-sz .col-xs-7,

#custom-html-sz .col-xs-8,

#custom-html-sz .col-xs-9 {

  float: left;

}

#custom-html-sz .col-xs-12 {

  width: 100%;

}

#custom-html-sz .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sz .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sz .col-xs-9 {

  width: 75%;

}

#custom-html-sz .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sz .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sz .col-xs-6 {

  width: 50%;

}

#custom-html-sz .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sz .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sz .col-xs-3 {

  width: 25%;

}

#custom-html-sz .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sz .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sz .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sz .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sz .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sz .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sz .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sz .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sz .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sz .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sz .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sz .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sz .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sz .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sz .col-xs-pull-0 {

  right: auto;

}

#custom-html-sz .col-xs-push-12 {

  left: 100%;

}

#custom-html-sz .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sz .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sz .col-xs-push-9 {

  left: 75%;

}

#custom-html-sz .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sz .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sz .col-xs-push-6 {

  left: 50%;

}

#custom-html-sz .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sz .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sz .col-xs-push-3 {

  left: 25%;

}

#custom-html-sz .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sz .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sz .col-xs-push-0 {

  left: auto;

}

#custom-html-sz .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sz .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sz .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sz .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sz .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sz .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sz .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sz .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sz .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sz .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sz .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sz .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-sz .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-sz caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sz th {

  text-align: left;

}

#custom-html-sz .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sz .table > tbody > tr > td,

#custom-html-sz .table > tbody > tr > th,

#custom-html-sz .table > tfoot > tr > td,

#custom-html-sz .table > tfoot > tr > th,

#custom-html-sz .table > thead > tr > td,

#custom-html-sz .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sz .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sz .table > caption + thead > tr:first-child > td,

#custom-html-sz .table > caption + thead > tr:first-child > th,

#custom-html-sz .table > colgroup + thead > tr:first-child > td,

#custom-html-sz .table > colgroup + thead > tr:first-child > th,

#custom-html-sz .table > thead:first-child > tr:first-child > td,

#custom-html-sz .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sz .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sz .table .table {

  background-color: #ffffff;

}

#custom-html-sz .table-condensed > tbody > tr > td,

#custom-html-sz .table-condensed > tbody > tr > th,

#custom-html-sz .table-condensed > tfoot > tr > td,

#custom-html-sz .table-condensed > tfoot > tr > th,

#custom-html-sz .table-condensed > thead > tr > td,

#custom-html-sz .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sz .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sz .table-bordered > tbody > tr > td,

#custom-html-sz .table-bordered > tbody > tr > th,

#custom-html-sz .table-bordered > tfoot > tr > td,

#custom-html-sz .table-bordered > tfoot > tr > th,

#custom-html-sz .table-bordered > thead > tr > td,

#custom-html-sz .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sz .table-bordered > thead > tr > td,

#custom-html-sz .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sz .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sz .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sz table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sz table td[class*=col-],

#custom-html-sz table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-sz .table > tbody > tr.active > td,

#custom-html-sz .table > tbody > tr.active > th,

#custom-html-sz .table > tbody > tr > td.active,

#custom-html-sz .table > tbody > tr > th.active,

#custom-html-sz .table > tfoot > tr.active > td,

#custom-html-sz .table > tfoot > tr.active > th,

#custom-html-sz .table > tfoot > tr > td.active,

#custom-html-sz .table > tfoot > tr > th.active,

#custom-html-sz .table > thead > tr.active > td,

#custom-html-sz .table > thead > tr.active > th,

#custom-html-sz .table > thead > tr > td.active,

#custom-html-sz .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sz .table-hover > tbody > tr.active:hover > td,

#custom-html-sz .table-hover > tbody > tr.active:hover > th,

#custom-html-sz .table-hover > tbody > tr:hover > .active,

#custom-html-sz .table-hover > tbody > tr > td.active:hover,

#custom-html-sz .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sz .table > tbody > tr.success > td,

#custom-html-sz .table > tbody > tr.success > th,

#custom-html-sz .table > tbody > tr > td.success,

#custom-html-sz .table > tbody > tr > th.success,

#custom-html-sz .table > tfoot > tr.success > td,

#custom-html-sz .table > tfoot > tr.success > th,

#custom-html-sz .table > tfoot > tr > td.success,

#custom-html-sz .table > tfoot > tr > th.success,

#custom-html-sz .table > thead > tr.success > td,

#custom-html-sz .table > thead > tr.success > th,

#custom-html-sz .table > thead > tr > td.success,

#custom-html-sz .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sz .table-hover > tbody > tr.success:hover > td,

#custom-html-sz .table-hover > tbody > tr.success:hover > th,

#custom-html-sz .table-hover > tbody > tr:hover > .success,

#custom-html-sz .table-hover > tbody > tr > td.success:hover,

#custom-html-sz .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sz .table > tbody > tr.info > td,

#custom-html-sz .table > tbody > tr.info > th,

#custom-html-sz .table > tbody > tr > td.info,

#custom-html-sz .table > tbody > tr > th.info,

#custom-html-sz .table > tfoot > tr.info > td,

#custom-html-sz .table > tfoot > tr.info > th,

#custom-html-sz .table > tfoot > tr > td.info,

#custom-html-sz .table > tfoot > tr > th.info,

#custom-html-sz .table > thead > tr.info > td,

#custom-html-sz .table > thead > tr.info > th,

#custom-html-sz .table > thead > tr > td.info,

#custom-html-sz .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sz .table-hover > tbody > tr.info:hover > td,

#custom-html-sz .table-hover > tbody > tr.info:hover > th,

#custom-html-sz .table-hover > tbody > tr:hover > .info,

#custom-html-sz .table-hover > tbody > tr > td.info:hover,

#custom-html-sz .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sz .table > tbody > tr.warning > td,

#custom-html-sz .table > tbody > tr.warning > th,

#custom-html-sz .table > tbody > tr > td.warning,

#custom-html-sz .table > tbody > tr > th.warning,

#custom-html-sz .table > tfoot > tr.warning > td,

#custom-html-sz .table > tfoot > tr.warning > th,

#custom-html-sz .table > tfoot > tr > td.warning,

#custom-html-sz .table > tfoot > tr > th.warning,

#custom-html-sz .table > thead > tr.warning > td,

#custom-html-sz .table > thead > tr.warning > th,

#custom-html-sz .table > thead > tr > td.warning,

#custom-html-sz .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sz .table-hover > tbody > tr.warning:hover > td,

#custom-html-sz .table-hover > tbody > tr.warning:hover > th,

#custom-html-sz .table-hover > tbody > tr:hover > .warning,

#custom-html-sz .table-hover > tbody > tr > td.warning:hover,

#custom-html-sz .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sz .table > tbody > tr.danger > td,

#custom-html-sz .table > tbody > tr.danger > th,

#custom-html-sz .table > tbody > tr > td.danger,

#custom-html-sz .table > tbody > tr > th.danger,

#custom-html-sz .table > tfoot > tr.danger > td,

#custom-html-sz .table > tfoot > tr.danger > th,

#custom-html-sz .table > tfoot > tr > td.danger,

#custom-html-sz .table > tfoot > tr > th.danger,

#custom-html-sz .table > thead > tr.danger > td,

#custom-html-sz .table > thead > tr.danger > th,

#custom-html-sz .table > thead > tr > td.danger,

#custom-html-sz .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sz .table-hover > tbody > tr.danger:hover > td,

#custom-html-sz .table-hover > tbody > tr.danger:hover > th,

#custom-html-sz .table-hover > tbody > tr:hover > .danger,

#custom-html-sz .table-hover > tbody > tr > td.danger:hover,

#custom-html-sz .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sz .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sz .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sz .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sz .table-responsive > .table > tbody > tr > td,

  #custom-html-sz .table-responsive > .table > tbody > tr > th,

  #custom-html-sz .table-responsive > .table > tfoot > tr > td,

  #custom-html-sz .table-responsive > .table > tfoot > tr > th,

  #custom-html-sz .table-responsive > .table > thead > tr > td,

  #custom-html-sz .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sz .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sz .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sz .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sz .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sz .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sz .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sz .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sz .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sz .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sz .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sz .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sz .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sz .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sz .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sz .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sz .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sz .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-sz div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sz div.dataTables_wrapper div.dataTables_info,

  #custom-html-sz div.dataTables_wrapper div.dataTables_length,

  #custom-html-sz div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-sz div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sz label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sz input[type=file] {

  display: block;

}

#custom-html-sz input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sz select[multiple],

#custom-html-sz select[size] {

  height: auto;

}

#custom-html-sz input[type=checkbox]:focus,

#custom-html-sz input[type=file]:focus,

#custom-html-sz input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sz output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sz .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sz .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sz .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sz .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sz .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sz .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sz .form-control[disabled],

#custom-html-sz .form-control[readonly],

#custom-html-sz fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sz .form-control[disabled],

#custom-html-sz fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sz textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sz input[type=date].form-control,

  #custom-html-sz input[type=datetime-local].form-control,

  #custom-html-sz input[type=month].form-control,

  #custom-html-sz input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sz .input-group-sm input[type=date],

  #custom-html-sz .input-group-sm input[type=datetime-local],

  #custom-html-sz .input-group-sm input[type=month],

  #custom-html-sz .input-group-sm input[type=time],

  #custom-html-sz input[type=date].input-sm,

  #custom-html-sz input[type=datetime-local].input-sm,

  #custom-html-sz input[type=month].input-sm,

  #custom-html-sz input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sz .input-group-lg input[type=date],

  #custom-html-sz .input-group-lg input[type=datetime-local],

  #custom-html-sz .input-group-lg input[type=month],

  #custom-html-sz .input-group-lg input[type=time],

  #custom-html-sz input[type=date].input-lg,

  #custom-html-sz input[type=datetime-local].input-lg,

  #custom-html-sz input[type=month].input-lg,

  #custom-html-sz input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sz .form-group {

  margin-bottom: 15px;

}

#custom-html-sz .checkbox,

#custom-html-sz .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sz .checkbox label,

#custom-html-sz .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sz .checkbox input[type=checkbox],

#custom-html-sz .checkbox-inline input[type=checkbox],

#custom-html-sz .radio input[type=radio],

#custom-html-sz .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sz .checkbox + .checkbox,

#custom-html-sz .radio + .radio {

  margin-top: -5px;

}

#custom-html-sz .checkbox-inline,

#custom-html-sz .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sz .checkbox-inline + .checkbox-inline,

#custom-html-sz .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sz fieldset[disabled] input[type=checkbox],

#custom-html-sz fieldset[disabled] input[type=radio],

#custom-html-sz input[type=checkbox].disabled,

#custom-html-sz input[type=checkbox][disabled],

#custom-html-sz input[type=radio].disabled,

#custom-html-sz input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sz .checkbox-inline.disabled,

#custom-html-sz .radio-inline.disabled,

#custom-html-sz fieldset[disabled] .checkbox-inline,

#custom-html-sz fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sz .checkbox.disabled label,

#custom-html-sz .radio.disabled label,

#custom-html-sz fieldset[disabled] .checkbox label,

#custom-html-sz fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sz .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sz .form-control-static.input-lg,

#custom-html-sz .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sz .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sz select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sz select[multiple].input-sm,

#custom-html-sz textarea.input-sm {

  height: auto;

}

#custom-html-sz .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sz .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sz .form-group-sm select[multiple].form-control,

#custom-html-sz .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sz .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sz .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sz select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sz select[multiple].input-lg,

#custom-html-sz textarea.input-lg {

  height: auto;

}

#custom-html-sz .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sz .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sz .form-group-lg select[multiple].form-control,

#custom-html-sz .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sz .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sz .has-feedback {

  position: relative;

}

#custom-html-sz .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sz .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sz .form-group-lg .form-control + .form-control-feedback,

#custom-html-sz .input-group-lg + .form-control-feedback,

#custom-html-sz .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sz .form-group-sm .form-control + .form-control-feedback,

#custom-html-sz .input-group-sm + .form-control-feedback,

#custom-html-sz .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sz .has-success .checkbox,

#custom-html-sz .has-success .checkbox-inline,

#custom-html-sz .has-success .control-label,

#custom-html-sz .has-success .help-block,

#custom-html-sz .has-success .radio,

#custom-html-sz .has-success .radio-inline,

#custom-html-sz .has-success.checkbox label,

#custom-html-sz .has-success.checkbox-inline label,

#custom-html-sz .has-success.radio label,

#custom-html-sz .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sz .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sz .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sz .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sz .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sz .has-warning .checkbox,

#custom-html-sz .has-warning .checkbox-inline,

#custom-html-sz .has-warning .control-label,

#custom-html-sz .has-warning .help-block,

#custom-html-sz .has-warning .radio,

#custom-html-sz .has-warning .radio-inline,

#custom-html-sz .has-warning.checkbox label,

#custom-html-sz .has-warning.checkbox-inline label,

#custom-html-sz .has-warning.radio label,

#custom-html-sz .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sz .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sz .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sz .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sz .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sz .has-error .checkbox,

#custom-html-sz .has-error .checkbox-inline,

#custom-html-sz .has-error .control-label,

#custom-html-sz .has-error .help-block,

#custom-html-sz .has-error .radio,

#custom-html-sz .has-error .radio-inline,

#custom-html-sz .has-error.checkbox label,

#custom-html-sz .has-error.checkbox-inline label,

#custom-html-sz .has-error.radio label,

#custom-html-sz .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sz .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sz .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sz .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sz .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sz .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sz .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sz .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-sz .form-horizontal .checkbox,

#custom-html-sz .form-horizontal .checkbox-inline,

#custom-html-sz .form-horizontal .radio,

#custom-html-sz .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sz .form-horizontal .checkbox,

#custom-html-sz .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sz .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sz .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-sz .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-sz .btn.active.focus,

#custom-html-sz .btn.active:focus,

#custom-html-sz .btn.focus,

#custom-html-sz .btn:active.focus,

#custom-html-sz .btn:active:focus,

#custom-html-sz .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sz .btn.focus,

#custom-html-sz .btn:focus,

#custom-html-sz .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sz .btn.active,

#custom-html-sz .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sz .btn.disabled,

#custom-html-sz .btn[disabled],

#custom-html-sz fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sz a.btn.disabled,

#custom-html-sz fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sz .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sz .btn-default.focus,

#custom-html-sz .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sz .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sz .btn-default.active,

#custom-html-sz .btn-default:active,

#custom-html-sz .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-sz .btn-default.active.focus,

#custom-html-sz .btn-default.active:focus,

#custom-html-sz .btn-default.active:hover,

#custom-html-sz .btn-default:active.focus,

#custom-html-sz .btn-default:active:focus,

#custom-html-sz .btn-default:active:hover,

#custom-html-sz .open > .dropdown-toggle.btn-default.focus,

#custom-html-sz .open > .dropdown-toggle.btn-default:focus,

#custom-html-sz .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sz .btn-default.disabled.focus,

#custom-html-sz .btn-default.disabled:focus,

#custom-html-sz .btn-default.disabled:hover,

#custom-html-sz .btn-default[disabled].focus,

#custom-html-sz .btn-default[disabled]:focus,

#custom-html-sz .btn-default[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-default.focus,

#custom-html-sz fieldset[disabled] .btn-default:focus,

#custom-html-sz fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sz .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sz .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sz .btn-primary.focus,

#custom-html-sz .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sz .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sz .btn-primary.active,

#custom-html-sz .btn-primary:active,

#custom-html-sz .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-sz .btn-primary.active.focus,

#custom-html-sz .btn-primary.active:focus,

#custom-html-sz .btn-primary.active:hover,

#custom-html-sz .btn-primary:active.focus,

#custom-html-sz .btn-primary:active:focus,

#custom-html-sz .btn-primary:active:hover,

#custom-html-sz .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sz .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sz .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sz .btn-primary.disabled.focus,

#custom-html-sz .btn-primary.disabled:focus,

#custom-html-sz .btn-primary.disabled:hover,

#custom-html-sz .btn-primary[disabled].focus,

#custom-html-sz .btn-primary[disabled]:focus,

#custom-html-sz .btn-primary[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-primary.focus,

#custom-html-sz fieldset[disabled] .btn-primary:focus,

#custom-html-sz fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sz .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sz .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sz .btn-success.focus,

#custom-html-sz .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sz .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sz .btn-success.active,

#custom-html-sz .btn-success:active,

#custom-html-sz .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-sz .btn-success.active.focus,

#custom-html-sz .btn-success.active:focus,

#custom-html-sz .btn-success.active:hover,

#custom-html-sz .btn-success:active.focus,

#custom-html-sz .btn-success:active:focus,

#custom-html-sz .btn-success:active:hover,

#custom-html-sz .open > .dropdown-toggle.btn-success.focus,

#custom-html-sz .open > .dropdown-toggle.btn-success:focus,

#custom-html-sz .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sz .btn-success.disabled.focus,

#custom-html-sz .btn-success.disabled:focus,

#custom-html-sz .btn-success.disabled:hover,

#custom-html-sz .btn-success[disabled].focus,

#custom-html-sz .btn-success[disabled]:focus,

#custom-html-sz .btn-success[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-success.focus,

#custom-html-sz fieldset[disabled] .btn-success:focus,

#custom-html-sz fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sz .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sz .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sz .btn-info.focus,

#custom-html-sz .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sz .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sz .btn-info.active,

#custom-html-sz .btn-info:active,

#custom-html-sz .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-sz .btn-info.active.focus,

#custom-html-sz .btn-info.active:focus,

#custom-html-sz .btn-info.active:hover,

#custom-html-sz .btn-info:active.focus,

#custom-html-sz .btn-info:active:focus,

#custom-html-sz .btn-info:active:hover,

#custom-html-sz .open > .dropdown-toggle.btn-info.focus,

#custom-html-sz .open > .dropdown-toggle.btn-info:focus,

#custom-html-sz .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sz .btn-info.disabled.focus,

#custom-html-sz .btn-info.disabled:focus,

#custom-html-sz .btn-info.disabled:hover,

#custom-html-sz .btn-info[disabled].focus,

#custom-html-sz .btn-info[disabled]:focus,

#custom-html-sz .btn-info[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-info.focus,

#custom-html-sz fieldset[disabled] .btn-info:focus,

#custom-html-sz fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sz .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sz .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sz .btn-warning.focus,

#custom-html-sz .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sz .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sz .btn-warning.active,

#custom-html-sz .btn-warning:active,

#custom-html-sz .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-sz .btn-warning.active.focus,

#custom-html-sz .btn-warning.active:focus,

#custom-html-sz .btn-warning.active:hover,

#custom-html-sz .btn-warning:active.focus,

#custom-html-sz .btn-warning:active:focus,

#custom-html-sz .btn-warning:active:hover,

#custom-html-sz .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sz .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sz .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sz .btn-warning.disabled.focus,

#custom-html-sz .btn-warning.disabled:focus,

#custom-html-sz .btn-warning.disabled:hover,

#custom-html-sz .btn-warning[disabled].focus,

#custom-html-sz .btn-warning[disabled]:focus,

#custom-html-sz .btn-warning[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-warning.focus,

#custom-html-sz fieldset[disabled] .btn-warning:focus,

#custom-html-sz fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sz .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sz .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sz .btn-danger.focus,

#custom-html-sz .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sz .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sz .btn-danger.active,

#custom-html-sz .btn-danger:active,

#custom-html-sz .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-sz .btn-danger.active.focus,

#custom-html-sz .btn-danger.active:focus,

#custom-html-sz .btn-danger.active:hover,

#custom-html-sz .btn-danger:active.focus,

#custom-html-sz .btn-danger:active:focus,

#custom-html-sz .btn-danger:active:hover,

#custom-html-sz .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sz .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sz .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sz .btn-danger.disabled.focus,

#custom-html-sz .btn-danger.disabled:focus,

#custom-html-sz .btn-danger.disabled:hover,

#custom-html-sz .btn-danger[disabled].focus,

#custom-html-sz .btn-danger[disabled]:focus,

#custom-html-sz .btn-danger[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-danger.focus,

#custom-html-sz fieldset[disabled] .btn-danger:focus,

#custom-html-sz fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sz .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sz .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sz .btn-link,

#custom-html-sz .btn-link.active,

#custom-html-sz .btn-link:active,

#custom-html-sz .btn-link[disabled],

#custom-html-sz fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sz .btn-link,

#custom-html-sz .btn-link:active,

#custom-html-sz .btn-link:focus,

#custom-html-sz .btn-link:hover {

  border-color: transparent;

}

#custom-html-sz .btn-link:focus,

#custom-html-sz .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sz .btn-link[disabled]:focus,

#custom-html-sz .btn-link[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-link:focus,

#custom-html-sz fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sz .btn-group-lg > .btn,

#custom-html-sz .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sz .btn-group-sm > .btn,

#custom-html-sz .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sz .btn-group-xs > .btn,

#custom-html-sz .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sz .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sz .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sz input[type=button].btn-block,

#custom-html-sz input[type=reset].btn-block,

#custom-html-sz input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sz .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sz .fade.in {

  opacity: 1;

}

#custom-html-sz .collapse {

  display: none;

}

#custom-html-sz .collapse.in {

  display: block;

}

#custom-html-sz tr.collapse.in {

  display: table-row;

}

#custom-html-sz tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sz .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-sz .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sz .dropdown,

#custom-html-sz .dropup {

  position: relative;

}

#custom-html-sz .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sz .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sz .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sz .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sz .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sz .dropdown-menu > li > a:focus,

#custom-html-sz .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sz .dropdown-menu > .active > a,

#custom-html-sz .dropdown-menu > .active > a:focus,

#custom-html-sz .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sz .dropdown-menu > .disabled > a,

#custom-html-sz .dropdown-menu > .disabled > a:focus,

#custom-html-sz .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sz .dropdown-menu > .disabled > a:focus,

#custom-html-sz .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sz .open > .dropdown-menu {

  display: block;

}

#custom-html-sz .open > a {

  outline: 0;

}

#custom-html-sz .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sz .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sz .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sz .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sz .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sz .dropup .caret,

#custom-html-sz .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sz .dropup .dropdown-menu,

#custom-html-sz .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-sz .btn-group,

#custom-html-sz .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sz .btn-group-vertical > .btn,

#custom-html-sz .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sz .btn-group-vertical > .btn.active,

#custom-html-sz .btn-group-vertical > .btn:active,

#custom-html-sz .btn-group-vertical > .btn:focus,

#custom-html-sz .btn-group-vertical > .btn:hover,

#custom-html-sz .btn-group > .btn.active,

#custom-html-sz .btn-group > .btn:active,

#custom-html-sz .btn-group > .btn:focus,

#custom-html-sz .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sz .btn-group .btn + .btn,

#custom-html-sz .btn-group .btn + .btn-group,

#custom-html-sz .btn-group .btn-group + .btn,

#custom-html-sz .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sz .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sz .btn-toolbar .btn,

#custom-html-sz .btn-toolbar .btn-group,

#custom-html-sz .btn-toolbar .input-group {

  float: left;

}

#custom-html-sz .btn-toolbar > .btn,

#custom-html-sz .btn-toolbar > .btn-group,

#custom-html-sz .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sz .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sz .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sz .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sz .btn-group > .btn:last-child:not(:first-child),

#custom-html-sz .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sz .btn-group > .btn-group {

  float: left;

}

#custom-html-sz .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sz .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sz .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sz .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sz .btn-group .dropdown-toggle:active,

#custom-html-sz .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sz .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sz .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sz .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sz .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sz .btn .caret {

  margin-left: 0;

}

#custom-html-sz .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sz .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sz .btn-group-vertical > .btn,

#custom-html-sz .btn-group-vertical > .btn-group,

#custom-html-sz .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sz .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sz .btn-group-vertical > .btn + .btn,

#custom-html-sz .btn-group-vertical > .btn + .btn-group,

#custom-html-sz .btn-group-vertical > .btn-group + .btn,

#custom-html-sz .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sz .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sz .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sz .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sz .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sz .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sz .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sz .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sz .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sz .btn-group-justified > .btn,

#custom-html-sz .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sz .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sz .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sz [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sz [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sz [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sz [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sz .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sz .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sz .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sz .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sz .input-group-lg > .form-control,

#custom-html-sz .input-group-lg > .input-group-addon,

#custom-html-sz .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sz select.input-group-lg > .form-control,

#custom-html-sz select.input-group-lg > .input-group-addon,

#custom-html-sz select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sz select[multiple].input-group-lg > .form-control,

#custom-html-sz select[multiple].input-group-lg > .input-group-addon,

#custom-html-sz select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sz textarea.input-group-lg > .form-control,

#custom-html-sz textarea.input-group-lg > .input-group-addon,

#custom-html-sz textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sz .input-group-sm > .form-control,

#custom-html-sz .input-group-sm > .input-group-addon,

#custom-html-sz .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sz select.input-group-sm > .form-control,

#custom-html-sz select.input-group-sm > .input-group-addon,

#custom-html-sz select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sz select[multiple].input-group-sm > .form-control,

#custom-html-sz select[multiple].input-group-sm > .input-group-addon,

#custom-html-sz select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sz textarea.input-group-sm > .form-control,

#custom-html-sz textarea.input-group-sm > .input-group-addon,

#custom-html-sz textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sz .input-group .form-control,

#custom-html-sz .input-group-addon,

#custom-html-sz .input-group-btn {

  display: table-cell;

}

#custom-html-sz .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sz .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sz .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sz .input-group-addon,

#custom-html-sz .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sz .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sz .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sz .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sz .input-group-addon input[type=checkbox],

#custom-html-sz .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sz .input-group .form-control:first-child,

#custom-html-sz .input-group-addon:first-child,

#custom-html-sz .input-group-btn:first-child > .btn,

#custom-html-sz .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sz .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sz .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sz .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sz .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sz .input-group .form-control:last-child,

#custom-html-sz .input-group-addon:last-child,

#custom-html-sz .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sz .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sz .input-group-btn:last-child > .btn,

#custom-html-sz .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sz .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sz .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sz .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sz .input-group-btn > .btn {

  position: relative;

}

#custom-html-sz .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sz .input-group-btn > .btn:active,

#custom-html-sz .input-group-btn > .btn:focus,

#custom-html-sz .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sz .input-group-btn:first-child > .btn,

#custom-html-sz .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sz .input-group-btn:last-child > .btn,

#custom-html-sz .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sz .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sz .nav > li {

  position: relative;

  display: block;

}

#custom-html-sz .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sz .nav > li > a:focus,

#custom-html-sz .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sz .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sz .nav > li.disabled > a:focus,

#custom-html-sz .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sz .nav .open > a,

#custom-html-sz .nav .open > a:focus,

#custom-html-sz .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sz .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sz .nav > li > a > img {

  max-width: none;

}

#custom-html-sz .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sz .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sz .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sz .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sz .nav-tabs > li.active > a,

#custom-html-sz .nav-tabs > li.active > a:focus,

#custom-html-sz .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sz .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sz .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sz .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sz .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sz .nav-tabs.nav-justified > .active > a,

#custom-html-sz .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sz .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sz .nav-pills > li {

  float: left;

}

#custom-html-sz .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sz .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sz .nav-pills > li.active > a,

#custom-html-sz .nav-pills > li.active > a:focus,

#custom-html-sz .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sz .nav-stacked > li {

  float: none;

}

#custom-html-sz .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sz .nav-justified {

  width: 100%;

}

#custom-html-sz .nav-justified > li {

  float: none;

}

#custom-html-sz .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sz .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sz .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sz .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sz .nav-tabs-justified > .active > a,

#custom-html-sz .nav-tabs-justified > .active > a:focus,

#custom-html-sz .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sz .tab-content > .tab-pane {

  display: none;

}

#custom-html-sz .tab-content > .active {

  display: block;

}

#custom-html-sz .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sz .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-sz .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sz .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-sz .navbar-fixed-bottom .navbar-collapse,

#custom-html-sz .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sz .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sz .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sz .container-fluid > .navbar-collapse,

#custom-html-sz .container-fluid > .navbar-header,

#custom-html-sz .container > .navbar-collapse,

#custom-html-sz .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sz .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-sz .navbar-fixed-bottom,

#custom-html-sz .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-sz .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sz .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sz .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sz .navbar-brand:focus,

#custom-html-sz .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sz .navbar-brand > img {

  display: block;

}

#custom-html-sz .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sz .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sz .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sz .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-sz .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sz .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sz .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sz .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sz .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sz .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sz .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sz .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-sz .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sz .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-sz .visible-xs {

    display: block !important;

  }

  #custom-html-sz table.visible-xs {

    display: table !important;

  }

  #custom-html-sz tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sz td.visible-xs,

  #custom-html-sz th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-sz .visible-xs-block {

    display: block !important;

  }

  #custom-html-sz .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-sz .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-sz .hidden-xs {

    display: none !important;

  }

  #custom-html-sz .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sz .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-sz section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-sz .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sz .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sz .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sz .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-sz .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sz .tiles .tile:nth-child(1),

  #custom-html-sz .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-sz ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sz ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sz ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-sz .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sz .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sz .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-sz .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-sz .promo-banner form {

    text-align: center;

  }

}

#custom-html-sz .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sz .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sz .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sz .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sz .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sz .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sz .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sz .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sz .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sz .navbar-default .navbar-brand:focus,

#custom-html-sz .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sz .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sz .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sz .navbar-default .navbar-nav > li > a:focus,

#custom-html-sz .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sz .navbar-default .navbar-nav > .active > a,

#custom-html-sz .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sz .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sz .navbar-default .navbar-nav > .disabled > a,

#custom-html-sz .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sz .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sz .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sz .navbar-default .navbar-toggle:focus,

#custom-html-sz .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sz .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sz .navbar-default .navbar-collapse,

#custom-html-sz .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sz .navbar-default .navbar-nav > .open > a,

#custom-html-sz .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sz .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sz .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sz .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sz .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sz .navbar-default .btn-link:focus,

#custom-html-sz .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sz .navbar-default .btn-link[disabled]:focus,

#custom-html-sz .navbar-default .btn-link[disabled]:hover,

#custom-html-sz fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sz fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sz .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sz .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sz .navbar-inverse .navbar-brand:focus,

#custom-html-sz .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sz .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sz .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sz .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sz .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sz .navbar-inverse .navbar-nav > .active > a,

#custom-html-sz .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sz .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sz .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sz .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sz .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sz .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sz .navbar-inverse .navbar-toggle:focus,

#custom-html-sz .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sz .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sz .navbar-inverse .navbar-collapse,

#custom-html-sz .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sz .navbar-inverse .navbar-nav > .open > a,

#custom-html-sz .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sz .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sz .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sz .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sz .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sz .navbar-inverse .btn-link:focus,

#custom-html-sz .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sz .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sz .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sz fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sz fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sz .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sz .breadcrumb > li {

  display: inline-block;

}

#custom-html-sz .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sz .breadcrumb > .active {

  color: #777777;

}

#custom-html-sz .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-sz .pagination > li {

  display: inline;

}

#custom-html-sz .pagination > li > a,

#custom-html-sz .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sz .pagination > li:first-child > a,

#custom-html-sz .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sz .pagination > li:last-child > a,

#custom-html-sz .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sz .pagination > li > a:focus,

#custom-html-sz .pagination > li > a:hover,

#custom-html-sz .pagination > li > span:focus,

#custom-html-sz .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sz .pagination > .active > a,

#custom-html-sz .pagination > .active > a:focus,

#custom-html-sz .pagination > .active > a:hover,

#custom-html-sz .pagination > .active > span,

#custom-html-sz .pagination > .active > span:focus,

#custom-html-sz .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sz .pagination > .disabled > a,

#custom-html-sz .pagination > .disabled > a:focus,

#custom-html-sz .pagination > .disabled > a:hover,

#custom-html-sz .pagination > .disabled > span,

#custom-html-sz .pagination > .disabled > span:focus,

#custom-html-sz .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sz .pagination-lg > li > a,

#custom-html-sz .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sz .pagination-lg > li:first-child > a,

#custom-html-sz .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sz .pagination-lg > li:last-child > a,

#custom-html-sz .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sz .pagination-sm > li > a,

#custom-html-sz .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sz .pagination-sm > li:first-child > a,

#custom-html-sz .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sz .pagination-sm > li:last-child > a,

#custom-html-sz .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sz .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sz .pager li {

  display: inline;

}

#custom-html-sz .pager li > a,

#custom-html-sz .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sz .pager li > a:focus,

#custom-html-sz .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sz .pager .next > a,

#custom-html-sz .pager .next > span {

  float: right;

}

#custom-html-sz .pager .previous > a,

#custom-html-sz .pager .previous > span {

  float: left;

}

#custom-html-sz .pager .disabled > a,

#custom-html-sz .pager .disabled > a:focus,

#custom-html-sz .pager .disabled > a:hover,

#custom-html-sz .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sz .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-sz a.label:focus,

#custom-html-sz a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sz .label:empty {

  display: none;

}

#custom-html-sz .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sz .label-default {

  background-color: #777777;

}

#custom-html-sz .label-default[href]:focus,

#custom-html-sz .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sz .label-primary {

  background-color: #337ab7;

}

#custom-html-sz .label-primary[href]:focus,

#custom-html-sz .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sz .label-success {

  background-color: #5cb85c;

}

#custom-html-sz .label-success[href]:focus,

#custom-html-sz .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sz .label-info {

  background-color: #5bc0de;

}

#custom-html-sz .label-info[href]:focus,

#custom-html-sz .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sz .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sz .label-warning[href]:focus,

#custom-html-sz .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sz .label-danger {

  background-color: #d9534f;

}

#custom-html-sz .label-danger[href]:focus,

#custom-html-sz .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sz .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sz .badge:empty {

  display: none;

}

#custom-html-sz .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sz .btn-group-xs > .btn .badge,

#custom-html-sz .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sz a.badge:focus,

#custom-html-sz a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sz .list-group-item.active > .badge,

#custom-html-sz .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sz .list-group-item > .badge {

  float: right;

}

#custom-html-sz .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sz .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sz .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sz .jumbotron .h1,

#custom-html-sz .jumbotron h1 {

  color: inherit;

}

#custom-html-sz .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sz .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sz .container .jumbotron,

#custom-html-sz .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sz .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sz .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sz .container .jumbotron,

  #custom-html-sz .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sz .jumbotron .h1,

  #custom-html-sz .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-sz .carousel-control .glyphicon-chevron-left,

  #custom-html-sz .carousel-control .glyphicon-chevron-right,

  #custom-html-sz .carousel-control .icon-next,

  #custom-html-sz .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sz .carousel-control .glyphicon-chevron-left,

  #custom-html-sz .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sz .carousel-control .glyphicon-chevron-right,

  #custom-html-sz .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sz .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sz .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sz .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sz .thumbnail a > img,

#custom-html-sz .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sz a.thumbnail.active,

#custom-html-sz a.thumbnail:focus,

#custom-html-sz a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sz .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sz .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sz .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sz .alert .alert-link {

  font-weight: 700;

}

#custom-html-sz .alert > p,

#custom-html-sz .alert > ul {

  margin-bottom: 0;

}

#custom-html-sz .alert > p + p {

  margin-top: 5px;

}

#custom-html-sz .alert-dismissable,

#custom-html-sz .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sz .alert-dismissable .close,

#custom-html-sz .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sz .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sz .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sz .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sz .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sz .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sz .alert-info .alert-link {

  color: #000000;

}

#custom-html-sz .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sz .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sz .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sz .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sz .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sz .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sz .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sz .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sz .progress-bar-striped,

#custom-html-sz .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sz .progress-bar.active,

#custom-html-sz .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sz .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sz .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sz .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sz .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sz .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sz .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sz .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sz .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sz .media {

  margin-top: 15px;

}

#custom-html-sz .media:first-child {

  margin-top: 0;

}

#custom-html-sz .media,

#custom-html-sz .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sz .media-body {

  width: 10000px;

}

#custom-html-sz .media-object {

  display: block;

}

#custom-html-sz .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sz .media-right,

#custom-html-sz .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sz .media-left,

#custom-html-sz .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sz .media-body,

#custom-html-sz .media-left,

#custom-html-sz .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sz .media-middle {

  vertical-align: middle;

}

#custom-html-sz .media-bottom {

  vertical-align: bottom;

}

#custom-html-sz .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sz .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sz .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-sz .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-sz .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sz .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sz a.list-group-item,

#custom-html-sz button.list-group-item {

  color: #555555;

}

#custom-html-sz a.list-group-item .list-group-item-heading,

#custom-html-sz button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sz a.list-group-item:focus,

#custom-html-sz a.list-group-item:hover,

#custom-html-sz button.list-group-item:focus,

#custom-html-sz button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sz button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sz .list-group-item.disabled,

#custom-html-sz .list-group-item.disabled:focus,

#custom-html-sz .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sz .list-group-item.disabled .list-group-item-heading,

#custom-html-sz .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sz .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sz .list-group-item.disabled .list-group-item-text,

#custom-html-sz .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sz .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sz .list-group-item.active,

#custom-html-sz .list-group-item.active:focus,

#custom-html-sz .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sz .list-group-item.active .list-group-item-heading,

#custom-html-sz .list-group-item.active .list-group-item-heading > .small,

#custom-html-sz .list-group-item.active .list-group-item-heading > small,

#custom-html-sz .list-group-item.active:focus .list-group-item-heading,

#custom-html-sz .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sz .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sz .list-group-item.active:hover .list-group-item-heading,

#custom-html-sz .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sz .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sz .list-group-item.active .list-group-item-text,

#custom-html-sz .list-group-item.active:focus .list-group-item-text,

#custom-html-sz .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sz .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sz a.list-group-item-success,

#custom-html-sz button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sz a.list-group-item-success .list-group-item-heading,

#custom-html-sz button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sz a.list-group-item-success:focus,

#custom-html-sz a.list-group-item-success:hover,

#custom-html-sz button.list-group-item-success:focus,

#custom-html-sz button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sz a.list-group-item-success.active,

#custom-html-sz a.list-group-item-success.active:focus,

#custom-html-sz a.list-group-item-success.active:hover,

#custom-html-sz button.list-group-item-success.active,

#custom-html-sz button.list-group-item-success.active:focus,

#custom-html-sz button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sz .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sz a.list-group-item-info,

#custom-html-sz button.list-group-item-info {

  color: #31708f;

}

#custom-html-sz a.list-group-item-info .list-group-item-heading,

#custom-html-sz button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sz a.list-group-item-info:focus,

#custom-html-sz a.list-group-item-info:hover,

#custom-html-sz button.list-group-item-info:focus,

#custom-html-sz button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sz a.list-group-item-info.active,

#custom-html-sz a.list-group-item-info.active:focus,

#custom-html-sz a.list-group-item-info.active:hover,

#custom-html-sz button.list-group-item-info.active,

#custom-html-sz button.list-group-item-info.active:focus,

#custom-html-sz button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sz .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sz a.list-group-item-warning,

#custom-html-sz button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sz a.list-group-item-warning .list-group-item-heading,

#custom-html-sz button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sz a.list-group-item-warning:focus,

#custom-html-sz a.list-group-item-warning:hover,

#custom-html-sz button.list-group-item-warning:focus,

#custom-html-sz button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sz a.list-group-item-warning.active,

#custom-html-sz a.list-group-item-warning.active:focus,

#custom-html-sz a.list-group-item-warning.active:hover,

#custom-html-sz button.list-group-item-warning.active,

#custom-html-sz button.list-group-item-warning.active:focus,

#custom-html-sz button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sz .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sz a.list-group-item-danger,

#custom-html-sz button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sz a.list-group-item-danger .list-group-item-heading,

#custom-html-sz button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sz a.list-group-item-danger:focus,

#custom-html-sz a.list-group-item-danger:hover,

#custom-html-sz button.list-group-item-danger:focus,

#custom-html-sz button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sz a.list-group-item-danger.active,

#custom-html-sz a.list-group-item-danger.active:focus,

#custom-html-sz a.list-group-item-danger.active:hover,

#custom-html-sz button.list-group-item-danger.active,

#custom-html-sz button.list-group-item-danger.active:focus,

#custom-html-sz button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sz .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sz .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sz .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-sz .panel-body {

  padding: 10px 15px;

}

#custom-html-sz .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sz .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sz .panel-title > .small,

#custom-html-sz .panel-title > .small > a,

#custom-html-sz .panel-title > a,

#custom-html-sz .panel-title > small,

#custom-html-sz .panel-title > small > a {

  color: inherit;

}

#custom-html-sz .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sz .panel > .list-group,

#custom-html-sz .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sz .panel > .list-group .list-group-item,

#custom-html-sz .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sz .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sz .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sz .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sz .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sz .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sz .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sz .panel > .panel-collapse > .table,

#custom-html-sz .panel > .table,

#custom-html-sz .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sz .panel > .panel-collapse > .table caption,

#custom-html-sz .panel > .table caption,

#custom-html-sz .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sz .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sz .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sz .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sz .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sz .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sz .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sz .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sz .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sz .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sz .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sz .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sz .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sz .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sz .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sz .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sz .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sz .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sz .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sz .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sz .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sz .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sz .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sz .panel > .panel-body + .table,

#custom-html-sz .panel > .panel-body + .table-responsive,

#custom-html-sz .panel > .table + .panel-body,

#custom-html-sz .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sz .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sz .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sz .panel > .table-bordered,

#custom-html-sz .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sz .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sz .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sz .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sz .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sz .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sz .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sz .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sz .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sz .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sz .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sz .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sz .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sz .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sz .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sz .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sz .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sz .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sz .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sz .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sz .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sz .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sz .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sz .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sz .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sz .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sz .panel-group {

  margin-bottom: 20px;

}

#custom-html-sz .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sz .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sz .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sz .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sz .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sz .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sz .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sz .panel-default {

  border-color: #dddddd;

}

#custom-html-sz .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sz .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sz .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sz .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sz .panel-primary {

  border-color: #337ab7;

}

#custom-html-sz .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sz .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sz .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sz .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sz .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sz .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sz .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sz .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sz .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sz .panel-info {

  border-color: #bce8f1;

}

#custom-html-sz .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sz .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sz .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sz .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sz .panel-warning {

  border-color: #faebcc;

}

#custom-html-sz .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sz .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sz .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sz .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-sz .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sz .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sz .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sz .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sz .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sz .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sz .embed-responsive .embed-responsive-item,

#custom-html-sz .embed-responsive embed,

#custom-html-sz .embed-responsive iframe,

#custom-html-sz .embed-responsive object,

#custom-html-sz .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sz .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sz .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sz .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sz .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sz .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sz .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sz .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sz .close:focus,

#custom-html-sz .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sz button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sz .modal-open {

  overflow: hidden;

}

#custom-html-sz .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sz .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sz .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sz .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sz .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sz .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sz .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sz .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sz .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sz .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sz .modal-header .close {

  margin-top: -2px;

}

#custom-html-sz .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sz .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sz .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sz .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sz .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sz .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sz .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-sz .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sz .tooltip.in {

  opacity: 0.9;

}

#custom-html-sz .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sz .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sz .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sz .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sz .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sz .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sz .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sz .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sz .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sz .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sz .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sz .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sz .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sz .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sz .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sz .popover.top {

  margin-top: -10px;

}

#custom-html-sz .popover.right {

  margin-left: 10px;

}

#custom-html-sz .popover.bottom {

  margin-top: 10px;

}

#custom-html-sz .popover.left {

  margin-left: -10px;

}

#custom-html-sz .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sz .popover-content {

  padding: 9px 14px;

}

#custom-html-sz .popover > .arrow,

#custom-html-sz .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sz .popover > .arrow {

  border-width: 11px;

}

#custom-html-sz .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sz .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sz .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sz .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sz .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sz .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sz .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sz .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sz .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sz .carousel {

  position: relative;

}

#custom-html-sz .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sz .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sz .carousel-inner > .item > a > img,

#custom-html-sz .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sz .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sz .carousel-inner > .item.active.right,

  #custom-html-sz .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sz .carousel-inner > .item.active.left,

  #custom-html-sz .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sz .carousel-inner > .item.active,

  #custom-html-sz .carousel-inner > .item.next.left,

  #custom-html-sz .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sz .carousel-inner > .active,

#custom-html-sz .carousel-inner > .next,

#custom-html-sz .carousel-inner > .prev {

  display: block;

}

#custom-html-sz .carousel-inner > .active {

  left: 0;

}

#custom-html-sz .carousel-inner > .next,

#custom-html-sz .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sz .carousel-inner > .next {

  left: 100%;

}

#custom-html-sz .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sz .carousel-inner > .next.left,

#custom-html-sz .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sz .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sz .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sz .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sz .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sz .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sz .carousel-control:focus,

#custom-html-sz .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sz .carousel-control .glyphicon-chevron-left,

#custom-html-sz .carousel-control .glyphicon-chevron-right,

#custom-html-sz .carousel-control .icon-next,

#custom-html-sz .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sz .carousel-control .glyphicon-chevron-left,

#custom-html-sz .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sz .carousel-control .glyphicon-chevron-right,

#custom-html-sz .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sz .carousel-control .icon-next,

#custom-html-sz .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sz .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sz .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sz .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sz .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-sz .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sz .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sz .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-sz .btn-group-vertical > .btn-group:after,

#custom-html-sz .btn-group-vertical > .btn-group:before,

#custom-html-sz .btn-toolbar:after,

#custom-html-sz .btn-toolbar:before,

#custom-html-sz .clearfix:after,

#custom-html-sz .clearfix:before,

#custom-html-sz .container-fluid:after,

#custom-html-sz .container-fluid:before,

#custom-html-sz .container:after,

#custom-html-sz .container:before,

#custom-html-sz .dl-horizontal dd:after,

#custom-html-sz .dl-horizontal dd:before,

#custom-html-sz .form-horizontal .form-group:after,

#custom-html-sz .form-horizontal .form-group:before,

#custom-html-sz .modal-footer:after,

#custom-html-sz .modal-footer:before,

#custom-html-sz .modal-header:after,

#custom-html-sz .modal-header:before,

#custom-html-sz .nav:after,

#custom-html-sz .nav:before,

#custom-html-sz .navbar-collapse:after,

#custom-html-sz .navbar-collapse:before,

#custom-html-sz .navbar-header:after,

#custom-html-sz .navbar-header:before,

#custom-html-sz .navbar:after,

#custom-html-sz .navbar:before,

#custom-html-sz .pager:after,

#custom-html-sz .pager:before,

#custom-html-sz .panel-body:after,

#custom-html-sz .panel-body:before,

#custom-html-sz .row:after,

#custom-html-sz .row:before {

  display: table;

  content: " ";

}

#custom-html-sz .btn-group-vertical > .btn-group:after,

#custom-html-sz .btn-toolbar:after,

#custom-html-sz .clearfix:after,

#custom-html-sz .container-fluid:after,

#custom-html-sz .container:after,

#custom-html-sz .dl-horizontal dd:after,

#custom-html-sz .form-horizontal .form-group:after,

#custom-html-sz .modal-footer:after,

#custom-html-sz .modal-header:after,

#custom-html-sz .nav:after,

#custom-html-sz .navbar-collapse:after,

#custom-html-sz .navbar-header:after,

#custom-html-sz .navbar:after,

#custom-html-sz .pager:after,

#custom-html-sz .panel-body:after,

#custom-html-sz .row:after {

  clear: both;

}

#custom-html-sz .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sz .pull-right {

  float: right !important;

}

#custom-html-sz .pull-left {

  float: left !important;

}

#custom-html-sz .hide {

  display: none !important;

}

#custom-html-sz .show {

  display: block !important;

}

#custom-html-sz .invisible {

  visibility: hidden;

}

#custom-html-sz .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sz .hidden {

  display: none !important;

}

#custom-html-sz .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sz .visible-lg,

#custom-html-sz .visible-md,

#custom-html-sz .visible-sm,

#custom-html-sz .visible-xs {

  display: none !important;

}

#custom-html-sz .visible-lg-block,

#custom-html-sz .visible-lg-inline,

#custom-html-sz .visible-lg-inline-block,

#custom-html-sz .visible-md-block,

#custom-html-sz .visible-md-inline,

#custom-html-sz .visible-md-inline-block,

#custom-html-sz .visible-sm-block,

#custom-html-sz .visible-sm-inline,

#custom-html-sz .visible-sm-inline-block,

#custom-html-sz .visible-xs-block,

#custom-html-sz .visible-xs-inline,

#custom-html-sz .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sz .visible-sm {

    display: block !important;

  }

  #custom-html-sz table.visible-sm {

    display: table !important;

  }

  #custom-html-sz tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sz td.visible-sm,

  #custom-html-sz th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-sz .visible-sm-block {

    display: block !important;

  }

  #custom-html-sz .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-sz .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-sz .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sz .visible-md {

    display: block !important;

  }

  #custom-html-sz table.visible-md {

    display: table !important;

  }

  #custom-html-sz tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sz td.visible-md,

  #custom-html-sz th.visible-md {

    display: table-cell !important;

  }

  #custom-html-sz .visible-md-block {

    display: block !important;

  }

  #custom-html-sz .visible-md-inline {

    display: inline !important;

  }

  #custom-html-sz .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-sz .hidden-md {

    display: none !important;

  }

}

#custom-html-sz .visible-print {

  display: none !important;

}

#custom-html-sz .visible-print-block {

  display: none !important;

}

#custom-html-sz .visible-print-inline {

  display: none !important;

}

#custom-html-sz .visible-print-inline-block {

  display: none !important;

}

#custom-html-sz .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-sz .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sz .intl-tel-input .hide {

  display: none;

}

#custom-html-sz .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sz .intl-tel-input input,

#custom-html-sz .intl-tel-input input[type=tel],

#custom-html-sz .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sz .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sz .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sz .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sz .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sz .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sz .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sz .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sz .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sz .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-sz .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sz .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sz .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sz .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sz .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sz .intl-tel-input .country-list .country-name,

#custom-html-sz .intl-tel-input .country-list .dial-code,

#custom-html-sz .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sz .intl-tel-input .country-list .country-name,

#custom-html-sz .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sz .intl-tel-input.allow-dropdown input,

#custom-html-sz .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sz .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sz .intl-tel-input.separate-dial-code input,

#custom-html-sz .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sz .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sz .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sz .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sz .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sz .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sz .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sz .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sz .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sz .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sz .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sz .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sz .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sz .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sz .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sz .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sz .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sz .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sz .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-sz .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sz .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sz .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sz .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sz .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-sz .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sz .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sz .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sz .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-sz .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sz .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sz .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sz .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sz .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sz .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sz .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sz .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sz .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sz .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sz .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sz .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sz .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sz .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sz .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sz .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sz .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sz .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sz .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sz .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sz .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sz .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sz .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sz .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sz .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sz .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sz .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sz .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sz .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sz .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sz .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sz .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sz .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sz .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sz .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sz .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sz .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sz .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sz .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sz .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sz .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-sz .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sz .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sz .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sz .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sz .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sz .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sz .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sz .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sz .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sz .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sz .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sz .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sz .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sz .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sz .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sz .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sz .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sz .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-sz .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sz .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sz .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sz .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sz .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sz .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sz .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sz .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sz .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sz .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sz .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sz .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sz .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sz .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sz .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sz .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sz .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sz .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sz .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sz .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sz .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sz .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sz .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sz .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sz .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sz .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sz .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sz .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sz .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sz .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sz .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sz .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sz .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sz .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sz .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sz .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sz .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sz .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sz .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sz .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sz .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sz .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sz .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sz .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sz .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sz .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sz .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sz .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sz .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sz .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sz .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sz .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sz .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-sz .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sz .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sz .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sz .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sz .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sz .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sz .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sz .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sz .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sz .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sz .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sz .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sz .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sz .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sz .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sz .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sz .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sz .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sz .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sz .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sz .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sz .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sz .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sz .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sz .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sz .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sz .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sz .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sz .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sz .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sz .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sz .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sz .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sz .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sz .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sz .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sz .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sz .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sz .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sz .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sz .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sz .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sz .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sz .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sz .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sz .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sz .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sz .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sz .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sz .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sz .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sz .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sz .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sz .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sz .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sz .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sz .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sz .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sz .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sz .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sz .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sz .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sz .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sz .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sz .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sz .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sz .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sz .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sz .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sz .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sz .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sz .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sz .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sz .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sz .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sz .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sz .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sz .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sz .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sz .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sz .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sz .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sz .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sz .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sz .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sz .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sz .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sz .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sz .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sz .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sz .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sz .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sz .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sz .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sz .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sz .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sz .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sz .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sz .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sz .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sz .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sz .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sz .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sz .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sz .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sz .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sz .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sz .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sz .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sz .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sz .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sz .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sz .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sz .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sz .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sz .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sz .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sz .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sz .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sz .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sz .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sz .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sz .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sz .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sz .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sz .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sz .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sz .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sz .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sz .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sz .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sz .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sz .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sz .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sz .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sz .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sz .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sz body,

#custom-html-sz button,

#custom-html-sz input,

#custom-html-sz select,

#custom-html-sz textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sz h1,

#custom-html-sz h2,

#custom-html-sz h3,

#custom-html-sz h4,

#custom-html-sz h5,

#custom-html-sz h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-sz .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sz .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sz .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sz .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sz .navbar-main .navbar-nav > .active > a,

#custom-html-sz .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sz .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sz .navbar-main .navbar-nav > .open > a,

#custom-html-sz .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sz .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sz .navbar-main .navbar-nav > li > a:focus,

#custom-html-sz .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sz #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sz .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-sz .navbar-header {

    float: none;

  }

  #custom-html-sz .navbar-left,

  #custom-html-sz .navbar-right {

    float: none !important;

  }

  #custom-html-sz .navbar-toggle {

    display: block;

  }

  #custom-html-sz .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sz .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sz .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sz .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sz .navbar-nav > li {

    float: none;

  }

  #custom-html-sz .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sz .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-sz .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sz .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sz .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-sz ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sz ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sz ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-sz .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-sz .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sz .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sz .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sz .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sz .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-sz #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sz #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-sz .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sz a.list-group-item.active,

#custom-html-sz a.list-group-item.active:focus,

#custom-html-sz a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sz .dropdown-menu > li > a:focus,

#custom-html-sz .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sz input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sz .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sz body,

#custom-html-sz html {

  height: 100%;

}

#custom-html-sz section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sz section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sz section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sz section#header .search {

  margin: 20px 0;

}

#custom-html-sz section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sz section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sz section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sz section#main-content {

  margin-bottom: 60px;

}

#custom-html-sz .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sz section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sz section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sz section#footer {

    line-height: 32px;

  }

}

#custom-html-sz section#footer .back-to-top {

  float: right;

}

#custom-html-sz section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sz .adminreturndiv {

  display: none !important;

}

#custom-html-sz .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sz .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sz .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sz .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sz .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sz .navbar-main .navbar-toggle:focus,

#custom-html-sz .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sz .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sz .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-sz div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sz div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sz div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sz div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sz div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sz .h1,

  #custom-html-sz h1 {

    font-size: 26px;

  }

  #custom-html-sz .h2,

  #custom-html-sz h2 {

    font-size: 20px;

  }

  #custom-html-sz .h3,

  #custom-html-sz h3 {

    font-size: 16px;

  }

  #custom-html-sz .h4,

  #custom-html-sz h4 {

    font-size: 14px;

  }

  #custom-html-sz .h5,

  #custom-html-sz h5 {

    font-size: 12px;

  }

  #custom-html-sz .h6,

  #custom-html-sz h6 {

    font-size: 11px;

  }

  #custom-html-sz div.header-lined small {

    display: none;

  }

  #custom-html-sz .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-sz .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sz .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sz .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sz .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-sz div.credit-card {

    max-width: 250px;

  }

  #custom-html-sz div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sz div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sz div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sz div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sz div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-sz .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sz .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sz .margin-10 {

  margin: 10px;

}

#custom-html-sz .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sz .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sz .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sz .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sz .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sz .input-inline {

  display: inline-block;

}

#custom-html-sz .input-inline-100 {

  width: 100px;

}

#custom-html-sz .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-sz .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sz .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sz .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-sz i.icon-rss {

  color: #ff6600;

}

#custom-html-sz section#main-menu {

  background-color: #000000;

}

#custom-html-sz section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sz section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sz section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sz section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sz section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sz section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sz section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sz section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sz section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sz section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sz section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sz section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-sz .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-sz .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-sz .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sz .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sz .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-sz #stepResults {

    font-size: 14px;

  }

  #custom-html-sz #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sz div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-sz .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sz .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sz .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sz .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sz .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sz .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sz .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sz .home-shortcuts li span {

  display: none;

}

#custom-html-sz .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sz .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-sz .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sz .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sz .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sz .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sz .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sz .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sz .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sz .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sz .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sz .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sz .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sz .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sz .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sz .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sz .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sz .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sz .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sz .tiles .tile a {

  text-decoration: none;

}

#custom-html-sz .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sz .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sz .tiles .tile:last-child {

  border: 0;

}

#custom-html-sz .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sz .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sz .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sz .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sz .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sz .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sz .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sz .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sz .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sz .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sz .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sz .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sz .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sz .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sz .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sz .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sz .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sz .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sz .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sz .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sz .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sz .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sz .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sz .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sz .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sz .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sz .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sz .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sz .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sz .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sz .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sz .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sz .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sz .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sz .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sz .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sz .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sz .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sz .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sz .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sz .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sz ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sz ul.top-nav > li,

#custom-html-sz ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sz ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sz ul.top-nav > li:active > a,

#custom-html-sz ul.top-nav > li:focus > a,

#custom-html-sz ul.top-nav > li:hover > a,

#custom-html-sz ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sz ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sz ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sz ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sz ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-sz div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sz div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sz div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sz div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sz div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sz div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sz .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sz .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-sz .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sz .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-sz .domain-check-availability {

  width: 100px;

}

#custom-html-sz .domain-step-options {

  min-height: 300px;

}

#custom-html-sz .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sz .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sz .domain-checker-invalid,

#custom-html-sz .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sz div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sz .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sz .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sz .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sz a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sz .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sz .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sz .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-sz .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sz .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sz .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sz .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sz .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sz .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sz .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-sz .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sz .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sz .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sz .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sz .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sz .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sz .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sz .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sz .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sz .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sz .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sz .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sz .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sz .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sz div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sz div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sz div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sz .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sz .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sz .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sz .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sz div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sz div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;


  font-size: 60px;

  line-height: 1em;

}

#custom-html-sz .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sz .product-status-pending {

  background-color: #f89406;

}

#custom-html-sz .product-status-active {

  background-color: #46a546;

}

#custom-html-sz .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sz .product-status-cancelled,

#custom-html-sz .product-status-terminated {

  background-color: #666666;

}

#custom-html-sz .product-status-fraud {

  background-color: #000000;

}

#custom-html-sz .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sz div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sz .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sz .ssl-inactive {

  cursor: pointer;

}

#custom-html-sz .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sz .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sz .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sz .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sz .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sz .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sz .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sz .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sz .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-sz .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sz .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sz .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sz .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sz .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sz .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sz table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sz .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sz table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sz .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-sz table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sz .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sz .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sz .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sz table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sz table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sz table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sz .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sz .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sz .status-pending {

  color: #d9534f;

}

#custom-html-sz .status-pending.transfer {

  color: #a68500;

}

#custom-html-sz .status-active,

#custom-html-sz .status-completed,

#custom-html-sz .status-open {

  color: #3fad46;

}

#custom-html-sz .status-suspended {

  color: #f0ad4e;

}

#custom-html-sz .status-customer-reply {

  color: #ff6600;

}

#custom-html-sz .status-answered,

#custom-html-sz .status-fraud {

  color: #000000;

}

#custom-html-sz .status-expired,

#custom-html-sz .status-transferred.away {

  color: #004258;

}

#custom-html-sz .status-cancelled {

  color: #87939f;

}

#custom-html-sz .status-terminated {

  color: #666666;

}

#custom-html-sz .status-onhold {

  color: #224488;

}

#custom-html-sz .status-inprogress {

  color: #cc0000;

}

#custom-html-sz .status-closed {

  color: #888888;

}

#custom-html-sz .status-paid {

  color: #498302;

}

#custom-html-sz .status-unpaid {

  color: #ed3e48;

}

#custom-html-sz .status-collections {

  color: #9a141e;

}

#custom-html-sz .status-refunded {

  color: #319fc3;

}

#custom-html-sz .status-delivered {

  color: #224488;

}

#custom-html-sz .status-accepted {

  color: #498302;

}

#custom-html-sz .status-dead,

#custom-html-sz .status-lost {

  color: #000000;

}

#custom-html-sz .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sz .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sz .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sz .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sz .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sz .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sz .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-sz .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-sz .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sz .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sz .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sz .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sz .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sz .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sz .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sz .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sz .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sz .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sz .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sz .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sz .ticket-reply .rating,

#custom-html-sz .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sz .ticket-reply .rating span.star,

#custom-html-sz .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sz .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sz .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sz .ticket-reply .rating span.star:before,

#custom-html-sz .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sz .ticket-reply .rating span.star:hover:before,

#custom-html-sz .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sz .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sz .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sz .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sz .ticket-reply .clear {

  clear: both;

}

#custom-html-sz .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sz .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sz .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sz .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sz .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sz .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sz .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sz .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sz .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sz .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sz .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sz .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sz .popover-user-notifications ul li i.far,

#custom-html-sz .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sz .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sz .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sz .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sz .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sz .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sz .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sz .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sz .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sz .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sz div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sz div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sz div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sz div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sz div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sz div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sz div.credit-card div.end {

  clear: both;

}

#custom-html-sz .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sz .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sz .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sz .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sz .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sz .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sz div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sz div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sz div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sz div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sz div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sz div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sz .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-sz div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sz div#twofaactivation .errorbox {

  margin: 0 0 20px 0;


  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sz div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sz #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sz .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sz .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sz .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sz .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sz .kb-category a small {

  color: #888888;

}

#custom-html-sz .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sz .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sz .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sz .kbarticles a.admin-inline-edit,

#custom-html-sz .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sz h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sz .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sz .kb-article-title h2 {

  margin: 0;

}

#custom-html-sz .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sz .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sz .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sz .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sz .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sz .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sz .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sz .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sz #stepResults {

  font-size: 20px;

}

#custom-html-sz #stepResults .label {

  font-size: 20px;

}

#custom-html-sz h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sz h3.with-badge i,

#custom-html-sz h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sz h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-sz .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sz .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sz a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sz a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sz .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sz .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sz .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sz .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sz .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sz .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sz .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sz .login-popover {

  font-size: 12px;

}

#custom-html-sz .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sz .login-popover hr {

  margin: 5px 0;

}

#custom-html-sz tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sz tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sz .error-container {

  text-align: center;

}

#custom-html-sz .error-container h1 {

  margin-top: 40px;

}

#custom-html-sz .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sz .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sz .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sz .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sz .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sz #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sz #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sz #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sz .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-sz #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sz #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sz #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sz #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sz .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sz .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sz .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sz .email-verification .btn:active,

#custom-html-sz .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sz .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sz .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sz .email-verification .far,

#custom-html-sz .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-sz .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sz .email-verification.success .far,

#custom-html-sz .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sz .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sz .email-verification.failed .far,

#custom-html-sz .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sz .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-sz .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sz .md-editor > .md-preview,

#custom-html-sz .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sz div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sz .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sz .small-font {

  font-size: 0.9em;

}

#custom-html-sz .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sz .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sz .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sz .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sz .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sz .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sz .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sz .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sz .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sz .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sz .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sz .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sz .panel-heading i.fab,

#custom-html-sz .panel-heading i.fal,

#custom-html-sz .panel-heading i.far,

#custom-html-sz .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sz .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sz .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sz .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sz .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sz .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sz .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sz .panel-sidebar .list-group-item.disabled,

#custom-html-sz .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sz .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sz .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sz .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sz .panel-sidebar a.list-group-item.active,

#custom-html-sz .panel-sidebar a.list-group-item.active:focus,

#custom-html-sz .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sz .panel-sidebar a.list-group-item.active i,

#custom-html-sz .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sz .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sz .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sz .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sz .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sz .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sz .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sz .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sz .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sz .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sz .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sz .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sz .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sz .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sz .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sz .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-sz .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sz .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sz .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sz .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sz .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sz .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sz .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sz .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sz .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sz .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sz .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sz .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sz .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-sz .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sz .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sz .promo-banner p {

  margin: 5px 0;

}

#custom-html-sz .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sz .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-sz .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sz .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sz .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sz .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sz .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sz .promo-banner-slim {

  padding: 10px;

}

#custom-html-sz .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sz .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sz .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sz .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sz .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sz .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sz .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sz .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sz .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sz .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sz .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sz .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sz .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sz .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sz .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sz .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sz .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sz .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sz .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sz .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sz .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sz .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sz .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sz .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sz .panel-mc-sso .btn,

#custom-html-sz .panel-mc-sso .form-control,

#custom-html-sz .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sz .panel-mc-sso small {

  display: block;

}

#custom-html-sz .social-signin-btns {

  text-align: center;

}

#custom-html-sz .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sz .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sz .btn-social i.far,

#custom-html-sz .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-facebook.active,

#custom-html-sz .btn-facebook:active,

#custom-html-sz .btn-facebook:focus,

#custom-html-sz .btn-facebook:hover,

#custom-html-sz .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-facebook.active,

#custom-html-sz .btn-facebook:active,

#custom-html-sz .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sz .btn-facebook.disabled,

#custom-html-sz .btn-facebook.disabled.active,

#custom-html-sz .btn-facebook.disabled:active,

#custom-html-sz .btn-facebook.disabled:focus,

#custom-html-sz .btn-facebook.disabled:hover,

#custom-html-sz .btn-facebook[disabled],

#custom-html-sz .btn-facebook[disabled].active,

#custom-html-sz .btn-facebook[disabled]:active,

#custom-html-sz .btn-facebook[disabled]:focus,

#custom-html-sz .btn-facebook[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-facebook,

#custom-html-sz fieldset[disabled] .btn-facebook.active,

#custom-html-sz fieldset[disabled] .btn-facebook:active,

#custom-html-sz fieldset[disabled] .btn-facebook:focus,

#custom-html-sz fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-google.active,

#custom-html-sz .btn-google:active,

#custom-html-sz .btn-google:focus,

#custom-html-sz .btn-google:hover,

#custom-html-sz .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-google.active,

#custom-html-sz .btn-google:active,

#custom-html-sz .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sz .btn-google-plus.disabled.active,

#custom-html-sz .btn-google-plus.disabled:active,

#custom-html-sz .btn-google-plus.disabled:focus,

#custom-html-sz .btn-google-plus[disabled].active,

#custom-html-sz .btn-google-plus[disabled]:active,

#custom-html-sz .btn-google-plus[disabled]:focus,

#custom-html-sz .btn-google-plus[disabled]:hover,

#custom-html-sz .btn-google.disabled,

#custom-html-sz .btn-google.disabled:hover,

#custom-html-sz .btn-google[disabled],

#custom-html-sz fieldset[disabled] .btn-google,

#custom-html-sz fieldset[disabled] .btn-google-plus.active,

#custom-html-sz fieldset[disabled] .btn-google-plus:active,

#custom-html-sz fieldset[disabled] .btn-google-plus:focus,

#custom-html-sz fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-twitter.active,

#custom-html-sz .btn-twitter:active,

#custom-html-sz .btn-twitter:focus,

#custom-html-sz .btn-twitter:hover,

#custom-html-sz .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-twitter.active,

#custom-html-sz .btn-twitter:active,

#custom-html-sz .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sz .btn-twitter.disabled,

#custom-html-sz .btn-twitter.disabled.active,

#custom-html-sz .btn-twitter.disabled:active,

#custom-html-sz .btn-twitter.disabled:focus,

#custom-html-sz .btn-twitter.disabled:hover,

#custom-html-sz .btn-twitter[disabled],

#custom-html-sz .btn-twitter[disabled].active,

#custom-html-sz .btn-twitter[disabled]:active,

#custom-html-sz .btn-twitter[disabled]:focus,

#custom-html-sz .btn-twitter[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-twitter,

#custom-html-sz fieldset[disabled] .btn-twitter.active,

#custom-html-sz fieldset[disabled] .btn-twitter:active,

#custom-html-sz fieldset[disabled] .btn-twitter:focus,

#custom-html-sz fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .providerPreLinking {

  min-height: 52px;

}

#custom-html-sz .providerLinkingFeedback {

  display: none;

}

#custom-html-sz #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sz #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sz #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sz #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sz .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sz #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sz #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sz #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sz #registration .field,

#custom-html-sz #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sz #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sz #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sz #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sz #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sz #registration textarea.field {

  height: auto;

}

#custom-html-sz #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sz #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sz #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sz #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sz #registration .field[disabled],

#custom-html-sz #registration .field[readonly],

#custom-html-sz #registration .form-control[disabled],

#custom-html-sz #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sz #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-sz .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sz .upgrade .product-to-be-upgraded h4,

#custom-html-sz .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sz .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sz .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sz .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sz .upgrade .products .product .current,

#custom-html-sz .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sz .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sz .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sz .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-sz .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sz .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sz .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sz .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sz .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sz .upgrade .products .far,

#custom-html-sz .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sz .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sz .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sz .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sz .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sz .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sz .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .bootstrap-switch input[type=checkbox],

#custom-html-sz .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sz .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sz .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sz .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sz .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sz .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sz .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sz .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sz .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sz .md-editor .md-footer,

#custom-html-sz .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sz .md-editor > .md-header {

  margin: 0;

}

#custom-html-sz .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sz .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sz .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sz .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sz .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sz .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sz .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sz .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-input,

#custom-html-sz .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sz .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sz .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sz .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sz .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sz .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sz .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sz .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sz .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sz .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sz table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sz table.dataTable td,

#custom-html-sz table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sz table.dataTable td.dataTables_empty,

#custom-html-sz table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sz table.dataTable.nowrap td,

#custom-html-sz table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sz table.dataTable thead > tr > td.sorting,

#custom-html-sz table.dataTable thead > tr > td.sorting_asc,

#custom-html-sz table.dataTable thead > tr > td.sorting_desc,

#custom-html-sz table.dataTable thead > tr > th.sorting,

#custom-html-sz table.dataTable thead > tr > th.sorting_asc,

#custom-html-sz table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sz table.dataTable thead > tr > td:active,

#custom-html-sz table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sz table.dataTable thead .sorting,

#custom-html-sz table.dataTable thead .sorting_asc,

#custom-html-sz table.dataTable thead .sorting_asc_disabled,

#custom-html-sz table.dataTable thead .sorting_desc,

#custom-html-sz table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sz table.dataTable thead .sorting:after,

#custom-html-sz table.dataTable thead .sorting_asc:after,


#custom-html-sz table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sz table.dataTable thead .sorting_desc:after,

#custom-html-sz table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sz table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sz table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sz table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sz table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sz table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sz div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sz div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sz div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sz div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sz div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sz div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sz div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sz div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-sz table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sz table.dataTable.table-condensed .sorting:after,

#custom-html-sz table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sz table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sz table.table-bordered.dataTable td,

#custom-html-sz table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sz table.table-bordered.dataTable td:last-child,

#custom-html-sz table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sz table.table-bordered.dataTable tbody td,

#custom-html-sz table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sz div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sz div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sz div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-sz div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sz table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sz table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sz table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sz table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sz table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sz table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sz table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sz table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sz table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sz table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sz table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sz table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sz table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sz table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sz table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sz div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sz div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sz div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sz div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sz div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sz div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-sz div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sz .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sz .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sz .multiselect-container > li {

  padding: 0;

}

#custom-html-sz .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sz .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sz .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sz .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sz .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sz .multiselect-container > li > a > label.checkbox,

#custom-html-sz .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sz .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sz .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sz .form-inline .multiselect-container label.checkbox,

#custom-html-sz .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sz .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sz .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-sz html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-sz body {

  margin: 0;

}

#custom-html-sz article,

#custom-html-sz aside,

#custom-html-sz details,

#custom-html-sz figcaption,

#custom-html-sz figure,

#custom-html-sz footer,

#custom-html-sz header,

#custom-html-sz hgroup,

#custom-html-sz main,

#custom-html-sz menu,

#custom-html-sz nav,

#custom-html-sz section,

#custom-html-sz summary {

  display: block;

}

#custom-html-sz audio,

#custom-html-sz canvas,

#custom-html-sz progress,

#custom-html-sz video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sz audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sz [hidden],

#custom-html-sz template {

  display: none;

}

#custom-html-sz a {

  background-color: transparent;

}

#custom-html-sz a:active,

#custom-html-sz a:hover {

  outline: 0;

}

#custom-html-sz abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sz b,

#custom-html-sz strong {

  font-weight: 700;

}

#custom-html-sz dfn {

  font-style: italic;

}

#custom-html-sz h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sz mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sz small {

  font-size: 80%;

}

#custom-html-sz sub,

#custom-html-sz sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sz sup {

  top: -0.5em;

}

#custom-html-sz sub {

  bottom: -0.25em;

}

#custom-html-sz img {

  border: 0;

}

#custom-html-sz svg:not(:root) {

  overflow: hidden;

}

#custom-html-sz figure {

  margin: 1em 40px;

}

#custom-html-sz hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sz pre {

  overflow: auto;

}

#custom-html-sz code,

#custom-html-sz kbd,

#custom-html-sz pre,

#custom-html-sz samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-sz button,

#custom-html-sz input,

#custom-html-sz optgroup,

#custom-html-sz select,

#custom-html-sz textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sz button {

  overflow: visible;

}

#custom-html-sz button,

#custom-html-sz select {

  text-transform: none;

}

#custom-html-sz button,

#custom-html-sz html input[type=button],

#custom-html-sz input[type=reset],

#custom-html-sz input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sz button[disabled],

#custom-html-sz html input[disabled] {

  cursor: default;

}

#custom-html-sz button::-moz-focus-inner,

#custom-html-sz input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sz input {

  line-height: normal;

}

#custom-html-sz input[type=checkbox],

#custom-html-sz input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-sz input[type=number]::-webkit-inner-spin-button,

#custom-html-sz input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sz input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-sz input[type=search]::-webkit-search-cancel-button,

#custom-html-sz input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sz fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-sz legend {

  padding: 0;

  border: 0;

}

#custom-html-sz textarea {

  overflow: auto;

}

#custom-html-sz optgroup {

  font-weight: 700;

}

#custom-html-sz table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-sz td,

#custom-html-sz th {

  padding: 0;

}

@media print {

  #custom-html-sz *,

  #custom-html-sz :after,

  #custom-html-sz :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sz a,

  #custom-html-sz a:visited {

    text-decoration: underline;

  }

  #custom-html-sz a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-sz abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sz a[href^="#"]:after,

  #custom-html-sz a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sz blockquote,

  #custom-html-sz pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sz thead {

    display: table-header-group;

  }

  #custom-html-sz img,

  #custom-html-sz tr {

    page-break-inside: avoid;

  }

  #custom-html-sz img {

    max-width: 100% !important;

  }

  #custom-html-sz h2,

  #custom-html-sz h3,

  #custom-html-sz p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sz h2,

  #custom-html-sz h3 {

    page-break-after: avoid;

  }

  #custom-html-sz .navbar {

    display: none;

  }

  #custom-html-sz .btn > .caret,

  #custom-html-sz .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sz .label {

    border: 1px solid #000000;

  }

  #custom-html-sz .table {

    border-collapse: collapse !important;

  }

  #custom-html-sz .table td,

  #custom-html-sz .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sz .table-bordered td,

  #custom-html-sz .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sz .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sz .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sz .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sz .glyphicon-eur:before,

#custom-html-sz .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sz .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sz .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sz .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sz .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sz .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sz .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sz .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sz .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sz .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sz .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sz .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sz .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sz .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sz .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sz .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sz .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sz .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sz .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sz .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sz .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sz .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sz .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sz .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sz .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sz .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sz .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sz .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sz .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sz .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sz .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sz .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sz .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sz .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sz .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sz .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sz .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sz .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sz .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sz .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sz .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sz .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sz .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sz .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sz .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sz .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sz .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sz .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sz .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sz .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sz .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sz .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sz .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sz .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sz .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sz .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sz .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sz .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sz .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sz .glyphicon-list:before {

  content: "\e056";

}

#custom-html-sz .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sz .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sz .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sz .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sz .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sz .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sz .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sz .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sz .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sz .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sz .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sz .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sz .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sz .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sz .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sz .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sz .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sz .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sz .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sz .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sz .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sz .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sz .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sz .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sz .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-sz .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sz .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sz .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sz .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sz .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sz .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sz .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sz .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sz .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sz .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sz .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sz .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sz .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sz .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sz .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sz .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sz .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sz .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sz .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sz .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sz .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sz .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sz .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sz .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sz .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sz .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sz .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sz .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sz .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sz .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sz .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sz .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sz .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sz .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sz .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sz .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sz .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sz .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sz .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sz .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sz .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sz .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sz .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sz .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sz .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sz .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sz .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sz .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sz .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sz .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sz .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sz .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sz .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sz .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sz .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sz .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sz .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sz .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sz .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sz .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sz .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sz .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sz .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sz .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sz .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sz .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sz .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sz .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sz .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sz .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sz .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sz .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sz .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sz .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-sz .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sz .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sz .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sz .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sz .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sz .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sz .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sz .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sz .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sz .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sz .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sz .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sz .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sz .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sz .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sz .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sz .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sz .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sz .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sz .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sz .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sz .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sz .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sz .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sz .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sz .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sz .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sz .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sz .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sz .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sz .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sz .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sz .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sz .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sz .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sz .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sz .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sz .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sz .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sz .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sz .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sz .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sz .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sz .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sz .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sz .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sz .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sz .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sz .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sz .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sz .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sz .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sz .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sz .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sz .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sz .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sz .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sz .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sz .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sz .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sz .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sz .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sz .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sz .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sz .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sz .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sz .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sz .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sz .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sz .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sz .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sz .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sz .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sz .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sz .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sz .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sz .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sz .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sz .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sz .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sz .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sz .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sz .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sz .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sz .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sz .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-sz .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sz .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sz .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sz .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sz .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sz .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sz .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sz .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sz .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sz .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sz .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sz .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sz .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sz .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sz .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sz * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sz :after,

#custom-html-sz :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sz html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sz body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-sz button,

#custom-html-sz input,

#custom-html-sz select,

#custom-html-sz textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sz a {

  color: #000;

  text-decoration: none;

}

#custom-html-sz a:focus,

#custom-html-sz a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sz a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sz figure {

  margin: 0;

}

#custom-html-sz img {

  vertical-align: middle;

}

#custom-html-sz .carousel-inner > .item > a > img,

#custom-html-sz .carousel-inner > .item > img,

#custom-html-sz .img-responsive,

#custom-html-sz .thumbnail a > img,

#custom-html-sz .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sz .img-rounded {

  border-radius: 6px;

}

#custom-html-sz .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sz .img-circle {

  border-radius: 50%;

}

#custom-html-sz hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sz .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sz .sr-only-focusable:active,

#custom-html-sz .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sz [role=button] {

  cursor: pointer;

}

#custom-html-sz .h1,

#custom-html-sz .h2,

#custom-html-sz .h3,

#custom-html-sz .h4,

#custom-html-sz .h5,

#custom-html-sz .h6,

#custom-html-sz h1,

#custom-html-sz h2,

#custom-html-sz h3,

#custom-html-sz h4,

#custom-html-sz h5,

#custom-html-sz h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sz .h1 .small,

#custom-html-sz .h1 small,

#custom-html-sz .h2 .small,

#custom-html-sz .h2 small,

#custom-html-sz .h3 .small,

#custom-html-sz .h3 small,

#custom-html-sz .h4 .small,

#custom-html-sz .h4 small,

#custom-html-sz .h5 .small,

#custom-html-sz .h5 small,

#custom-html-sz .h6 .small,

#custom-html-sz .h6 small,

#custom-html-sz h1 .small,

#custom-html-sz h1 small,

#custom-html-sz h2 .small,

#custom-html-sz h2 small,

#custom-html-sz h3 .small,

#custom-html-sz h3 small,

#custom-html-sz h4 .small,

#custom-html-sz h4 small,

#custom-html-sz h5 .small,

#custom-html-sz h5 small,

#custom-html-sz h6 .small,

#custom-html-sz h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sz .h1,

#custom-html-sz .h2,

#custom-html-sz .h3,

#custom-html-sz h1,

#custom-html-sz h2,

#custom-html-sz h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sz .h1 .small,

#custom-html-sz .h1 small,

#custom-html-sz .h2 .small,

#custom-html-sz .h2 small,

#custom-html-sz .h3 .small,

#custom-html-sz .h3 small,

#custom-html-sz h1 .small,

#custom-html-sz h1 small,

#custom-html-sz h2 .small,

#custom-html-sz h2 small,

#custom-html-sz h3 .small,

#custom-html-sz h3 small {

  font-size: 65%;

}

#custom-html-sz .h4,

#custom-html-sz .h5,

#custom-html-sz .h6,

#custom-html-sz h4,

#custom-html-sz h5,

#custom-html-sz h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sz .h4 .small,

#custom-html-sz .h4 small,

#custom-html-sz .h5 .small,

#custom-html-sz .h5 small,

#custom-html-sz .h6 .small,

#custom-html-sz .h6 small,

#custom-html-sz h4 .small,

#custom-html-sz h4 small,

#custom-html-sz h5 .small,

#custom-html-sz h5 small,

#custom-html-sz h6 .small,

#custom-html-sz h6 small {

  font-size: 75%;

}

#custom-html-sz .h1,

#custom-html-sz h1 {

  font-size: 36px;

}

#custom-html-sz .h2,

#custom-html-sz h2 {

  font-size: 30px;

}

#custom-html-sz .h3,

#custom-html-sz h3 {

  font-size: 24px;

}

#custom-html-sz .h4,

#custom-html-sz h4 {

  font-size: 18px;

}

#custom-html-sz .h5,

#custom-html-sz h5 {

  font-size: 14px;

}

#custom-html-sz .h6,

#custom-html-sz h6 {

  font-size: 12px;

}

#custom-html-sz p {

  margin: 0 0 10px;

}

#custom-html-sz .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sz .lead {

    font-size: 21px;

  }

}

#custom-html-sz .small,

#custom-html-sz small {

  font-size: 85%;

}

#custom-html-sz .mark,

#custom-html-sz mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sz .text-left {

  text-align: left;

}

#custom-html-sz .text-right {

  text-align: right;

}

#custom-html-sz .text-center {

  text-align: center;

}

#custom-html-sz .text-justify {

  text-align: justify;

}

#custom-html-sz .text-nowrap {

  white-space: nowrap;

}

#custom-html-sz .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sz .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sz .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sz .text-muted {

  color: #777777;

}

#custom-html-sz .text-primary {

  color: #000000;

}

#custom-html-sz a.text-primary:focus,

#custom-html-sz a.text-primary:hover {

  color: #000000;

}

#custom-html-sz .text-success {

  color: #3c763d;

}

#custom-html-sz a.text-success:focus,

#custom-html-sz a.text-success:hover {

  color: #2b542c;

}

#custom-html-sz .text-info {

  color: #31708f;

}

#custom-html-sz a.text-info:focus,

#custom-html-sz a.text-info:hover {

  color: #000000;

}

#custom-html-sz .text-warning {

  color: #8a6d3b;

}

#custom-html-sz a.text-warning:focus,

#custom-html-sz a.text-warning:hover {

  color: #66512c;

}

#custom-html-sz .text-danger {

  color: #a94442;

}

#custom-html-sz a.text-danger:focus,

#custom-html-sz a.text-danger:hover {

  color: #843534;

}

#custom-html-sz .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-sz a.bg-primary:focus,

#custom-html-sz a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sz .bg-success {

  background-color: #dff0d8;

}

#custom-html-sz a.bg-success:focus,

#custom-html-sz a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sz .bg-info {

  background-color: #d9edf7;

}

#custom-html-sz a.bg-info:focus,

#custom-html-sz a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sz .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sz a.bg-warning:focus,

#custom-html-sz a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sz .bg-danger {

  background-color: #f2dede;

}

#custom-html-sz a.bg-danger:focus,

#custom-html-sz a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sz .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sz ol,

#custom-html-sz ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sz ol ol,

#custom-html-sz ol ul,

#custom-html-sz ul ol,

#custom-html-sz ul ul {

  margin-bottom: 0;

}

#custom-html-sz .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sz .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sz .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sz dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sz dd,

#custom-html-sz dt {

  line-height: 1.42857143;

}

#custom-html-sz dt {

  font-weight: 700;

}

#custom-html-sz dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sz .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sz .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-sz abbr[data-original-title],

#custom-html-sz abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sz .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sz blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sz blockquote ol:last-child,

#custom-html-sz blockquote p:last-child,

#custom-html-sz blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sz blockquote .small,

#custom-html-sz blockquote footer,

#custom-html-sz blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sz blockquote .small:before,

#custom-html-sz blockquote footer:before,

#custom-html-sz blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sz .blockquote-reverse,

#custom-html-sz blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sz .blockquote-reverse .small:before,

#custom-html-sz .blockquote-reverse footer:before,

#custom-html-sz .blockquote-reverse small:before,

#custom-html-sz blockquote.pull-right .small:before,

#custom-html-sz blockquote.pull-right footer:before,

#custom-html-sz blockquote.pull-right small:before {

  content: '';

}

#custom-html-sz .blockquote-reverse .small:after,

#custom-html-sz .blockquote-reverse footer:after,

#custom-html-sz .blockquote-reverse small:after,

#custom-html-sz blockquote.pull-right .small:after,

#custom-html-sz blockquote.pull-right footer:after,

#custom-html-sz blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sz address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sz code,

#custom-html-sz kbd,

#custom-html-sz pre,

#custom-html-sz samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-sz code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sz kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sz kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sz pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sz pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sz .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sz .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-sz .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-sz .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sz .container {

    width: 1170px;

  }

}

#custom-html-sz .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sz .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sz .col-lg-1,

#custom-html-sz .col-lg-10,

#custom-html-sz .col-lg-11,

#custom-html-sz .col-lg-12,

#custom-html-sz .col-lg-2,

#custom-html-sz .col-lg-3,

#custom-html-sz .col-lg-4,

#custom-html-sz .col-lg-5,

#custom-html-sz .col-lg-6,

#custom-html-sz .col-lg-7,

#custom-html-sz .col-lg-8,

#custom-html-sz .col-lg-9,

#custom-html-sz .col-md-1,

#custom-html-sz .col-md-10,

#custom-html-sz .col-md-11,

#custom-html-sz .col-md-12,

#custom-html-sz .col-md-2,

#custom-html-sz .col-md-3,

#custom-html-sz .col-md-4,

#custom-html-sz .col-md-5,

#custom-html-sz .col-md-6,

#custom-html-sz .col-md-7,

#custom-html-sz .col-md-8,

#custom-html-sz .col-md-9,

#custom-html-sz .col-sm-1,

#custom-html-sz .col-sm-10,

#custom-html-sz .col-sm-11,

#custom-html-sz .col-sm-12,

#custom-html-sz .col-sm-2,

#custom-html-sz .col-sm-3,

#custom-html-sz .col-sm-4,

#custom-html-sz .col-sm-5,

#custom-html-sz .col-sm-6,

#custom-html-sz .col-sm-7,

#custom-html-sz .col-sm-8,

#custom-html-sz .col-sm-9,

#custom-html-sz .col-xs-1,

#custom-html-sz .col-xs-10,

#custom-html-sz .col-xs-11,

#custom-html-sz .col-xs-12,

#custom-html-sz .col-xs-2,

#custom-html-sz .col-xs-3,

#custom-html-sz .col-xs-4,

#custom-html-sz .col-xs-5,

#custom-html-sz .col-xs-6,

#custom-html-sz .col-xs-7,

#custom-html-sz .col-xs-8,

#custom-html-sz .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sz .col-xs-1,

#custom-html-sz .col-xs-10,

#custom-html-sz .col-xs-11,

#custom-html-sz .col-xs-12,

#custom-html-sz .col-xs-2,

#custom-html-sz .col-xs-3,

#custom-html-sz .col-xs-4,

#custom-html-sz .col-xs-5,

#custom-html-sz .col-xs-6,

#custom-html-sz .col-xs-7,

#custom-html-sz .col-xs-8,

#custom-html-sz .col-xs-9 {

  float: left;

}

#custom-html-sz .col-xs-12 {

  width: 100%;

}

#custom-html-sz .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sz .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sz .col-xs-9 {

  width: 75%;

}

#custom-html-sz .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sz .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sz .col-xs-6 {

  width: 50%;

}

#custom-html-sz .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sz .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sz .col-xs-3 {

  width: 25%;

}

#custom-html-sz .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sz .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sz .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sz .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sz .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sz .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sz .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sz .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sz .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sz .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sz .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sz .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sz .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sz .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sz .col-xs-pull-0 {

  right: auto;

}

#custom-html-sz .col-xs-push-12 {

  left: 100%;

}

#custom-html-sz .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sz .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sz .col-xs-push-9 {

  left: 75%;

}

#custom-html-sz .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sz .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sz .col-xs-push-6 {

  left: 50%;

}

#custom-html-sz .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sz .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sz .col-xs-push-3 {

  left: 25%;

}

#custom-html-sz .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sz .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sz .col-xs-push-0 {

  left: auto;

}

#custom-html-sz .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sz .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sz .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sz .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sz .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sz .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sz .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sz .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sz .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sz .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sz .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sz .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-sz .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sz .col-sm-1,

  #custom-html-sz .col-sm-10,

  #custom-html-sz .col-sm-11,

  #custom-html-sz .col-sm-12,

  #custom-html-sz .col-sm-2,

  #custom-html-sz .col-sm-3,

  #custom-html-sz .col-sm-4,

  #custom-html-sz .col-sm-5,

  #custom-html-sz .col-sm-6,

  #custom-html-sz .col-sm-7,

  #custom-html-sz .col-sm-8,

  #custom-html-sz .col-sm-9 {

    float: left;

  }

  #custom-html-sz .col-sm-12 {

    width: 100%;

  }

  #custom-html-sz .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sz .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sz .col-sm-9 {

    width: 75%;

  }

  #custom-html-sz .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sz .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sz .col-sm-6 {

    width: 50%;

  }

  #custom-html-sz .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sz .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sz .col-sm-3 {

    width: 25%;

  }

  #custom-html-sz .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sz .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sz .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sz .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sz .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sz .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sz .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sz .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sz .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sz .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sz .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sz .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sz .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sz .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sz .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sz .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sz .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sz .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sz .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sz .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sz .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sz .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sz .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sz .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sz .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sz .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sz .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sz .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sz .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sz .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sz .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sz .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sz .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sz .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sz .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sz .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sz .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sz .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sz .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sz .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sz .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-sz .col-md-1,

  #custom-html-sz .col-md-10,

  #custom-html-sz .col-md-11,

  #custom-html-sz .col-md-12,

  #custom-html-sz .col-md-2,

  #custom-html-sz .col-md-3,

  #custom-html-sz .col-md-4,

  #custom-html-sz .col-md-5,

  #custom-html-sz .col-md-6,

  #custom-html-sz .col-md-7,

  #custom-html-sz .col-md-8,

  #custom-html-sz .col-md-9 {

    float: left;

  }

  #custom-html-sz .col-md-12 {

    width: 100%;

  }

  #custom-html-sz .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sz .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sz .col-md-9 {

    width: 75%;

  }

  #custom-html-sz .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sz .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sz .col-md-6 {

    width: 50%;

  }

  #custom-html-sz .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sz .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sz .col-md-3 {

    width: 25%;

  }

  #custom-html-sz .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sz .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sz .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sz .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sz .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sz .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sz .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sz .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sz .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sz .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sz .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sz .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sz .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sz .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sz .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sz .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sz .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sz .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sz .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sz .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sz .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sz .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sz .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sz .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sz .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sz .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sz .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sz .col-md-push-0 {

    left: auto;

  }

  #custom-html-sz .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sz .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sz .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sz .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sz .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sz .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sz .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sz .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sz .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sz .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sz .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sz .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sz .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-sz .col-lg-1,

  #custom-html-sz .col-lg-10,

  #custom-html-sz .col-lg-11,

  #custom-html-sz .col-lg-12,

  #custom-html-sz .col-lg-2,

  #custom-html-sz .col-lg-3,

  #custom-html-sz .col-lg-4,

  #custom-html-sz .col-lg-5,

  #custom-html-sz .col-lg-6,

  #custom-html-sz .col-lg-7,

  #custom-html-sz .col-lg-8,

  #custom-html-sz .col-lg-9 {

    float: left;

  }

  #custom-html-sz .col-lg-12 {

    width: 100%;

  }

  #custom-html-sz .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sz .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sz .col-lg-9 {

    width: 75%;

  }

  #custom-html-sz .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sz .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sz .col-lg-6 {

    width: 50%;

  }

  #custom-html-sz .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sz .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sz .col-lg-3 {

    width: 25%;

  }

  #custom-html-sz .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sz .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sz .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sz .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sz .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sz .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sz .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sz .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sz .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sz .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sz .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sz .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sz .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sz .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sz .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sz .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sz .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sz .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sz .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sz .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sz .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sz .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sz .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sz .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sz .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sz .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sz .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sz .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sz .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sz .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sz .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sz .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sz .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sz .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sz .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sz .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sz .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sz .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sz .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sz .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sz .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-sz table {

  background-color: transparent;

}

#custom-html-sz caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sz th {

  text-align: left;

}

#custom-html-sz .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sz .table > tbody > tr > td,

#custom-html-sz .table > tbody > tr > th,

#custom-html-sz .table > tfoot > tr > td,

#custom-html-sz .table > tfoot > tr > th,

#custom-html-sz .table > thead > tr > td,

#custom-html-sz .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sz .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sz .table > caption + thead > tr:first-child > td,

#custom-html-sz .table > caption + thead > tr:first-child > th,

#custom-html-sz .table > colgroup + thead > tr:first-child > td,

#custom-html-sz .table > colgroup + thead > tr:first-child > th,

#custom-html-sz .table > thead:first-child > tr:first-child > td,

#custom-html-sz .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sz .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sz .table .table {

  background-color: #ffffff;

}

#custom-html-sz .table-condensed > tbody > tr > td,

#custom-html-sz .table-condensed > tbody > tr > th,

#custom-html-sz .table-condensed > tfoot > tr > td,

#custom-html-sz .table-condensed > tfoot > tr > th,

#custom-html-sz .table-condensed > thead > tr > td,

#custom-html-sz .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sz .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sz .table-bordered > tbody > tr > td,

#custom-html-sz .table-bordered > tbody > tr > th,

#custom-html-sz .table-bordered > tfoot > tr > td,

#custom-html-sz .table-bordered > tfoot > tr > th,

#custom-html-sz .table-bordered > thead > tr > td,

#custom-html-sz .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sz .table-bordered > thead > tr > td,

#custom-html-sz .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sz .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sz .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sz table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sz table td[class*=col-],

#custom-html-sz table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-sz .table > tbody > tr.active > td,

#custom-html-sz .table > tbody > tr.active > th,

#custom-html-sz .table > tbody > tr > td.active,

#custom-html-sz .table > tbody > tr > th.active,

#custom-html-sz .table > tfoot > tr.active > td,

#custom-html-sz .table > tfoot > tr.active > th,

#custom-html-sz .table > tfoot > tr > td.active,

#custom-html-sz .table > tfoot > tr > th.active,

#custom-html-sz .table > thead > tr.active > td,

#custom-html-sz .table > thead > tr.active > th,

#custom-html-sz .table > thead > tr > td.active,

#custom-html-sz .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sz .table-hover > tbody > tr.active:hover > td,

#custom-html-sz .table-hover > tbody > tr.active:hover > th,

#custom-html-sz .table-hover > tbody > tr:hover > .active,

#custom-html-sz .table-hover > tbody > tr > td.active:hover,

#custom-html-sz .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sz .table > tbody > tr.success > td,

#custom-html-sz .table > tbody > tr.success > th,

#custom-html-sz .table > tbody > tr > td.success,

#custom-html-sz .table > tbody > tr > th.success,

#custom-html-sz .table > tfoot > tr.success > td,

#custom-html-sz .table > tfoot > tr.success > th,

#custom-html-sz .table > tfoot > tr > td.success,

#custom-html-sz .table > tfoot > tr > th.success,

#custom-html-sz .table > thead > tr.success > td,

#custom-html-sz .table > thead > tr.success > th,

#custom-html-sz .table > thead > tr > td.success,

#custom-html-sz .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sz .table-hover > tbody > tr.success:hover > td,

#custom-html-sz .table-hover > tbody > tr.success:hover > th,

#custom-html-sz .table-hover > tbody > tr:hover > .success,

#custom-html-sz .table-hover > tbody > tr > td.success:hover,

#custom-html-sz .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sz .table > tbody > tr.info > td,

#custom-html-sz .table > tbody > tr.info > th,

#custom-html-sz .table > tbody > tr > td.info,

#custom-html-sz .table > tbody > tr > th.info,

#custom-html-sz .table > tfoot > tr.info > td,

#custom-html-sz .table > tfoot > tr.info > th,

#custom-html-sz .table > tfoot > tr > td.info,

#custom-html-sz .table > tfoot > tr > th.info,

#custom-html-sz .table > thead > tr.info > td,

#custom-html-sz .table > thead > tr.info > th,

#custom-html-sz .table > thead > tr > td.info,

#custom-html-sz .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sz .table-hover > tbody > tr.info:hover > td,

#custom-html-sz .table-hover > tbody > tr.info:hover > th,

#custom-html-sz .table-hover > tbody > tr:hover > .info,

#custom-html-sz .table-hover > tbody > tr > td.info:hover,

#custom-html-sz .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sz .table > tbody > tr.warning > td,

#custom-html-sz .table > tbody > tr.warning > th,

#custom-html-sz .table > tbody > tr > td.warning,

#custom-html-sz .table > tbody > tr > th.warning,

#custom-html-sz .table > tfoot > tr.warning > td,

#custom-html-sz .table > tfoot > tr.warning > th,

#custom-html-sz .table > tfoot > tr > td.warning,

#custom-html-sz .table > tfoot > tr > th.warning,

#custom-html-sz .table > thead > tr.warning > td,

#custom-html-sz .table > thead > tr.warning > th,

#custom-html-sz .table > thead > tr > td.warning,

#custom-html-sz .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sz .table-hover > tbody > tr.warning:hover > td,

#custom-html-sz .table-hover > tbody > tr.warning:hover > th,

#custom-html-sz .table-hover > tbody > tr:hover > .warning,

#custom-html-sz .table-hover > tbody > tr > td.warning:hover,

#custom-html-sz .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sz .table > tbody > tr.danger > td,

#custom-html-sz .table > tbody > tr.danger > th,

#custom-html-sz .table > tbody > tr > td.danger,

#custom-html-sz .table > tbody > tr > th.danger,

#custom-html-sz .table > tfoot > tr.danger > td,

#custom-html-sz .table > tfoot > tr.danger > th,

#custom-html-sz .table > tfoot > tr > td.danger,

#custom-html-sz .table > tfoot > tr > th.danger,

#custom-html-sz .table > thead > tr.danger > td,

#custom-html-sz .table > thead > tr.danger > th,

#custom-html-sz .table > thead > tr > td.danger,

#custom-html-sz .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sz .table-hover > tbody > tr.danger:hover > td,

#custom-html-sz .table-hover > tbody > tr.danger:hover > th,

#custom-html-sz .table-hover > tbody > tr:hover > .danger,

#custom-html-sz .table-hover > tbody > tr > td.danger:hover,

#custom-html-sz .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sz .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sz .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sz .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sz .table-responsive > .table > tbody > tr > td,

  #custom-html-sz .table-responsive > .table > tbody > tr > th,

  #custom-html-sz .table-responsive > .table > tfoot > tr > td,

  #custom-html-sz .table-responsive > .table > tfoot > tr > th,

  #custom-html-sz .table-responsive > .table > thead > tr > td,

  #custom-html-sz .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sz .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sz .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sz .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sz .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sz .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sz .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sz .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sz .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sz .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sz .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sz .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sz .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sz .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sz .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sz .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sz .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sz .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-sz fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-sz legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sz label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sz input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sz input[type=checkbox],

#custom-html-sz input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sz input[type=file] {

  display: block;

}

#custom-html-sz input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sz select[multiple],

#custom-html-sz select[size] {

  height: auto;

}

#custom-html-sz input[type=checkbox]:focus,

#custom-html-sz input[type=file]:focus,

#custom-html-sz input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sz output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sz .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sz .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sz .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sz .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sz .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sz .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sz .form-control[disabled],

#custom-html-sz .form-control[readonly],

#custom-html-sz fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sz .form-control[disabled],

#custom-html-sz fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sz textarea.form-control {

  height: auto;

}

#custom-html-sz input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sz input[type=date].form-control,

  #custom-html-sz input[type=datetime-local].form-control,

  #custom-html-sz input[type=month].form-control,

  #custom-html-sz input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sz .input-group-sm input[type=date],

  #custom-html-sz .input-group-sm input[type=datetime-local],

  #custom-html-sz .input-group-sm input[type=month],

  #custom-html-sz .input-group-sm input[type=time],

  #custom-html-sz input[type=date].input-sm,

  #custom-html-sz input[type=datetime-local].input-sm,

  #custom-html-sz input[type=month].input-sm,

  #custom-html-sz input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sz .input-group-lg input[type=date],

  #custom-html-sz .input-group-lg input[type=datetime-local],

  #custom-html-sz .input-group-lg input[type=month],

  #custom-html-sz .input-group-lg input[type=time],

  #custom-html-sz input[type=date].input-lg,

  #custom-html-sz input[type=datetime-local].input-lg,

  #custom-html-sz input[type=month].input-lg,

  #custom-html-sz input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sz .form-group {

  margin-bottom: 15px;

}

#custom-html-sz .checkbox,

#custom-html-sz .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sz .checkbox label,

#custom-html-sz .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sz .checkbox input[type=checkbox],

#custom-html-sz .checkbox-inline input[type=checkbox],

#custom-html-sz .radio input[type=radio],

#custom-html-sz .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sz .checkbox + .checkbox,

#custom-html-sz .radio + .radio {

  margin-top: -5px;

}

#custom-html-sz .checkbox-inline,

#custom-html-sz .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sz .checkbox-inline + .checkbox-inline,

#custom-html-sz .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sz fieldset[disabled] input[type=checkbox],

#custom-html-sz fieldset[disabled] input[type=radio],

#custom-html-sz input[type=checkbox].disabled,

#custom-html-sz input[type=checkbox][disabled],

#custom-html-sz input[type=radio].disabled,

#custom-html-sz input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sz .checkbox-inline.disabled,

#custom-html-sz .radio-inline.disabled,

#custom-html-sz fieldset[disabled] .checkbox-inline,

#custom-html-sz fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sz .checkbox.disabled label,

#custom-html-sz .radio.disabled label,

#custom-html-sz fieldset[disabled] .checkbox label,

#custom-html-sz fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sz .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sz .form-control-static.input-lg,

#custom-html-sz .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sz .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sz select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sz select[multiple].input-sm,

#custom-html-sz textarea.input-sm {

  height: auto;

}

#custom-html-sz .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sz .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sz .form-group-sm select[multiple].form-control,

#custom-html-sz .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sz .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sz .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sz select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sz select[multiple].input-lg,

#custom-html-sz textarea.input-lg {

  height: auto;

}

#custom-html-sz .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sz .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sz .form-group-lg select[multiple].form-control,

#custom-html-sz .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sz .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sz .has-feedback {

  position: relative;

}

#custom-html-sz .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sz .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sz .form-group-lg .form-control + .form-control-feedback,

#custom-html-sz .input-group-lg + .form-control-feedback,

#custom-html-sz .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sz .form-group-sm .form-control + .form-control-feedback,

#custom-html-sz .input-group-sm + .form-control-feedback,

#custom-html-sz .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sz .has-success .checkbox,

#custom-html-sz .has-success .checkbox-inline,

#custom-html-sz .has-success .control-label,

#custom-html-sz .has-success .help-block,

#custom-html-sz .has-success .radio,

#custom-html-sz .has-success .radio-inline,

#custom-html-sz .has-success.checkbox label,

#custom-html-sz .has-success.checkbox-inline label,

#custom-html-sz .has-success.radio label,

#custom-html-sz .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sz .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sz .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sz .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sz .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sz .has-warning .checkbox,

#custom-html-sz .has-warning .checkbox-inline,

#custom-html-sz .has-warning .control-label,

#custom-html-sz .has-warning .help-block,

#custom-html-sz .has-warning .radio,

#custom-html-sz .has-warning .radio-inline,

#custom-html-sz .has-warning.checkbox label,

#custom-html-sz .has-warning.checkbox-inline label,

#custom-html-sz .has-warning.radio label,

#custom-html-sz .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sz .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sz .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sz .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sz .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sz .has-error .checkbox,

#custom-html-sz .has-error .checkbox-inline,

#custom-html-sz .has-error .control-label,

#custom-html-sz .has-error .help-block,

#custom-html-sz .has-error .radio,

#custom-html-sz .has-error .radio-inline,

#custom-html-sz .has-error.checkbox label,

#custom-html-sz .has-error.checkbox-inline label,

#custom-html-sz .has-error.radio label,

#custom-html-sz .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sz .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sz .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sz .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sz .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sz .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-sz .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sz .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-sz .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sz .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sz .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sz .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sz .form-inline .input-group .form-control,

  #custom-html-sz .form-inline .input-group .input-group-addon,

  #custom-html-sz .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sz .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sz .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sz .form-inline .checkbox,

  #custom-html-sz .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sz .form-inline .checkbox label,

  #custom-html-sz .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sz .form-inline .checkbox input[type=checkbox],

  #custom-html-sz .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sz .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-sz .form-horizontal .checkbox,

#custom-html-sz .form-horizontal .checkbox-inline,

#custom-html-sz .form-horizontal .radio,

#custom-html-sz .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sz .form-horizontal .checkbox,

#custom-html-sz .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sz .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sz .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-sz .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-sz .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-sz .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-sz .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sz .btn.active.focus,

#custom-html-sz .btn.active:focus,

#custom-html-sz .btn.focus,

#custom-html-sz .btn:active.focus,

#custom-html-sz .btn:active:focus,

#custom-html-sz .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sz .btn.focus,

#custom-html-sz .btn:focus,

#custom-html-sz .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sz .btn.active,

#custom-html-sz .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sz .btn.disabled,

#custom-html-sz .btn[disabled],

#custom-html-sz fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sz a.btn.disabled,

#custom-html-sz fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sz .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sz .btn-default.focus,

#custom-html-sz .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sz .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sz .btn-default.active,

#custom-html-sz .btn-default:active,

#custom-html-sz .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sz .btn-default.active.focus,

#custom-html-sz .btn-default.active:focus,

#custom-html-sz .btn-default.active:hover,

#custom-html-sz .btn-default:active.focus,

#custom-html-sz .btn-default:active:focus,

#custom-html-sz .btn-default:active:hover,

#custom-html-sz .open > .dropdown-toggle.btn-default.focus,

#custom-html-sz .open > .dropdown-toggle.btn-default:focus,

#custom-html-sz .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sz .btn-default.active,

#custom-html-sz .btn-default:active,

#custom-html-sz .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-sz .btn-default.disabled.focus,

#custom-html-sz .btn-default.disabled:focus,

#custom-html-sz .btn-default.disabled:hover,

#custom-html-sz .btn-default[disabled].focus,

#custom-html-sz .btn-default[disabled]:focus,

#custom-html-sz .btn-default[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-default.focus,

#custom-html-sz fieldset[disabled] .btn-default:focus,

#custom-html-sz fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sz .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sz .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sz .btn-primary.focus,

#custom-html-sz .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sz .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sz .btn-primary.active,

#custom-html-sz .btn-primary:active,

#custom-html-sz .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sz .btn-primary.active.focus,

#custom-html-sz .btn-primary.active:focus,

#custom-html-sz .btn-primary.active:hover,

#custom-html-sz .btn-primary:active.focus,

#custom-html-sz .btn-primary:active:focus,

#custom-html-sz .btn-primary:active:hover,

#custom-html-sz .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sz .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sz .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sz .btn-primary.active,

#custom-html-sz .btn-primary:active,

#custom-html-sz .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-sz .btn-primary.disabled.focus,

#custom-html-sz .btn-primary.disabled:focus,

#custom-html-sz .btn-primary.disabled:hover,

#custom-html-sz .btn-primary[disabled].focus,

#custom-html-sz .btn-primary[disabled]:focus,

#custom-html-sz .btn-primary[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-primary.focus,

#custom-html-sz fieldset[disabled] .btn-primary:focus,

#custom-html-sz fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sz .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sz .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sz .btn-success.focus,

#custom-html-sz .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sz .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sz .btn-success.active,

#custom-html-sz .btn-success:active,

#custom-html-sz .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sz .btn-success.active.focus,

#custom-html-sz .btn-success.active:focus,

#custom-html-sz .btn-success.active:hover,

#custom-html-sz .btn-success:active.focus,

#custom-html-sz .btn-success:active:focus,

#custom-html-sz .btn-success:active:hover,

#custom-html-sz .open > .dropdown-toggle.btn-success.focus,

#custom-html-sz .open > .dropdown-toggle.btn-success:focus,

#custom-html-sz .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sz .btn-success.active,

#custom-html-sz .btn-success:active,

#custom-html-sz .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-sz .btn-success.disabled.focus,

#custom-html-sz .btn-success.disabled:focus,

#custom-html-sz .btn-success.disabled:hover,

#custom-html-sz .btn-success[disabled].focus,

#custom-html-sz .btn-success[disabled]:focus,

#custom-html-sz .btn-success[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-success.focus,

#custom-html-sz fieldset[disabled] .btn-success:focus,

#custom-html-sz fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sz .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sz .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sz .btn-info.focus,

#custom-html-sz .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sz .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sz .btn-info.active,

#custom-html-sz .btn-info:active,

#custom-html-sz .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sz .btn-info.active.focus,

#custom-html-sz .btn-info.active:focus,

#custom-html-sz .btn-info.active:hover,

#custom-html-sz .btn-info:active.focus,

#custom-html-sz .btn-info:active:focus,

#custom-html-sz .btn-info:active:hover,

#custom-html-sz .open > .dropdown-toggle.btn-info.focus,

#custom-html-sz .open > .dropdown-toggle.btn-info:focus,

#custom-html-sz .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sz .btn-info.active,

#custom-html-sz .btn-info:active,

#custom-html-sz .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-sz .btn-info.disabled.focus,

#custom-html-sz .btn-info.disabled:focus,

#custom-html-sz .btn-info.disabled:hover,

#custom-html-sz .btn-info[disabled].focus,

#custom-html-sz .btn-info[disabled]:focus,

#custom-html-sz .btn-info[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-info.focus,

#custom-html-sz fieldset[disabled] .btn-info:focus,

#custom-html-sz fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sz .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sz .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sz .btn-warning.focus,

#custom-html-sz .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sz .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sz .btn-warning.active,

#custom-html-sz .btn-warning:active,

#custom-html-sz .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sz .btn-warning.active.focus,

#custom-html-sz .btn-warning.active:focus,

#custom-html-sz .btn-warning.active:hover,

#custom-html-sz .btn-warning:active.focus,

#custom-html-sz .btn-warning:active:focus,

#custom-html-sz .btn-warning:active:hover,

#custom-html-sz .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sz .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sz .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sz .btn-warning.active,

#custom-html-sz .btn-warning:active,

#custom-html-sz .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-sz .btn-warning.disabled.focus,

#custom-html-sz .btn-warning.disabled:focus,

#custom-html-sz .btn-warning.disabled:hover,

#custom-html-sz .btn-warning[disabled].focus,

#custom-html-sz .btn-warning[disabled]:focus,

#custom-html-sz .btn-warning[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-warning.focus,

#custom-html-sz fieldset[disabled] .btn-warning:focus,

#custom-html-sz fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sz .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sz .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sz .btn-danger.focus,

#custom-html-sz .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sz .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sz .btn-danger.active,

#custom-html-sz .btn-danger:active,

#custom-html-sz .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sz .btn-danger.active.focus,

#custom-html-sz .btn-danger.active:focus,

#custom-html-sz .btn-danger.active:hover,

#custom-html-sz .btn-danger:active.focus,

#custom-html-sz .btn-danger:active:focus,

#custom-html-sz .btn-danger:active:hover,

#custom-html-sz .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sz .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sz .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sz .btn-danger.active,

#custom-html-sz .btn-danger:active,

#custom-html-sz .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-sz .btn-danger.disabled.focus,

#custom-html-sz .btn-danger.disabled:focus,

#custom-html-sz .btn-danger.disabled:hover,

#custom-html-sz .btn-danger[disabled].focus,

#custom-html-sz .btn-danger[disabled]:focus,

#custom-html-sz .btn-danger[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-danger.focus,

#custom-html-sz fieldset[disabled] .btn-danger:focus,

#custom-html-sz fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sz .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sz .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sz .btn-link,

#custom-html-sz .btn-link.active,

#custom-html-sz .btn-link:active,

#custom-html-sz .btn-link[disabled],

#custom-html-sz fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sz .btn-link,

#custom-html-sz .btn-link:active,

#custom-html-sz .btn-link:focus,

#custom-html-sz .btn-link:hover {

  border-color: transparent;

}

#custom-html-sz .btn-link:focus,

#custom-html-sz .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sz .btn-link[disabled]:focus,

#custom-html-sz .btn-link[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-link:focus,

#custom-html-sz fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sz .btn-group-lg > .btn,

#custom-html-sz .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sz .btn-group-sm > .btn,

#custom-html-sz .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sz .btn-group-xs > .btn,

#custom-html-sz .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sz .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sz .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sz input[type=button].btn-block,

#custom-html-sz input[type=reset].btn-block,

#custom-html-sz input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sz .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sz .fade.in {

  opacity: 1;

}

#custom-html-sz .collapse {

  display: none;

}

#custom-html-sz .collapse.in {

  display: block;

}

#custom-html-sz tr.collapse.in {

  display: table-row;

}

#custom-html-sz tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sz .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-sz .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sz .dropdown,

#custom-html-sz .dropup {

  position: relative;

}

#custom-html-sz .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sz .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sz .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sz .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sz .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sz .dropdown-menu > li > a:focus,

#custom-html-sz .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sz .dropdown-menu > .active > a,

#custom-html-sz .dropdown-menu > .active > a:focus,

#custom-html-sz .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sz .dropdown-menu > .disabled > a,

#custom-html-sz .dropdown-menu > .disabled > a:focus,

#custom-html-sz .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sz .dropdown-menu > .disabled > a:focus,

#custom-html-sz .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sz .open > .dropdown-menu {

  display: block;

}

#custom-html-sz .open > a {

  outline: 0;

}

#custom-html-sz .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sz .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sz .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sz .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sz .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sz .dropup .caret,

#custom-html-sz .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sz .dropup .dropdown-menu,

#custom-html-sz .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-sz .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sz .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-sz .btn-group,

#custom-html-sz .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sz .btn-group-vertical > .btn,

#custom-html-sz .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sz .btn-group-vertical > .btn.active,

#custom-html-sz .btn-group-vertical > .btn:active,

#custom-html-sz .btn-group-vertical > .btn:focus,

#custom-html-sz .btn-group-vertical > .btn:hover,

#custom-html-sz .btn-group > .btn.active,

#custom-html-sz .btn-group > .btn:active,

#custom-html-sz .btn-group > .btn:focus,

#custom-html-sz .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sz .btn-group .btn + .btn,

#custom-html-sz .btn-group .btn + .btn-group,

#custom-html-sz .btn-group .btn-group + .btn,

#custom-html-sz .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sz .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sz .btn-toolbar .btn,

#custom-html-sz .btn-toolbar .btn-group,

#custom-html-sz .btn-toolbar .input-group {

  float: left;

}

#custom-html-sz .btn-toolbar > .btn,

#custom-html-sz .btn-toolbar > .btn-group,

#custom-html-sz .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sz .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sz .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sz .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sz .btn-group > .btn:last-child:not(:first-child),

#custom-html-sz .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sz .btn-group > .btn-group {

  float: left;

}

#custom-html-sz .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sz .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sz .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sz .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sz .btn-group .dropdown-toggle:active,

#custom-html-sz .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sz .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sz .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sz .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sz .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sz .btn .caret {

  margin-left: 0;

}

#custom-html-sz .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sz .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sz .btn-group-vertical > .btn,

#custom-html-sz .btn-group-vertical > .btn-group,

#custom-html-sz .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sz .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sz .btn-group-vertical > .btn + .btn,

#custom-html-sz .btn-group-vertical > .btn + .btn-group,

#custom-html-sz .btn-group-vertical > .btn-group + .btn,

#custom-html-sz .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sz .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sz .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sz .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sz .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sz .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sz .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sz .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sz .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sz .btn-group-justified > .btn,

#custom-html-sz .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sz .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sz .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sz [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sz [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sz [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sz [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sz .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sz .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sz .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sz .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sz .input-group-lg > .form-control,

#custom-html-sz .input-group-lg > .input-group-addon,

#custom-html-sz .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sz select.input-group-lg > .form-control,

#custom-html-sz select.input-group-lg > .input-group-addon,

#custom-html-sz select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sz select[multiple].input-group-lg > .form-control,

#custom-html-sz select[multiple].input-group-lg > .input-group-addon,

#custom-html-sz select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sz textarea.input-group-lg > .form-control,

#custom-html-sz textarea.input-group-lg > .input-group-addon,

#custom-html-sz textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sz .input-group-sm > .form-control,

#custom-html-sz .input-group-sm > .input-group-addon,

#custom-html-sz .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sz select.input-group-sm > .form-control,

#custom-html-sz select.input-group-sm > .input-group-addon,

#custom-html-sz select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sz select[multiple].input-group-sm > .form-control,

#custom-html-sz select[multiple].input-group-sm > .input-group-addon,

#custom-html-sz select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sz textarea.input-group-sm > .form-control,

#custom-html-sz textarea.input-group-sm > .input-group-addon,

#custom-html-sz textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sz .input-group .form-control,

#custom-html-sz .input-group-addon,

#custom-html-sz .input-group-btn {

  display: table-cell;

}

#custom-html-sz .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sz .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sz .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sz .input-group-addon,

#custom-html-sz .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sz .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sz .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sz .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sz .input-group-addon input[type=checkbox],

#custom-html-sz .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sz .input-group .form-control:first-child,

#custom-html-sz .input-group-addon:first-child,

#custom-html-sz .input-group-btn:first-child > .btn,

#custom-html-sz .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sz .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sz .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sz .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sz .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sz .input-group .form-control:last-child,

#custom-html-sz .input-group-addon:last-child,

#custom-html-sz .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sz .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sz .input-group-btn:last-child > .btn,

#custom-html-sz .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sz .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sz .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sz .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sz .input-group-btn > .btn {

  position: relative;

}

#custom-html-sz .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sz .input-group-btn > .btn:active,

#custom-html-sz .input-group-btn > .btn:focus,

#custom-html-sz .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sz .input-group-btn:first-child > .btn,

#custom-html-sz .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sz .input-group-btn:last-child > .btn,

#custom-html-sz .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sz .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sz .nav > li {

  position: relative;

  display: block;

}

#custom-html-sz .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sz .nav > li > a:focus,

#custom-html-sz .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sz .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sz .nav > li.disabled > a:focus,

#custom-html-sz .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sz .nav .open > a,

#custom-html-sz .nav .open > a:focus,

#custom-html-sz .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sz .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sz .nav > li > a > img {

  max-width: none;

}

#custom-html-sz .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sz .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sz .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sz .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sz .nav-tabs > li.active > a,

#custom-html-sz .nav-tabs > li.active > a:focus,

#custom-html-sz .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sz .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sz .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sz .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sz .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sz .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sz .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sz .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sz .nav-tabs.nav-justified > .active > a,

#custom-html-sz .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sz .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sz .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sz .nav-tabs.nav-justified > .active > a,

  #custom-html-sz .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sz .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sz .nav-pills > li {

  float: left;

}

#custom-html-sz .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sz .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sz .nav-pills > li.active > a,

#custom-html-sz .nav-pills > li.active > a:focus,

#custom-html-sz .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sz .nav-stacked > li {

  float: none;

}

#custom-html-sz .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sz .nav-justified {

  width: 100%;

}

#custom-html-sz .nav-justified > li {

  float: none;

}

#custom-html-sz .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sz .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sz .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sz .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sz .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sz .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sz .nav-tabs-justified > .active > a,

#custom-html-sz .nav-tabs-justified > .active > a:focus,

#custom-html-sz .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sz .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sz .nav-tabs-justified > .active > a,

  #custom-html-sz .nav-tabs-justified > .active > a:focus,

  #custom-html-sz .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sz .tab-content > .tab-pane {

  display: none;

}

#custom-html-sz .tab-content > .active {

  display: block;

}

#custom-html-sz .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sz .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-sz .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-sz .navbar-header {

    float: left;

  }

}

#custom-html-sz .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sz .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-sz .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sz .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sz .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sz .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sz .navbar-fixed-top .navbar-collapse,

  #custom-html-sz .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-sz .navbar-fixed-bottom .navbar-collapse,

#custom-html-sz .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sz .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sz .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sz .container-fluid > .navbar-collapse,

#custom-html-sz .container-fluid > .navbar-header,

#custom-html-sz .container > .navbar-collapse,

#custom-html-sz .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sz .container-fluid > .navbar-collapse,

  #custom-html-sz .container-fluid > .navbar-header,

  #custom-html-sz .container > .navbar-collapse,

  #custom-html-sz .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-sz .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-sz .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-sz .navbar-fixed-bottom,

#custom-html-sz .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-sz .navbar-fixed-bottom,

  #custom-html-sz .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-sz .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sz .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sz .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sz .navbar-brand:focus,

#custom-html-sz .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sz .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-sz .navbar > .container .navbar-brand,

  #custom-html-sz .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-sz .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sz .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sz .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sz .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-sz .navbar-toggle {

    display: none;

  }

}

#custom-html-sz .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sz .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sz .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sz .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sz .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sz .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sz .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sz .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-sz .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sz .navbar-nav > li {

    float: left;

  }

  #custom-html-sz .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-sz .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-sz .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sz .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sz .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sz .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sz .navbar-form .input-group .form-control,

  #custom-html-sz .navbar-form .input-group .input-group-addon,

  #custom-html-sz .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sz .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sz .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sz .navbar-form .checkbox,

  #custom-html-sz .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sz .navbar-form .checkbox label,

  #custom-html-sz .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sz .navbar-form .checkbox input[type=checkbox],

  #custom-html-sz .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sz .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-sz .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sz .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-sz .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-sz .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sz .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sz .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sz .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sz .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sz .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-sz .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-sz .navbar-left {

    float: left !important;

  }

  #custom-html-sz .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sz .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-sz .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sz .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sz .navbar-default .navbar-brand:focus,

#custom-html-sz .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sz .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sz .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sz .navbar-default .navbar-nav > li > a:focus,

#custom-html-sz .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sz .navbar-default .navbar-nav > .active > a,

#custom-html-sz .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sz .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sz .navbar-default .navbar-nav > .disabled > a,

#custom-html-sz .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sz .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sz .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sz .navbar-default .navbar-toggle:focus,

#custom-html-sz .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sz .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sz .navbar-default .navbar-collapse,

#custom-html-sz .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sz .navbar-default .navbar-nav > .open > a,

#custom-html-sz .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sz .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sz .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-sz .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sz .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sz .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sz .navbar-default .btn-link:focus,

#custom-html-sz .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sz .navbar-default .btn-link[disabled]:focus,

#custom-html-sz .navbar-default .btn-link[disabled]:hover,

#custom-html-sz fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sz fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sz .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sz .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sz .navbar-inverse .navbar-brand:focus,

#custom-html-sz .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sz .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sz .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sz .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sz .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sz .navbar-inverse .navbar-nav > .active > a,

#custom-html-sz .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sz .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sz .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sz .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sz .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sz .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sz .navbar-inverse .navbar-toggle:focus,

#custom-html-sz .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sz .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sz .navbar-inverse .navbar-collapse,

#custom-html-sz .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sz .navbar-inverse .navbar-nav > .open > a,

#custom-html-sz .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sz .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sz .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-sz .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sz .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sz .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sz .navbar-inverse .btn-link:focus,

#custom-html-sz .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sz .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sz .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sz fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sz fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sz .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sz .breadcrumb > li {

  display: inline-block;

}

#custom-html-sz .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sz .breadcrumb > .active {

  color: #777777;

}

#custom-html-sz .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-sz .pagination > li {

  display: inline;

}

#custom-html-sz .pagination > li > a,

#custom-html-sz .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sz .pagination > li:first-child > a,

#custom-html-sz .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sz .pagination > li:last-child > a,

#custom-html-sz .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sz .pagination > li > a:focus,

#custom-html-sz .pagination > li > a:hover,

#custom-html-sz .pagination > li > span:focus,

#custom-html-sz .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sz .pagination > .active > a,

#custom-html-sz .pagination > .active > a:focus,

#custom-html-sz .pagination > .active > a:hover,

#custom-html-sz .pagination > .active > span,

#custom-html-sz .pagination > .active > span:focus,

#custom-html-sz .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-sz .pagination > .disabled > a,

#custom-html-sz .pagination > .disabled > a:focus,

#custom-html-sz .pagination > .disabled > a:hover,

#custom-html-sz .pagination > .disabled > span,

#custom-html-sz .pagination > .disabled > span:focus,

#custom-html-sz .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sz .pagination-lg > li > a,

#custom-html-sz .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sz .pagination-lg > li:first-child > a,

#custom-html-sz .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sz .pagination-lg > li:last-child > a,

#custom-html-sz .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sz .pagination-sm > li > a,

#custom-html-sz .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sz .pagination-sm > li:first-child > a,

#custom-html-sz .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sz .pagination-sm > li:last-child > a,

#custom-html-sz .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sz .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sz .pager li {

  display: inline;

}

#custom-html-sz .pager li > a,

#custom-html-sz .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sz .pager li > a:focus,

#custom-html-sz .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sz .pager .next > a,

#custom-html-sz .pager .next > span {

  float: right;

}

#custom-html-sz .pager .previous > a,

#custom-html-sz .pager .previous > span {

  float: left;

}

#custom-html-sz .pager .disabled > a,

#custom-html-sz .pager .disabled > a:focus,

#custom-html-sz .pager .disabled > a:hover,

#custom-html-sz .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sz .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-sz a.label:focus,

#custom-html-sz a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sz .label:empty {

  display: none;

}

#custom-html-sz .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sz .label-default {

  background-color: #777777;

}

#custom-html-sz .label-default[href]:focus,

#custom-html-sz .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sz .label-primary {

  background-color: #337ab7;

}

#custom-html-sz .label-primary[href]:focus,

#custom-html-sz .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sz .label-success {

  background-color: #5cb85c;

}

#custom-html-sz .label-success[href]:focus,

#custom-html-sz .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sz .label-info {

  background-color: #5bc0de;

}

#custom-html-sz .label-info[href]:focus,

#custom-html-sz .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sz .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sz .label-warning[href]:focus,

#custom-html-sz .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sz .label-danger {

  background-color: #d9534f;

}

#custom-html-sz .label-danger[href]:focus,

#custom-html-sz .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sz .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sz .badge:empty {

  display: none;

}

#custom-html-sz .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sz .btn-group-xs > .btn .badge,

#custom-html-sz .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sz a.badge:focus,

#custom-html-sz a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sz .list-group-item.active > .badge,

#custom-html-sz .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sz .list-group-item > .badge {

  float: right;

}

#custom-html-sz .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sz .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sz .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sz .jumbotron .h1,

#custom-html-sz .jumbotron h1 {

  color: inherit;

}

#custom-html-sz .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sz .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sz .container .jumbotron,

#custom-html-sz .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sz .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sz .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sz .container .jumbotron,

  #custom-html-sz .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sz .jumbotron .h1,

  #custom-html-sz .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-sz .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sz .thumbnail a > img,

#custom-html-sz .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sz a.thumbnail.active,

#custom-html-sz a.thumbnail:focus,

#custom-html-sz a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sz .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sz .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sz .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sz .alert .alert-link {

  font-weight: 700;

}

#custom-html-sz .alert > p,

#custom-html-sz .alert > ul {

  margin-bottom: 0;

}

#custom-html-sz .alert > p + p {

  margin-top: 5px;

}

#custom-html-sz .alert-dismissable,

#custom-html-sz .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sz .alert-dismissable .close,

#custom-html-sz .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sz .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sz .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sz .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sz .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sz .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sz .alert-info .alert-link {

  color: #000000;

}

#custom-html-sz .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sz .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sz .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sz .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sz .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sz .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sz .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sz .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sz .progress-bar-striped,

#custom-html-sz .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sz .progress-bar.active,

#custom-html-sz .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sz .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sz .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sz .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sz .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sz .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sz .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sz .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sz .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sz .media {

  margin-top: 15px;

}

#custom-html-sz .media:first-child {

  margin-top: 0;

}

#custom-html-sz .media,

#custom-html-sz .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sz .media-body {

  width: 10000px;

}

#custom-html-sz .media-object {

  display: block;

}

#custom-html-sz .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sz .media-right,

#custom-html-sz .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sz .media-left,

#custom-html-sz .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sz .media-body,

#custom-html-sz .media-left,

#custom-html-sz .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sz .media-middle {

  vertical-align: middle;

}

#custom-html-sz .media-bottom {

  vertical-align: bottom;

}

#custom-html-sz .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sz .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sz .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-sz .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sz .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sz .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sz a.list-group-item,

#custom-html-sz button.list-group-item {

  color: #555555;

}

#custom-html-sz a.list-group-item .list-group-item-heading,

#custom-html-sz button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sz a.list-group-item:focus,

#custom-html-sz a.list-group-item:hover,

#custom-html-sz button.list-group-item:focus,

#custom-html-sz button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sz button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sz .list-group-item.disabled,

#custom-html-sz .list-group-item.disabled:focus,

#custom-html-sz .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sz .list-group-item.disabled .list-group-item-heading,

#custom-html-sz .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sz .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sz .list-group-item.disabled .list-group-item-text,

#custom-html-sz .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sz .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sz .list-group-item.active,

#custom-html-sz .list-group-item.active:focus,

#custom-html-sz .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sz .list-group-item.active .list-group-item-heading,

#custom-html-sz .list-group-item.active .list-group-item-heading > .small,

#custom-html-sz .list-group-item.active .list-group-item-heading > small,

#custom-html-sz .list-group-item.active:focus .list-group-item-heading,

#custom-html-sz .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sz .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sz .list-group-item.active:hover .list-group-item-heading,

#custom-html-sz .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sz .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sz .list-group-item.active .list-group-item-text,

#custom-html-sz .list-group-item.active:focus .list-group-item-text,

#custom-html-sz .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sz .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sz a.list-group-item-success,

#custom-html-sz button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sz a.list-group-item-success .list-group-item-heading,

#custom-html-sz button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sz a.list-group-item-success:focus,

#custom-html-sz a.list-group-item-success:hover,

#custom-html-sz button.list-group-item-success:focus,

#custom-html-sz button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sz a.list-group-item-success.active,

#custom-html-sz a.list-group-item-success.active:focus,

#custom-html-sz a.list-group-item-success.active:hover,

#custom-html-sz button.list-group-item-success.active,

#custom-html-sz button.list-group-item-success.active:focus,

#custom-html-sz button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sz .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sz a.list-group-item-info,

#custom-html-sz button.list-group-item-info {

  color: #31708f;

}

#custom-html-sz a.list-group-item-info .list-group-item-heading,

#custom-html-sz button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sz a.list-group-item-info:focus,

#custom-html-sz a.list-group-item-info:hover,

#custom-html-sz button.list-group-item-info:focus,

#custom-html-sz button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sz a.list-group-item-info.active,

#custom-html-sz a.list-group-item-info.active:focus,

#custom-html-sz a.list-group-item-info.active:hover,

#custom-html-sz button.list-group-item-info.active,

#custom-html-sz button.list-group-item-info.active:focus,

#custom-html-sz button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sz .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sz a.list-group-item-warning,

#custom-html-sz button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sz a.list-group-item-warning .list-group-item-heading,

#custom-html-sz button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sz a.list-group-item-warning:focus,

#custom-html-sz a.list-group-item-warning:hover,

#custom-html-sz button.list-group-item-warning:focus,

#custom-html-sz button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sz a.list-group-item-warning.active,

#custom-html-sz a.list-group-item-warning.active:focus,

#custom-html-sz a.list-group-item-warning.active:hover,

#custom-html-sz button.list-group-item-warning.active,

#custom-html-sz button.list-group-item-warning.active:focus,

#custom-html-sz button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sz .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sz a.list-group-item-danger,

#custom-html-sz button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sz a.list-group-item-danger .list-group-item-heading,

#custom-html-sz button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sz a.list-group-item-danger:focus,

#custom-html-sz a.list-group-item-danger:hover,

#custom-html-sz button.list-group-item-danger:focus,

#custom-html-sz button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sz a.list-group-item-danger.active,

#custom-html-sz a.list-group-item-danger.active:focus,

#custom-html-sz a.list-group-item-danger.active:hover,

#custom-html-sz button.list-group-item-danger.active,

#custom-html-sz button.list-group-item-danger.active:focus,

#custom-html-sz button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sz .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sz .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sz .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sz .panel-body {

  padding: 15px;

}

#custom-html-sz .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sz .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sz .panel-title > .small,

#custom-html-sz .panel-title > .small > a,

#custom-html-sz .panel-title > a,

#custom-html-sz .panel-title > small,

#custom-html-sz .panel-title > small > a {

  color: inherit;

}

#custom-html-sz .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sz .panel > .list-group,

#custom-html-sz .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sz .panel > .list-group .list-group-item,

#custom-html-sz .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sz .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sz .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sz .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sz .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sz .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sz .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sz .panel > .panel-collapse > .table,

#custom-html-sz .panel > .table,

#custom-html-sz .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sz .panel > .panel-collapse > .table caption,

#custom-html-sz .panel > .table caption,

#custom-html-sz .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sz .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sz .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sz .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sz .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sz .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sz .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sz .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sz .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sz .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sz .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sz .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sz .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sz .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sz .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sz .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sz .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sz .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sz .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sz .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sz .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sz .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sz .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sz .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sz .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sz .panel > .panel-body + .table,

#custom-html-sz .panel > .panel-body + .table-responsive,

#custom-html-sz .panel > .table + .panel-body,

#custom-html-sz .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sz .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sz .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sz .panel > .table-bordered,

#custom-html-sz .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sz .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sz .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sz .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sz .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sz .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sz .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sz .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sz .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sz .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sz .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sz .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sz .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sz .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sz .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sz .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sz .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sz .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sz .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sz .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sz .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sz .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sz .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sz .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sz .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sz .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sz .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sz .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sz .panel-group {

  margin-bottom: 20px;

}

#custom-html-sz .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sz .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sz .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sz .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sz .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sz .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sz .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sz .panel-default {

  border-color: #dddddd;

}

#custom-html-sz .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sz .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sz .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sz .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sz .panel-primary {

  border-color: #337ab7;

}

#custom-html-sz .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sz .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sz .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sz .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sz .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sz .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sz .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sz .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sz .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sz .panel-info {

  border-color: #bce8f1;

}

#custom-html-sz .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sz .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sz .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sz .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sz .panel-warning {

  border-color: #faebcc;

}

#custom-html-sz .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sz .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sz .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sz .panel-warning > .panel-footer + .panel-collapse > .panel-body {


  border-bottom-color: #faebcc;

}

#custom-html-sz .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sz .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sz .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sz .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sz .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sz .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sz .embed-responsive .embed-responsive-item,

#custom-html-sz .embed-responsive embed,

#custom-html-sz .embed-responsive iframe,

#custom-html-sz .embed-responsive object,

#custom-html-sz .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sz .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sz .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sz .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sz .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sz .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sz .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sz .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sz .close:focus,

#custom-html-sz .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sz button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sz .modal-open {

  overflow: hidden;

}

#custom-html-sz .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sz .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sz .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sz .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sz .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sz .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sz .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sz .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sz .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sz .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sz .modal-header .close {

  margin-top: -2px;

}

#custom-html-sz .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sz .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sz .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sz .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sz .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sz .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sz .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-sz .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sz .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sz .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-sz .modal-lg {

    width: 900px;

  }

}

#custom-html-sz .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sz .tooltip.in {

  opacity: 0.9;

}

#custom-html-sz .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sz .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sz .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sz .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sz .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sz .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sz .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sz .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sz .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sz .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sz .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sz .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sz .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sz .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sz .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sz .popover.top {

  margin-top: -10px;

}

#custom-html-sz .popover.right {

  margin-left: 10px;

}

#custom-html-sz .popover.bottom {

  margin-top: 10px;

}

#custom-html-sz .popover.left {

  margin-left: -10px;

}

#custom-html-sz .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sz .popover-content {

  padding: 9px 14px;

}

#custom-html-sz .popover > .arrow,

#custom-html-sz .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sz .popover > .arrow {

  border-width: 11px;

}

#custom-html-sz .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sz .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sz .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sz .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sz .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sz .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sz .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sz .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sz .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sz .carousel {

  position: relative;

}

#custom-html-sz .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sz .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sz .carousel-inner > .item > a > img,

#custom-html-sz .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sz .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sz .carousel-inner > .item.active.right,

  #custom-html-sz .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sz .carousel-inner > .item.active.left,

  #custom-html-sz .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sz .carousel-inner > .item.active,

  #custom-html-sz .carousel-inner > .item.next.left,

  #custom-html-sz .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sz .carousel-inner > .active,

#custom-html-sz .carousel-inner > .next,

#custom-html-sz .carousel-inner > .prev {

  display: block;

}

#custom-html-sz .carousel-inner > .active {

  left: 0;

}

#custom-html-sz .carousel-inner > .next,

#custom-html-sz .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sz .carousel-inner > .next {

  left: 100%;

}

#custom-html-sz .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sz .carousel-inner > .next.left,

#custom-html-sz .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sz .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sz .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sz .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sz .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sz .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sz .carousel-control:focus,

#custom-html-sz .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sz .carousel-control .glyphicon-chevron-left,

#custom-html-sz .carousel-control .glyphicon-chevron-right,

#custom-html-sz .carousel-control .icon-next,

#custom-html-sz .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sz .carousel-control .glyphicon-chevron-left,

#custom-html-sz .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sz .carousel-control .glyphicon-chevron-right,

#custom-html-sz .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sz .carousel-control .icon-next,

#custom-html-sz .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sz .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sz .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sz .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sz .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-sz .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sz .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sz .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-sz .carousel-control .glyphicon-chevron-left,

  #custom-html-sz .carousel-control .glyphicon-chevron-right,

  #custom-html-sz .carousel-control .icon-next,

  #custom-html-sz .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sz .carousel-control .glyphicon-chevron-left,

  #custom-html-sz .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sz .carousel-control .glyphicon-chevron-right,

  #custom-html-sz .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sz .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sz .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sz .btn-group-vertical > .btn-group:after,

#custom-html-sz .btn-group-vertical > .btn-group:before,

#custom-html-sz .btn-toolbar:after,

#custom-html-sz .btn-toolbar:before,

#custom-html-sz .clearfix:after,

#custom-html-sz .clearfix:before,

#custom-html-sz .container-fluid:after,

#custom-html-sz .container-fluid:before,

#custom-html-sz .container:after,

#custom-html-sz .container:before,

#custom-html-sz .dl-horizontal dd:after,

#custom-html-sz .dl-horizontal dd:before,

#custom-html-sz .form-horizontal .form-group:after,

#custom-html-sz .form-horizontal .form-group:before,

#custom-html-sz .modal-footer:after,

#custom-html-sz .modal-footer:before,

#custom-html-sz .modal-header:after,

#custom-html-sz .modal-header:before,

#custom-html-sz .nav:after,

#custom-html-sz .nav:before,

#custom-html-sz .navbar-collapse:after,

#custom-html-sz .navbar-collapse:before,

#custom-html-sz .navbar-header:after,

#custom-html-sz .navbar-header:before,

#custom-html-sz .navbar:after,

#custom-html-sz .navbar:before,

#custom-html-sz .pager:after,

#custom-html-sz .pager:before,

#custom-html-sz .panel-body:after,

#custom-html-sz .panel-body:before,

#custom-html-sz .row:after,

#custom-html-sz .row:before {

  display: table;

  content: " ";

}

#custom-html-sz .btn-group-vertical > .btn-group:after,

#custom-html-sz .btn-toolbar:after,

#custom-html-sz .clearfix:after,

#custom-html-sz .container-fluid:after,

#custom-html-sz .container:after,

#custom-html-sz .dl-horizontal dd:after,

#custom-html-sz .form-horizontal .form-group:after,

#custom-html-sz .modal-footer:after,

#custom-html-sz .modal-header:after,

#custom-html-sz .nav:after,

#custom-html-sz .navbar-collapse:after,

#custom-html-sz .navbar-header:after,

#custom-html-sz .navbar:after,

#custom-html-sz .pager:after,

#custom-html-sz .panel-body:after,

#custom-html-sz .row:after {

  clear: both;

}

#custom-html-sz .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sz .pull-right {

  float: right !important;

}

#custom-html-sz .pull-left {

  float: left !important;

}

#custom-html-sz .hide {

  display: none !important;

}

#custom-html-sz .show {

  display: block !important;

}

#custom-html-sz .invisible {

  visibility: hidden;

}

#custom-html-sz .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sz .hidden {

  display: none !important;

}

#custom-html-sz .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sz .visible-lg,

#custom-html-sz .visible-md,

#custom-html-sz .visible-sm,

#custom-html-sz .visible-xs {

  display: none !important;

}

#custom-html-sz .visible-lg-block,

#custom-html-sz .visible-lg-inline,

#custom-html-sz .visible-lg-inline-block,

#custom-html-sz .visible-md-block,

#custom-html-sz .visible-md-inline,

#custom-html-sz .visible-md-inline-block,

#custom-html-sz .visible-sm-block,

#custom-html-sz .visible-sm-inline,

#custom-html-sz .visible-sm-inline-block,

#custom-html-sz .visible-xs-block,

#custom-html-sz .visible-xs-inline,

#custom-html-sz .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-sz .visible-xs {

    display: block !important;

  }

  #custom-html-sz table.visible-xs {

    display: table !important;

  }

  #custom-html-sz tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sz td.visible-xs,

  #custom-html-sz th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sz .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sz .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sz .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sz .visible-sm {

    display: block !important;

  }

  #custom-html-sz table.visible-sm {

    display: table !important;

  }

  #custom-html-sz tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sz td.visible-sm,

  #custom-html-sz th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sz .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sz .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sz .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sz .visible-md {

    display: block !important;

  }

  #custom-html-sz table.visible-md {

    display: table !important;

  }

  #custom-html-sz tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sz td.visible-md,

  #custom-html-sz th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sz .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sz .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sz .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sz .visible-lg {

    display: block !important;

  }

  #custom-html-sz table.visible-lg {

    display: table !important;

  }

  #custom-html-sz tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sz td.visible-lg,

  #custom-html-sz th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sz .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sz .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sz .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sz .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sz .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sz .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sz .hidden-lg {

    display: none !important;

  }

}

#custom-html-sz .visible-print {

  display: none !important;

}

@media print {

  #custom-html-sz .visible-print {

    display: block !important;

  }

  #custom-html-sz table.visible-print {

    display: table !important;

  }

  #custom-html-sz tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sz td.visible-print,

  #custom-html-sz th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-sz .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-sz .visible-print-block {

    display: block !important;

  }

}

#custom-html-sz .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-sz .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-sz .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-sz .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-sz .hidden-print {

    display: none !important;

  }

}

#custom-html-sz .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-sz .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sz .intl-tel-input .hide {

  display: none;

}

#custom-html-sz .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sz .intl-tel-input input,

#custom-html-sz .intl-tel-input input[type=tel],

#custom-html-sz .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sz .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sz .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sz .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sz .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sz .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sz .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sz .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sz .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sz .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-sz .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sz .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sz .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sz .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sz .intl-tel-input .country-list .country-name,

#custom-html-sz .intl-tel-input .country-list .dial-code,

#custom-html-sz .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sz .intl-tel-input .country-list .country-name,

#custom-html-sz .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sz .intl-tel-input.allow-dropdown input,

#custom-html-sz .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sz .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sz .intl-tel-input.separate-dial-code input,

#custom-html-sz .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sz .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sz .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sz .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sz .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sz .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sz .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sz .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sz .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sz .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sz .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sz .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sz .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sz .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sz .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sz .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sz .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sz .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sz .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sz .iti-flag {

  width: 20px;

}

#custom-html-sz .iti-flag.be {

  width: 18px;

}

#custom-html-sz .iti-flag.ch {

  width: 15px;

}

#custom-html-sz .iti-flag.mc {

  width: 19px;

}

#custom-html-sz .iti-flag.ne {

  width: 18px;

}

#custom-html-sz .iti-flag.np {

  width: 13px;

}

#custom-html-sz .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sz .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-sz .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sz .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-sz .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sz .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sz .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sz .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sz .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sz .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sz .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sz .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sz .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sz .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sz .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sz .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sz .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sz .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sz .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sz .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sz .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sz .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sz .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sz .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sz .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sz .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sz .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sz .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sz .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sz .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sz .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sz .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sz .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sz .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sz .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sz .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sz .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sz .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sz .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sz .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sz .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sz .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sz .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sz .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sz .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sz .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sz .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-sz .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sz .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sz .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sz .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sz .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sz .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sz .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sz .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sz .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sz .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sz .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sz .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sz .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sz .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sz .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sz .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sz .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sz .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-sz .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sz .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sz .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sz .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sz .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sz .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sz .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sz .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sz .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sz .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sz .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sz .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sz .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sz .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sz .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sz .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sz .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sz .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sz .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sz .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sz .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sz .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sz .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sz .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sz .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sz .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sz .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sz .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sz .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sz .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sz .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sz .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sz .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sz .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sz .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sz .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sz .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sz .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sz .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sz .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sz .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sz .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sz .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sz .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sz .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sz .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sz .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sz .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sz .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sz .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sz .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sz .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sz .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-sz .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sz .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sz .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sz .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sz .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sz .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sz .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sz .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sz .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sz .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sz .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sz .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sz .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sz .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sz .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sz .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sz .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sz .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sz .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sz .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sz .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sz .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sz .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sz .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sz .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sz .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sz .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sz .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sz .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sz .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sz .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sz .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sz .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sz .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sz .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sz .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sz .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sz .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sz .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sz .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sz .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sz .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sz .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sz .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sz .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sz .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sz .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sz .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sz .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sz .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sz .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sz .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sz .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sz .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sz .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sz .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sz .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sz .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-sz .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sz .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sz .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sz .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sz .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sz .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sz .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sz .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sz .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sz .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sz .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sz .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sz .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sz .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sz .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sz .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sz .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sz .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sz .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sz .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sz .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sz .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sz .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sz .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sz .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sz .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sz .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sz .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sz .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sz .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sz .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sz .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sz .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sz .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sz .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sz .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sz .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sz .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sz .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sz .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sz .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sz .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sz .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sz .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sz .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sz .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sz .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sz .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sz .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sz .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sz .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sz .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sz .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sz .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sz .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sz .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sz .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sz .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sz .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sz .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sz .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sz .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sz .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sz .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sz .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sz .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sz .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sz .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sz .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-sz .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sz .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sz .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sz .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sz .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sz .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sz .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sz .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sz .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sz .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sz .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sz .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sz .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sz .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sz .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sz .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sz .iti-flag.np {

  background-color: transparent;

}

#custom-html-sz body,

#custom-html-sz button,

#custom-html-sz input,

#custom-html-sz select,

#custom-html-sz textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sz h1,

#custom-html-sz h2,

#custom-html-sz h3,

#custom-html-sz h4,

#custom-html-sz h5,

#custom-html-sz h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-sz .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sz .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sz .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sz .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-sz .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sz .navbar-main .navbar-nav > .active > a,

#custom-html-sz .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sz .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sz .navbar-main .navbar-nav > .open > a,

#custom-html-sz .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sz .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sz .navbar-main .navbar-nav > li > a:focus,

#custom-html-sz .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sz #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sz .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sz .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-sz .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sz .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-sz .navbar-header {

    float: none;

  }

  #custom-html-sz .navbar-left,

  #custom-html-sz .navbar-right {

    float: none !important;

  }

  #custom-html-sz .navbar-toggle {

    display: block;

  }

  #custom-html-sz .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sz .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sz .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sz .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sz .navbar-nav > li {

    float: none;

  }

  #custom-html-sz .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sz .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-sz .panel {

  font-size: 0.9em;

}

#custom-html-sz .list-group {

  font-size: 0.9em;

}

#custom-html-sz .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-sz .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sz a.list-group-item.active,

#custom-html-sz a.list-group-item.active:focus,

#custom-html-sz a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sz .pagination {

  font-size: 0.8em;

}

#custom-html-sz .pagination > .active > a,

#custom-html-sz .pagination > .active > a:focus,

#custom-html-sz .pagination > .active > a:hover,

#custom-html-sz .pagination > .active > span,

#custom-html-sz .pagination > .active > span:focus,

#custom-html-sz .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sz .dropdown-menu > li > a:focus,

#custom-html-sz .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sz .label {

  border-radius: 0;

}

#custom-html-sz input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sz .list-group-item {

  padding: 7px 15px;

}

#custom-html-sz .panel-body {

  padding: 10px 15px;

}

#custom-html-sz .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sz .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sz .btn {

  overflow: hidden;

}

#custom-html-sz body,

#custom-html-sz html {

  height: 100%;

}

#custom-html-sz body {

  background-color: #f8f8f8;

}

#custom-html-sz h1,

#custom-html-sz h2,

#custom-html-sz h3,

#custom-html-sz h4,

#custom-html-sz h5,

#custom-html-sz h6 {

  font-weight: 400;

}

#custom-html-sz a {

  color: #005588;

}

#custom-html-sz section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sz section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sz section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sz section#header .search {

  margin: 20px 0;

}

#custom-html-sz section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sz section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sz section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sz section#main-content {

  margin-bottom: 60px;

}

#custom-html-sz .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sz section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sz section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sz section#footer {

    line-height: 32px;

  }

}

#custom-html-sz section#footer .back-to-top {

  float: right;

}

#custom-html-sz section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sz .adminreturndiv {

  display: none !important;

}

#custom-html-sz .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sz .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sz .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sz .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sz .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sz .navbar-main .navbar-toggle:focus,

#custom-html-sz .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sz .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sz .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-sz .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sz .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sz .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-sz div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sz div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sz div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sz div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sz div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sz .h1,

  #custom-html-sz h1 {

    font-size: 26px;

  }

  #custom-html-sz .h2,

  #custom-html-sz h2 {

    font-size: 20px;

  }

  #custom-html-sz .h3,

  #custom-html-sz h3 {

    font-size: 16px;

  }

  #custom-html-sz .h4,

  #custom-html-sz h4 {

    font-size: 14px;

  }

  #custom-html-sz .h5,

  #custom-html-sz h5 {

    font-size: 12px;

  }

  #custom-html-sz .h6,

  #custom-html-sz h6 {

    font-size: 11px;

  }

  #custom-html-sz div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-sz .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sz .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sz .margin-10 {

  margin: 10px;

}

#custom-html-sz .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sz .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sz .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sz .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sz .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sz .input-inline {

  display: inline-block;

}

#custom-html-sz .input-inline-100 {

  width: 100px;

}

#custom-html-sz .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-sz .pull-md-left {

    float: left;

  }

  #custom-html-sz .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-sz .pull-sm-left {

    float: left;

  }

  #custom-html-sz .pull-sm-right {

    float: right;

  }

  #custom-html-sz .text-right-sm {

    text-align: right;

  }

}

#custom-html-sz .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sz .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sz .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-sz .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-sz .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-sz .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sz .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sz i.icon-rss {

  color: #ff6600;

}

#custom-html-sz section#main-menu {

  background-color: #000000;

}

#custom-html-sz section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sz section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sz section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sz section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sz section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sz section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sz section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sz section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sz section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sz section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sz section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sz section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-sz section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-sz .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sz .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sz .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sz .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sz .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sz .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sz .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sz .home-shortcuts li span {

  display: none;

}

#custom-html-sz .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sz .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-sz .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-sz .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sz .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sz .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sz .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-sz .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sz .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sz .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sz .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sz .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sz .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sz .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sz .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sz .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sz .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sz .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sz .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sz .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sz .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sz .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sz .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sz .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sz .tiles .tile a {

  text-decoration: none;

}

#custom-html-sz .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sz .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sz .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-sz .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sz .tiles .tile:nth-child(1),

  #custom-html-sz .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-sz .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sz .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sz .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sz .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sz .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sz .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sz .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sz .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sz .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sz .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sz .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sz .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sz .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sz .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sz .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sz .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sz .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sz .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sz .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sz .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sz .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sz .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sz .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sz .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sz .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sz .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sz .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sz .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sz .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sz .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sz .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sz .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sz .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sz .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sz .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sz .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sz .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sz .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sz .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sz .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sz .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sz ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sz ul.top-nav > li,

#custom-html-sz ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sz ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sz ul.top-nav > li:active > a,

#custom-html-sz ul.top-nav > li:focus > a,

#custom-html-sz ul.top-nav > li:hover > a,

#custom-html-sz ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sz ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sz ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sz ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sz ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-sz ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sz ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sz ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-sz ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sz ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sz ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-sz div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sz div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sz div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sz div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sz div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sz div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sz .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sz .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-sz .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-sz .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sz .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-sz .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sz .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sz .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-sz .domain-check-availability {

  width: 100px;

}

#custom-html-sz .domain-step-options {

  min-height: 300px;

}

#custom-html-sz .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sz .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sz .domain-checker-invalid,

#custom-html-sz .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sz div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sz .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sz .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sz .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sz a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sz .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sz .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sz .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sz .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-sz .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sz .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sz .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sz .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sz .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sz .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sz .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sz .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-sz .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sz .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sz .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sz .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sz .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sz .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sz .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sz .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sz .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sz .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sz .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sz .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sz .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sz .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sz div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sz div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sz div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sz .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sz .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sz .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sz .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sz div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sz div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-sz .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sz .product-status-pending {

  background-color: #f89406;

}

#custom-html-sz .product-status-active {

  background-color: #46a546;

}

#custom-html-sz .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sz .product-status-cancelled,

#custom-html-sz .product-status-terminated {

  background-color: #666666;

}

#custom-html-sz .product-status-fraud {

  background-color: #000000;

}

#custom-html-sz .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sz div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sz .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sz .ssl-inactive {

  cursor: pointer;

}

#custom-html-sz .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-sz .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sz .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sz .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sz .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sz .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sz .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sz .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sz .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-sz .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sz .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sz .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sz .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-sz .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sz .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sz .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sz .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sz .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sz .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sz .pagination > li > a,

#custom-html-sz .pagination > li > span {

  color: #444444;

}

#custom-html-sz .pagination > .active > a,

#custom-html-sz .pagination > .active > a:focus,

#custom-html-sz .pagination > .active > a:hover,

#custom-html-sz .pagination > .active > span,

#custom-html-sz .pagination > .active > span:focus,

#custom-html-sz .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sz table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sz .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sz table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sz .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-sz table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sz .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sz .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sz .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sz table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sz table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sz table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sz .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sz .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sz .status-pending {

  color: #d9534f;

}

#custom-html-sz .status-pending.transfer {

  color: #a68500;

}

#custom-html-sz .status-active,

#custom-html-sz .status-completed,

#custom-html-sz .status-open {

  color: #3fad46;

}

#custom-html-sz .status-suspended {

  color: #f0ad4e;

}

#custom-html-sz .status-customer-reply {

  color: #ff6600;

}

#custom-html-sz .status-answered,

#custom-html-sz .status-fraud {

  color: #000000;

}

#custom-html-sz .status-expired,

#custom-html-sz .status-transferred.away {

  color: #004258;

}

#custom-html-sz .status-cancelled {

  color: #9fa29a;

}

#custom-html-sz .status-terminated {

  color: #666666;

}

#custom-html-sz .status-onhold {

  color: #224488;

}

#custom-html-sz .status-inprogress {

  color: #cc0000;

}

#custom-html-sz .status-closed {

  color: #888888;

}

#custom-html-sz .status-paid {

  color: #498302;

}

#custom-html-sz .status-unpaid {

  color: #ed3e48;

}

#custom-html-sz .status-cancelled {

  color: #87939f;

}

#custom-html-sz .status-collections {

  color: #9a141e;

}

#custom-html-sz .status-refunded {

  color: #319fc3;

}

#custom-html-sz .status-customer-reply {

  color: #ff6600;

}

#custom-html-sz .status-delivered {

  color: #224488;

}

#custom-html-sz .status-accepted {

  color: #498302;

}

#custom-html-sz .status-dead,

#custom-html-sz .status-lost {

  color: #000000;

}

#custom-html-sz .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sz .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sz .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sz .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sz .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sz .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sz .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-sz .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-sz .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sz .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sz .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-sz .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sz .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sz .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sz .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sz .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sz .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sz .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sz .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sz .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sz .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sz .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sz .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sz .ticket-reply .rating,

#custom-html-sz .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sz .ticket-reply .rating span.star,

#custom-html-sz .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sz .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sz .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sz .ticket-reply .rating span.star:before,

#custom-html-sz .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sz .ticket-reply .rating span.star:hover:before,

#custom-html-sz .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sz .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sz .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sz .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sz .ticket-reply .clear {

  clear: both;

}

#custom-html-sz .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sz .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sz .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sz .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sz .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sz .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sz .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sz .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sz .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sz .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sz .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sz .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sz .popover-user-notifications ul li i.far,

#custom-html-sz .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sz .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sz .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sz .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sz .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sz .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sz .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sz .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sz .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sz .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sz div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sz div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sz div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sz div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sz div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sz div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sz div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-sz div.credit-card {

    max-width: 250px;

  }

  #custom-html-sz div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sz div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sz div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sz div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sz div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-sz .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sz .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sz .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sz .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sz .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sz .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sz div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sz div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sz div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sz div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sz div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sz div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sz .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-sz .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-sz .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sz .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sz .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sz .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sz .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-sz div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sz div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sz div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sz #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sz .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sz .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sz .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sz .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sz .kb-category a small {

  color: #888888;

}

#custom-html-sz .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sz .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sz .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sz .kbarticles a.admin-inline-edit,

#custom-html-sz .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sz h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sz .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sz .kb-article-title h2 {

  margin: 0;

}

#custom-html-sz .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sz .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sz .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sz .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sz .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sz .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sz .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sz .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sz #stepResults {

  font-size: 20px;

}

#custom-html-sz #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-sz #stepResults {

    font-size: 14px;

  }

  #custom-html-sz #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sz div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-sz #main-menu,

  #custom-html-sz #top-nav,

  #custom-html-sz .header-lined,

  #custom-html-sz .sidebar {

    display: none;

  }

  #custom-html-sz a[href]:after {

    content: "" !important;

  }

}

#custom-html-sz h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sz h3.with-badge i,

#custom-html-sz h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sz h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-sz h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sz .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-sz .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sz .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sz a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sz a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sz .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sz .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sz .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sz .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sz .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sz .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sz .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sz .login-popover {

  font-size: 12px;

}

#custom-html-sz .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sz .login-popover hr {

  margin: 5px 0;

}

#custom-html-sz tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sz tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sz .error-container {

  text-align: center;

}

#custom-html-sz .error-container h1 {

  margin-top: 40px;

}

#custom-html-sz .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sz .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sz .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sz .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sz .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sz #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sz #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sz #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sz .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-sz #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sz #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-sz #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sz #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sz #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sz #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sz .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sz .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sz .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sz .email-verification .btn:active,

#custom-html-sz .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sz .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sz .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sz .email-verification .far,

#custom-html-sz .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-sz .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sz .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sz .email-verification .button {

    float: right;

  }

  #custom-html-sz .email-verification .far,

  #custom-html-sz .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-sz .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sz .email-verification.success .far,

#custom-html-sz .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sz .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sz .email-verification.failed .far,

#custom-html-sz .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sz .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-sz .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sz .md-editor > .md-preview,

#custom-html-sz .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sz div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sz .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sz .small-font {

  font-size: 0.9em;

}

#custom-html-sz .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sz .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sz .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sz .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sz .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sz .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sz .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sz .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sz .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sz .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sz .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sz .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sz .panel-heading i.fab,

#custom-html-sz .panel-heading i.fal,

#custom-html-sz .panel-heading i.far,

#custom-html-sz .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sz .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sz .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sz .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sz .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sz .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sz .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sz .panel-sidebar .list-group-item.disabled,

#custom-html-sz .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sz .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sz .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sz .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sz .panel-sidebar a.list-group-item.active,

#custom-html-sz .panel-sidebar a.list-group-item.active:focus,

#custom-html-sz .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sz .panel-sidebar a.list-group-item.active i,

#custom-html-sz .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sz .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sz .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sz .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sz .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sz .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sz .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sz .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sz .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sz .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sz .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sz .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sz .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sz .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sz .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sz .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-sz .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sz .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-sz .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sz .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sz .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sz .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sz .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sz .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sz .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sz .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sz .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sz .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sz .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sz .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sz .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sz .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-sz .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sz .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sz .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sz .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sz .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sz .promo-banner p {

  margin: 5px 0;

}

#custom-html-sz .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sz .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-sz .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sz .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sz .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sz .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sz .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sz .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sz .promo-banner-slim {

  padding: 10px;

}

#custom-html-sz .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sz .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sz .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sz .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sz .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sz .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sz .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sz .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sz .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sz .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sz .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sz .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sz .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sz .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sz .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sz .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sz .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sz .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sz .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sz .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sz .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sz .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sz .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sz .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sz .panel-mc-sso .btn,

#custom-html-sz .panel-mc-sso .form-control,

#custom-html-sz .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sz .panel-mc-sso small {

  display: block;

}

#custom-html-sz .social-signin-btns {

  text-align: center;

}

#custom-html-sz .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sz .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sz .btn-social i.far,

#custom-html-sz .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-facebook.active,

#custom-html-sz .btn-facebook:active,

#custom-html-sz .btn-facebook:focus,

#custom-html-sz .btn-facebook:hover,

#custom-html-sz .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-facebook.active,

#custom-html-sz .btn-facebook:active,

#custom-html-sz .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sz .btn-facebook.disabled,

#custom-html-sz .btn-facebook.disabled.active,

#custom-html-sz .btn-facebook.disabled:active,

#custom-html-sz .btn-facebook.disabled:focus,

#custom-html-sz .btn-facebook.disabled:hover,

#custom-html-sz .btn-facebook[disabled],

#custom-html-sz .btn-facebook[disabled].active,

#custom-html-sz .btn-facebook[disabled]:active,

#custom-html-sz .btn-facebook[disabled]:focus,

#custom-html-sz .btn-facebook[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-facebook,

#custom-html-sz fieldset[disabled] .btn-facebook.active,

#custom-html-sz fieldset[disabled] .btn-facebook:active,

#custom-html-sz fieldset[disabled] .btn-facebook:focus,

#custom-html-sz fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-google.active,

#custom-html-sz .btn-google:active,

#custom-html-sz .btn-google:focus,

#custom-html-sz .btn-google:hover,

#custom-html-sz .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-google.active,

#custom-html-sz .btn-google:active,

#custom-html-sz .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sz .btn-google-plus.disabled.active,

#custom-html-sz .btn-google-plus.disabled:active,

#custom-html-sz .btn-google-plus.disabled:focus,

#custom-html-sz .btn-google-plus[disabled].active,

#custom-html-sz .btn-google-plus[disabled]:active,

#custom-html-sz .btn-google-plus[disabled]:focus,

#custom-html-sz .btn-google-plus[disabled]:hover,

#custom-html-sz .btn-google.disabled,

#custom-html-sz .btn-google.disabled:hover,

#custom-html-sz .btn-google[disabled],

#custom-html-sz fieldset[disabled] .btn-google,

#custom-html-sz fieldset[disabled] .btn-google-plus.active,

#custom-html-sz fieldset[disabled] .btn-google-plus:active,

#custom-html-sz fieldset[disabled] .btn-google-plus:focus,

#custom-html-sz fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-twitter.active,

#custom-html-sz .btn-twitter:active,

#custom-html-sz .btn-twitter:focus,

#custom-html-sz .btn-twitter:hover,

#custom-html-sz .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .btn-twitter.active,

#custom-html-sz .btn-twitter:active,

#custom-html-sz .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sz .btn-twitter.disabled,

#custom-html-sz .btn-twitter.disabled.active,

#custom-html-sz .btn-twitter.disabled:active,

#custom-html-sz .btn-twitter.disabled:focus,

#custom-html-sz .btn-twitter.disabled:hover,

#custom-html-sz .btn-twitter[disabled],

#custom-html-sz .btn-twitter[disabled].active,

#custom-html-sz .btn-twitter[disabled]:active,

#custom-html-sz .btn-twitter[disabled]:focus,

#custom-html-sz .btn-twitter[disabled]:hover,

#custom-html-sz fieldset[disabled] .btn-twitter,

#custom-html-sz fieldset[disabled] .btn-twitter.active,

#custom-html-sz fieldset[disabled] .btn-twitter:active,

#custom-html-sz fieldset[disabled] .btn-twitter:focus,

#custom-html-sz fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sz .providerPreLinking {

  min-height: 52px;

}

#custom-html-sz .providerLinkingFeedback {

  display: none;

}

#custom-html-sz #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sz #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sz #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sz #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sz .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sz #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sz #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sz #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sz #registration .field,

#custom-html-sz #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sz #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sz #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sz #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sz #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sz #registration textarea.field {

  height: auto;

}

#custom-html-sz #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sz #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sz #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sz #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sz #registration .field[disabled],

#custom-html-sz #registration .field[readonly],

#custom-html-sz #registration .form-control[disabled],

#custom-html-sz #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sz #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-sz .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sz .upgrade .product-to-be-upgraded h4,

#custom-html-sz .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sz .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sz .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sz .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sz .upgrade .products .product .current,

#custom-html-sz .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sz .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sz .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-sz .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-sz .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sz .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sz .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sz .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sz .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sz .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sz .upgrade .products .far,

#custom-html-sz .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sz .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sz .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-sz .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sz .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sz .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sz .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sz .intl-tel-input {

  width: 100%;

}

#custom-html-sz .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sz .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .bootstrap-switch input[type=checkbox],

#custom-html-sz .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sz .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sz .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sz .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sz .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sz .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sz .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sz .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sz .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sz .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sz .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sz .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sz .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-sz .md-editor .md-footer,

#custom-html-sz .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sz .md-editor > .md-header {

  margin: 0;

}

#custom-html-sz .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sz .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sz .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sz .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sz .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sz .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sz .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sz .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-input,

#custom-html-sz .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sz .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sz .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sz .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sz .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sz .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sz .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sz .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sz .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sz .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sz .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sz table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sz table.dataTable td,

#custom-html-sz table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sz table.dataTable td.dataTables_empty,

#custom-html-sz table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sz table.dataTable.nowrap td,

#custom-html-sz table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sz div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sz table.dataTable thead > tr > td.sorting,

#custom-html-sz table.dataTable thead > tr > td.sorting_asc,

#custom-html-sz table.dataTable thead > tr > td.sorting_desc,

#custom-html-sz table.dataTable thead > tr > th.sorting,

#custom-html-sz table.dataTable thead > tr > th.sorting_asc,

#custom-html-sz table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sz table.dataTable thead > tr > td:active,

#custom-html-sz table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sz table.dataTable thead .sorting,

#custom-html-sz table.dataTable thead .sorting_asc,

#custom-html-sz table.dataTable thead .sorting_asc_disabled,

#custom-html-sz table.dataTable thead .sorting_desc,

#custom-html-sz table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sz table.dataTable thead .sorting:after,

#custom-html-sz table.dataTable thead .sorting_asc:after,

#custom-html-sz table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sz table.dataTable thead .sorting_desc:after,

#custom-html-sz table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sz table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sz table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sz table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sz table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sz table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sz div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sz div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sz div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sz div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sz div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sz div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sz div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sz div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-sz div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sz div.dataTables_wrapper div.dataTables_info,

  #custom-html-sz div.dataTables_wrapper div.dataTables_length,

  #custom-html-sz div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-sz table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sz table.dataTable.table-condensed .sorting:after,

#custom-html-sz table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sz table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sz table.table-bordered.dataTable td,

#custom-html-sz table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sz table.table-bordered.dataTable td:last-child,

#custom-html-sz table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sz table.table-bordered.dataTable tbody td,

#custom-html-sz table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sz div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sz div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sz div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-sz div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sz table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sz table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sz table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sz table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sz table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sz table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sz table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sz table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sz table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sz table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sz table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sz table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sz table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sz table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sz table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sz table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sz div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sz div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sz div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sz div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;


  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sz div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sz div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-sz div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sz div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sz .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sz .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sz .multiselect-container > li {

  padding: 0;

}

#custom-html-sz .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sz .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sz .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sz .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sz .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sz .multiselect-container > li > a > label.checkbox,

#custom-html-sz .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sz .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sz .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sz .form-inline .multiselect-container label.checkbox,

#custom-html-sz .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sz .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sz .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7y6R7Wh3 {

  padding-top: 45px;

  padding-bottom: 45px;

  background-image: url("../../../assets/images/image-1582754405203-acf85cc241bac1caa6b2cd3a460024f8-1720x900.png");

}

.cid-sl7y6R7Wh3 P {

  color: #767676;

}

.cid-sl7y6R7Wh3 H1 {

  color: #ffffff;

}

.cid-sl7y6R7Wh3 .mbr-text,

.cid-sl7y6R7Wh3 .mbr-section-btn {

  color: #ffffff;

}

.cid-sl7y6R7Wh3 h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3rpbPXaq .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3rpbPXaq .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3rpbPXaq .divider-top::before,

.cid-sF3rpbPXaq .divider-bottom::before,

.cid-sF3rpbPXaq .divider-top::after,

.cid-sF3rpbPXaq .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3rpbPXaq .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3rpbPXaq .divider-triangles::before {

  top: -50px;

}

.cid-sF3rpbPXaq .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3rpbPXaq .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3rpbPXaq .divider-multitriangles::before,

.cid-sF3rpbPXaq .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3rpbPXaq .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-rAcsgueAk8 {

  padding-top: 15px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-rAcsgueAk8 .mbr-figure {

  margin: 0 auto;

  width: 100%;

  display: -webkit-flex;

  justify-content: center;

  -webkit-justify-content: center;

}

.cid-rAcsgueAk8 .mbr-figure img {

  height: 100%;

  margin: 0 auto;

}

@media (max-width: 991px) {

  .cid-rAcsgueAk8 .mbr-figure img {

    width: 100% !important;

  }

}

.cid-rAcsgueAk8 .mbr-text,

.cid-rAcsgueAk8 .mbr-section-btn {

  text-align: left;

  color: #000000;

}

.cid-rAcsgueAk8 H1 {

  color: #000000;

}

.cid-sF3rGJqLnM .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3rGJqLnM .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3rGJqLnM .divider-top::before,

.cid-sF3rGJqLnM .divider-bottom::before,

.cid-sF3rGJqLnM .divider-top::after,

.cid-sF3rGJqLnM .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3rGJqLnM .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3rGJqLnM .divider-triangles::before {

  top: -50px;

}

.cid-sF3rGJqLnM .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3rGJqLnM .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3rGJqLnM .divider-multitriangles::before,

.cid-sF3rGJqLnM .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3rGJqLnM .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-skXzfdctNl {

  padding-top: 0px;

  padding-bottom: 15px;

  background-color: #efefef;

}

.cid-skXzfdctNl .mbr-figure {

  margin: 0 auto;

  width: 100%;

  display: -webkit-flex;

  justify-content: center;

  -webkit-justify-content: center;

}

.cid-skXzfdctNl .mbr-figure img {

  height: 100%;

  margin: 0 auto;

}

@media (max-width: 991px) {

  .cid-skXzfdctNl .mbr-figure img {

    width: 100% !important;

  }

}

.cid-skXzfdctNl .mbr-text,

.cid-skXzfdctNl .mbr-section-btn {

  color: #000000;

}

.cid-sF3rQXe8v3 .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3rQXe8v3 .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3rQXe8v3 .divider-top::before,

.cid-sF3rQXe8v3 .divider-bottom::before,

.cid-sF3rQXe8v3 .divider-top::after,

.cid-sF3rQXe8v3 .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3rQXe8v3 .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3rQXe8v3 .divider-triangles::before {

  top: -50px;

}

.cid-sF3rQXe8v3 .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3rQXe8v3 .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3rQXe8v3 .divider-multitriangles::before,

.cid-sF3rQXe8v3 .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3rQXe8v3 .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-rAcvXRn5J0 {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-rAcvXRn5J0 h4 {

  text-align: left;

  font-weight: 500;

}

.cid-rAcvXRn5J0 p {

  color: #767676;

  text-align: left;

}

.cid-rAcvXRn5J0 .card-img {

  text-align: left;

}

.cid-rAcvXRn5J0 .card-img span {

  font-size: 72px;

  color: #707070;

}

.cid-rAcvXRn5J0 P {

  color: #000000;

}

.cid-rAcvXRn5J0 .card-title,

.cid-rAcvXRn5J0 .card-img {

  color: #000000;

}

.cid-sF3s9OqhhP .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3s9OqhhP .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3s9OqhhP .divider-top::before,

.cid-sF3s9OqhhP .divider-bottom::before,

.cid-sF3s9OqhhP .divider-top::after,

.cid-sF3s9OqhhP .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3s9OqhhP .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3s9OqhhP .divider-triangles::before {

  top: -50px;

}

.cid-sF3s9OqhhP .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3s9OqhhP .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3s9OqhhP .divider-multitriangles::before,

.cid-sF3s9OqhhP .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3s9OqhhP .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-rAcxHDLeiK {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #efefef;

}

.cid-rAcxHDLeiK h4 {

  text-align: left;

  font-weight: 500;

}

.cid-rAcxHDLeiK p {

  color: #767676;

  text-align: left;

}

.cid-rAcxHDLeiK .card-img {

  text-align: left;

}

.cid-rAcxHDLeiK .card-img span {

  font-size: 72px;

  color: #707070;

}

.cid-rAcxHDLeiK .card-title,

.cid-rAcxHDLeiK .card-img {

  color: #000000;

}

.cid-rAcxHDLeiK P {

  color: #000000;

}

.cid-sF3stDZDwR .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3stDZDwR .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3stDZDwR .divider-top::before,

.cid-sF3stDZDwR .divider-bottom::before,

.cid-sF3stDZDwR .divider-top::after,

.cid-sF3stDZDwR .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3stDZDwR .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3stDZDwR .divider-triangles::before {

  top: -50px;

}

.cid-sF3stDZDwR .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3stDZDwR .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3stDZDwR .divider-multitriangles::before,

.cid-sF3stDZDwR .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3stDZDwR .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-rAcA9eareZ {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-rAcA9eareZ h4 {

  text-align: left;

  font-weight: 500;

}

.cid-rAcA9eareZ p {

  color: #767676;

  text-align: left;

}

.cid-rAcA9eareZ .card-img {

  text-align: left;

}

.cid-rAcA9eareZ .card-img span {

  font-size: 72px;

  color: #707070;

}

.cid-rAcA9eareZ .card-title,

.cid-rAcA9eareZ .card-img {

  color: #000000;

}

.cid-rAcA9eareZ P {

  color: #000000;

}

.cid-sF3sv42UTV .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3sv42UTV .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3sv42UTV .divider-top::before,

.cid-sF3sv42UTV .divider-bottom::before,

.cid-sF3sv42UTV .divider-top::after,

.cid-sF3sv42UTV .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3sv42UTV .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3sv42UTV .divider-triangles::before {

  top: -50px;

}

.cid-sF3sv42UTV .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3sv42UTV .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3sv42UTV .divider-multitriangles::before,

.cid-sF3sv42UTV .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3sv42UTV .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-rAcBbNpiDt {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #efefef;

}

.cid-rAcBbNpiDt h2 {

  text-align: left;

}

.cid-rAcBbNpiDt h4 {

  text-align: left;

  font-weight: 500;

}

.cid-rAcBbNpiDt p {

  color: #767676;

  text-align: left;

}

.cid-rAcBbNpiDt .aside-content {

  flex-basis: 100%;

  -webkit-flex-basis: 100%;

}

.cid-rAcBbNpiDt .block-content {

  display: -webkit-flex;

  flex-direction: column;

  -webkit-flex-direction: column;

  word-break: break-word;

}

.cid-rAcBbNpiDt .media {

  margin: initial;

  align-items: center;

  -webkit-align-items: center;

}

.cid-rAcBbNpiDt .mbr-figure {

  align-self: flex-start;

  -webkit-align-self: flex-start;

  -webkit-flex-shrink: 0;

  flex-shrink: 0;

}

.cid-rAcBbNpiDt .card-img {

  padding-right: 2rem;

  width: auto;

}

.cid-rAcBbNpiDt .card-img span {

  font-size: 72px;

  color: #707070;

}

@media (min-width: 992px) {

  .cid-rAcBbNpiDt .mbr-figure {

    padding-right: 4rem;

  }

}

@media (max-width: 991px) {

  .cid-rAcBbNpiDt .mbr-figure {

    padding-right: 0;

    padding-bottom: 1rem;

    margin-bottom: 2rem;

  }

}

@media (max-width: 300px) {

  .cid-rAcBbNpiDt .card-img span {

    font-size: 40px !important;

  }

}

.cid-rAcBbNpiDt H2 {

  color: #000000;

}

.cid-rAcBbNpiDt H4 {

  color: #000000;

}

.cid-rAcBbNpiDt P {

  color: #000000;

}

.cid-sF3sw0oTGB .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3sw0oTGB .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3sw0oTGB .divider-top::before,

.cid-sF3sw0oTGB .divider-bottom::before,

.cid-sF3sw0oTGB .divider-top::after,

.cid-sF3sw0oTGB .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3sw0oTGB .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3sw0oTGB .divider-triangles::before {

  top: -50px;

}

.cid-sF3sw0oTGB .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3sw0oTGB .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3sw0oTGB .divider-multitriangles::before,

.cid-sF3sw0oTGB .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3sw0oTGB .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-s889RIdfE7 {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s889RIdfE7 h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s889RIdfE7 p {

  color: #767676;

  text-align: left;

}

.cid-s889RIdfE7 .card-box {

  padding-top: 2rem;

}

.cid-s889RIdfE7 .card-wrapper {

  height: 100%;

}

.cid-svDArCtE7O {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDArCtE7O .content {

    text-align: center;

  }

  .cid-svDArCtE7O .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDArCtE7O .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDArCtE7O .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDArCtE7O .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDArCtE7O .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDArCtE7O .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDArCtE7O .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDArCtE7O .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDArCtE7O .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDArCtE7O .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDArCtE7O .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDArCtE7O .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDArCtE7O .copyright > p {

  text-align: left;

}

.cid-svDArCtE7O H5 {

  color: #000000;

}

.cid-svGGO2zHrU .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGGO2zHrU .my-float {

  margin-top: 16px;

}

.cid-svGGO2zHrU P {

  color: #232323;

}

.cid-svGGO2zHrU DIV {

  color: #ffffff;

}

.cid-svGGO2zHrU H10 {

  color: #767676;

}

.cid-svGGO2zHrU .hidden {

  display: none;

}

#custom-html-t0 {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-t0 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t0 body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-t0 article,

#custom-html-t0 aside,

#custom-html-t0 details,

#custom-html-t0 figcaption,

#custom-html-t0 figure,

#custom-html-t0 footer,

#custom-html-t0 header,

#custom-html-t0 hgroup,

#custom-html-t0 main,

#custom-html-t0 menu,

#custom-html-t0 nav,

#custom-html-t0 section,

#custom-html-t0 summary {

  display: block;

}

#custom-html-t0 audio,

#custom-html-t0 canvas,

#custom-html-t0 progress,

#custom-html-t0 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t0 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t0 [hidden],

#custom-html-t0 template {

  display: none;

}

#custom-html-t0 a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-t0 a:active,

#custom-html-t0 a:hover {

  outline: 0;

}

#custom-html-t0 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t0 b,

#custom-html-t0 strong {

  font-weight: 700;

}

#custom-html-t0 dfn {

  font-style: italic;

}

#custom-html-t0 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t0 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t0 small {

  font-size: 80%;

}

#custom-html-t0 sub,

#custom-html-t0 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t0 sup {

  top: -0.5em;

}

#custom-html-t0 sub {

  bottom: -0.25em;

}

#custom-html-t0 img {

  border: 0;

  vertical-align: middle;

}

#custom-html-t0 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t0 figure {

  margin: 0;

}

#custom-html-t0 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t0 pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t0 code,

#custom-html-t0 kbd,

#custom-html-t0 pre,

#custom-html-t0 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-t0 button,

#custom-html-t0 input,

#custom-html-t0 optgroup,

#custom-html-t0 select,

#custom-html-t0 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t0 button {

  overflow: visible;

}

#custom-html-t0 button,

#custom-html-t0 select {

  text-transform: none;

}

#custom-html-t0 button,

#custom-html-t0 html input[type=button],

#custom-html-t0 input[type=reset],

#custom-html-t0 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t0 button[disabled],

#custom-html-t0 html input[disabled] {

  cursor: default;

}

#custom-html-t0 button::-moz-focus-inner,

#custom-html-t0 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t0 input {

  line-height: normal;

}

#custom-html-t0 input[type=checkbox],

#custom-html-t0 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t0 input[type=number]::-webkit-inner-spin-button,

#custom-html-t0 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t0 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-t0 input[type=search]::-webkit-search-cancel-button,

#custom-html-t0 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t0 fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-t0 legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t0 textarea {

  overflow: auto;

}

#custom-html-t0 optgroup {

  font-weight: 700;

}

#custom-html-t0 table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-t0 td,

#custom-html-t0 th {

  padding: 0;

}

@media print {

  #custom-html-t0 *,

  #custom-html-t0 :after,

  #custom-html-t0 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t0 a,

  #custom-html-t0 a:visited {

    text-decoration: underline;

  }

  #custom-html-t0 a[href]:after {

    content: "" !important;

  }

  #custom-html-t0 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t0 a[href^="#"]:after,

  #custom-html-t0 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t0 blockquote,

  #custom-html-t0 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t0 thead {

    display: table-header-group;

  }

  #custom-html-t0 img,

  #custom-html-t0 tr {

    page-break-inside: avoid;

  }

  #custom-html-t0 img {

    max-width: 100% !important;

  }

  #custom-html-t0 h2,

  #custom-html-t0 h3,

  #custom-html-t0 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t0 h2,

  #custom-html-t0 h3 {

    page-break-after: avoid;

  }

  #custom-html-t0 .navbar {

    display: none;

  }

  #custom-html-t0 .btn > .caret,

  #custom-html-t0 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t0 .label {

    border: 1px solid #000000;

  }

  #custom-html-t0 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t0 .table td,

  #custom-html-t0 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t0 .table-bordered td,

  #custom-html-t0 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-t0 .visible-print {

    display: block !important;

  }

  #custom-html-t0 table.visible-print {

    display: table !important;

  }

  #custom-html-t0 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t0 td.visible-print,

  #custom-html-t0 th.visible-print {

    display: table-cell !important;

  }

  #custom-html-t0 .visible-print-block {

    display: block !important;

  }

  #custom-html-t0 .visible-print-inline {

    display: inline !important;

  }

  #custom-html-t0 .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-t0 .hidden-print {

    display: none !important;

  }

  #custom-html-t0 #main-menu,

  #custom-html-t0 #top-nav,

  #custom-html-t0 .header-lined,

  #custom-html-t0 .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t0 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t0 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t0 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t0 .glyphicon-eur:before,

#custom-html-t0 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t0 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t0 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t0 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t0 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t0 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t0 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t0 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t0 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-t0 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t0 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t0 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t0 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t0 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t0 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t0 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t0 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t0 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t0 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t0 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t0 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t0 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t0 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t0 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t0 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t0 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t0 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t0 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t0 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t0 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t0 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t0 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t0 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t0 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t0 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t0 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t0 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t0 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t0 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t0 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t0 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t0 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t0 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t0 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t0 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t0 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t0 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t0 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t0 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t0 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t0 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t0 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t0 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t0 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t0 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t0 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t0 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t0 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t0 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t0 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t0 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t0 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t0 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t0 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t0 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t0 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t0 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t0 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t0 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t0 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t0 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t0 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t0 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t0 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t0 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t0 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t0 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t0 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t0 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t0 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t0 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t0 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t0 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t0 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t0 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t0 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t0 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t0 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t0 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t0 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t0 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t0 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t0 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t0 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t0 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t0 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t0 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t0 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t0 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t0 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t0 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t0 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t0 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t0 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t0 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t0 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t0 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t0 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t0 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t0 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t0 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t0 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t0 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t0 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t0 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t0 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t0 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t0 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t0 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t0 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t0 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t0 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-t0 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t0 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t0 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t0 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t0 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t0 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t0 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t0 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t0 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t0 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t0 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t0 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t0 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t0 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t0 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t0 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t0 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t0 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t0 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t0 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t0 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t0 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t0 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t0 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t0 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t0 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t0 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t0 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t0 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t0 .glyphicon-sort-by-order:before {


  content: "\e153";

}

#custom-html-t0 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t0 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t0 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t0 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t0 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t0 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t0 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t0 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t0 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t0 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t0 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t0 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t0 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t0 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t0 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t0 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t0 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t0 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t0 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t0 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t0 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t0 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t0 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t0 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t0 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t0 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t0 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t0 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t0 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t0 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t0 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t0 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t0 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t0 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t0 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t0 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t0 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t0 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t0 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t0 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t0 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t0 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t0 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t0 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t0 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t0 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t0 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t0 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t0 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t0 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t0 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t0 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t0 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t0 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t0 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t0 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t0 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t0 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t0 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t0 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t0 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t0 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t0 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t0 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t0 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t0 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t0 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-t0 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t0 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t0 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t0 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t0 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t0 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t0 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t0 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t0 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t0 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t0 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t0 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t0 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t0 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t0 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t0 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t0 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t0 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t0 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t0 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t0 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t0 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t0 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t0 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t0 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t0 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t0 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t0 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t0 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t0 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t0 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t0 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t0 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t0 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t0 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t0 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t0 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t0 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t0 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t0 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t0 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t0 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t0 :after,

#custom-html-t0 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t0 button,

#custom-html-t0 input,

#custom-html-t0 select,

#custom-html-t0 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t0 a:focus,

#custom-html-t0 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t0 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t0 .carousel-inner > .item > a > img,

#custom-html-t0 .carousel-inner > .item > img,

#custom-html-t0 .img-responsive,

#custom-html-t0 .thumbnail a > img,

#custom-html-t0 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t0 .img-rounded {

  border-radius: 6px;

}

#custom-html-t0 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t0 .img-circle {

  border-radius: 50%;

}

#custom-html-t0 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t0 .sr-only-focusable:active,

#custom-html-t0 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t0 [role=button] {

  cursor: pointer;

}

#custom-html-t0 .h1,

#custom-html-t0 .h2,

#custom-html-t0 .h3,

#custom-html-t0 .h4,

#custom-html-t0 .h5,

#custom-html-t0 .h6,

#custom-html-t0 h1,

#custom-html-t0 h2,

#custom-html-t0 h3,

#custom-html-t0 h4,

#custom-html-t0 h5,

#custom-html-t0 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t0 .h1 .small,

#custom-html-t0 .h1 small,

#custom-html-t0 .h2 .small,

#custom-html-t0 .h2 small,

#custom-html-t0 .h3 .small,

#custom-html-t0 .h3 small,

#custom-html-t0 .h4 .small,

#custom-html-t0 .h4 small,

#custom-html-t0 .h5 .small,

#custom-html-t0 .h5 small,

#custom-html-t0 .h6 .small,

#custom-html-t0 .h6 small,

#custom-html-t0 h1 .small,

#custom-html-t0 h1 small,

#custom-html-t0 h2 .small,

#custom-html-t0 h2 small,

#custom-html-t0 h3 .small,

#custom-html-t0 h3 small,

#custom-html-t0 h4 .small,

#custom-html-t0 h4 small,

#custom-html-t0 h5 .small,

#custom-html-t0 h5 small,

#custom-html-t0 h6 .small,

#custom-html-t0 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t0 .h1,

#custom-html-t0 .h2,

#custom-html-t0 .h3,

#custom-html-t0 h1,

#custom-html-t0 h2,

#custom-html-t0 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t0 .h1 .small,

#custom-html-t0 .h1 small,

#custom-html-t0 .h2 .small,

#custom-html-t0 .h2 small,

#custom-html-t0 .h3 .small,

#custom-html-t0 .h3 small,

#custom-html-t0 h1 .small,

#custom-html-t0 h1 small,

#custom-html-t0 h2 .small,

#custom-html-t0 h2 small,

#custom-html-t0 h3 .small,

#custom-html-t0 h3 small {

  font-size: 65%;

}

#custom-html-t0 .h4,

#custom-html-t0 .h5,

#custom-html-t0 .h6,

#custom-html-t0 h4,

#custom-html-t0 h5,

#custom-html-t0 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t0 .h4 .small,

#custom-html-t0 .h4 small,

#custom-html-t0 .h5 .small,

#custom-html-t0 .h5 small,

#custom-html-t0 .h6 .small,

#custom-html-t0 .h6 small,

#custom-html-t0 h4 .small,

#custom-html-t0 h4 small,

#custom-html-t0 h5 .small,

#custom-html-t0 h5 small,

#custom-html-t0 h6 .small,

#custom-html-t0 h6 small {

  font-size: 75%;

}

#custom-html-t0 .h1,

#custom-html-t0 h1 {

  font-size: 36px;

}

#custom-html-t0 .h2,

#custom-html-t0 h2 {

  font-size: 30px;

}

#custom-html-t0 .h3,

#custom-html-t0 h3 {

  font-size: 24px;

}

#custom-html-t0 .h4,

#custom-html-t0 h4 {

  font-size: 18px;

}

#custom-html-t0 .h5,

#custom-html-t0 h5 {

  font-size: 14px;

}

#custom-html-t0 .h6,

#custom-html-t0 h6 {

  font-size: 12px;

}

#custom-html-t0 p {

  margin: 0 0 10px;

}

#custom-html-t0 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t0 .lead {

    font-size: 21px;

  }

  #custom-html-t0 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t0 .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-t0 .container {

    width: 750px;

  }

  #custom-html-t0 .col-sm-1,

  #custom-html-t0 .col-sm-10,

  #custom-html-t0 .col-sm-11,

  #custom-html-t0 .col-sm-12,

  #custom-html-t0 .col-sm-2,

  #custom-html-t0 .col-sm-3,

  #custom-html-t0 .col-sm-4,

  #custom-html-t0 .col-sm-5,

  #custom-html-t0 .col-sm-6,

  #custom-html-t0 .col-sm-7,

  #custom-html-t0 .col-sm-8,

  #custom-html-t0 .col-sm-9 {

    float: left;

  }

  #custom-html-t0 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t0 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t0 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t0 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t0 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t0 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t0 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t0 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t0 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t0 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t0 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t0 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t0 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t0 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t0 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t0 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t0 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t0 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t0 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t0 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t0 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t0 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-t0 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t0 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t0 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t0 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t0 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t0 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t0 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t0 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t0 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t0 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t0 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t0 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t0 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t0 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t0 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t0 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t0 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t0 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t0 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t0 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t0 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t0 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t0 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t0 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t0 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t0 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t0 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t0 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t0 .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-t0 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t0 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t0 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t0 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t0 .form-inline .input-group .form-control,

  #custom-html-t0 .form-inline .input-group .input-group-addon,

  #custom-html-t0 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t0 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t0 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t0 .form-inline .checkbox,

  #custom-html-t0 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t0 .form-inline .checkbox label,

  #custom-html-t0 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t0 .form-inline .checkbox input[type=checkbox],

  #custom-html-t0 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t0 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t0 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-t0 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-t0 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-t0 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-t0 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-t0 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t0 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t0 .nav-tabs.nav-justified > .active > a,

  #custom-html-t0 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t0 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t0 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t0 .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-t0 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t0 .nav-tabs-justified > .active > a,

  #custom-html-t0 .nav-tabs-justified > .active > a:focus,

  #custom-html-t0 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t0 .navbar {

    border-radius: 4px;

  }

  #custom-html-t0 .navbar-header {

    float: left;

  }

  #custom-html-t0 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t0 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t0 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t0 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t0 .navbar-fixed-top .navbar-collapse,

  #custom-html-t0 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-t0 .container-fluid > .navbar-collapse,

  #custom-html-t0 .container-fluid > .navbar-header,

  #custom-html-t0 .container > .navbar-collapse,

  #custom-html-t0 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-t0 .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-t0 .navbar-fixed-bottom,

  #custom-html-t0 .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-t0 .navbar > .container .navbar-brand,

  #custom-html-t0 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-t0 .navbar-toggle {

    display: none;

  }

  #custom-html-t0 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t0 .navbar-nav > li {

    float: left;

  }

  #custom-html-t0 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-t0 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t0 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t0 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t0 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t0 .navbar-form .input-group .form-control,

  #custom-html-t0 .navbar-form .input-group .input-group-addon,

  #custom-html-t0 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t0 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t0 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t0 .navbar-form .checkbox,

  #custom-html-t0 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t0 .navbar-form .checkbox label,

  #custom-html-t0 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t0 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t0 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t0 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t0 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t0 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-t0 .navbar-left {

    float: left !important;

  }

  #custom-html-t0 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t0 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-t0 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t0 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t0 .modal-sm {

    width: 300px;

  }

  #custom-html-t0 .pull-sm-left {

    float: left;

  }

  #custom-html-t0 .pull-sm-right {

    float: right;

  }

  #custom-html-t0 .text-right-sm {

    text-align: right;

  }

  #custom-html-t0 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t0 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-t0 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t0 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t0 .email-verification .button {

    float: right;

  }

  #custom-html-t0 .email-verification .far,

  #custom-html-t0 .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-t0 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t0 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-t0 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t0 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t0 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t0 .small,

#custom-html-t0 small {

  font-size: 85%;

}

#custom-html-t0 .mark,

#custom-html-t0 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t0 .text-left {

  text-align: left;

}

#custom-html-t0 .text-right {

  text-align: right;

}

#custom-html-t0 .text-center {

  text-align: center;

}

#custom-html-t0 .text-justify {

  text-align: justify;

}

#custom-html-t0 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t0 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t0 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t0 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t0 .text-muted {

  color: #777777;

}

#custom-html-t0 .text-primary {

  color: #000000;

}

#custom-html-t0 a.text-primary:focus,

#custom-html-t0 a.text-primary:hover {

  color: #000000;

}

#custom-html-t0 .text-success {

  color: #3c763d;

}

#custom-html-t0 a.text-success:focus,

#custom-html-t0 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t0 .text-info {

  color: #31708f;

}

#custom-html-t0 a.text-info:focus,

#custom-html-t0 a.text-info:hover {

  color: #000000;

}

#custom-html-t0 .text-warning {

  color: #8a6d3b;

}

#custom-html-t0 a.text-warning:focus,

#custom-html-t0 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t0 .text-danger {

  color: #a94442;

}

#custom-html-t0 a.text-danger:focus,

#custom-html-t0 a.text-danger:hover {

  color: #843534;

}

#custom-html-t0 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t0 a.bg-primary:focus,

#custom-html-t0 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t0 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t0 a.bg-success:focus,

#custom-html-t0 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t0 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t0 a.bg-info:focus,

#custom-html-t0 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t0 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t0 a.bg-warning:focus,

#custom-html-t0 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t0 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t0 a.bg-danger:focus,

#custom-html-t0 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t0 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t0 ol,

#custom-html-t0 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t0 ol ol,

#custom-html-t0 ol ul,

#custom-html-t0 ul ol,

#custom-html-t0 ul ul {

  margin-bottom: 0;

}

#custom-html-t0 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t0 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t0 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t0 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t0 dd,

#custom-html-t0 dt {

  line-height: 1.42857143;

}

#custom-html-t0 dt {

  font-weight: 700;

}

#custom-html-t0 dd {

  margin-left: 0;

}

#custom-html-t0 abbr[data-original-title],

#custom-html-t0 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t0 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t0 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t0 blockquote ol:last-child,

#custom-html-t0 blockquote p:last-child,

#custom-html-t0 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t0 blockquote .small,

#custom-html-t0 blockquote footer,

#custom-html-t0 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-t0 blockquote .small:before,

#custom-html-t0 blockquote footer:before,

#custom-html-t0 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t0 .blockquote-reverse,

#custom-html-t0 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t0 .blockquote-reverse .small:before,

#custom-html-t0 .blockquote-reverse footer:before,

#custom-html-t0 .blockquote-reverse small:before,

#custom-html-t0 blockquote.pull-right .small:before,

#custom-html-t0 blockquote.pull-right footer:before,

#custom-html-t0 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t0 .blockquote-reverse .small:after,

#custom-html-t0 .blockquote-reverse footer:after,

#custom-html-t0 .blockquote-reverse small:after,

#custom-html-t0 blockquote.pull-right .small:after,

#custom-html-t0 blockquote.pull-right footer:after,

#custom-html-t0 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t0 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t0 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t0 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t0 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t0 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t0 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t0 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-t0 .container {

    width: 970px;

  }

  #custom-html-t0 .col-md-1,

  #custom-html-t0 .col-md-10,

  #custom-html-t0 .col-md-11,

  #custom-html-t0 .col-md-12,

  #custom-html-t0 .col-md-2,

  #custom-html-t0 .col-md-3,

  #custom-html-t0 .col-md-4,

  #custom-html-t0 .col-md-5,

  #custom-html-t0 .col-md-6,

  #custom-html-t0 .col-md-7,

  #custom-html-t0 .col-md-8,

  #custom-html-t0 .col-md-9 {

    float: left;

  }

  #custom-html-t0 .col-md-12 {

    width: 100%;

  }

  #custom-html-t0 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t0 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t0 .col-md-9 {

    width: 75%;

  }

  #custom-html-t0 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t0 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t0 .col-md-6 {

    width: 50%;

  }

  #custom-html-t0 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t0 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t0 .col-md-3 {

    width: 25%;

  }

  #custom-html-t0 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t0 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t0 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t0 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t0 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t0 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t0 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t0 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t0 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t0 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t0 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t0 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t0 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t0 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t0 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t0 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t0 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t0 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t0 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t0 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t0 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t0 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t0 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t0 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t0 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-t0 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t0 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t0 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t0 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t0 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t0 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t0 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t0 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t0 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t0 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t0 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t0 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t0 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t0 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t0 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t0 .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-t0 .modal-lg {

    width: 900px;

  }

  #custom-html-t0 .pull-md-left {

    float: left;

  }

  #custom-html-t0 .pull-md-right {

    float: right;

  }

  #custom-html-t0 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t0 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t0 .container {

    width: 1170px;

  }

  #custom-html-t0 .col-lg-1,

  #custom-html-t0 .col-lg-10,

  #custom-html-t0 .col-lg-11,

  #custom-html-t0 .col-lg-12,

  #custom-html-t0 .col-lg-2,

  #custom-html-t0 .col-lg-3,

  #custom-html-t0 .col-lg-4,

  #custom-html-t0 .col-lg-5,

  #custom-html-t0 .col-lg-6,

  #custom-html-t0 .col-lg-7,

  #custom-html-t0 .col-lg-8,

  #custom-html-t0 .col-lg-9 {

    float: left;

  }

  #custom-html-t0 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t0 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t0 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t0 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t0 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t0 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t0 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t0 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t0 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t0 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t0 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t0 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t0 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t0 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t0 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t0 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t0 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t0 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t0 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t0 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t0 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t0 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-t0 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t0 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t0 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t0 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t0 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t0 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t0 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t0 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t0 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t0 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t0 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t0 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t0 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t0 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t0 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t0 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t0 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t0 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t0 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t0 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t0 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t0 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t0 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t0 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t0 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t0 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t0 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t0 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t0 .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-t0 .visible-lg {

    display: block !important;

  }

  #custom-html-t0 table.visible-lg {

    display: table !important;

  }

  #custom-html-t0 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t0 td.visible-lg,

  #custom-html-t0 th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-t0 .visible-lg-block {

    display: block !important;

  }

  #custom-html-t0 .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-t0 .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-t0 .hidden-lg {

    display: none !important;

  }

  #custom-html-t0 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t0 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t0 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t0 .col-lg-1,

#custom-html-t0 .col-lg-10,

#custom-html-t0 .col-lg-11,

#custom-html-t0 .col-lg-12,

#custom-html-t0 .col-lg-2,

#custom-html-t0 .col-lg-3,

#custom-html-t0 .col-lg-4,

#custom-html-t0 .col-lg-5,

#custom-html-t0 .col-lg-6,

#custom-html-t0 .col-lg-7,

#custom-html-t0 .col-lg-8,

#custom-html-t0 .col-lg-9,

#custom-html-t0 .col-md-1,

#custom-html-t0 .col-md-10,

#custom-html-t0 .col-md-11,

#custom-html-t0 .col-md-12,

#custom-html-t0 .col-md-2,

#custom-html-t0 .col-md-3,

#custom-html-t0 .col-md-4,

#custom-html-t0 .col-md-5,

#custom-html-t0 .col-md-6,

#custom-html-t0 .col-md-7,

#custom-html-t0 .col-md-8,

#custom-html-t0 .col-md-9,

#custom-html-t0 .col-sm-1,

#custom-html-t0 .col-sm-10,

#custom-html-t0 .col-sm-11,

#custom-html-t0 .col-sm-12,

#custom-html-t0 .col-sm-2,

#custom-html-t0 .col-sm-3,

#custom-html-t0 .col-sm-4,

#custom-html-t0 .col-sm-5,

#custom-html-t0 .col-sm-6,

#custom-html-t0 .col-sm-7,

#custom-html-t0 .col-sm-8,

#custom-html-t0 .col-sm-9,

#custom-html-t0 .col-xs-1,

#custom-html-t0 .col-xs-10,

#custom-html-t0 .col-xs-11,

#custom-html-t0 .col-xs-12,

#custom-html-t0 .col-xs-2,

#custom-html-t0 .col-xs-3,

#custom-html-t0 .col-xs-4,

#custom-html-t0 .col-xs-5,

#custom-html-t0 .col-xs-6,

#custom-html-t0 .col-xs-7,

#custom-html-t0 .col-xs-8,

#custom-html-t0 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t0 .col-xs-1,

#custom-html-t0 .col-xs-10,

#custom-html-t0 .col-xs-11,

#custom-html-t0 .col-xs-12,

#custom-html-t0 .col-xs-2,

#custom-html-t0 .col-xs-3,

#custom-html-t0 .col-xs-4,

#custom-html-t0 .col-xs-5,

#custom-html-t0 .col-xs-6,

#custom-html-t0 .col-xs-7,

#custom-html-t0 .col-xs-8,

#custom-html-t0 .col-xs-9 {

  float: left;

}

#custom-html-t0 .col-xs-12 {

  width: 100%;

}

#custom-html-t0 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t0 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t0 .col-xs-9 {

  width: 75%;

}

#custom-html-t0 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t0 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t0 .col-xs-6 {

  width: 50%;

}

#custom-html-t0 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t0 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-t0 .col-xs-3 {

  width: 25%;

}

#custom-html-t0 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t0 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t0 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t0 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t0 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t0 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t0 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t0 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t0 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t0 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t0 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t0 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t0 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t0 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t0 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t0 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t0 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t0 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t0 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t0 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t0 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t0 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t0 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t0 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t0 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t0 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t0 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t0 .col-xs-push-0 {

  left: auto;

}

#custom-html-t0 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t0 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t0 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t0 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t0 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t0 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t0 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t0 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t0 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t0 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t0 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t0 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t0 .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-t0 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t0 th {

  text-align: left;

}

#custom-html-t0 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t0 .table > tbody > tr > td,

#custom-html-t0 .table > tbody > tr > th,

#custom-html-t0 .table > tfoot > tr > td,

#custom-html-t0 .table > tfoot > tr > th,

#custom-html-t0 .table > thead > tr > td,

#custom-html-t0 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t0 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t0 .table > caption + thead > tr:first-child > td,

#custom-html-t0 .table > caption + thead > tr:first-child > th,

#custom-html-t0 .table > colgroup + thead > tr:first-child > td,

#custom-html-t0 .table > colgroup + thead > tr:first-child > th,

#custom-html-t0 .table > thead:first-child > tr:first-child > td,

#custom-html-t0 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t0 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t0 .table .table {

  background-color: #ffffff;

}

#custom-html-t0 .table-condensed > tbody > tr > td,

#custom-html-t0 .table-condensed > tbody > tr > th,

#custom-html-t0 .table-condensed > tfoot > tr > td,

#custom-html-t0 .table-condensed > tfoot > tr > th,

#custom-html-t0 .table-condensed > thead > tr > td,

#custom-html-t0 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t0 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t0 .table-bordered > tbody > tr > td,

#custom-html-t0 .table-bordered > tbody > tr > th,

#custom-html-t0 .table-bordered > tfoot > tr > td,

#custom-html-t0 .table-bordered > tfoot > tr > th,

#custom-html-t0 .table-bordered > thead > tr > td,

#custom-html-t0 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t0 .table-bordered > thead > tr > td,

#custom-html-t0 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t0 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t0 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t0 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t0 table td[class*=col-],

#custom-html-t0 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t0 .table > tbody > tr.active > td,

#custom-html-t0 .table > tbody > tr.active > th,

#custom-html-t0 .table > tbody > tr > td.active,

#custom-html-t0 .table > tbody > tr > th.active,

#custom-html-t0 .table > tfoot > tr.active > td,

#custom-html-t0 .table > tfoot > tr.active > th,

#custom-html-t0 .table > tfoot > tr > td.active,

#custom-html-t0 .table > tfoot > tr > th.active,

#custom-html-t0 .table > thead > tr.active > td,

#custom-html-t0 .table > thead > tr.active > th,

#custom-html-t0 .table > thead > tr > td.active,

#custom-html-t0 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t0 .table-hover > tbody > tr.active:hover > td,

#custom-html-t0 .table-hover > tbody > tr.active:hover > th,

#custom-html-t0 .table-hover > tbody > tr:hover > .active,

#custom-html-t0 .table-hover > tbody > tr > td.active:hover,

#custom-html-t0 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t0 .table > tbody > tr.success > td,

#custom-html-t0 .table > tbody > tr.success > th,

#custom-html-t0 .table > tbody > tr > td.success,

#custom-html-t0 .table > tbody > tr > th.success,

#custom-html-t0 .table > tfoot > tr.success > td,

#custom-html-t0 .table > tfoot > tr.success > th,

#custom-html-t0 .table > tfoot > tr > td.success,

#custom-html-t0 .table > tfoot > tr > th.success,

#custom-html-t0 .table > thead > tr.success > td,

#custom-html-t0 .table > thead > tr.success > th,

#custom-html-t0 .table > thead > tr > td.success,

#custom-html-t0 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t0 .table-hover > tbody > tr.success:hover > td,

#custom-html-t0 .table-hover > tbody > tr.success:hover > th,

#custom-html-t0 .table-hover > tbody > tr:hover > .success,

#custom-html-t0 .table-hover > tbody > tr > td.success:hover,

#custom-html-t0 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t0 .table > tbody > tr.info > td,

#custom-html-t0 .table > tbody > tr.info > th,

#custom-html-t0 .table > tbody > tr > td.info,

#custom-html-t0 .table > tbody > tr > th.info,

#custom-html-t0 .table > tfoot > tr.info > td,

#custom-html-t0 .table > tfoot > tr.info > th,

#custom-html-t0 .table > tfoot > tr > td.info,

#custom-html-t0 .table > tfoot > tr > th.info,

#custom-html-t0 .table > thead > tr.info > td,

#custom-html-t0 .table > thead > tr.info > th,

#custom-html-t0 .table > thead > tr > td.info,

#custom-html-t0 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t0 .table-hover > tbody > tr.info:hover > td,

#custom-html-t0 .table-hover > tbody > tr.info:hover > th,

#custom-html-t0 .table-hover > tbody > tr:hover > .info,

#custom-html-t0 .table-hover > tbody > tr > td.info:hover,

#custom-html-t0 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t0 .table > tbody > tr.warning > td,

#custom-html-t0 .table > tbody > tr.warning > th,

#custom-html-t0 .table > tbody > tr > td.warning,

#custom-html-t0 .table > tbody > tr > th.warning,

#custom-html-t0 .table > tfoot > tr.warning > td,

#custom-html-t0 .table > tfoot > tr.warning > th,

#custom-html-t0 .table > tfoot > tr > td.warning,

#custom-html-t0 .table > tfoot > tr > th.warning,

#custom-html-t0 .table > thead > tr.warning > td,

#custom-html-t0 .table > thead > tr.warning > th,

#custom-html-t0 .table > thead > tr > td.warning,

#custom-html-t0 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t0 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t0 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t0 .table-hover > tbody > tr:hover > .warning,

#custom-html-t0 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t0 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t0 .table > tbody > tr.danger > td,

#custom-html-t0 .table > tbody > tr.danger > th,

#custom-html-t0 .table > tbody > tr > td.danger,

#custom-html-t0 .table > tbody > tr > th.danger,

#custom-html-t0 .table > tfoot > tr.danger > td,

#custom-html-t0 .table > tfoot > tr.danger > th,

#custom-html-t0 .table > tfoot > tr > td.danger,

#custom-html-t0 .table > tfoot > tr > th.danger,

#custom-html-t0 .table > thead > tr.danger > td,

#custom-html-t0 .table > thead > tr.danger > th,

#custom-html-t0 .table > thead > tr > td.danger,

#custom-html-t0 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t0 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t0 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t0 .table-hover > tbody > tr:hover > .danger,

#custom-html-t0 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t0 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t0 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t0 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t0 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t0 .table-responsive > .table > tbody > tr > td,

  #custom-html-t0 .table-responsive > .table > tbody > tr > th,

  #custom-html-t0 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t0 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t0 .table-responsive > .table > thead > tr > td,

  #custom-html-t0 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t0 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t0 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t0 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t0 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t0 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t0 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t0 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t0 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t0 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t0 .table-responsive > .table-bordered > tfoot > tr > td:last-child,


  #custom-html-t0 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t0 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t0 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t0 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t0 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t0 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t0 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-t0 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t0 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t0 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t0 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-t0 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t0 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t0 input[type=file] {

  display: block;

}

#custom-html-t0 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-t0 select[multiple],

#custom-html-t0 select[size] {

  height: auto;

}

#custom-html-t0 input[type=checkbox]:focus,

#custom-html-t0 input[type=file]:focus,

#custom-html-t0 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t0 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t0 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t0 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t0 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t0 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t0 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t0 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t0 .form-control[disabled],

#custom-html-t0 .form-control[readonly],

#custom-html-t0 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t0 .form-control[disabled],

#custom-html-t0 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t0 textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t0 input[type=date].form-control,

  #custom-html-t0 input[type=datetime-local].form-control,

  #custom-html-t0 input[type=month].form-control,

  #custom-html-t0 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t0 .input-group-sm input[type=date],

  #custom-html-t0 .input-group-sm input[type=datetime-local],

  #custom-html-t0 .input-group-sm input[type=month],

  #custom-html-t0 .input-group-sm input[type=time],

  #custom-html-t0 input[type=date].input-sm,

  #custom-html-t0 input[type=datetime-local].input-sm,

  #custom-html-t0 input[type=month].input-sm,

  #custom-html-t0 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t0 .input-group-lg input[type=date],

  #custom-html-t0 .input-group-lg input[type=datetime-local],

  #custom-html-t0 .input-group-lg input[type=month],

  #custom-html-t0 .input-group-lg input[type=time],

  #custom-html-t0 input[type=date].input-lg,

  #custom-html-t0 input[type=datetime-local].input-lg,

  #custom-html-t0 input[type=month].input-lg,

  #custom-html-t0 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t0 .form-group {

  margin-bottom: 15px;

}

#custom-html-t0 .checkbox,

#custom-html-t0 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t0 .checkbox label,

#custom-html-t0 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t0 .checkbox input[type=checkbox],

#custom-html-t0 .checkbox-inline input[type=checkbox],

#custom-html-t0 .radio input[type=radio],

#custom-html-t0 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t0 .checkbox + .checkbox,

#custom-html-t0 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t0 .checkbox-inline,

#custom-html-t0 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t0 .checkbox-inline + .checkbox-inline,

#custom-html-t0 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t0 fieldset[disabled] input[type=checkbox],

#custom-html-t0 fieldset[disabled] input[type=radio],

#custom-html-t0 input[type=checkbox].disabled,

#custom-html-t0 input[type=checkbox][disabled],

#custom-html-t0 input[type=radio].disabled,

#custom-html-t0 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t0 .checkbox-inline.disabled,

#custom-html-t0 .radio-inline.disabled,

#custom-html-t0 fieldset[disabled] .checkbox-inline,

#custom-html-t0 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t0 .checkbox.disabled label,

#custom-html-t0 .radio.disabled label,

#custom-html-t0 fieldset[disabled] .checkbox label,

#custom-html-t0 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t0 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t0 .form-control-static.input-lg,

#custom-html-t0 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t0 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t0 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t0 select[multiple].input-sm,

#custom-html-t0 textarea.input-sm {

  height: auto;

}

#custom-html-t0 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t0 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t0 .form-group-sm select[multiple].form-control,

#custom-html-t0 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t0 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t0 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t0 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t0 select[multiple].input-lg,

#custom-html-t0 textarea.input-lg {

  height: auto;

}

#custom-html-t0 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t0 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-t0 .form-group-lg select[multiple].form-control,

#custom-html-t0 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t0 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t0 .has-feedback {

  position: relative;

}

#custom-html-t0 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t0 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t0 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t0 .input-group-lg + .form-control-feedback,

#custom-html-t0 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t0 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t0 .input-group-sm + .form-control-feedback,

#custom-html-t0 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t0 .has-success .checkbox,

#custom-html-t0 .has-success .checkbox-inline,

#custom-html-t0 .has-success .control-label,

#custom-html-t0 .has-success .help-block,

#custom-html-t0 .has-success .radio,

#custom-html-t0 .has-success .radio-inline,

#custom-html-t0 .has-success.checkbox label,

#custom-html-t0 .has-success.checkbox-inline label,

#custom-html-t0 .has-success.radio label,

#custom-html-t0 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t0 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t0 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t0 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t0 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t0 .has-warning .checkbox,

#custom-html-t0 .has-warning .checkbox-inline,

#custom-html-t0 .has-warning .control-label,

#custom-html-t0 .has-warning .help-block,

#custom-html-t0 .has-warning .radio,

#custom-html-t0 .has-warning .radio-inline,

#custom-html-t0 .has-warning.checkbox label,

#custom-html-t0 .has-warning.checkbox-inline label,

#custom-html-t0 .has-warning.radio label,

#custom-html-t0 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t0 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t0 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t0 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t0 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t0 .has-error .checkbox,

#custom-html-t0 .has-error .checkbox-inline,

#custom-html-t0 .has-error .control-label,

#custom-html-t0 .has-error .help-block,

#custom-html-t0 .has-error .radio,

#custom-html-t0 .has-error .radio-inline,

#custom-html-t0 .has-error.checkbox label,

#custom-html-t0 .has-error.checkbox-inline label,

#custom-html-t0 .has-error.radio label,

#custom-html-t0 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t0 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t0 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t0 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t0 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t0 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t0 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t0 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-t0 .form-horizontal .checkbox,

#custom-html-t0 .form-horizontal .checkbox-inline,

#custom-html-t0 .form-horizontal .radio,

#custom-html-t0 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t0 .form-horizontal .checkbox,

#custom-html-t0 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t0 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t0 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-t0 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-t0 .btn.active.focus,

#custom-html-t0 .btn.active:focus,

#custom-html-t0 .btn.focus,

#custom-html-t0 .btn:active.focus,

#custom-html-t0 .btn:active:focus,

#custom-html-t0 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t0 .btn.focus,

#custom-html-t0 .btn:focus,

#custom-html-t0 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t0 .btn.active,

#custom-html-t0 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t0 .btn.disabled,

#custom-html-t0 .btn[disabled],

#custom-html-t0 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t0 a.btn.disabled,

#custom-html-t0 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t0 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t0 .btn-default.focus,

#custom-html-t0 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t0 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t0 .btn-default.active,

#custom-html-t0 .btn-default:active,

#custom-html-t0 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-t0 .btn-default.active.focus,

#custom-html-t0 .btn-default.active:focus,

#custom-html-t0 .btn-default.active:hover,

#custom-html-t0 .btn-default:active.focus,

#custom-html-t0 .btn-default:active:focus,

#custom-html-t0 .btn-default:active:hover,

#custom-html-t0 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t0 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t0 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t0 .btn-default.disabled.focus,

#custom-html-t0 .btn-default.disabled:focus,

#custom-html-t0 .btn-default.disabled:hover,

#custom-html-t0 .btn-default[disabled].focus,

#custom-html-t0 .btn-default[disabled]:focus,

#custom-html-t0 .btn-default[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-default.focus,

#custom-html-t0 fieldset[disabled] .btn-default:focus,

#custom-html-t0 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t0 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t0 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t0 .btn-primary.focus,

#custom-html-t0 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t0 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t0 .btn-primary.active,

#custom-html-t0 .btn-primary:active,

#custom-html-t0 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-t0 .btn-primary.active.focus,

#custom-html-t0 .btn-primary.active:focus,

#custom-html-t0 .btn-primary.active:hover,

#custom-html-t0 .btn-primary:active.focus,

#custom-html-t0 .btn-primary:active:focus,

#custom-html-t0 .btn-primary:active:hover,

#custom-html-t0 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t0 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t0 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t0 .btn-primary.disabled.focus,

#custom-html-t0 .btn-primary.disabled:focus,

#custom-html-t0 .btn-primary.disabled:hover,

#custom-html-t0 .btn-primary[disabled].focus,

#custom-html-t0 .btn-primary[disabled]:focus,

#custom-html-t0 .btn-primary[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-primary.focus,

#custom-html-t0 fieldset[disabled] .btn-primary:focus,

#custom-html-t0 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t0 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t0 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t0 .btn-success.focus,

#custom-html-t0 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t0 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t0 .btn-success.active,

#custom-html-t0 .btn-success:active,

#custom-html-t0 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-t0 .btn-success.active.focus,

#custom-html-t0 .btn-success.active:focus,

#custom-html-t0 .btn-success.active:hover,

#custom-html-t0 .btn-success:active.focus,

#custom-html-t0 .btn-success:active:focus,

#custom-html-t0 .btn-success:active:hover,

#custom-html-t0 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t0 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t0 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t0 .btn-success.disabled.focus,

#custom-html-t0 .btn-success.disabled:focus,

#custom-html-t0 .btn-success.disabled:hover,

#custom-html-t0 .btn-success[disabled].focus,

#custom-html-t0 .btn-success[disabled]:focus,

#custom-html-t0 .btn-success[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-success.focus,

#custom-html-t0 fieldset[disabled] .btn-success:focus,

#custom-html-t0 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t0 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t0 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t0 .btn-info.focus,

#custom-html-t0 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t0 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t0 .btn-info.active,

#custom-html-t0 .btn-info:active,

#custom-html-t0 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-t0 .btn-info.active.focus,

#custom-html-t0 .btn-info.active:focus,

#custom-html-t0 .btn-info.active:hover,

#custom-html-t0 .btn-info:active.focus,

#custom-html-t0 .btn-info:active:focus,

#custom-html-t0 .btn-info:active:hover,

#custom-html-t0 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t0 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t0 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t0 .btn-info.disabled.focus,

#custom-html-t0 .btn-info.disabled:focus,

#custom-html-t0 .btn-info.disabled:hover,

#custom-html-t0 .btn-info[disabled].focus,

#custom-html-t0 .btn-info[disabled]:focus,

#custom-html-t0 .btn-info[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-info.focus,

#custom-html-t0 fieldset[disabled] .btn-info:focus,

#custom-html-t0 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t0 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t0 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t0 .btn-warning.focus,

#custom-html-t0 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t0 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t0 .btn-warning.active,

#custom-html-t0 .btn-warning:active,

#custom-html-t0 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-t0 .btn-warning.active.focus,

#custom-html-t0 .btn-warning.active:focus,

#custom-html-t0 .btn-warning.active:hover,

#custom-html-t0 .btn-warning:active.focus,

#custom-html-t0 .btn-warning:active:focus,

#custom-html-t0 .btn-warning:active:hover,

#custom-html-t0 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t0 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t0 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t0 .btn-warning.disabled.focus,

#custom-html-t0 .btn-warning.disabled:focus,

#custom-html-t0 .btn-warning.disabled:hover,

#custom-html-t0 .btn-warning[disabled].focus,

#custom-html-t0 .btn-warning[disabled]:focus,

#custom-html-t0 .btn-warning[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-warning.focus,

#custom-html-t0 fieldset[disabled] .btn-warning:focus,

#custom-html-t0 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t0 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t0 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t0 .btn-danger.focus,

#custom-html-t0 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t0 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t0 .btn-danger.active,

#custom-html-t0 .btn-danger:active,

#custom-html-t0 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-t0 .btn-danger.active.focus,

#custom-html-t0 .btn-danger.active:focus,

#custom-html-t0 .btn-danger.active:hover,

#custom-html-t0 .btn-danger:active.focus,

#custom-html-t0 .btn-danger:active:focus,

#custom-html-t0 .btn-danger:active:hover,

#custom-html-t0 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t0 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t0 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t0 .btn-danger.disabled.focus,

#custom-html-t0 .btn-danger.disabled:focus,

#custom-html-t0 .btn-danger.disabled:hover,

#custom-html-t0 .btn-danger[disabled].focus,

#custom-html-t0 .btn-danger[disabled]:focus,

#custom-html-t0 .btn-danger[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-danger.focus,

#custom-html-t0 fieldset[disabled] .btn-danger:focus,

#custom-html-t0 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t0 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t0 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t0 .btn-link,

#custom-html-t0 .btn-link.active,

#custom-html-t0 .btn-link:active,

#custom-html-t0 .btn-link[disabled],

#custom-html-t0 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t0 .btn-link,

#custom-html-t0 .btn-link:active,

#custom-html-t0 .btn-link:focus,

#custom-html-t0 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t0 .btn-link:focus,

#custom-html-t0 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t0 .btn-link[disabled]:focus,

#custom-html-t0 .btn-link[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-link:focus,

#custom-html-t0 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t0 .btn-group-lg > .btn,

#custom-html-t0 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t0 .btn-group-sm > .btn,

#custom-html-t0 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t0 .btn-group-xs > .btn,

#custom-html-t0 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t0 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t0 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t0 input[type=button].btn-block,

#custom-html-t0 input[type=reset].btn-block,

#custom-html-t0 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t0 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t0 .fade.in {

  opacity: 1;

}

#custom-html-t0 .collapse {

  display: none;

}

#custom-html-t0 .collapse.in {

  display: block;

}

#custom-html-t0 tr.collapse.in {

  display: table-row;

}

#custom-html-t0 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t0 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t0 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t0 .dropdown,

#custom-html-t0 .dropup {

  position: relative;

}

#custom-html-t0 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t0 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t0 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t0 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t0 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}


#custom-html-t0 .dropdown-menu > li > a:focus,

#custom-html-t0 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t0 .dropdown-menu > .active > a,

#custom-html-t0 .dropdown-menu > .active > a:focus,

#custom-html-t0 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-t0 .dropdown-menu > .disabled > a,

#custom-html-t0 .dropdown-menu > .disabled > a:focus,

#custom-html-t0 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t0 .dropdown-menu > .disabled > a:focus,

#custom-html-t0 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t0 .open > .dropdown-menu {

  display: block;

}

#custom-html-t0 .open > a {

  outline: 0;

}

#custom-html-t0 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t0 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t0 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t0 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t0 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t0 .dropup .caret,

#custom-html-t0 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t0 .dropup .dropdown-menu,

#custom-html-t0 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-t0 .btn-group,

#custom-html-t0 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t0 .btn-group-vertical > .btn,

#custom-html-t0 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t0 .btn-group-vertical > .btn.active,

#custom-html-t0 .btn-group-vertical > .btn:active,

#custom-html-t0 .btn-group-vertical > .btn:focus,

#custom-html-t0 .btn-group-vertical > .btn:hover,

#custom-html-t0 .btn-group > .btn.active,

#custom-html-t0 .btn-group > .btn:active,

#custom-html-t0 .btn-group > .btn:focus,

#custom-html-t0 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t0 .btn-group .btn + .btn,

#custom-html-t0 .btn-group .btn + .btn-group,

#custom-html-t0 .btn-group .btn-group + .btn,

#custom-html-t0 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t0 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t0 .btn-toolbar .btn,

#custom-html-t0 .btn-toolbar .btn-group,

#custom-html-t0 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t0 .btn-toolbar > .btn,

#custom-html-t0 .btn-toolbar > .btn-group,

#custom-html-t0 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t0 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t0 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t0 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t0 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t0 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t0 .btn-group > .btn-group {

  float: left;

}

#custom-html-t0 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t0 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t0 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t0 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t0 .btn-group .dropdown-toggle:active,

#custom-html-t0 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t0 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t0 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t0 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t0 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t0 .btn .caret {

  margin-left: 0;

}

#custom-html-t0 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t0 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t0 .btn-group-vertical > .btn,

#custom-html-t0 .btn-group-vertical > .btn-group,

#custom-html-t0 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t0 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t0 .btn-group-vertical > .btn + .btn,

#custom-html-t0 .btn-group-vertical > .btn + .btn-group,

#custom-html-t0 .btn-group-vertical > .btn-group + .btn,

#custom-html-t0 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t0 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t0 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t0 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t0 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t0 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t0 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t0 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t0 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t0 .btn-group-justified > .btn,

#custom-html-t0 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t0 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t0 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t0 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t0 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t0 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t0 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t0 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t0 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t0 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t0 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t0 .input-group-lg > .form-control,

#custom-html-t0 .input-group-lg > .input-group-addon,

#custom-html-t0 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t0 select.input-group-lg > .form-control,

#custom-html-t0 select.input-group-lg > .input-group-addon,

#custom-html-t0 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t0 select[multiple].input-group-lg > .form-control,

#custom-html-t0 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t0 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t0 textarea.input-group-lg > .form-control,

#custom-html-t0 textarea.input-group-lg > .input-group-addon,

#custom-html-t0 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t0 .input-group-sm > .form-control,

#custom-html-t0 .input-group-sm > .input-group-addon,

#custom-html-t0 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t0 select.input-group-sm > .form-control,

#custom-html-t0 select.input-group-sm > .input-group-addon,

#custom-html-t0 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t0 select[multiple].input-group-sm > .form-control,

#custom-html-t0 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t0 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t0 textarea.input-group-sm > .form-control,

#custom-html-t0 textarea.input-group-sm > .input-group-addon,

#custom-html-t0 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t0 .input-group .form-control,

#custom-html-t0 .input-group-addon,

#custom-html-t0 .input-group-btn {

  display: table-cell;

}

#custom-html-t0 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t0 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t0 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t0 .input-group-addon,

#custom-html-t0 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t0 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t0 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t0 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t0 .input-group-addon input[type=checkbox],

#custom-html-t0 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t0 .input-group .form-control:first-child,

#custom-html-t0 .input-group-addon:first-child,

#custom-html-t0 .input-group-btn:first-child > .btn,

#custom-html-t0 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t0 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t0 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t0 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t0 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t0 .input-group .form-control:last-child,

#custom-html-t0 .input-group-addon:last-child,

#custom-html-t0 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t0 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t0 .input-group-btn:last-child > .btn,

#custom-html-t0 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t0 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t0 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t0 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t0 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t0 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t0 .input-group-btn > .btn:active,

#custom-html-t0 .input-group-btn > .btn:focus,

#custom-html-t0 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t0 .input-group-btn:first-child > .btn,

#custom-html-t0 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t0 .input-group-btn:last-child > .btn,

#custom-html-t0 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t0 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t0 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t0 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t0 .nav > li > a:focus,

#custom-html-t0 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t0 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t0 .nav > li.disabled > a:focus,

#custom-html-t0 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t0 .nav .open > a,

#custom-html-t0 .nav .open > a:focus,

#custom-html-t0 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t0 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t0 .nav > li > a > img {

  max-width: none;

}

#custom-html-t0 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t0 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t0 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t0 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t0 .nav-tabs > li.active > a,

#custom-html-t0 .nav-tabs > li.active > a:focus,

#custom-html-t0 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t0 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t0 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t0 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t0 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t0 .nav-tabs.nav-justified > .active > a,

#custom-html-t0 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t0 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t0 .nav-pills > li {

  float: left;

}

#custom-html-t0 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t0 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t0 .nav-pills > li.active > a,

#custom-html-t0 .nav-pills > li.active > a:focus,

#custom-html-t0 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t0 .nav-stacked > li {

  float: none;

}

#custom-html-t0 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t0 .nav-justified {

  width: 100%;

}

#custom-html-t0 .nav-justified > li {

  float: none;

}

#custom-html-t0 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t0 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t0 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t0 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t0 .nav-tabs-justified > .active > a,

#custom-html-t0 .nav-tabs-justified > .active > a:focus,

#custom-html-t0 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t0 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t0 .tab-content > .active {

  display: block;

}

#custom-html-t0 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t0 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-t0 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t0 .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-t0 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t0 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t0 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t0 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t0 .container-fluid > .navbar-collapse,

#custom-html-t0 .container-fluid > .navbar-header,

#custom-html-t0 .container > .navbar-collapse,

#custom-html-t0 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t0 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-t0 .navbar-fixed-bottom,

#custom-html-t0 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-t0 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t0 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t0 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t0 .navbar-brand:focus,

#custom-html-t0 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t0 .navbar-brand > img {

  display: block;

}

#custom-html-t0 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t0 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t0 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t0 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-t0 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t0 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t0 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t0 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t0 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t0 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t0 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t0 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-t0 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t0 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-t0 .visible-xs {

    display: block !important;

  }

  #custom-html-t0 table.visible-xs {

    display: table !important;

  }

  #custom-html-t0 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t0 td.visible-xs,

  #custom-html-t0 th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-t0 .visible-xs-block {

    display: block !important;

  }

  #custom-html-t0 .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-t0 .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-t0 .hidden-xs {

    display: none !important;

  }

  #custom-html-t0 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t0 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-t0 section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-t0 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t0 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t0 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t0 .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-t0 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t0 .tiles .tile:nth-child(1),

  #custom-html-t0 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-t0 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t0 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t0 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-t0 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t0 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t0 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-t0 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-t0 .promo-banner form {

    text-align: center;

  }

}

#custom-html-t0 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t0 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t0 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t0 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t0 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t0 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t0 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t0 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t0 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t0 .navbar-default .navbar-brand:focus,

#custom-html-t0 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t0 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t0 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t0 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t0 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t0 .navbar-default .navbar-nav > .active > a,

#custom-html-t0 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t0 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t0 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t0 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t0 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t0 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t0 .navbar-default .navbar-toggle:focus,

#custom-html-t0 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t0 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t0 .navbar-default .navbar-collapse,

#custom-html-t0 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t0 .navbar-default .navbar-nav > .open > a,

#custom-html-t0 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t0 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t0 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t0 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t0 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t0 .navbar-default .btn-link:focus,

#custom-html-t0 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-t0 .navbar-default .btn-link[disabled]:focus,

#custom-html-t0 .navbar-default .btn-link[disabled]:hover,

#custom-html-t0 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t0 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t0 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t0 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t0 .navbar-inverse .navbar-brand:focus,

#custom-html-t0 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t0 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t0 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t0 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t0 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t0 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t0 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t0 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t0 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t0 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t0 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t0 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t0 .navbar-inverse .navbar-toggle:focus,

#custom-html-t0 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t0 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t0 .navbar-inverse .navbar-collapse,

#custom-html-t0 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t0 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t0 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t0 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t0 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t0 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t0 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t0 .navbar-inverse .btn-link:focus,

#custom-html-t0 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t0 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t0 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t0 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t0 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t0 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t0 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t0 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t0 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t0 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-t0 .pagination > li {

  display: inline;

}

#custom-html-t0 .pagination > li > a,

#custom-html-t0 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t0 .pagination > li:first-child > a,

#custom-html-t0 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t0 .pagination > li:last-child > a,

#custom-html-t0 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t0 .pagination > li > a:focus,

#custom-html-t0 .pagination > li > a:hover,

#custom-html-t0 .pagination > li > span:focus,

#custom-html-t0 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t0 .pagination > .active > a,

#custom-html-t0 .pagination > .active > a:focus,

#custom-html-t0 .pagination > .active > a:hover,

#custom-html-t0 .pagination > .active > span,

#custom-html-t0 .pagination > .active > span:focus,

#custom-html-t0 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t0 .pagination > .disabled > a,

#custom-html-t0 .pagination > .disabled > a:focus,

#custom-html-t0 .pagination > .disabled > a:hover,

#custom-html-t0 .pagination > .disabled > span,

#custom-html-t0 .pagination > .disabled > span:focus,

#custom-html-t0 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t0 .pagination-lg > li > a,

#custom-html-t0 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t0 .pagination-lg > li:first-child > a,

#custom-html-t0 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t0 .pagination-lg > li:last-child > a,

#custom-html-t0 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t0 .pagination-sm > li > a,

#custom-html-t0 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t0 .pagination-sm > li:first-child > a,

#custom-html-t0 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t0 .pagination-sm > li:last-child > a,

#custom-html-t0 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t0 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t0 .pager li {

  display: inline;

}

#custom-html-t0 .pager li > a,

#custom-html-t0 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t0 .pager li > a:focus,

#custom-html-t0 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t0 .pager .next > a,

#custom-html-t0 .pager .next > span {

  float: right;

}

#custom-html-t0 .pager .previous > a,

#custom-html-t0 .pager .previous > span {

  float: left;

}

#custom-html-t0 .pager .disabled > a,

#custom-html-t0 .pager .disabled > a:focus,

#custom-html-t0 .pager .disabled > a:hover,

#custom-html-t0 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t0 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-t0 a.label:focus,

#custom-html-t0 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t0 .label:empty {

  display: none;

}

#custom-html-t0 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t0 .label-default {

  background-color: #777777;

}

#custom-html-t0 .label-default[href]:focus,

#custom-html-t0 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t0 .label-primary {

  background-color: #337ab7;

}

#custom-html-t0 .label-primary[href]:focus,

#custom-html-t0 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t0 .label-success {

  background-color: #5cb85c;

}

#custom-html-t0 .label-success[href]:focus,

#custom-html-t0 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t0 .label-info {

  background-color: #5bc0de;

}

#custom-html-t0 .label-info[href]:focus,

#custom-html-t0 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t0 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t0 .label-warning[href]:focus,

#custom-html-t0 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t0 .label-danger {

  background-color: #d9534f;

}

#custom-html-t0 .label-danger[href]:focus,

#custom-html-t0 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t0 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t0 .badge:empty {

  display: none;

}

#custom-html-t0 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t0 .btn-group-xs > .btn .badge,

#custom-html-t0 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t0 a.badge:focus,

#custom-html-t0 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t0 .list-group-item.active > .badge,

#custom-html-t0 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t0 .list-group-item > .badge {

  float: right;

}

#custom-html-t0 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t0 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t0 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t0 .jumbotron .h1,

#custom-html-t0 .jumbotron h1 {

  color: inherit;

}

#custom-html-t0 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t0 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t0 .container .jumbotron,

#custom-html-t0 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t0 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t0 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t0 .container .jumbotron,

  #custom-html-t0 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t0 .jumbotron .h1,

  #custom-html-t0 .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-t0 .carousel-control .glyphicon-chevron-left,

  #custom-html-t0 .carousel-control .glyphicon-chevron-right,

  #custom-html-t0 .carousel-control .icon-next,

  #custom-html-t0 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t0 .carousel-control .glyphicon-chevron-left,

  #custom-html-t0 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t0 .carousel-control .glyphicon-chevron-right,

  #custom-html-t0 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t0 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t0 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t0 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t0 .thumbnail a > img,

#custom-html-t0 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t0 a.thumbnail.active,

#custom-html-t0 a.thumbnail:focus,

#custom-html-t0 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t0 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t0 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t0 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t0 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t0 .alert > p,

#custom-html-t0 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t0 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t0 .alert-dismissable,

#custom-html-t0 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t0 .alert-dismissable .close,


#custom-html-t0 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t0 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t0 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-t0 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t0 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t0 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t0 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t0 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t0 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t0 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t0 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t0 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t0 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t0 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t0 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t0 .progress-bar-striped,

#custom-html-t0 .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t0 .progress-bar.active,

#custom-html-t0 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t0 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t0 .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t0 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t0 .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t0 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t0 .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t0 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t0 .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t0 .media {

  margin-top: 15px;

}

#custom-html-t0 .media:first-child {

  margin-top: 0;

}

#custom-html-t0 .media,

#custom-html-t0 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t0 .media-body {

  width: 10000px;

}

#custom-html-t0 .media-object {

  display: block;

}

#custom-html-t0 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t0 .media-right,

#custom-html-t0 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t0 .media-left,

#custom-html-t0 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t0 .media-body,

#custom-html-t0 .media-left,

#custom-html-t0 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t0 .media-middle {

  vertical-align: middle;

}

#custom-html-t0 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t0 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t0 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t0 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-t0 .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-t0 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t0 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t0 a.list-group-item,

#custom-html-t0 button.list-group-item {

  color: #555555;

}

#custom-html-t0 a.list-group-item .list-group-item-heading,

#custom-html-t0 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t0 a.list-group-item:focus,

#custom-html-t0 a.list-group-item:hover,

#custom-html-t0 button.list-group-item:focus,

#custom-html-t0 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t0 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t0 .list-group-item.disabled,

#custom-html-t0 .list-group-item.disabled:focus,

#custom-html-t0 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t0 .list-group-item.disabled .list-group-item-heading,

#custom-html-t0 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t0 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t0 .list-group-item.disabled .list-group-item-text,

#custom-html-t0 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t0 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t0 .list-group-item.active,

#custom-html-t0 .list-group-item.active:focus,

#custom-html-t0 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t0 .list-group-item.active .list-group-item-heading,

#custom-html-t0 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t0 .list-group-item.active .list-group-item-heading > small,

#custom-html-t0 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t0 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t0 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t0 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t0 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t0 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t0 .list-group-item.active .list-group-item-text,

#custom-html-t0 .list-group-item.active:focus .list-group-item-text,

#custom-html-t0 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t0 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t0 a.list-group-item-success,

#custom-html-t0 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t0 a.list-group-item-success .list-group-item-heading,

#custom-html-t0 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t0 a.list-group-item-success:focus,

#custom-html-t0 a.list-group-item-success:hover,

#custom-html-t0 button.list-group-item-success:focus,

#custom-html-t0 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t0 a.list-group-item-success.active,

#custom-html-t0 a.list-group-item-success.active:focus,

#custom-html-t0 a.list-group-item-success.active:hover,

#custom-html-t0 button.list-group-item-success.active,

#custom-html-t0 button.list-group-item-success.active:focus,

#custom-html-t0 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t0 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t0 a.list-group-item-info,

#custom-html-t0 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t0 a.list-group-item-info .list-group-item-heading,

#custom-html-t0 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t0 a.list-group-item-info:focus,

#custom-html-t0 a.list-group-item-info:hover,

#custom-html-t0 button.list-group-item-info:focus,

#custom-html-t0 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t0 a.list-group-item-info.active,

#custom-html-t0 a.list-group-item-info.active:focus,

#custom-html-t0 a.list-group-item-info.active:hover,

#custom-html-t0 button.list-group-item-info.active,

#custom-html-t0 button.list-group-item-info.active:focus,

#custom-html-t0 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t0 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t0 a.list-group-item-warning,

#custom-html-t0 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t0 a.list-group-item-warning .list-group-item-heading,

#custom-html-t0 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t0 a.list-group-item-warning:focus,

#custom-html-t0 a.list-group-item-warning:hover,

#custom-html-t0 button.list-group-item-warning:focus,

#custom-html-t0 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t0 a.list-group-item-warning.active,

#custom-html-t0 a.list-group-item-warning.active:focus,

#custom-html-t0 a.list-group-item-warning.active:hover,

#custom-html-t0 button.list-group-item-warning.active,

#custom-html-t0 button.list-group-item-warning.active:focus,

#custom-html-t0 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t0 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t0 a.list-group-item-danger,

#custom-html-t0 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t0 a.list-group-item-danger .list-group-item-heading,

#custom-html-t0 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t0 a.list-group-item-danger:focus,

#custom-html-t0 a.list-group-item-danger:hover,

#custom-html-t0 button.list-group-item-danger:focus,

#custom-html-t0 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t0 a.list-group-item-danger.active,

#custom-html-t0 a.list-group-item-danger.active:focus,

#custom-html-t0 a.list-group-item-danger.active:hover,

#custom-html-t0 button.list-group-item-danger.active,

#custom-html-t0 button.list-group-item-danger.active:focus,

#custom-html-t0 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t0 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t0 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t0 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-t0 .panel-body {

  padding: 10px 15px;

}

#custom-html-t0 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t0 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t0 .panel-title > .small,

#custom-html-t0 .panel-title > .small > a,

#custom-html-t0 .panel-title > a,

#custom-html-t0 .panel-title > small,

#custom-html-t0 .panel-title > small > a {

  color: inherit;

}

#custom-html-t0 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t0 .panel > .list-group,

#custom-html-t0 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t0 .panel > .list-group .list-group-item,

#custom-html-t0 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t0 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t0 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t0 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t0 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t0 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t0 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t0 .panel > .panel-collapse > .table,

#custom-html-t0 .panel > .table,

#custom-html-t0 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t0 .panel > .panel-collapse > .table caption,

#custom-html-t0 .panel > .table caption,

#custom-html-t0 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t0 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t0 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t0 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t0 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t0 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t0 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t0 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t0 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t0 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t0 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t0 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t0 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t0 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t0 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t0 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t0 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t0 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t0 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t0 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t0 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t0 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t0 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t0 .panel > .panel-body + .table,

#custom-html-t0 .panel > .panel-body + .table-responsive,

#custom-html-t0 .panel > .table + .panel-body,

#custom-html-t0 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t0 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t0 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t0 .panel > .table-bordered,

#custom-html-t0 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t0 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t0 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t0 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t0 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t0 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t0 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t0 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t0 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t0 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t0 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t0 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t0 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t0 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t0 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t0 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t0 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t0 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t0 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t0 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t0 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t0 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t0 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t0 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t0 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t0 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-t0 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t0 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t0 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t0 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t0 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t0 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t0 .panel-default {

  border-color: #dddddd;

}

#custom-html-t0 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t0 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t0 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t0 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t0 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t0 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t0 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t0 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t0 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t0 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t0 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t0 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t0 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t0 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-t0 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t0 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t0 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t0 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t0 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t0 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t0 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t0 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t0 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t0 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t0 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t0 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t0 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t0 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t0 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t0 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t0 .embed-responsive .embed-responsive-item,

#custom-html-t0 .embed-responsive embed,

#custom-html-t0 .embed-responsive iframe,

#custom-html-t0 .embed-responsive object,

#custom-html-t0 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t0 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t0 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t0 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t0 .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t0 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t0 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t0 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t0 .close:focus,

#custom-html-t0 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t0 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t0 .modal-open {

  overflow: hidden;

}

#custom-html-t0 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t0 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t0 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t0 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t0 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t0 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t0 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t0 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t0 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t0 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t0 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t0 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t0 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t0 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t0 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t0 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t0 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t0 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-t0 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t0 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t0 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t0 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t0 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t0 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t0 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t0 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t0 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t0 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t0 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t0 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t0 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t0 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t0 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t0 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t0 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t0 .popover.top {

  margin-top: -10px;

}

#custom-html-t0 .popover.right {

  margin-left: 10px;

}

#custom-html-t0 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t0 .popover.left {

  margin-left: -10px;

}

#custom-html-t0 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t0 .popover-content {

  padding: 9px 14px;

}

#custom-html-t0 .popover > .arrow,

#custom-html-t0 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t0 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t0 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t0 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t0 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t0 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t0 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t0 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t0 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t0 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t0 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t0 .carousel {

  position: relative;

}

#custom-html-t0 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t0 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t0 .carousel-inner > .item > a > img,

#custom-html-t0 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t0 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t0 .carousel-inner > .item.active.right,

  #custom-html-t0 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t0 .carousel-inner > .item.active.left,

  #custom-html-t0 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t0 .carousel-inner > .item.active,

  #custom-html-t0 .carousel-inner > .item.next.left,

  #custom-html-t0 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t0 .carousel-inner > .active,

#custom-html-t0 .carousel-inner > .next,

#custom-html-t0 .carousel-inner > .prev {

  display: block;

}

#custom-html-t0 .carousel-inner > .active {

  left: 0;

}

#custom-html-t0 .carousel-inner > .next,

#custom-html-t0 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t0 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t0 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t0 .carousel-inner > .next.left,

#custom-html-t0 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t0 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t0 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t0 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t0 .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t0 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t0 .carousel-control:focus,

#custom-html-t0 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t0 .carousel-control .glyphicon-chevron-left,

#custom-html-t0 .carousel-control .glyphicon-chevron-right,

#custom-html-t0 .carousel-control .icon-next,

#custom-html-t0 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t0 .carousel-control .glyphicon-chevron-left,

#custom-html-t0 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t0 .carousel-control .glyphicon-chevron-right,

#custom-html-t0 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t0 .carousel-control .icon-next,

#custom-html-t0 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t0 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t0 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t0 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t0 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t0 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t0 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t0 .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-t0 .btn-group-vertical > .btn-group:after,

#custom-html-t0 .btn-group-vertical > .btn-group:before,

#custom-html-t0 .btn-toolbar:after,

#custom-html-t0 .btn-toolbar:before,

#custom-html-t0 .clearfix:after,

#custom-html-t0 .clearfix:before,

#custom-html-t0 .container-fluid:after,

#custom-html-t0 .container-fluid:before,

#custom-html-t0 .container:after,

#custom-html-t0 .container:before,

#custom-html-t0 .dl-horizontal dd:after,

#custom-html-t0 .dl-horizontal dd:before,

#custom-html-t0 .form-horizontal .form-group:after,

#custom-html-t0 .form-horizontal .form-group:before,

#custom-html-t0 .modal-footer:after,

#custom-html-t0 .modal-footer:before,

#custom-html-t0 .modal-header:after,

#custom-html-t0 .modal-header:before,

#custom-html-t0 .nav:after,

#custom-html-t0 .nav:before,

#custom-html-t0 .navbar-collapse:after,

#custom-html-t0 .navbar-collapse:before,

#custom-html-t0 .navbar-header:after,

#custom-html-t0 .navbar-header:before,

#custom-html-t0 .navbar:after,

#custom-html-t0 .navbar:before,

#custom-html-t0 .pager:after,

#custom-html-t0 .pager:before,

#custom-html-t0 .panel-body:after,

#custom-html-t0 .panel-body:before,

#custom-html-t0 .row:after,

#custom-html-t0 .row:before {

  display: table;

  content: " ";

}

#custom-html-t0 .btn-group-vertical > .btn-group:after,

#custom-html-t0 .btn-toolbar:after,

#custom-html-t0 .clearfix:after,

#custom-html-t0 .container-fluid:after,

#custom-html-t0 .container:after,

#custom-html-t0 .dl-horizontal dd:after,

#custom-html-t0 .form-horizontal .form-group:after,

#custom-html-t0 .modal-footer:after,

#custom-html-t0 .modal-header:after,

#custom-html-t0 .nav:after,

#custom-html-t0 .navbar-collapse:after,

#custom-html-t0 .navbar-header:after,

#custom-html-t0 .navbar:after,

#custom-html-t0 .pager:after,

#custom-html-t0 .panel-body:after,

#custom-html-t0 .row:after {

  clear: both;

}

#custom-html-t0 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t0 .pull-right {

  float: right !important;

}

#custom-html-t0 .pull-left {

  float: left !important;

}

#custom-html-t0 .hide {

  display: none !important;

}

#custom-html-t0 .show {

  display: block !important;

}

#custom-html-t0 .invisible {

  visibility: hidden;

}

#custom-html-t0 .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t0 .hidden {

  display: none !important;

}

#custom-html-t0 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t0 .visible-lg,

#custom-html-t0 .visible-md,

#custom-html-t0 .visible-sm,

#custom-html-t0 .visible-xs {

  display: none !important;

}

#custom-html-t0 .visible-lg-block,

#custom-html-t0 .visible-lg-inline,

#custom-html-t0 .visible-lg-inline-block,

#custom-html-t0 .visible-md-block,

#custom-html-t0 .visible-md-inline,

#custom-html-t0 .visible-md-inline-block,

#custom-html-t0 .visible-sm-block,

#custom-html-t0 .visible-sm-inline,

#custom-html-t0 .visible-sm-inline-block,

#custom-html-t0 .visible-xs-block,

#custom-html-t0 .visible-xs-inline,

#custom-html-t0 .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t0 .visible-sm {

    display: block !important;

  }

  #custom-html-t0 table.visible-sm {

    display: table !important;

  }

  #custom-html-t0 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t0 td.visible-sm,

  #custom-html-t0 th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-t0 .visible-sm-block {

    display: block !important;

  }

  #custom-html-t0 .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-t0 .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-t0 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t0 .visible-md {

    display: block !important;

  }

  #custom-html-t0 table.visible-md {

    display: table !important;

  }

  #custom-html-t0 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t0 td.visible-md,

  #custom-html-t0 th.visible-md {

    display: table-cell !important;

  }

  #custom-html-t0 .visible-md-block {

    display: block !important;

  }

  #custom-html-t0 .visible-md-inline {

    display: inline !important;

  }

  #custom-html-t0 .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-t0 .hidden-md {

    display: none !important;

  }

}

#custom-html-t0 .visible-print {

  display: none !important;

}

#custom-html-t0 .visible-print-block {

  display: none !important;

}

#custom-html-t0 .visible-print-inline {

  display: none !important;

}

#custom-html-t0 .visible-print-inline-block {

  display: none !important;

}

#custom-html-t0 .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-t0 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t0 .intl-tel-input .hide {

  display: none;

}

#custom-html-t0 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t0 .intl-tel-input input,

#custom-html-t0 .intl-tel-input input[type=tel],

#custom-html-t0 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t0 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t0 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t0 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t0 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t0 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t0 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t0 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t0 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t0 .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-t0 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t0 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t0 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t0 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t0 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t0 .intl-tel-input .country-list .country-name,

#custom-html-t0 .intl-tel-input .country-list .dial-code,

#custom-html-t0 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t0 .intl-tel-input .country-list .country-name,

#custom-html-t0 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t0 .intl-tel-input.allow-dropdown input,

#custom-html-t0 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t0 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t0 .intl-tel-input.separate-dial-code input,

#custom-html-t0 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t0 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t0 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t0 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t0 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t0 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t0 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t0 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t0 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t0 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t0 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t0 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t0 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t0 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t0 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t0 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t0 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t0 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t0 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-t0 .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t0 .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t0 .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t0 .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t0 .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-t0 .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t0 .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t0 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t0 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t0 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t0 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t0 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t0 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t0 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t0 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t0 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t0 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t0 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t0 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t0 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t0 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t0 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t0 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t0 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t0 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t0 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t0 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t0 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t0 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t0 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t0 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t0 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t0 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t0 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t0 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t0 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t0 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t0 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t0 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t0 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t0 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t0 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t0 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t0 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t0 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t0 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t0 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t0 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t0 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t0 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t0 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t0 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t0 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t0 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t0 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t0 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t0 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t0 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t0 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t0 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t0 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t0 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t0 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t0 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t0 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t0 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t0 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t0 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t0 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t0 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t0 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t0 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t0 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t0 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t0 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t0 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t0 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t0 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t0 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t0 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t0 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t0 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t0 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t0 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t0 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t0 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t0 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t0 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t0 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t0 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t0 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t0 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t0 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t0 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t0 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t0 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t0 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t0 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t0 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t0 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t0 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t0 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t0 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t0 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t0 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t0 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t0 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t0 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t0 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t0 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-t0 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t0 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t0 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t0 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t0 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t0 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t0 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t0 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t0 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t0 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t0 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t0 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t0 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t0 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t0 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t0 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t0 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t0 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t0 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t0 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t0 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t0 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t0 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t0 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t0 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t0 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t0 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t0 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t0 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t0 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t0 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t0 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t0 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t0 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t0 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t0 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t0 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t0 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t0 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t0 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t0 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t0 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t0 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t0 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t0 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t0 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t0 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t0 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t0 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t0 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t0 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t0 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t0 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t0 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t0 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t0 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t0 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t0 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t0 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t0 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t0 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t0 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t0 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t0 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t0 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t0 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t0 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t0 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t0 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t0 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t0 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t0 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t0 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t0 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t0 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t0 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t0 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t0 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t0 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t0 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t0 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t0 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t0 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t0 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t0 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t0 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t0 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t0 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t0 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t0 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t0 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t0 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t0 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t0 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t0 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t0 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t0 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t0 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t0 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t0 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t0 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t0 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t0 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t0 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t0 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t0 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t0 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t0 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t0 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t0 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t0 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t0 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t0 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t0 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t0 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t0 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t0 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t0 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t0 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-t0 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t0 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t0 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t0 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t0 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t0 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t0 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t0 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t0 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t0 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t0 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t0 .iti-flag.um {


  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t0 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t0 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t0 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t0 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t0 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-t0 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t0 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t0 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t0 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t0 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t0 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t0 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t0 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t0 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t0 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t0 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t0 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t0 body,

#custom-html-t0 button,

#custom-html-t0 input,

#custom-html-t0 select,

#custom-html-t0 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t0 h1,

#custom-html-t0 h2,

#custom-html-t0 h3,

#custom-html-t0 h4,

#custom-html-t0 h5,

#custom-html-t0 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-t0 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t0 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t0 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t0 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t0 .navbar-main .navbar-nav > .active > a,

#custom-html-t0 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t0 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t0 .navbar-main .navbar-nav > .open > a,

#custom-html-t0 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t0 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t0 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t0 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t0 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t0 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-t0 .navbar-header {

    float: none;

  }

  #custom-html-t0 .navbar-left,

  #custom-html-t0 .navbar-right {

    float: none !important;

  }

  #custom-html-t0 .navbar-toggle {

    display: block;

  }

  #custom-html-t0 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t0 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t0 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t0 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t0 .navbar-nav > li {

    float: none;

  }

  #custom-html-t0 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t0 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-t0 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t0 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t0 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-t0 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t0 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t0 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-t0 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t0 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t0 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t0 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t0 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t0 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-t0 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t0 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-t0 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t0 a.list-group-item.active,

#custom-html-t0 a.list-group-item.active:focus,

#custom-html-t0 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t0 .dropdown-menu > li > a:focus,

#custom-html-t0 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t0 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t0 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t0 body,

#custom-html-t0 html {

  height: 100%;

}

#custom-html-t0 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t0 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t0 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t0 section#header .search {

  margin: 20px 0;

}

#custom-html-t0 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t0 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t0 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t0 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t0 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t0 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t0 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t0 section#footer {

    line-height: 32px;

  }

}

#custom-html-t0 section#footer .back-to-top {

  float: right;

}

#custom-html-t0 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t0 .adminreturndiv {

  display: none !important;

}

#custom-html-t0 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t0 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t0 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t0 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t0 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t0 .navbar-main .navbar-toggle:focus,

#custom-html-t0 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t0 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t0 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-t0 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t0 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t0 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t0 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t0 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t0 .h1,

  #custom-html-t0 h1 {

    font-size: 26px;

  }

  #custom-html-t0 .h2,

  #custom-html-t0 h2 {

    font-size: 20px;

  }

  #custom-html-t0 .h3,

  #custom-html-t0 h3 {

    font-size: 16px;

  }

  #custom-html-t0 .h4,

  #custom-html-t0 h4 {

    font-size: 14px;

  }

  #custom-html-t0 .h5,

  #custom-html-t0 h5 {

    font-size: 12px;

  }

  #custom-html-t0 .h6,

  #custom-html-t0 h6 {

    font-size: 11px;

  }

  #custom-html-t0 div.header-lined small {

    display: none;

  }

  #custom-html-t0 .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-t0 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t0 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t0 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t0 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-t0 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t0 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t0 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t0 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t0 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t0 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-t0 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t0 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t0 .margin-10 {

  margin: 10px;

}

#custom-html-t0 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t0 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t0 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t0 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t0 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t0 .input-inline {

  display: inline-block;

}

#custom-html-t0 .input-inline-100 {

  width: 100px;

}

#custom-html-t0 .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-t0 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t0 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t0 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-t0 i.icon-rss {

  color: #ff6600;

}

#custom-html-t0 section#main-menu {

  background-color: #000000;

}

#custom-html-t0 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t0 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t0 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t0 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t0 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t0 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t0 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t0 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t0 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t0 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t0 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t0 section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-t0 .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-t0 .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-t0 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t0 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t0 .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-t0 #stepResults {

    font-size: 14px;

  }

  #custom-html-t0 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t0 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-t0 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t0 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t0 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t0 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t0 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t0 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t0 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t0 .home-shortcuts li span {

  display: none;

}

#custom-html-t0 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t0 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-t0 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t0 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t0 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t0 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t0 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t0 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t0 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t0 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t0 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t0 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t0 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t0 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t0 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t0 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t0 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t0 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t0 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t0 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t0 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t0 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t0 .tiles .tile:last-child {

  border: 0;

}

#custom-html-t0 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t0 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t0 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t0 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t0 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t0 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t0 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t0 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t0 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t0 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t0 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t0 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t0 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t0 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t0 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t0 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t0 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t0 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t0 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t0 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t0 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t0 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t0 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t0 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t0 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t0 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t0 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t0 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t0 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t0 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t0 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t0 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t0 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t0 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t0 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t0 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t0 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t0 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t0 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t0 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t0 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t0 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t0 ul.top-nav > li,

#custom-html-t0 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t0 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t0 ul.top-nav > li:active > a,

#custom-html-t0 ul.top-nav > li:focus > a,

#custom-html-t0 ul.top-nav > li:hover > a,

#custom-html-t0 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t0 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t0 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t0 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t0 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-t0 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t0 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t0 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t0 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t0 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t0 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t0 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t0 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-t0 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t0 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-t0 .domain-check-availability {

  width: 100px;

}

#custom-html-t0 .domain-step-options {

  min-height: 300px;

}

#custom-html-t0 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t0 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t0 .domain-checker-invalid,

#custom-html-t0 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t0 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t0 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t0 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t0 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t0 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t0 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t0 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t0 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-t0 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t0 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t0 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t0 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t0 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t0 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t0 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t0 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t0 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t0 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t0 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t0 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t0 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t0 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t0 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t0 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t0 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t0 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t0 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t0 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t0 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t0 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t0 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t0 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t0 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t0 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t0 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t0 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t0 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t0 div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t0 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t0 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t0 .product-status-active {

  background-color: #46a546;

}

#custom-html-t0 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t0 .product-status-cancelled,

#custom-html-t0 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t0 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t0 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t0 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t0 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t0 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t0 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t0 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t0 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t0 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t0 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t0 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t0 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t0 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t0 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-t0 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t0 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t0 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t0 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t0 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t0 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t0 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t0 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t0 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t0 .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-t0 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t0 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t0 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t0 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t0 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t0 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t0 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t0 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t0 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t0 .status-pending {

  color: #d9534f;

}

#custom-html-t0 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t0 .status-active,

#custom-html-t0 .status-completed,

#custom-html-t0 .status-open {

  color: #3fad46;

}

#custom-html-t0 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t0 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t0 .status-answered,

#custom-html-t0 .status-fraud {

  color: #000000;

}

#custom-html-t0 .status-expired,

#custom-html-t0 .status-transferred.away {

  color: #004258;

}

#custom-html-t0 .status-cancelled {

  color: #87939f;

}

#custom-html-t0 .status-terminated {

  color: #666666;

}

#custom-html-t0 .status-onhold {

  color: #224488;

}

#custom-html-t0 .status-inprogress {

  color: #cc0000;

}

#custom-html-t0 .status-closed {

  color: #888888;

}

#custom-html-t0 .status-paid {

  color: #498302;

}

#custom-html-t0 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t0 .status-collections {

  color: #9a141e;

}

#custom-html-t0 .status-refunded {

  color: #319fc3;

}

#custom-html-t0 .status-delivered {

  color: #224488;

}

#custom-html-t0 .status-accepted {

  color: #498302;

}

#custom-html-t0 .status-dead,

#custom-html-t0 .status-lost {

  color: #000000;

}

#custom-html-t0 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t0 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t0 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t0 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t0 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t0 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t0 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t0 .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-t0 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t0 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t0 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t0 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t0 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t0 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t0 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t0 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t0 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t0 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t0 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t0 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t0 .ticket-reply .rating,

#custom-html-t0 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t0 .ticket-reply .rating span.star,

#custom-html-t0 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t0 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t0 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t0 .ticket-reply .rating span.star:before,

#custom-html-t0 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t0 .ticket-reply .rating span.star:hover:before,

#custom-html-t0 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t0 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t0 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t0 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t0 .ticket-reply .clear {

  clear: both;

}

#custom-html-t0 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t0 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t0 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t0 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t0 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t0 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t0 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t0 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t0 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t0 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-t0 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t0 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t0 .popover-user-notifications ul li i.far,

#custom-html-t0 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t0 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t0 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t0 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t0 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t0 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t0 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t0 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t0 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t0 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t0 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t0 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t0 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t0 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t0 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t0 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t0 div.credit-card div.end {

  clear: both;

}

#custom-html-t0 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t0 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t0 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t0 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t0 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t0 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t0 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t0 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t0 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t0 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t0 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t0 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t0 .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-t0 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t0 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t0 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t0 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t0 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t0 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t0 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t0 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t0 .kb-category a small {

  color: #888888;

}

#custom-html-t0 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t0 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t0 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t0 .kbarticles a.admin-inline-edit,

#custom-html-t0 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t0 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t0 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t0 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t0 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t0 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t0 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t0 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t0 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t0 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t0 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t0 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t0 #stepResults {

  font-size: 20px;

}

#custom-html-t0 #stepResults .label {

  font-size: 20px;

}

#custom-html-t0 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t0 h3.with-badge i,

#custom-html-t0 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t0 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-t0 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t0 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t0 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t0 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t0 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t0 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t0 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t0 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t0 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t0 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t0 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t0 .login-popover {

  font-size: 12px;

}

#custom-html-t0 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t0 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t0 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t0 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t0 .error-container {

  text-align: center;

}

#custom-html-t0 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t0 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t0 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t0 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t0 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t0 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t0 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t0 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t0 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t0 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-t0 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t0 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t0 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t0 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t0 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t0 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t0 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t0 .email-verification .btn:active,

#custom-html-t0 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t0 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t0 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t0 .email-verification .far,

#custom-html-t0 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-t0 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t0 .email-verification.success .far,

#custom-html-t0 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t0 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t0 .email-verification.failed .far,

#custom-html-t0 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t0 .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-t0 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t0 .md-editor > .md-preview,

#custom-html-t0 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t0 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t0 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t0 .small-font {

  font-size: 0.9em;

}

#custom-html-t0 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t0 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t0 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t0 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t0 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t0 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t0 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t0 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t0 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t0 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t0 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t0 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t0 .panel-heading i.fab,

#custom-html-t0 .panel-heading i.fal,

#custom-html-t0 .panel-heading i.far,

#custom-html-t0 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t0 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t0 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t0 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t0 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t0 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t0 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t0 .panel-sidebar .list-group-item.disabled,

#custom-html-t0 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t0 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t0 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t0 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t0 .panel-sidebar a.list-group-item.active,

#custom-html-t0 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t0 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t0 .panel-sidebar a.list-group-item.active i,

#custom-html-t0 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t0 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t0 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t0 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t0 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t0 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t0 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t0 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t0 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t0 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t0 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t0 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t0 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t0 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t0 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t0 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-t0 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t0 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t0 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t0 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t0 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t0 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t0 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t0 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t0 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t0 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t0 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t0 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t0 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-t0 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t0 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t0 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t0 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t0 .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-t0 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t0 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t0 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t0 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t0 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t0 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t0 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t0 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t0 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t0 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t0 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t0 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t0 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t0 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t0 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t0 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t0 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t0 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t0 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t0 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t0 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t0 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t0 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t0 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t0 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t0 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t0 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t0 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t0 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t0 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t0 .panel-mc-sso .btn,

#custom-html-t0 .panel-mc-sso .form-control,

#custom-html-t0 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t0 .panel-mc-sso small {

  display: block;

}

#custom-html-t0 .social-signin-btns {

  text-align: center;

}

#custom-html-t0 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t0 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t0 .btn-social i.far,

#custom-html-t0 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-facebook.active,

#custom-html-t0 .btn-facebook:active,

#custom-html-t0 .btn-facebook:focus,

#custom-html-t0 .btn-facebook:hover,

#custom-html-t0 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-facebook.active,

#custom-html-t0 .btn-facebook:active,

#custom-html-t0 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t0 .btn-facebook.disabled,

#custom-html-t0 .btn-facebook.disabled.active,

#custom-html-t0 .btn-facebook.disabled:active,

#custom-html-t0 .btn-facebook.disabled:focus,

#custom-html-t0 .btn-facebook.disabled:hover,

#custom-html-t0 .btn-facebook[disabled],

#custom-html-t0 .btn-facebook[disabled].active,

#custom-html-t0 .btn-facebook[disabled]:active,

#custom-html-t0 .btn-facebook[disabled]:focus,

#custom-html-t0 .btn-facebook[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-facebook,

#custom-html-t0 fieldset[disabled] .btn-facebook.active,

#custom-html-t0 fieldset[disabled] .btn-facebook:active,

#custom-html-t0 fieldset[disabled] .btn-facebook:focus,

#custom-html-t0 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-google.active,

#custom-html-t0 .btn-google:active,

#custom-html-t0 .btn-google:focus,

#custom-html-t0 .btn-google:hover,

#custom-html-t0 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-google.active,

#custom-html-t0 .btn-google:active,

#custom-html-t0 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t0 .btn-google-plus.disabled.active,

#custom-html-t0 .btn-google-plus.disabled:active,

#custom-html-t0 .btn-google-plus.disabled:focus,

#custom-html-t0 .btn-google-plus[disabled].active,

#custom-html-t0 .btn-google-plus[disabled]:active,

#custom-html-t0 .btn-google-plus[disabled]:focus,

#custom-html-t0 .btn-google-plus[disabled]:hover,

#custom-html-t0 .btn-google.disabled,

#custom-html-t0 .btn-google.disabled:hover,

#custom-html-t0 .btn-google[disabled],

#custom-html-t0 fieldset[disabled] .btn-google,

#custom-html-t0 fieldset[disabled] .btn-google-plus.active,

#custom-html-t0 fieldset[disabled] .btn-google-plus:active,

#custom-html-t0 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t0 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-twitter.active,

#custom-html-t0 .btn-twitter:active,

#custom-html-t0 .btn-twitter:focus,

#custom-html-t0 .btn-twitter:hover,

#custom-html-t0 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-twitter.active,

#custom-html-t0 .btn-twitter:active,

#custom-html-t0 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t0 .btn-twitter.disabled,

#custom-html-t0 .btn-twitter.disabled.active,

#custom-html-t0 .btn-twitter.disabled:active,

#custom-html-t0 .btn-twitter.disabled:focus,

#custom-html-t0 .btn-twitter.disabled:hover,

#custom-html-t0 .btn-twitter[disabled],

#custom-html-t0 .btn-twitter[disabled].active,

#custom-html-t0 .btn-twitter[disabled]:active,

#custom-html-t0 .btn-twitter[disabled]:focus,

#custom-html-t0 .btn-twitter[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-twitter,

#custom-html-t0 fieldset[disabled] .btn-twitter.active,

#custom-html-t0 fieldset[disabled] .btn-twitter:active,

#custom-html-t0 fieldset[disabled] .btn-twitter:focus,

#custom-html-t0 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t0 .providerLinkingFeedback {

  display: none;

}

#custom-html-t0 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t0 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t0 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t0 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t0 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t0 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t0 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t0 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t0 #registration .field,

#custom-html-t0 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t0 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t0 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t0 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t0 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t0 #registration textarea.field {

  height: auto;

}

#custom-html-t0 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t0 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t0 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t0 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t0 #registration .field[disabled],

#custom-html-t0 #registration .field[readonly],

#custom-html-t0 #registration .form-control[disabled],

#custom-html-t0 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t0 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t0 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t0 .upgrade .product-to-be-upgraded h4,

#custom-html-t0 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t0 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t0 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t0 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t0 .upgrade .products .product .current,

#custom-html-t0 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t0 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t0 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t0 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-t0 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t0 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t0 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t0 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t0 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t0 .upgrade .products .far,

#custom-html-t0 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t0 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t0 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t0 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t0 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t0 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t0 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .bootstrap-switch input[type=checkbox],

#custom-html-t0 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t0 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t0 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t0 .md-editor .md-footer,

#custom-html-t0 .md-editor > .md-header {


  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t0 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t0 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t0 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t0 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t0 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t0 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t0 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t0 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t0 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t0 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t0 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t0 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t0 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t0 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t0 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t0 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t0 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t0 table.dataTable td,

#custom-html-t0 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t0 table.dataTable td.dataTables_empty,

#custom-html-t0 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t0 table.dataTable.nowrap td,

#custom-html-t0 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t0 table.dataTable thead > tr > td.sorting,

#custom-html-t0 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t0 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t0 table.dataTable thead > tr > th.sorting,

#custom-html-t0 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t0 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t0 table.dataTable thead > tr > td:active,

#custom-html-t0 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t0 table.dataTable thead .sorting,

#custom-html-t0 table.dataTable thead .sorting_asc,

#custom-html-t0 table.dataTable thead .sorting_asc_disabled,

#custom-html-t0 table.dataTable thead .sorting_desc,

#custom-html-t0 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t0 table.dataTable thead .sorting:after,

#custom-html-t0 table.dataTable thead .sorting_asc:after,

#custom-html-t0 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t0 table.dataTable thead .sorting_desc:after,

#custom-html-t0 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t0 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t0 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t0 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t0 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t0 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t0 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t0 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t0 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t0 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t0 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t0 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t0 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t0 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-t0 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t0 table.dataTable.table-condensed .sorting:after,

#custom-html-t0 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t0 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t0 table.table-bordered.dataTable td,

#custom-html-t0 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t0 table.table-bordered.dataTable td:last-child,

#custom-html-t0 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t0 table.table-bordered.dataTable tbody td,

#custom-html-t0 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t0 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t0 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t0 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t0 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t0 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t0 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t0 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t0 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t0 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t0 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t0 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t0 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t0 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t0 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t0 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t0 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t0 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t0 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t0 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t0 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t0 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t0 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t0 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t0 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t0 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-t0 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t0 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t0 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t0 .multiselect-container > li {

  padding: 0;

}

#custom-html-t0 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t0 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t0 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t0 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t0 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t0 .multiselect-container > li > a > label.checkbox,

#custom-html-t0 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t0 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t0 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t0 .form-inline .multiselect-container label.checkbox,

#custom-html-t0 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t0 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t0 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-t0 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-t0 body {

  margin: 0;

}

#custom-html-t0 article,

#custom-html-t0 aside,

#custom-html-t0 details,

#custom-html-t0 figcaption,

#custom-html-t0 figure,

#custom-html-t0 footer,

#custom-html-t0 header,

#custom-html-t0 hgroup,

#custom-html-t0 main,

#custom-html-t0 menu,

#custom-html-t0 nav,

#custom-html-t0 section,

#custom-html-t0 summary {

  display: block;

}

#custom-html-t0 audio,

#custom-html-t0 canvas,

#custom-html-t0 progress,

#custom-html-t0 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t0 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t0 [hidden],

#custom-html-t0 template {

  display: none;

}

#custom-html-t0 a {

  background-color: transparent;

}

#custom-html-t0 a:active,

#custom-html-t0 a:hover {

  outline: 0;

}

#custom-html-t0 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t0 b,

#custom-html-t0 strong {

  font-weight: 700;

}

#custom-html-t0 dfn {

  font-style: italic;

}

#custom-html-t0 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t0 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t0 small {

  font-size: 80%;

}

#custom-html-t0 sub,

#custom-html-t0 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t0 sup {

  top: -0.5em;

}

#custom-html-t0 sub {

  bottom: -0.25em;

}

#custom-html-t0 img {

  border: 0;

}

#custom-html-t0 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t0 figure {

  margin: 1em 40px;

}

#custom-html-t0 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t0 pre {

  overflow: auto;

}

#custom-html-t0 code,

#custom-html-t0 kbd,

#custom-html-t0 pre,

#custom-html-t0 samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-t0 button,

#custom-html-t0 input,

#custom-html-t0 optgroup,

#custom-html-t0 select,

#custom-html-t0 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t0 button {

  overflow: visible;

}

#custom-html-t0 button,

#custom-html-t0 select {

  text-transform: none;

}

#custom-html-t0 button,

#custom-html-t0 html input[type=button],

#custom-html-t0 input[type=reset],

#custom-html-t0 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t0 button[disabled],

#custom-html-t0 html input[disabled] {

  cursor: default;

}

#custom-html-t0 button::-moz-focus-inner,

#custom-html-t0 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t0 input {

  line-height: normal;

}

#custom-html-t0 input[type=checkbox],

#custom-html-t0 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-t0 input[type=number]::-webkit-inner-spin-button,

#custom-html-t0 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t0 input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-t0 input[type=search]::-webkit-search-cancel-button,

#custom-html-t0 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t0 fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-t0 legend {

  padding: 0;

  border: 0;

}

#custom-html-t0 textarea {

  overflow: auto;

}

#custom-html-t0 optgroup {

  font-weight: 700;

}

#custom-html-t0 table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-t0 td,

#custom-html-t0 th {

  padding: 0;

}

@media print {

  #custom-html-t0 *,

  #custom-html-t0 :after,

  #custom-html-t0 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t0 a,

  #custom-html-t0 a:visited {

    text-decoration: underline;

  }

  #custom-html-t0 a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-t0 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t0 a[href^="#"]:after,

  #custom-html-t0 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t0 blockquote,

  #custom-html-t0 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t0 thead {

    display: table-header-group;

  }

  #custom-html-t0 img,

  #custom-html-t0 tr {

    page-break-inside: avoid;

  }

  #custom-html-t0 img {

    max-width: 100% !important;

  }

  #custom-html-t0 h2,

  #custom-html-t0 h3,

  #custom-html-t0 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t0 h2,

  #custom-html-t0 h3 {

    page-break-after: avoid;

  }

  #custom-html-t0 .navbar {

    display: none;

  }

  #custom-html-t0 .btn > .caret,

  #custom-html-t0 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t0 .label {

    border: 1px solid #000000;

  }

  #custom-html-t0 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t0 .table td,

  #custom-html-t0 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t0 .table-bordered td,

  #custom-html-t0 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t0 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t0 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t0 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t0 .glyphicon-eur:before,

#custom-html-t0 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t0 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t0 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t0 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t0 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t0 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t0 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t0 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t0 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-t0 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t0 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t0 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t0 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t0 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t0 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t0 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t0 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t0 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t0 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t0 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t0 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t0 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t0 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t0 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t0 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t0 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t0 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t0 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t0 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t0 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t0 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t0 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t0 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t0 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t0 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t0 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t0 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t0 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t0 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t0 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t0 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t0 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t0 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t0 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t0 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t0 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t0 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t0 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t0 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t0 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t0 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t0 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t0 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t0 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t0 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t0 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t0 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t0 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t0 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t0 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t0 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t0 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t0 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t0 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t0 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t0 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t0 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t0 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t0 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t0 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t0 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t0 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t0 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t0 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t0 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t0 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t0 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t0 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t0 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t0 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t0 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t0 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t0 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t0 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t0 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t0 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t0 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t0 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t0 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t0 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t0 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t0 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t0 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t0 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t0 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t0 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t0 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t0 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t0 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t0 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t0 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t0 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t0 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t0 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t0 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t0 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t0 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t0 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t0 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t0 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t0 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t0 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t0 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t0 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t0 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t0 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t0 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t0 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t0 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t0 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t0 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t0 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-t0 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t0 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t0 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t0 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t0 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t0 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t0 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t0 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t0 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t0 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t0 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t0 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t0 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t0 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t0 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t0 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t0 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t0 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t0 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t0 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t0 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t0 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t0 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t0 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t0 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t0 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t0 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t0 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t0 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t0 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-t0 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t0 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t0 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t0 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t0 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t0 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t0 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t0 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t0 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t0 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t0 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t0 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t0 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t0 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t0 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t0 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t0 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t0 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t0 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t0 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t0 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t0 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t0 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t0 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t0 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t0 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t0 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t0 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t0 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t0 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t0 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t0 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t0 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t0 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t0 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t0 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t0 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t0 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t0 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t0 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t0 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t0 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t0 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t0 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t0 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t0 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t0 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t0 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t0 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t0 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t0 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t0 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t0 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t0 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t0 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t0 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t0 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t0 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t0 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t0 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t0 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t0 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t0 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t0 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t0 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t0 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t0 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-t0 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t0 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t0 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t0 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t0 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t0 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t0 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t0 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t0 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t0 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t0 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t0 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t0 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t0 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t0 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t0 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t0 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t0 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t0 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t0 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t0 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t0 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t0 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t0 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t0 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t0 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t0 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t0 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t0 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t0 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t0 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t0 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t0 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t0 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t0 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t0 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t0 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t0 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t0 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t0 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t0 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t0 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t0 :after,

#custom-html-t0 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t0 html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t0 body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-t0 button,

#custom-html-t0 input,

#custom-html-t0 select,

#custom-html-t0 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t0 a {

  color: #000;

  text-decoration: none;

}

#custom-html-t0 a:focus,

#custom-html-t0 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t0 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t0 figure {

  margin: 0;

}

#custom-html-t0 img {

  vertical-align: middle;

}

#custom-html-t0 .carousel-inner > .item > a > img,

#custom-html-t0 .carousel-inner > .item > img,

#custom-html-t0 .img-responsive,

#custom-html-t0 .thumbnail a > img,

#custom-html-t0 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t0 .img-rounded {

  border-radius: 6px;

}

#custom-html-t0 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t0 .img-circle {

  border-radius: 50%;

}

#custom-html-t0 hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t0 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t0 .sr-only-focusable:active,

#custom-html-t0 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t0 [role=button] {

  cursor: pointer;

}

#custom-html-t0 .h1,

#custom-html-t0 .h2,

#custom-html-t0 .h3,

#custom-html-t0 .h4,

#custom-html-t0 .h5,

#custom-html-t0 .h6,

#custom-html-t0 h1,

#custom-html-t0 h2,

#custom-html-t0 h3,

#custom-html-t0 h4,

#custom-html-t0 h5,

#custom-html-t0 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t0 .h1 .small,

#custom-html-t0 .h1 small,

#custom-html-t0 .h2 .small,

#custom-html-t0 .h2 small,

#custom-html-t0 .h3 .small,

#custom-html-t0 .h3 small,

#custom-html-t0 .h4 .small,

#custom-html-t0 .h4 small,

#custom-html-t0 .h5 .small,

#custom-html-t0 .h5 small,

#custom-html-t0 .h6 .small,

#custom-html-t0 .h6 small,

#custom-html-t0 h1 .small,

#custom-html-t0 h1 small,

#custom-html-t0 h2 .small,

#custom-html-t0 h2 small,

#custom-html-t0 h3 .small,

#custom-html-t0 h3 small,

#custom-html-t0 h4 .small,

#custom-html-t0 h4 small,

#custom-html-t0 h5 .small,

#custom-html-t0 h5 small,

#custom-html-t0 h6 .small,

#custom-html-t0 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t0 .h1,

#custom-html-t0 .h2,

#custom-html-t0 .h3,

#custom-html-t0 h1,

#custom-html-t0 h2,

#custom-html-t0 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t0 .h1 .small,

#custom-html-t0 .h1 small,

#custom-html-t0 .h2 .small,

#custom-html-t0 .h2 small,

#custom-html-t0 .h3 .small,

#custom-html-t0 .h3 small,

#custom-html-t0 h1 .small,

#custom-html-t0 h1 small,

#custom-html-t0 h2 .small,

#custom-html-t0 h2 small,

#custom-html-t0 h3 .small,

#custom-html-t0 h3 small {

  font-size: 65%;

}

#custom-html-t0 .h4,

#custom-html-t0 .h5,

#custom-html-t0 .h6,

#custom-html-t0 h4,

#custom-html-t0 h5,

#custom-html-t0 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t0 .h4 .small,

#custom-html-t0 .h4 small,

#custom-html-t0 .h5 .small,

#custom-html-t0 .h5 small,

#custom-html-t0 .h6 .small,

#custom-html-t0 .h6 small,

#custom-html-t0 h4 .small,

#custom-html-t0 h4 small,

#custom-html-t0 h5 .small,

#custom-html-t0 h5 small,

#custom-html-t0 h6 .small,

#custom-html-t0 h6 small {

  font-size: 75%;

}

#custom-html-t0 .h1,

#custom-html-t0 h1 {

  font-size: 36px;

}

#custom-html-t0 .h2,

#custom-html-t0 h2 {

  font-size: 30px;

}

#custom-html-t0 .h3,

#custom-html-t0 h3 {

  font-size: 24px;

}

#custom-html-t0 .h4,

#custom-html-t0 h4 {

  font-size: 18px;

}

#custom-html-t0 .h5,

#custom-html-t0 h5 {

  font-size: 14px;

}

#custom-html-t0 .h6,

#custom-html-t0 h6 {

  font-size: 12px;

}

#custom-html-t0 p {

  margin: 0 0 10px;

}

#custom-html-t0 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t0 .lead {

    font-size: 21px;

  }

}

#custom-html-t0 .small,

#custom-html-t0 small {

  font-size: 85%;

}

#custom-html-t0 .mark,

#custom-html-t0 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t0 .text-left {

  text-align: left;

}

#custom-html-t0 .text-right {

  text-align: right;

}

#custom-html-t0 .text-center {

  text-align: center;

}

#custom-html-t0 .text-justify {

  text-align: justify;

}

#custom-html-t0 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t0 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t0 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t0 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t0 .text-muted {

  color: #777777;

}

#custom-html-t0 .text-primary {

  color: #000000;

}

#custom-html-t0 a.text-primary:focus,

#custom-html-t0 a.text-primary:hover {

  color: #000000;

}

#custom-html-t0 .text-success {

  color: #3c763d;

}

#custom-html-t0 a.text-success:focus,

#custom-html-t0 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t0 .text-info {

  color: #31708f;

}

#custom-html-t0 a.text-info:focus,

#custom-html-t0 a.text-info:hover {

  color: #000000;

}

#custom-html-t0 .text-warning {

  color: #8a6d3b;

}

#custom-html-t0 a.text-warning:focus,

#custom-html-t0 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t0 .text-danger {

  color: #a94442;

}

#custom-html-t0 a.text-danger:focus,

#custom-html-t0 a.text-danger:hover {

  color: #843534;

}

#custom-html-t0 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t0 a.bg-primary:focus,

#custom-html-t0 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t0 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t0 a.bg-success:focus,

#custom-html-t0 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t0 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t0 a.bg-info:focus,

#custom-html-t0 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t0 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t0 a.bg-warning:focus,

#custom-html-t0 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t0 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t0 a.bg-danger:focus,

#custom-html-t0 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t0 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t0 ol,

#custom-html-t0 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t0 ol ol,

#custom-html-t0 ol ul,

#custom-html-t0 ul ol,

#custom-html-t0 ul ul {

  margin-bottom: 0;

}

#custom-html-t0 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t0 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t0 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t0 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t0 dd,

#custom-html-t0 dt {

  line-height: 1.42857143;

}

#custom-html-t0 dt {

  font-weight: 700;

}

#custom-html-t0 dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t0 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t0 .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-t0 abbr[data-original-title],

#custom-html-t0 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t0 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t0 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t0 blockquote ol:last-child,

#custom-html-t0 blockquote p:last-child,

#custom-html-t0 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t0 blockquote .small,

#custom-html-t0 blockquote footer,

#custom-html-t0 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-t0 blockquote .small:before,

#custom-html-t0 blockquote footer:before,

#custom-html-t0 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t0 .blockquote-reverse,

#custom-html-t0 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t0 .blockquote-reverse .small:before,

#custom-html-t0 .blockquote-reverse footer:before,

#custom-html-t0 .blockquote-reverse small:before,

#custom-html-t0 blockquote.pull-right .small:before,

#custom-html-t0 blockquote.pull-right footer:before,

#custom-html-t0 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t0 .blockquote-reverse .small:after,

#custom-html-t0 .blockquote-reverse footer:after,

#custom-html-t0 .blockquote-reverse small:after,

#custom-html-t0 blockquote.pull-right .small:after,

#custom-html-t0 blockquote.pull-right footer:after,

#custom-html-t0 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t0 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t0 code,

#custom-html-t0 kbd,

#custom-html-t0 pre,

#custom-html-t0 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-t0 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t0 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t0 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t0 pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t0 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t0 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t0 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-t0 .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-t0 .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t0 .container {

    width: 1170px;

  }

}

#custom-html-t0 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t0 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t0 .col-lg-1,

#custom-html-t0 .col-lg-10,

#custom-html-t0 .col-lg-11,

#custom-html-t0 .col-lg-12,

#custom-html-t0 .col-lg-2,

#custom-html-t0 .col-lg-3,

#custom-html-t0 .col-lg-4,

#custom-html-t0 .col-lg-5,

#custom-html-t0 .col-lg-6,

#custom-html-t0 .col-lg-7,

#custom-html-t0 .col-lg-8,

#custom-html-t0 .col-lg-9,

#custom-html-t0 .col-md-1,

#custom-html-t0 .col-md-10,

#custom-html-t0 .col-md-11,

#custom-html-t0 .col-md-12,

#custom-html-t0 .col-md-2,

#custom-html-t0 .col-md-3,

#custom-html-t0 .col-md-4,

#custom-html-t0 .col-md-5,

#custom-html-t0 .col-md-6,

#custom-html-t0 .col-md-7,

#custom-html-t0 .col-md-8,

#custom-html-t0 .col-md-9,

#custom-html-t0 .col-sm-1,

#custom-html-t0 .col-sm-10,

#custom-html-t0 .col-sm-11,

#custom-html-t0 .col-sm-12,

#custom-html-t0 .col-sm-2,

#custom-html-t0 .col-sm-3,

#custom-html-t0 .col-sm-4,

#custom-html-t0 .col-sm-5,

#custom-html-t0 .col-sm-6,

#custom-html-t0 .col-sm-7,

#custom-html-t0 .col-sm-8,

#custom-html-t0 .col-sm-9,

#custom-html-t0 .col-xs-1,

#custom-html-t0 .col-xs-10,

#custom-html-t0 .col-xs-11,

#custom-html-t0 .col-xs-12,

#custom-html-t0 .col-xs-2,

#custom-html-t0 .col-xs-3,

#custom-html-t0 .col-xs-4,

#custom-html-t0 .col-xs-5,

#custom-html-t0 .col-xs-6,

#custom-html-t0 .col-xs-7,

#custom-html-t0 .col-xs-8,

#custom-html-t0 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t0 .col-xs-1,

#custom-html-t0 .col-xs-10,

#custom-html-t0 .col-xs-11,

#custom-html-t0 .col-xs-12,

#custom-html-t0 .col-xs-2,

#custom-html-t0 .col-xs-3,

#custom-html-t0 .col-xs-4,

#custom-html-t0 .col-xs-5,

#custom-html-t0 .col-xs-6,

#custom-html-t0 .col-xs-7,

#custom-html-t0 .col-xs-8,

#custom-html-t0 .col-xs-9 {

  float: left;

}

#custom-html-t0 .col-xs-12 {

  width: 100%;

}

#custom-html-t0 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t0 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t0 .col-xs-9 {

  width: 75%;

}

#custom-html-t0 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t0 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t0 .col-xs-6 {

  width: 50%;

}

#custom-html-t0 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t0 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-t0 .col-xs-3 {

  width: 25%;

}

#custom-html-t0 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t0 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t0 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t0 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t0 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t0 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t0 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t0 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t0 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t0 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t0 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t0 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t0 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t0 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t0 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t0 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t0 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t0 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t0 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t0 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t0 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t0 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t0 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t0 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t0 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t0 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t0 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t0 .col-xs-push-0 {

  left: auto;

}

#custom-html-t0 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t0 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t0 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t0 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t0 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t0 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t0 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t0 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t0 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t0 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t0 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t0 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t0 .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t0 .col-sm-1,

  #custom-html-t0 .col-sm-10,

  #custom-html-t0 .col-sm-11,

  #custom-html-t0 .col-sm-12,

  #custom-html-t0 .col-sm-2,

  #custom-html-t0 .col-sm-3,

  #custom-html-t0 .col-sm-4,

  #custom-html-t0 .col-sm-5,

  #custom-html-t0 .col-sm-6,

  #custom-html-t0 .col-sm-7,

  #custom-html-t0 .col-sm-8,

  #custom-html-t0 .col-sm-9 {

    float: left;

  }

  #custom-html-t0 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t0 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t0 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t0 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t0 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t0 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t0 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t0 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t0 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t0 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t0 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t0 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t0 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t0 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t0 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t0 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t0 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t0 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t0 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t0 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t0 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t0 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-t0 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t0 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t0 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t0 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t0 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t0 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t0 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t0 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t0 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t0 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t0 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t0 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t0 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t0 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t0 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t0 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t0 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t0 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t0 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t0 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t0 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t0 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t0 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t0 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t0 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t0 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t0 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t0 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t0 .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-t0 .col-md-1,

  #custom-html-t0 .col-md-10,

  #custom-html-t0 .col-md-11,

  #custom-html-t0 .col-md-12,

  #custom-html-t0 .col-md-2,

  #custom-html-t0 .col-md-3,

  #custom-html-t0 .col-md-4,

  #custom-html-t0 .col-md-5,

  #custom-html-t0 .col-md-6,

  #custom-html-t0 .col-md-7,

  #custom-html-t0 .col-md-8,

  #custom-html-t0 .col-md-9 {

    float: left;

  }

  #custom-html-t0 .col-md-12 {

    width: 100%;

  }

  #custom-html-t0 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t0 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t0 .col-md-9 {

    width: 75%;

  }

  #custom-html-t0 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t0 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t0 .col-md-6 {

    width: 50%;

  }

  #custom-html-t0 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t0 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t0 .col-md-3 {

    width: 25%;

  }

  #custom-html-t0 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t0 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t0 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t0 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t0 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t0 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t0 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t0 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t0 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t0 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t0 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t0 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t0 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t0 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t0 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t0 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t0 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t0 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t0 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t0 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t0 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t0 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t0 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t0 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t0 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-t0 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t0 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t0 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t0 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t0 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t0 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t0 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t0 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t0 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t0 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t0 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t0 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t0 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t0 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t0 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t0 .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-t0 .col-lg-1,

  #custom-html-t0 .col-lg-10,

  #custom-html-t0 .col-lg-11,

  #custom-html-t0 .col-lg-12,

  #custom-html-t0 .col-lg-2,

  #custom-html-t0 .col-lg-3,

  #custom-html-t0 .col-lg-4,

  #custom-html-t0 .col-lg-5,

  #custom-html-t0 .col-lg-6,

  #custom-html-t0 .col-lg-7,

  #custom-html-t0 .col-lg-8,

  #custom-html-t0 .col-lg-9 {

    float: left;

  }

  #custom-html-t0 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t0 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t0 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t0 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t0 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t0 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t0 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t0 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t0 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t0 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t0 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t0 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t0 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t0 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t0 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t0 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t0 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t0 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t0 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t0 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t0 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t0 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-t0 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t0 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t0 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t0 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t0 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t0 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t0 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t0 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t0 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t0 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t0 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t0 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t0 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t0 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t0 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t0 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t0 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t0 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t0 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t0 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t0 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t0 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t0 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t0 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t0 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t0 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t0 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t0 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t0 .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-t0 table {

  background-color: transparent;

}

#custom-html-t0 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t0 th {

  text-align: left;

}

#custom-html-t0 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t0 .table > tbody > tr > td,

#custom-html-t0 .table > tbody > tr > th,

#custom-html-t0 .table > tfoot > tr > td,

#custom-html-t0 .table > tfoot > tr > th,

#custom-html-t0 .table > thead > tr > td,

#custom-html-t0 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t0 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t0 .table > caption + thead > tr:first-child > td,

#custom-html-t0 .table > caption + thead > tr:first-child > th,

#custom-html-t0 .table > colgroup + thead > tr:first-child > td,

#custom-html-t0 .table > colgroup + thead > tr:first-child > th,

#custom-html-t0 .table > thead:first-child > tr:first-child > td,

#custom-html-t0 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t0 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t0 .table .table {

  background-color: #ffffff;

}

#custom-html-t0 .table-condensed > tbody > tr > td,

#custom-html-t0 .table-condensed > tbody > tr > th,

#custom-html-t0 .table-condensed > tfoot > tr > td,

#custom-html-t0 .table-condensed > tfoot > tr > th,

#custom-html-t0 .table-condensed > thead > tr > td,

#custom-html-t0 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t0 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t0 .table-bordered > tbody > tr > td,

#custom-html-t0 .table-bordered > tbody > tr > th,

#custom-html-t0 .table-bordered > tfoot > tr > td,

#custom-html-t0 .table-bordered > tfoot > tr > th,

#custom-html-t0 .table-bordered > thead > tr > td,

#custom-html-t0 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t0 .table-bordered > thead > tr > td,

#custom-html-t0 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t0 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t0 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t0 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t0 table td[class*=col-],

#custom-html-t0 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t0 .table > tbody > tr.active > td,

#custom-html-t0 .table > tbody > tr.active > th,

#custom-html-t0 .table > tbody > tr > td.active,

#custom-html-t0 .table > tbody > tr > th.active,

#custom-html-t0 .table > tfoot > tr.active > td,

#custom-html-t0 .table > tfoot > tr.active > th,

#custom-html-t0 .table > tfoot > tr > td.active,

#custom-html-t0 .table > tfoot > tr > th.active,

#custom-html-t0 .table > thead > tr.active > td,

#custom-html-t0 .table > thead > tr.active > th,

#custom-html-t0 .table > thead > tr > td.active,

#custom-html-t0 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t0 .table-hover > tbody > tr.active:hover > td,

#custom-html-t0 .table-hover > tbody > tr.active:hover > th,

#custom-html-t0 .table-hover > tbody > tr:hover > .active,

#custom-html-t0 .table-hover > tbody > tr > td.active:hover,

#custom-html-t0 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t0 .table > tbody > tr.success > td,

#custom-html-t0 .table > tbody > tr.success > th,

#custom-html-t0 .table > tbody > tr > td.success,

#custom-html-t0 .table > tbody > tr > th.success,

#custom-html-t0 .table > tfoot > tr.success > td,

#custom-html-t0 .table > tfoot > tr.success > th,

#custom-html-t0 .table > tfoot > tr > td.success,

#custom-html-t0 .table > tfoot > tr > th.success,

#custom-html-t0 .table > thead > tr.success > td,

#custom-html-t0 .table > thead > tr.success > th,

#custom-html-t0 .table > thead > tr > td.success,

#custom-html-t0 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t0 .table-hover > tbody > tr.success:hover > td,

#custom-html-t0 .table-hover > tbody > tr.success:hover > th,

#custom-html-t0 .table-hover > tbody > tr:hover > .success,

#custom-html-t0 .table-hover > tbody > tr > td.success:hover,

#custom-html-t0 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t0 .table > tbody > tr.info > td,

#custom-html-t0 .table > tbody > tr.info > th,

#custom-html-t0 .table > tbody > tr > td.info,

#custom-html-t0 .table > tbody > tr > th.info,

#custom-html-t0 .table > tfoot > tr.info > td,

#custom-html-t0 .table > tfoot > tr.info > th,

#custom-html-t0 .table > tfoot > tr > td.info,

#custom-html-t0 .table > tfoot > tr > th.info,

#custom-html-t0 .table > thead > tr.info > td,

#custom-html-t0 .table > thead > tr.info > th,

#custom-html-t0 .table > thead > tr > td.info,

#custom-html-t0 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t0 .table-hover > tbody > tr.info:hover > td,

#custom-html-t0 .table-hover > tbody > tr.info:hover > th,

#custom-html-t0 .table-hover > tbody > tr:hover > .info,

#custom-html-t0 .table-hover > tbody > tr > td.info:hover,

#custom-html-t0 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t0 .table > tbody > tr.warning > td,

#custom-html-t0 .table > tbody > tr.warning > th,

#custom-html-t0 .table > tbody > tr > td.warning,

#custom-html-t0 .table > tbody > tr > th.warning,

#custom-html-t0 .table > tfoot > tr.warning > td,

#custom-html-t0 .table > tfoot > tr.warning > th,

#custom-html-t0 .table > tfoot > tr > td.warning,

#custom-html-t0 .table > tfoot > tr > th.warning,

#custom-html-t0 .table > thead > tr.warning > td,

#custom-html-t0 .table > thead > tr.warning > th,

#custom-html-t0 .table > thead > tr > td.warning,

#custom-html-t0 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t0 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t0 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t0 .table-hover > tbody > tr:hover > .warning,

#custom-html-t0 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t0 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t0 .table > tbody > tr.danger > td,

#custom-html-t0 .table > tbody > tr.danger > th,

#custom-html-t0 .table > tbody > tr > td.danger,

#custom-html-t0 .table > tbody > tr > th.danger,

#custom-html-t0 .table > tfoot > tr.danger > td,

#custom-html-t0 .table > tfoot > tr.danger > th,

#custom-html-t0 .table > tfoot > tr > td.danger,

#custom-html-t0 .table > tfoot > tr > th.danger,

#custom-html-t0 .table > thead > tr.danger > td,

#custom-html-t0 .table > thead > tr.danger > th,

#custom-html-t0 .table > thead > tr > td.danger,

#custom-html-t0 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t0 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t0 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t0 .table-hover > tbody > tr:hover > .danger,

#custom-html-t0 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t0 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t0 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t0 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t0 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t0 .table-responsive > .table > tbody > tr > td,

  #custom-html-t0 .table-responsive > .table > tbody > tr > th,

  #custom-html-t0 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t0 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t0 .table-responsive > .table > thead > tr > td,

  #custom-html-t0 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t0 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t0 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t0 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t0 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t0 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t0 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t0 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t0 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t0 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t0 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-t0 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t0 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t0 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t0 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t0 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t0 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t0 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-t0 fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-t0 legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t0 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t0 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t0 input[type=checkbox],

#custom-html-t0 input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t0 input[type=file] {

  display: block;

}

#custom-html-t0 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-t0 select[multiple],

#custom-html-t0 select[size] {

  height: auto;

}

#custom-html-t0 input[type=checkbox]:focus,

#custom-html-t0 input[type=file]:focus,

#custom-html-t0 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t0 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t0 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t0 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t0 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t0 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t0 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t0 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t0 .form-control[disabled],

#custom-html-t0 .form-control[readonly],

#custom-html-t0 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t0 .form-control[disabled],

#custom-html-t0 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t0 textarea.form-control {

  height: auto;

}

#custom-html-t0 input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t0 input[type=date].form-control,

  #custom-html-t0 input[type=datetime-local].form-control,

  #custom-html-t0 input[type=month].form-control,

  #custom-html-t0 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t0 .input-group-sm input[type=date],

  #custom-html-t0 .input-group-sm input[type=datetime-local],

  #custom-html-t0 .input-group-sm input[type=month],

  #custom-html-t0 .input-group-sm input[type=time],

  #custom-html-t0 input[type=date].input-sm,

  #custom-html-t0 input[type=datetime-local].input-sm,

  #custom-html-t0 input[type=month].input-sm,

  #custom-html-t0 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t0 .input-group-lg input[type=date],

  #custom-html-t0 .input-group-lg input[type=datetime-local],

  #custom-html-t0 .input-group-lg input[type=month],

  #custom-html-t0 .input-group-lg input[type=time],

  #custom-html-t0 input[type=date].input-lg,

  #custom-html-t0 input[type=datetime-local].input-lg,

  #custom-html-t0 input[type=month].input-lg,

  #custom-html-t0 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t0 .form-group {

  margin-bottom: 15px;

}

#custom-html-t0 .checkbox,

#custom-html-t0 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t0 .checkbox label,

#custom-html-t0 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t0 .checkbox input[type=checkbox],

#custom-html-t0 .checkbox-inline input[type=checkbox],

#custom-html-t0 .radio input[type=radio],

#custom-html-t0 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t0 .checkbox + .checkbox,

#custom-html-t0 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t0 .checkbox-inline,

#custom-html-t0 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t0 .checkbox-inline + .checkbox-inline,

#custom-html-t0 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t0 fieldset[disabled] input[type=checkbox],

#custom-html-t0 fieldset[disabled] input[type=radio],

#custom-html-t0 input[type=checkbox].disabled,

#custom-html-t0 input[type=checkbox][disabled],

#custom-html-t0 input[type=radio].disabled,

#custom-html-t0 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t0 .checkbox-inline.disabled,

#custom-html-t0 .radio-inline.disabled,

#custom-html-t0 fieldset[disabled] .checkbox-inline,

#custom-html-t0 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t0 .checkbox.disabled label,

#custom-html-t0 .radio.disabled label,

#custom-html-t0 fieldset[disabled] .checkbox label,

#custom-html-t0 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t0 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t0 .form-control-static.input-lg,

#custom-html-t0 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t0 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t0 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t0 select[multiple].input-sm,

#custom-html-t0 textarea.input-sm {

  height: auto;

}

#custom-html-t0 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t0 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t0 .form-group-sm select[multiple].form-control,

#custom-html-t0 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t0 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t0 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t0 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t0 select[multiple].input-lg,

#custom-html-t0 textarea.input-lg {

  height: auto;

}

#custom-html-t0 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t0 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-t0 .form-group-lg select[multiple].form-control,

#custom-html-t0 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t0 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t0 .has-feedback {

  position: relative;

}

#custom-html-t0 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t0 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t0 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t0 .input-group-lg + .form-control-feedback,

#custom-html-t0 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t0 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t0 .input-group-sm + .form-control-feedback,

#custom-html-t0 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t0 .has-success .checkbox,

#custom-html-t0 .has-success .checkbox-inline,

#custom-html-t0 .has-success .control-label,

#custom-html-t0 .has-success .help-block,

#custom-html-t0 .has-success .radio,

#custom-html-t0 .has-success .radio-inline,

#custom-html-t0 .has-success.checkbox label,

#custom-html-t0 .has-success.checkbox-inline label,

#custom-html-t0 .has-success.radio label,

#custom-html-t0 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t0 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t0 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t0 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t0 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t0 .has-warning .checkbox,

#custom-html-t0 .has-warning .checkbox-inline,

#custom-html-t0 .has-warning .control-label,

#custom-html-t0 .has-warning .help-block,

#custom-html-t0 .has-warning .radio,

#custom-html-t0 .has-warning .radio-inline,

#custom-html-t0 .has-warning.checkbox label,

#custom-html-t0 .has-warning.checkbox-inline label,

#custom-html-t0 .has-warning.radio label,

#custom-html-t0 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t0 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t0 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t0 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t0 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t0 .has-error .checkbox,

#custom-html-t0 .has-error .checkbox-inline,

#custom-html-t0 .has-error .control-label,

#custom-html-t0 .has-error .help-block,

#custom-html-t0 .has-error .radio,

#custom-html-t0 .has-error .radio-inline,

#custom-html-t0 .has-error.checkbox label,

#custom-html-t0 .has-error.checkbox-inline label,

#custom-html-t0 .has-error.radio label,

#custom-html-t0 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t0 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t0 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t0 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t0 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t0 .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-t0 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t0 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-t0 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t0 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t0 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t0 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t0 .form-inline .input-group .form-control,

  #custom-html-t0 .form-inline .input-group .input-group-addon,

  #custom-html-t0 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t0 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t0 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t0 .form-inline .checkbox,

  #custom-html-t0 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t0 .form-inline .checkbox label,

  #custom-html-t0 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t0 .form-inline .checkbox input[type=checkbox],

  #custom-html-t0 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t0 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-t0 .form-horizontal .checkbox,

#custom-html-t0 .form-horizontal .checkbox-inline,

#custom-html-t0 .form-horizontal .radio,

#custom-html-t0 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t0 .form-horizontal .checkbox,

#custom-html-t0 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t0 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t0 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-t0 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-t0 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-t0 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-t0 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t0 .btn.active.focus,

#custom-html-t0 .btn.active:focus,

#custom-html-t0 .btn.focus,

#custom-html-t0 .btn:active.focus,

#custom-html-t0 .btn:active:focus,

#custom-html-t0 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t0 .btn.focus,

#custom-html-t0 .btn:focus,

#custom-html-t0 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t0 .btn.active,

#custom-html-t0 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t0 .btn.disabled,

#custom-html-t0 .btn[disabled],

#custom-html-t0 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t0 a.btn.disabled,

#custom-html-t0 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t0 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t0 .btn-default.focus,

#custom-html-t0 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t0 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t0 .btn-default.active,

#custom-html-t0 .btn-default:active,

#custom-html-t0 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t0 .btn-default.active.focus,

#custom-html-t0 .btn-default.active:focus,

#custom-html-t0 .btn-default.active:hover,

#custom-html-t0 .btn-default:active.focus,

#custom-html-t0 .btn-default:active:focus,

#custom-html-t0 .btn-default:active:hover,

#custom-html-t0 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t0 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t0 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t0 .btn-default.active,

#custom-html-t0 .btn-default:active,

#custom-html-t0 .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-t0 .btn-default.disabled.focus,

#custom-html-t0 .btn-default.disabled:focus,

#custom-html-t0 .btn-default.disabled:hover,

#custom-html-t0 .btn-default[disabled].focus,

#custom-html-t0 .btn-default[disabled]:focus,

#custom-html-t0 .btn-default[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-default.focus,

#custom-html-t0 fieldset[disabled] .btn-default:focus,

#custom-html-t0 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t0 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t0 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t0 .btn-primary.focus,

#custom-html-t0 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t0 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t0 .btn-primary.active,

#custom-html-t0 .btn-primary:active,

#custom-html-t0 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t0 .btn-primary.active.focus,

#custom-html-t0 .btn-primary.active:focus,

#custom-html-t0 .btn-primary.active:hover,

#custom-html-t0 .btn-primary:active.focus,

#custom-html-t0 .btn-primary:active:focus,

#custom-html-t0 .btn-primary:active:hover,

#custom-html-t0 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t0 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t0 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t0 .btn-primary.active,

#custom-html-t0 .btn-primary:active,

#custom-html-t0 .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-t0 .btn-primary.disabled.focus,

#custom-html-t0 .btn-primary.disabled:focus,

#custom-html-t0 .btn-primary.disabled:hover,

#custom-html-t0 .btn-primary[disabled].focus,

#custom-html-t0 .btn-primary[disabled]:focus,

#custom-html-t0 .btn-primary[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-primary.focus,

#custom-html-t0 fieldset[disabled] .btn-primary:focus,

#custom-html-t0 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t0 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t0 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t0 .btn-success.focus,

#custom-html-t0 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t0 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t0 .btn-success.active,

#custom-html-t0 .btn-success:active,

#custom-html-t0 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t0 .btn-success.active.focus,

#custom-html-t0 .btn-success.active:focus,

#custom-html-t0 .btn-success.active:hover,

#custom-html-t0 .btn-success:active.focus,

#custom-html-t0 .btn-success:active:focus,

#custom-html-t0 .btn-success:active:hover,

#custom-html-t0 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t0 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t0 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t0 .btn-success.active,

#custom-html-t0 .btn-success:active,

#custom-html-t0 .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-t0 .btn-success.disabled.focus,

#custom-html-t0 .btn-success.disabled:focus,

#custom-html-t0 .btn-success.disabled:hover,

#custom-html-t0 .btn-success[disabled].focus,

#custom-html-t0 .btn-success[disabled]:focus,

#custom-html-t0 .btn-success[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-success.focus,

#custom-html-t0 fieldset[disabled] .btn-success:focus,

#custom-html-t0 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t0 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t0 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t0 .btn-info.focus,

#custom-html-t0 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t0 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t0 .btn-info.active,

#custom-html-t0 .btn-info:active,

#custom-html-t0 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t0 .btn-info.active.focus,

#custom-html-t0 .btn-info.active:focus,

#custom-html-t0 .btn-info.active:hover,

#custom-html-t0 .btn-info:active.focus,

#custom-html-t0 .btn-info:active:focus,

#custom-html-t0 .btn-info:active:hover,

#custom-html-t0 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t0 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t0 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t0 .btn-info.active,

#custom-html-t0 .btn-info:active,

#custom-html-t0 .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-t0 .btn-info.disabled.focus,

#custom-html-t0 .btn-info.disabled:focus,

#custom-html-t0 .btn-info.disabled:hover,

#custom-html-t0 .btn-info[disabled].focus,

#custom-html-t0 .btn-info[disabled]:focus,

#custom-html-t0 .btn-info[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-info.focus,

#custom-html-t0 fieldset[disabled] .btn-info:focus,

#custom-html-t0 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t0 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t0 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t0 .btn-warning.focus,

#custom-html-t0 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t0 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t0 .btn-warning.active,

#custom-html-t0 .btn-warning:active,

#custom-html-t0 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t0 .btn-warning.active.focus,

#custom-html-t0 .btn-warning.active:focus,

#custom-html-t0 .btn-warning.active:hover,

#custom-html-t0 .btn-warning:active.focus,

#custom-html-t0 .btn-warning:active:focus,

#custom-html-t0 .btn-warning:active:hover,

#custom-html-t0 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t0 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t0 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t0 .btn-warning.active,

#custom-html-t0 .btn-warning:active,

#custom-html-t0 .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-t0 .btn-warning.disabled.focus,

#custom-html-t0 .btn-warning.disabled:focus,

#custom-html-t0 .btn-warning.disabled:hover,

#custom-html-t0 .btn-warning[disabled].focus,

#custom-html-t0 .btn-warning[disabled]:focus,

#custom-html-t0 .btn-warning[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-warning.focus,

#custom-html-t0 fieldset[disabled] .btn-warning:focus,

#custom-html-t0 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t0 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t0 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t0 .btn-danger.focus,

#custom-html-t0 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t0 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t0 .btn-danger.active,

#custom-html-t0 .btn-danger:active,

#custom-html-t0 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t0 .btn-danger.active.focus,

#custom-html-t0 .btn-danger.active:focus,

#custom-html-t0 .btn-danger.active:hover,

#custom-html-t0 .btn-danger:active.focus,

#custom-html-t0 .btn-danger:active:focus,

#custom-html-t0 .btn-danger:active:hover,

#custom-html-t0 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t0 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t0 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t0 .btn-danger.active,

#custom-html-t0 .btn-danger:active,

#custom-html-t0 .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-t0 .btn-danger.disabled.focus,

#custom-html-t0 .btn-danger.disabled:focus,

#custom-html-t0 .btn-danger.disabled:hover,

#custom-html-t0 .btn-danger[disabled].focus,

#custom-html-t0 .btn-danger[disabled]:focus,

#custom-html-t0 .btn-danger[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-danger.focus,

#custom-html-t0 fieldset[disabled] .btn-danger:focus,

#custom-html-t0 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t0 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t0 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t0 .btn-link,

#custom-html-t0 .btn-link.active,

#custom-html-t0 .btn-link:active,

#custom-html-t0 .btn-link[disabled],

#custom-html-t0 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t0 .btn-link,

#custom-html-t0 .btn-link:active,

#custom-html-t0 .btn-link:focus,

#custom-html-t0 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t0 .btn-link:focus,

#custom-html-t0 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t0 .btn-link[disabled]:focus,

#custom-html-t0 .btn-link[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-link:focus,

#custom-html-t0 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t0 .btn-group-lg > .btn,

#custom-html-t0 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t0 .btn-group-sm > .btn,

#custom-html-t0 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t0 .btn-group-xs > .btn,

#custom-html-t0 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t0 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t0 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t0 input[type=button].btn-block,

#custom-html-t0 input[type=reset].btn-block,

#custom-html-t0 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t0 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t0 .fade.in {

  opacity: 1;

}

#custom-html-t0 .collapse {

  display: none;

}

#custom-html-t0 .collapse.in {

  display: block;

}

#custom-html-t0 tr.collapse.in {

  display: table-row;

}

#custom-html-t0 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t0 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t0 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t0 .dropdown,

#custom-html-t0 .dropup {

  position: relative;

}

#custom-html-t0 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t0 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t0 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t0 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t0 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-t0 .dropdown-menu > li > a:focus,

#custom-html-t0 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t0 .dropdown-menu > .active > a,

#custom-html-t0 .dropdown-menu > .active > a:focus,

#custom-html-t0 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-t0 .dropdown-menu > .disabled > a,

#custom-html-t0 .dropdown-menu > .disabled > a:focus,

#custom-html-t0 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t0 .dropdown-menu > .disabled > a:focus,

#custom-html-t0 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t0 .open > .dropdown-menu {

  display: block;

}

#custom-html-t0 .open > a {

  outline: 0;

}

#custom-html-t0 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t0 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t0 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t0 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t0 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t0 .dropup .caret,

#custom-html-t0 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t0 .dropup .dropdown-menu,

#custom-html-t0 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-t0 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-t0 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-t0 .btn-group,

#custom-html-t0 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t0 .btn-group-vertical > .btn,

#custom-html-t0 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t0 .btn-group-vertical > .btn.active,

#custom-html-t0 .btn-group-vertical > .btn:active,

#custom-html-t0 .btn-group-vertical > .btn:focus,

#custom-html-t0 .btn-group-vertical > .btn:hover,

#custom-html-t0 .btn-group > .btn.active,

#custom-html-t0 .btn-group > .btn:active,

#custom-html-t0 .btn-group > .btn:focus,

#custom-html-t0 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t0 .btn-group .btn + .btn,

#custom-html-t0 .btn-group .btn + .btn-group,

#custom-html-t0 .btn-group .btn-group + .btn,

#custom-html-t0 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t0 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t0 .btn-toolbar .btn,

#custom-html-t0 .btn-toolbar .btn-group,

#custom-html-t0 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t0 .btn-toolbar > .btn,

#custom-html-t0 .btn-toolbar > .btn-group,

#custom-html-t0 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t0 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t0 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t0 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t0 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t0 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t0 .btn-group > .btn-group {

  float: left;

}

#custom-html-t0 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t0 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t0 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t0 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t0 .btn-group .dropdown-toggle:active,

#custom-html-t0 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t0 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t0 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t0 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t0 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t0 .btn .caret {

  margin-left: 0;

}

#custom-html-t0 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t0 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t0 .btn-group-vertical > .btn,

#custom-html-t0 .btn-group-vertical > .btn-group,

#custom-html-t0 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t0 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t0 .btn-group-vertical > .btn + .btn,

#custom-html-t0 .btn-group-vertical > .btn + .btn-group,

#custom-html-t0 .btn-group-vertical > .btn-group + .btn,

#custom-html-t0 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t0 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t0 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t0 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t0 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t0 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t0 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t0 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t0 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t0 .btn-group-justified > .btn,

#custom-html-t0 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t0 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t0 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t0 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t0 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t0 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t0 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t0 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t0 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t0 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t0 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t0 .input-group-lg > .form-control,

#custom-html-t0 .input-group-lg > .input-group-addon,

#custom-html-t0 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t0 select.input-group-lg > .form-control,

#custom-html-t0 select.input-group-lg > .input-group-addon,

#custom-html-t0 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t0 select[multiple].input-group-lg > .form-control,

#custom-html-t0 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t0 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t0 textarea.input-group-lg > .form-control,

#custom-html-t0 textarea.input-group-lg > .input-group-addon,

#custom-html-t0 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t0 .input-group-sm > .form-control,

#custom-html-t0 .input-group-sm > .input-group-addon,

#custom-html-t0 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t0 select.input-group-sm > .form-control,

#custom-html-t0 select.input-group-sm > .input-group-addon,

#custom-html-t0 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t0 select[multiple].input-group-sm > .form-control,

#custom-html-t0 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t0 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t0 textarea.input-group-sm > .form-control,

#custom-html-t0 textarea.input-group-sm > .input-group-addon,

#custom-html-t0 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t0 .input-group .form-control,

#custom-html-t0 .input-group-addon,

#custom-html-t0 .input-group-btn {

  display: table-cell;

}

#custom-html-t0 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t0 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t0 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t0 .input-group-addon,

#custom-html-t0 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t0 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t0 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t0 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t0 .input-group-addon input[type=checkbox],

#custom-html-t0 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t0 .input-group .form-control:first-child,

#custom-html-t0 .input-group-addon:first-child,

#custom-html-t0 .input-group-btn:first-child > .btn,

#custom-html-t0 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t0 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t0 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t0 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t0 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t0 .input-group .form-control:last-child,

#custom-html-t0 .input-group-addon:last-child,

#custom-html-t0 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t0 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t0 .input-group-btn:last-child > .btn,

#custom-html-t0 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t0 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t0 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t0 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t0 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t0 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t0 .input-group-btn > .btn:active,

#custom-html-t0 .input-group-btn > .btn:focus,

#custom-html-t0 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t0 .input-group-btn:first-child > .btn,

#custom-html-t0 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t0 .input-group-btn:last-child > .btn,

#custom-html-t0 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t0 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t0 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t0 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t0 .nav > li > a:focus,

#custom-html-t0 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t0 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t0 .nav > li.disabled > a:focus,

#custom-html-t0 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t0 .nav .open > a,

#custom-html-t0 .nav .open > a:focus,

#custom-html-t0 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t0 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t0 .nav > li > a > img {

  max-width: none;

}

#custom-html-t0 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t0 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t0 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t0 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t0 .nav-tabs > li.active > a,

#custom-html-t0 .nav-tabs > li.active > a:focus,

#custom-html-t0 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t0 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t0 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t0 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t0 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t0 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t0 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t0 .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t0 .nav-tabs.nav-justified > .active > a,

#custom-html-t0 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t0 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t0 .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t0 .nav-tabs.nav-justified > .active > a,

  #custom-html-t0 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t0 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t0 .nav-pills > li {

  float: left;

}

#custom-html-t0 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t0 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t0 .nav-pills > li.active > a,

#custom-html-t0 .nav-pills > li.active > a:focus,

#custom-html-t0 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t0 .nav-stacked > li {

  float: none;

}

#custom-html-t0 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t0 .nav-justified {

  width: 100%;

}

#custom-html-t0 .nav-justified > li {

  float: none;

}

#custom-html-t0 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t0 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t0 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t0 .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t0 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t0 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t0 .nav-tabs-justified > .active > a,

#custom-html-t0 .nav-tabs-justified > .active > a:focus,

#custom-html-t0 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t0 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t0 .nav-tabs-justified > .active > a,

  #custom-html-t0 .nav-tabs-justified > .active > a:focus,

  #custom-html-t0 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t0 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t0 .tab-content > .active {

  display: block;

}

#custom-html-t0 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t0 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-t0 .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-t0 .navbar-header {

    float: left;

  }

}

#custom-html-t0 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t0 .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-t0 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t0 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t0 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t0 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t0 .navbar-fixed-top .navbar-collapse,

  #custom-html-t0 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-t0 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t0 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t0 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t0 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t0 .container-fluid > .navbar-collapse,

#custom-html-t0 .container-fluid > .navbar-header,

#custom-html-t0 .container > .navbar-collapse,

#custom-html-t0 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t0 .container-fluid > .navbar-collapse,

  #custom-html-t0 .container-fluid > .navbar-header,

  #custom-html-t0 .container > .navbar-collapse,

  #custom-html-t0 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-t0 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-t0 .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-t0 .navbar-fixed-bottom,

#custom-html-t0 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-t0 .navbar-fixed-bottom,

  #custom-html-t0 .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-t0 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t0 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t0 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t0 .navbar-brand:focus,

#custom-html-t0 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t0 .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-t0 .navbar > .container .navbar-brand,

  #custom-html-t0 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-t0 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t0 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t0 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t0 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-t0 .navbar-toggle {

    display: none;

  }

}

#custom-html-t0 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t0 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t0 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t0 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t0 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t0 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t0 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t0 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-t0 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t0 .navbar-nav > li {

    float: left;

  }

  #custom-html-t0 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-t0 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-t0 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t0 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t0 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t0 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t0 .navbar-form .input-group .form-control,

  #custom-html-t0 .navbar-form .input-group .input-group-addon,

  #custom-html-t0 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t0 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t0 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t0 .navbar-form .checkbox,

  #custom-html-t0 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t0 .navbar-form .checkbox label,

  #custom-html-t0 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t0 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t0 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t0 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-t0 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t0 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-t0 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-t0 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t0 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t0 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t0 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t0 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t0 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-t0 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-t0 .navbar-left {

    float: left !important;

  }

  #custom-html-t0 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t0 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-t0 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t0 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t0 .navbar-default .navbar-brand:focus,

#custom-html-t0 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t0 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t0 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t0 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t0 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t0 .navbar-default .navbar-nav > .active > a,

#custom-html-t0 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t0 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t0 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t0 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t0 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t0 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t0 .navbar-default .navbar-toggle:focus,

#custom-html-t0 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t0 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t0 .navbar-default .navbar-collapse,

#custom-html-t0 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t0 .navbar-default .navbar-nav > .open > a,

#custom-html-t0 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t0 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t0 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-t0 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t0 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t0 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t0 .navbar-default .btn-link:focus,

#custom-html-t0 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-t0 .navbar-default .btn-link[disabled]:focus,

#custom-html-t0 .navbar-default .btn-link[disabled]:hover,

#custom-html-t0 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t0 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t0 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t0 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t0 .navbar-inverse .navbar-brand:focus,

#custom-html-t0 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t0 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t0 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t0 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t0 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t0 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t0 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t0 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t0 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t0 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t0 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t0 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t0 .navbar-inverse .navbar-toggle:focus,

#custom-html-t0 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t0 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t0 .navbar-inverse .navbar-collapse,

#custom-html-t0 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t0 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t0 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t0 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t0 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-t0 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t0 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t0 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t0 .navbar-inverse .btn-link:focus,

#custom-html-t0 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t0 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t0 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t0 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t0 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t0 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t0 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t0 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t0 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t0 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-t0 .pagination > li {

  display: inline;

}

#custom-html-t0 .pagination > li > a,

#custom-html-t0 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t0 .pagination > li:first-child > a,

#custom-html-t0 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t0 .pagination > li:last-child > a,

#custom-html-t0 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t0 .pagination > li > a:focus,

#custom-html-t0 .pagination > li > a:hover,

#custom-html-t0 .pagination > li > span:focus,

#custom-html-t0 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t0 .pagination > .active > a,

#custom-html-t0 .pagination > .active > a:focus,

#custom-html-t0 .pagination > .active > a:hover,

#custom-html-t0 .pagination > .active > span,

#custom-html-t0 .pagination > .active > span:focus,

#custom-html-t0 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-t0 .pagination > .disabled > a,

#custom-html-t0 .pagination > .disabled > a:focus,

#custom-html-t0 .pagination > .disabled > a:hover,

#custom-html-t0 .pagination > .disabled > span,

#custom-html-t0 .pagination > .disabled > span:focus,

#custom-html-t0 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t0 .pagination-lg > li > a,

#custom-html-t0 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t0 .pagination-lg > li:first-child > a,

#custom-html-t0 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t0 .pagination-lg > li:last-child > a,

#custom-html-t0 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t0 .pagination-sm > li > a,

#custom-html-t0 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t0 .pagination-sm > li:first-child > a,

#custom-html-t0 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t0 .pagination-sm > li:last-child > a,

#custom-html-t0 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t0 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t0 .pager li {

  display: inline;

}

#custom-html-t0 .pager li > a,

#custom-html-t0 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t0 .pager li > a:focus,

#custom-html-t0 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t0 .pager .next > a,

#custom-html-t0 .pager .next > span {

  float: right;

}

#custom-html-t0 .pager .previous > a,

#custom-html-t0 .pager .previous > span {

  float: left;

}

#custom-html-t0 .pager .disabled > a,

#custom-html-t0 .pager .disabled > a:focus,

#custom-html-t0 .pager .disabled > a:hover,

#custom-html-t0 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t0 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-t0 a.label:focus,

#custom-html-t0 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t0 .label:empty {

  display: none;

}

#custom-html-t0 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t0 .label-default {

  background-color: #777777;

}

#custom-html-t0 .label-default[href]:focus,

#custom-html-t0 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t0 .label-primary {

  background-color: #337ab7;

}

#custom-html-t0 .label-primary[href]:focus,

#custom-html-t0 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t0 .label-success {

  background-color: #5cb85c;

}

#custom-html-t0 .label-success[href]:focus,

#custom-html-t0 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t0 .label-info {

  background-color: #5bc0de;

}

#custom-html-t0 .label-info[href]:focus,

#custom-html-t0 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t0 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t0 .label-warning[href]:focus,

#custom-html-t0 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t0 .label-danger {

  background-color: #d9534f;

}

#custom-html-t0 .label-danger[href]:focus,

#custom-html-t0 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t0 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t0 .badge:empty {

  display: none;

}

#custom-html-t0 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t0 .btn-group-xs > .btn .badge,

#custom-html-t0 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t0 a.badge:focus,

#custom-html-t0 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t0 .list-group-item.active > .badge,

#custom-html-t0 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t0 .list-group-item > .badge {

  float: right;

}

#custom-html-t0 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t0 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t0 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t0 .jumbotron .h1,

#custom-html-t0 .jumbotron h1 {

  color: inherit;

}

#custom-html-t0 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t0 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t0 .container .jumbotron,

#custom-html-t0 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t0 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t0 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t0 .container .jumbotron,

  #custom-html-t0 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t0 .jumbotron .h1,

  #custom-html-t0 .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-t0 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t0 .thumbnail a > img,

#custom-html-t0 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t0 a.thumbnail.active,

#custom-html-t0 a.thumbnail:focus,

#custom-html-t0 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t0 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t0 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t0 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t0 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t0 .alert > p,

#custom-html-t0 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t0 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t0 .alert-dismissable,

#custom-html-t0 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t0 .alert-dismissable .close,

#custom-html-t0 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t0 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t0 .alert-success hr {


  border-top-color: #c9e2b3;

}

#custom-html-t0 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t0 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t0 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t0 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t0 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t0 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t0 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t0 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t0 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t0 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t0 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t0 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t0 .progress-bar-striped,

#custom-html-t0 .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t0 .progress-bar.active,

#custom-html-t0 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t0 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t0 .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t0 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t0 .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t0 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t0 .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t0 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t0 .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t0 .media {

  margin-top: 15px;

}

#custom-html-t0 .media:first-child {

  margin-top: 0;

}

#custom-html-t0 .media,

#custom-html-t0 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t0 .media-body {

  width: 10000px;

}

#custom-html-t0 .media-object {

  display: block;

}

#custom-html-t0 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t0 .media-right,

#custom-html-t0 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t0 .media-left,

#custom-html-t0 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t0 .media-body,

#custom-html-t0 .media-left,

#custom-html-t0 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t0 .media-middle {

  vertical-align: middle;

}

#custom-html-t0 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t0 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t0 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t0 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-t0 .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t0 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t0 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t0 a.list-group-item,

#custom-html-t0 button.list-group-item {

  color: #555555;

}

#custom-html-t0 a.list-group-item .list-group-item-heading,

#custom-html-t0 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t0 a.list-group-item:focus,

#custom-html-t0 a.list-group-item:hover,

#custom-html-t0 button.list-group-item:focus,

#custom-html-t0 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t0 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t0 .list-group-item.disabled,

#custom-html-t0 .list-group-item.disabled:focus,

#custom-html-t0 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t0 .list-group-item.disabled .list-group-item-heading,

#custom-html-t0 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t0 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t0 .list-group-item.disabled .list-group-item-text,

#custom-html-t0 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t0 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t0 .list-group-item.active,

#custom-html-t0 .list-group-item.active:focus,

#custom-html-t0 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t0 .list-group-item.active .list-group-item-heading,

#custom-html-t0 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t0 .list-group-item.active .list-group-item-heading > small,

#custom-html-t0 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t0 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t0 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t0 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t0 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t0 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t0 .list-group-item.active .list-group-item-text,

#custom-html-t0 .list-group-item.active:focus .list-group-item-text,

#custom-html-t0 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t0 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t0 a.list-group-item-success,

#custom-html-t0 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t0 a.list-group-item-success .list-group-item-heading,

#custom-html-t0 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t0 a.list-group-item-success:focus,

#custom-html-t0 a.list-group-item-success:hover,

#custom-html-t0 button.list-group-item-success:focus,

#custom-html-t0 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t0 a.list-group-item-success.active,

#custom-html-t0 a.list-group-item-success.active:focus,

#custom-html-t0 a.list-group-item-success.active:hover,

#custom-html-t0 button.list-group-item-success.active,

#custom-html-t0 button.list-group-item-success.active:focus,

#custom-html-t0 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t0 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t0 a.list-group-item-info,

#custom-html-t0 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t0 a.list-group-item-info .list-group-item-heading,

#custom-html-t0 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t0 a.list-group-item-info:focus,

#custom-html-t0 a.list-group-item-info:hover,

#custom-html-t0 button.list-group-item-info:focus,

#custom-html-t0 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t0 a.list-group-item-info.active,

#custom-html-t0 a.list-group-item-info.active:focus,

#custom-html-t0 a.list-group-item-info.active:hover,

#custom-html-t0 button.list-group-item-info.active,

#custom-html-t0 button.list-group-item-info.active:focus,

#custom-html-t0 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t0 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t0 a.list-group-item-warning,

#custom-html-t0 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t0 a.list-group-item-warning .list-group-item-heading,

#custom-html-t0 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t0 a.list-group-item-warning:focus,

#custom-html-t0 a.list-group-item-warning:hover,

#custom-html-t0 button.list-group-item-warning:focus,

#custom-html-t0 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t0 a.list-group-item-warning.active,

#custom-html-t0 a.list-group-item-warning.active:focus,

#custom-html-t0 a.list-group-item-warning.active:hover,

#custom-html-t0 button.list-group-item-warning.active,

#custom-html-t0 button.list-group-item-warning.active:focus,

#custom-html-t0 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t0 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t0 a.list-group-item-danger,

#custom-html-t0 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t0 a.list-group-item-danger .list-group-item-heading,

#custom-html-t0 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t0 a.list-group-item-danger:focus,

#custom-html-t0 a.list-group-item-danger:hover,

#custom-html-t0 button.list-group-item-danger:focus,

#custom-html-t0 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t0 a.list-group-item-danger.active,

#custom-html-t0 a.list-group-item-danger.active:focus,

#custom-html-t0 a.list-group-item-danger.active:hover,

#custom-html-t0 button.list-group-item-danger.active,

#custom-html-t0 button.list-group-item-danger.active:focus,

#custom-html-t0 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t0 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t0 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t0 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t0 .panel-body {

  padding: 15px;

}

#custom-html-t0 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t0 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t0 .panel-title > .small,

#custom-html-t0 .panel-title > .small > a,

#custom-html-t0 .panel-title > a,

#custom-html-t0 .panel-title > small,

#custom-html-t0 .panel-title > small > a {

  color: inherit;

}

#custom-html-t0 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t0 .panel > .list-group,

#custom-html-t0 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t0 .panel > .list-group .list-group-item,

#custom-html-t0 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t0 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t0 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t0 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t0 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t0 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t0 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t0 .panel > .panel-collapse > .table,

#custom-html-t0 .panel > .table,

#custom-html-t0 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t0 .panel > .panel-collapse > .table caption,

#custom-html-t0 .panel > .table caption,

#custom-html-t0 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t0 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t0 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t0 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t0 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t0 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t0 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t0 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t0 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t0 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t0 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t0 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t0 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t0 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t0 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t0 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t0 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t0 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t0 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t0 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t0 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t0 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t0 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t0 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t0 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t0 .panel > .panel-body + .table,

#custom-html-t0 .panel > .panel-body + .table-responsive,

#custom-html-t0 .panel > .table + .panel-body,

#custom-html-t0 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t0 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t0 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t0 .panel > .table-bordered,

#custom-html-t0 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t0 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t0 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t0 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t0 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t0 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t0 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t0 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t0 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t0 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t0 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t0 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t0 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t0 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t0 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t0 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t0 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t0 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t0 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t0 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t0 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t0 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t0 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t0 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t0 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t0 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t0 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t0 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-t0 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t0 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t0 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t0 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t0 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t0 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t0 .panel-default {

  border-color: #dddddd;

}

#custom-html-t0 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t0 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t0 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t0 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t0 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t0 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t0 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t0 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t0 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t0 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t0 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t0 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t0 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t0 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-t0 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t0 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t0 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t0 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t0 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t0 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t0 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t0 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t0 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t0 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t0 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t0 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t0 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t0 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t0 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t0 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t0 .embed-responsive .embed-responsive-item,

#custom-html-t0 .embed-responsive embed,

#custom-html-t0 .embed-responsive iframe,

#custom-html-t0 .embed-responsive object,

#custom-html-t0 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t0 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t0 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t0 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t0 .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t0 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t0 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t0 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t0 .close:focus,

#custom-html-t0 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t0 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t0 .modal-open {

  overflow: hidden;

}

#custom-html-t0 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t0 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t0 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t0 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t0 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t0 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t0 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t0 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t0 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t0 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t0 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t0 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t0 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t0 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t0 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t0 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t0 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t0 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-t0 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t0 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t0 .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-t0 .modal-lg {

    width: 900px;

  }

}

#custom-html-t0 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t0 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t0 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t0 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t0 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t0 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t0 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t0 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t0 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t0 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t0 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t0 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t0 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t0 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t0 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t0 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t0 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t0 .popover.top {

  margin-top: -10px;

}

#custom-html-t0 .popover.right {

  margin-left: 10px;

}

#custom-html-t0 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t0 .popover.left {

  margin-left: -10px;

}

#custom-html-t0 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t0 .popover-content {

  padding: 9px 14px;

}

#custom-html-t0 .popover > .arrow,

#custom-html-t0 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t0 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t0 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t0 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t0 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t0 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t0 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t0 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t0 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t0 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t0 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t0 .carousel {

  position: relative;

}

#custom-html-t0 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t0 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t0 .carousel-inner > .item > a > img,

#custom-html-t0 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t0 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t0 .carousel-inner > .item.active.right,

  #custom-html-t0 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t0 .carousel-inner > .item.active.left,

  #custom-html-t0 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t0 .carousel-inner > .item.active,

  #custom-html-t0 .carousel-inner > .item.next.left,

  #custom-html-t0 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t0 .carousel-inner > .active,

#custom-html-t0 .carousel-inner > .next,

#custom-html-t0 .carousel-inner > .prev {

  display: block;

}

#custom-html-t0 .carousel-inner > .active {

  left: 0;

}

#custom-html-t0 .carousel-inner > .next,

#custom-html-t0 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t0 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t0 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t0 .carousel-inner > .next.left,

#custom-html-t0 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t0 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t0 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t0 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t0 .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t0 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t0 .carousel-control:focus,

#custom-html-t0 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t0 .carousel-control .glyphicon-chevron-left,

#custom-html-t0 .carousel-control .glyphicon-chevron-right,

#custom-html-t0 .carousel-control .icon-next,

#custom-html-t0 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t0 .carousel-control .glyphicon-chevron-left,

#custom-html-t0 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t0 .carousel-control .glyphicon-chevron-right,

#custom-html-t0 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t0 .carousel-control .icon-next,

#custom-html-t0 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t0 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t0 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t0 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t0 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t0 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t0 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t0 .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-t0 .carousel-control .glyphicon-chevron-left,

  #custom-html-t0 .carousel-control .glyphicon-chevron-right,

  #custom-html-t0 .carousel-control .icon-next,

  #custom-html-t0 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t0 .carousel-control .glyphicon-chevron-left,

  #custom-html-t0 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t0 .carousel-control .glyphicon-chevron-right,

  #custom-html-t0 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t0 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t0 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t0 .btn-group-vertical > .btn-group:after,

#custom-html-t0 .btn-group-vertical > .btn-group:before,

#custom-html-t0 .btn-toolbar:after,

#custom-html-t0 .btn-toolbar:before,

#custom-html-t0 .clearfix:after,

#custom-html-t0 .clearfix:before,

#custom-html-t0 .container-fluid:after,

#custom-html-t0 .container-fluid:before,

#custom-html-t0 .container:after,

#custom-html-t0 .container:before,

#custom-html-t0 .dl-horizontal dd:after,

#custom-html-t0 .dl-horizontal dd:before,

#custom-html-t0 .form-horizontal .form-group:after,

#custom-html-t0 .form-horizontal .form-group:before,

#custom-html-t0 .modal-footer:after,

#custom-html-t0 .modal-footer:before,

#custom-html-t0 .modal-header:after,

#custom-html-t0 .modal-header:before,

#custom-html-t0 .nav:after,

#custom-html-t0 .nav:before,

#custom-html-t0 .navbar-collapse:after,

#custom-html-t0 .navbar-collapse:before,

#custom-html-t0 .navbar-header:after,

#custom-html-t0 .navbar-header:before,

#custom-html-t0 .navbar:after,

#custom-html-t0 .navbar:before,

#custom-html-t0 .pager:after,

#custom-html-t0 .pager:before,

#custom-html-t0 .panel-body:after,

#custom-html-t0 .panel-body:before,

#custom-html-t0 .row:after,

#custom-html-t0 .row:before {

  display: table;

  content: " ";

}

#custom-html-t0 .btn-group-vertical > .btn-group:after,

#custom-html-t0 .btn-toolbar:after,

#custom-html-t0 .clearfix:after,

#custom-html-t0 .container-fluid:after,

#custom-html-t0 .container:after,

#custom-html-t0 .dl-horizontal dd:after,

#custom-html-t0 .form-horizontal .form-group:after,

#custom-html-t0 .modal-footer:after,

#custom-html-t0 .modal-header:after,

#custom-html-t0 .nav:after,

#custom-html-t0 .navbar-collapse:after,

#custom-html-t0 .navbar-header:after,

#custom-html-t0 .navbar:after,

#custom-html-t0 .pager:after,

#custom-html-t0 .panel-body:after,

#custom-html-t0 .row:after {

  clear: both;

}

#custom-html-t0 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t0 .pull-right {

  float: right !important;

}

#custom-html-t0 .pull-left {

  float: left !important;

}

#custom-html-t0 .hide {

  display: none !important;

}

#custom-html-t0 .show {

  display: block !important;

}

#custom-html-t0 .invisible {

  visibility: hidden;

}

#custom-html-t0 .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t0 .hidden {

  display: none !important;

}

#custom-html-t0 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t0 .visible-lg,

#custom-html-t0 .visible-md,

#custom-html-t0 .visible-sm,

#custom-html-t0 .visible-xs {

  display: none !important;

}

#custom-html-t0 .visible-lg-block,

#custom-html-t0 .visible-lg-inline,

#custom-html-t0 .visible-lg-inline-block,

#custom-html-t0 .visible-md-block,

#custom-html-t0 .visible-md-inline,

#custom-html-t0 .visible-md-inline-block,

#custom-html-t0 .visible-sm-block,

#custom-html-t0 .visible-sm-inline,

#custom-html-t0 .visible-sm-inline-block,

#custom-html-t0 .visible-xs-block,

#custom-html-t0 .visible-xs-inline,

#custom-html-t0 .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-t0 .visible-xs {

    display: block !important;

  }

  #custom-html-t0 table.visible-xs {

    display: table !important;

  }

  #custom-html-t0 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t0 td.visible-xs,

  #custom-html-t0 th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t0 .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t0 .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t0 .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t0 .visible-sm {

    display: block !important;

  }

  #custom-html-t0 table.visible-sm {

    display: table !important;

  }

  #custom-html-t0 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t0 td.visible-sm,

  #custom-html-t0 th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t0 .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t0 .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t0 .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t0 .visible-md {

    display: block !important;

  }

  #custom-html-t0 table.visible-md {

    display: table !important;

  }

  #custom-html-t0 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t0 td.visible-md,

  #custom-html-t0 th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t0 .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t0 .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t0 .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t0 .visible-lg {

    display: block !important;

  }

  #custom-html-t0 table.visible-lg {

    display: table !important;

  }

  #custom-html-t0 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t0 td.visible-lg,

  #custom-html-t0 th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t0 .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t0 .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t0 .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t0 .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t0 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t0 .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t0 .hidden-lg {

    display: none !important;

  }

}

#custom-html-t0 .visible-print {

  display: none !important;

}

@media print {

  #custom-html-t0 .visible-print {

    display: block !important;

  }

  #custom-html-t0 table.visible-print {

    display: table !important;

  }

  #custom-html-t0 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t0 td.visible-print,

  #custom-html-t0 th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-t0 .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-t0 .visible-print-block {

    display: block !important;

  }

}

#custom-html-t0 .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-t0 .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-t0 .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-t0 .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-t0 .hidden-print {

    display: none !important;

  }

}

#custom-html-t0 .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-t0 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t0 .intl-tel-input .hide {

  display: none;

}

#custom-html-t0 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t0 .intl-tel-input input,

#custom-html-t0 .intl-tel-input input[type=tel],

#custom-html-t0 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t0 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t0 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t0 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t0 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t0 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t0 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t0 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t0 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t0 .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-t0 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t0 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t0 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t0 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t0 .intl-tel-input .country-list .country-name,

#custom-html-t0 .intl-tel-input .country-list .dial-code,

#custom-html-t0 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t0 .intl-tel-input .country-list .country-name,

#custom-html-t0 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t0 .intl-tel-input.allow-dropdown input,

#custom-html-t0 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t0 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t0 .intl-tel-input.separate-dial-code input,

#custom-html-t0 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t0 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t0 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t0 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t0 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t0 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t0 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t0 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t0 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t0 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t0 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t0 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t0 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t0 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t0 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t0 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t0 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t0 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t0 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t0 .iti-flag {

  width: 20px;

}

#custom-html-t0 .iti-flag.be {

  width: 18px;

}

#custom-html-t0 .iti-flag.ch {

  width: 15px;

}

#custom-html-t0 .iti-flag.mc {

  width: 19px;

}

#custom-html-t0 .iti-flag.ne {

  width: 18px;

}

#custom-html-t0 .iti-flag.np {

  width: 13px;

}

#custom-html-t0 .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t0 .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-t0 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t0 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t0 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t0 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t0 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t0 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t0 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t0 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t0 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t0 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t0 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t0 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t0 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t0 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t0 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t0 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t0 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t0 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t0 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t0 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t0 .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t0 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t0 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t0 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t0 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t0 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t0 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t0 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t0 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t0 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t0 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t0 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t0 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t0 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t0 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t0 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t0 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t0 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t0 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t0 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t0 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t0 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t0 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t0 .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t0 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t0 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t0 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t0 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t0 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t0 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t0 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t0 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t0 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t0 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t0 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t0 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t0 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t0 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t0 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t0 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t0 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t0 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t0 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t0 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t0 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t0 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t0 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t0 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t0 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t0 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t0 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t0 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t0 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t0 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t0 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t0 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t0 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t0 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t0 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t0 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t0 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t0 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t0 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t0 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t0 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t0 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t0 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t0 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t0 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t0 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t0 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t0 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t0 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t0 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t0 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t0 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t0 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t0 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t0 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t0 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t0 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t0 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t0 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t0 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t0 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-t0 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t0 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t0 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t0 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t0 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t0 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t0 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t0 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t0 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t0 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t0 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t0 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t0 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t0 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t0 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t0 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t0 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t0 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t0 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t0 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t0 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t0 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t0 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t0 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t0 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t0 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t0 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t0 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t0 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t0 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t0 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t0 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t0 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t0 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t0 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t0 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t0 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t0 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t0 .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t0 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t0 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t0 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t0 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t0 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t0 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t0 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t0 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t0 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t0 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t0 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t0 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t0 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t0 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t0 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t0 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t0 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t0 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t0 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t0 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t0 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t0 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t0 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t0 .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t0 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t0 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t0 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t0 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t0 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t0 .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-t0 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t0 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t0 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t0 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t0 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t0 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t0 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t0 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t0 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t0 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t0 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t0 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t0 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t0 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t0 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t0 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t0 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t0 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t0 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t0 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t0 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t0 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t0 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t0 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t0 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t0 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t0 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t0 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t0 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t0 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t0 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t0 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t0 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t0 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t0 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t0 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t0 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t0 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t0 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t0 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t0 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t0 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t0 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t0 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t0 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t0 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t0 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t0 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t0 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t0 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t0 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t0 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t0 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-t0 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t0 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t0 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t0 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t0 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t0 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t0 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t0 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t0 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t0 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t0 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t0 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t0 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t0 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t0 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t0 .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-t0 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t0 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-t0 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t0 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t0 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t0 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t0 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t0 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t0 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t0 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t0 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t0 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t0 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t0 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t0 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t0 .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t0 .iti-flag.np {

  background-color: transparent;

}

#custom-html-t0 body,

#custom-html-t0 button,

#custom-html-t0 input,

#custom-html-t0 select,

#custom-html-t0 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t0 h1,

#custom-html-t0 h2,

#custom-html-t0 h3,

#custom-html-t0 h4,

#custom-html-t0 h5,

#custom-html-t0 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-t0 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t0 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t0 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t0 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-t0 .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t0 .navbar-main .navbar-nav > .active > a,

#custom-html-t0 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t0 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t0 .navbar-main .navbar-nav > .open > a,

#custom-html-t0 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t0 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t0 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t0 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t0 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t0 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t0 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-t0 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t0 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-t0 .navbar-header {

    float: none;

  }

  #custom-html-t0 .navbar-left,

  #custom-html-t0 .navbar-right {

    float: none !important;

  }

  #custom-html-t0 .navbar-toggle {

    display: block;

  }

  #custom-html-t0 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t0 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t0 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t0 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t0 .navbar-nav > li {

    float: none;

  }

  #custom-html-t0 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t0 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-t0 .panel {

  font-size: 0.9em;

}

#custom-html-t0 .list-group {

  font-size: 0.9em;

}

#custom-html-t0 .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-t0 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t0 a.list-group-item.active,

#custom-html-t0 a.list-group-item.active:focus,

#custom-html-t0 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t0 .pagination {

  font-size: 0.8em;

}

#custom-html-t0 .pagination > .active > a,

#custom-html-t0 .pagination > .active > a:focus,

#custom-html-t0 .pagination > .active > a:hover,

#custom-html-t0 .pagination > .active > span,

#custom-html-t0 .pagination > .active > span:focus,

#custom-html-t0 .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t0 .dropdown-menu > li > a:focus,

#custom-html-t0 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t0 .label {

  border-radius: 0;

}

#custom-html-t0 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t0 .list-group-item {

  padding: 7px 15px;

}

#custom-html-t0 .panel-body {

  padding: 10px 15px;

}

#custom-html-t0 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t0 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t0 .btn {

  overflow: hidden;

}

#custom-html-t0 body,

#custom-html-t0 html {

  height: 100%;

}

#custom-html-t0 body {

  background-color: #f8f8f8;

}

#custom-html-t0 h1,

#custom-html-t0 h2,

#custom-html-t0 h3,

#custom-html-t0 h4,

#custom-html-t0 h5,

#custom-html-t0 h6 {

  font-weight: 400;

}

#custom-html-t0 a {

  color: #005588;

}

#custom-html-t0 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t0 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t0 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t0 section#header .search {

  margin: 20px 0;

}

#custom-html-t0 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t0 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t0 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t0 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t0 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t0 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t0 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t0 section#footer {

    line-height: 32px;

  }

}

#custom-html-t0 section#footer .back-to-top {

  float: right;

}

#custom-html-t0 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t0 .adminreturndiv {

  display: none !important;

}

#custom-html-t0 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t0 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t0 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t0 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t0 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t0 .navbar-main .navbar-toggle:focus,

#custom-html-t0 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t0 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t0 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-t0 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t0 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t0 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-t0 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t0 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t0 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t0 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t0 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t0 .h1,

  #custom-html-t0 h1 {

    font-size: 26px;

  }

  #custom-html-t0 .h2,

  #custom-html-t0 h2 {

    font-size: 20px;

  }

  #custom-html-t0 .h3,

  #custom-html-t0 h3 {

    font-size: 16px;

  }

  #custom-html-t0 .h4,

  #custom-html-t0 h4 {

    font-size: 14px;

  }

  #custom-html-t0 .h5,

  #custom-html-t0 h5 {

    font-size: 12px;

  }

  #custom-html-t0 .h6,

  #custom-html-t0 h6 {

    font-size: 11px;

  }

  #custom-html-t0 div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-t0 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t0 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t0 .margin-10 {

  margin: 10px;

}

#custom-html-t0 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t0 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t0 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t0 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t0 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t0 .input-inline {

  display: inline-block;

}

#custom-html-t0 .input-inline-100 {

  width: 100px;

}

#custom-html-t0 .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-t0 .pull-md-left {

    float: left;

  }

  #custom-html-t0 .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-t0 .pull-sm-left {

    float: left;

  }

  #custom-html-t0 .pull-sm-right {

    float: right;

  }

  #custom-html-t0 .text-right-sm {

    text-align: right;

  }

}

#custom-html-t0 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t0 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t0 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-t0 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-t0 .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-t0 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t0 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t0 i.icon-rss {

  color: #ff6600;

}

#custom-html-t0 section#main-menu {

  background-color: #000000;

}

#custom-html-t0 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t0 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t0 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t0 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t0 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t0 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t0 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t0 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t0 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t0 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t0 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t0 section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-t0 section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-t0 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t0 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t0 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t0 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t0 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t0 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t0 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t0 .home-shortcuts li span {

  display: none;

}

#custom-html-t0 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t0 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-t0 .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-t0 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t0 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t0 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t0 .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-t0 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t0 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t0 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t0 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t0 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t0 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t0 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t0 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t0 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t0 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t0 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t0 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t0 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t0 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t0 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t0 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t0 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t0 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t0 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t0 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t0 .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-t0 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t0 .tiles .tile:nth-child(1),

  #custom-html-t0 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-t0 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t0 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t0 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t0 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t0 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t0 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t0 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t0 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t0 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t0 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t0 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t0 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t0 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t0 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t0 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t0 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t0 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t0 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t0 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t0 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t0 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t0 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t0 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t0 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t0 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t0 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t0 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t0 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t0 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t0 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t0 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t0 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t0 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t0 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t0 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t0 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t0 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t0 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t0 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t0 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t0 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t0 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t0 ul.top-nav > li,

#custom-html-t0 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t0 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t0 ul.top-nav > li:active > a,

#custom-html-t0 ul.top-nav > li:focus > a,

#custom-html-t0 ul.top-nav > li:hover > a,

#custom-html-t0 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t0 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t0 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t0 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t0 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-t0 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t0 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t0 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-t0 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t0 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t0 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-t0 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t0 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t0 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t0 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t0 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t0 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t0 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t0 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-t0 .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-t0 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t0 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-t0 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t0 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t0 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-t0 .domain-check-availability {

  width: 100px;

}

#custom-html-t0 .domain-step-options {

  min-height: 300px;

}

#custom-html-t0 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t0 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t0 .domain-checker-invalid,

#custom-html-t0 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t0 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t0 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t0 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t0 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t0 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t0 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t0 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t0 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t0 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-t0 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t0 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t0 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t0 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t0 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t0 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t0 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t0 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t0 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t0 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t0 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t0 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t0 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t0 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t0 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t0 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t0 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t0 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t0 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t0 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t0 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t0 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t0 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t0 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t0 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t0 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t0 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t0 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t0 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t0 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t0 div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t0 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t0 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t0 .product-status-active {

  background-color: #46a546;

}

#custom-html-t0 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t0 .product-status-cancelled,

#custom-html-t0 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t0 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t0 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t0 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t0 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t0 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t0 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-t0 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t0 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t0 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t0 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t0 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t0 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t0 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t0 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-t0 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t0 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t0 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t0 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-t0 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t0 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t0 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t0 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t0 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t0 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t0 .pagination > li > a,

#custom-html-t0 .pagination > li > span {

  color: #444444;

}

#custom-html-t0 .pagination > .active > a,

#custom-html-t0 .pagination > .active > a:focus,

#custom-html-t0 .pagination > .active > a:hover,

#custom-html-t0 .pagination > .active > span,

#custom-html-t0 .pagination > .active > span:focus,

#custom-html-t0 .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t0 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t0 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t0 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t0 .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-t0 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t0 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t0 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t0 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t0 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t0 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t0 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t0 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t0 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t0 .status-pending {

  color: #d9534f;

}

#custom-html-t0 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t0 .status-active,

#custom-html-t0 .status-completed,

#custom-html-t0 .status-open {

  color: #3fad46;

}

#custom-html-t0 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t0 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t0 .status-answered,

#custom-html-t0 .status-fraud {

  color: #000000;

}

#custom-html-t0 .status-expired,

#custom-html-t0 .status-transferred.away {

  color: #004258;

}

#custom-html-t0 .status-cancelled {

  color: #9fa29a;

}

#custom-html-t0 .status-terminated {

  color: #666666;

}

#custom-html-t0 .status-onhold {

  color: #224488;

}

#custom-html-t0 .status-inprogress {

  color: #cc0000;

}

#custom-html-t0 .status-closed {

  color: #888888;

}

#custom-html-t0 .status-paid {

  color: #498302;

}

#custom-html-t0 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t0 .status-cancelled {

  color: #87939f;

}

#custom-html-t0 .status-collections {

  color: #9a141e;

}

#custom-html-t0 .status-refunded {

  color: #319fc3;

}

#custom-html-t0 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t0 .status-delivered {

  color: #224488;

}

#custom-html-t0 .status-accepted {

  color: #498302;

}

#custom-html-t0 .status-dead,

#custom-html-t0 .status-lost {

  color: #000000;

}

#custom-html-t0 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t0 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t0 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t0 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t0 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t0 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t0 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t0 .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-t0 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t0 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t0 .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-t0 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t0 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t0 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t0 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t0 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t0 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t0 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t0 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t0 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t0 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t0 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t0 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t0 .ticket-reply .rating,

#custom-html-t0 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t0 .ticket-reply .rating span.star,

#custom-html-t0 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t0 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t0 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t0 .ticket-reply .rating span.star:before,

#custom-html-t0 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t0 .ticket-reply .rating span.star:hover:before,

#custom-html-t0 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t0 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t0 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t0 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t0 .ticket-reply .clear {

  clear: both;

}

#custom-html-t0 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t0 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t0 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t0 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t0 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t0 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t0 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t0 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t0 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t0 .popover-user-notifications ul li:last-child {


  border: 0;

}

#custom-html-t0 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t0 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t0 .popover-user-notifications ul li i.far,

#custom-html-t0 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t0 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t0 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t0 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t0 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t0 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t0 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t0 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t0 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t0 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t0 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t0 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t0 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t0 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t0 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t0 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t0 div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-t0 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t0 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t0 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t0 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t0 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t0 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-t0 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t0 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t0 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t0 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t0 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t0 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t0 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t0 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t0 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t0 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t0 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t0 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t0 .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-t0 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t0 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t0 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t0 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t0 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t0 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-t0 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t0 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t0 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t0 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t0 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t0 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t0 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t0 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t0 .kb-category a small {

  color: #888888;

}

#custom-html-t0 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t0 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t0 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t0 .kbarticles a.admin-inline-edit,

#custom-html-t0 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t0 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t0 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t0 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t0 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t0 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t0 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t0 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t0 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t0 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t0 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t0 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t0 #stepResults {

  font-size: 20px;

}

#custom-html-t0 #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-t0 #stepResults {

    font-size: 14px;

  }

  #custom-html-t0 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t0 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-t0 #main-menu,

  #custom-html-t0 #top-nav,

  #custom-html-t0 .header-lined,

  #custom-html-t0 .sidebar {

    display: none;

  }

  #custom-html-t0 a[href]:after {

    content: "" !important;

  }

}

#custom-html-t0 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t0 h3.with-badge i,

#custom-html-t0 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t0 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-t0 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t0 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-t0 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t0 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t0 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t0 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t0 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t0 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t0 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t0 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t0 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t0 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t0 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t0 .login-popover {

  font-size: 12px;

}

#custom-html-t0 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t0 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t0 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t0 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t0 .error-container {

  text-align: center;

}

#custom-html-t0 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t0 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t0 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t0 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t0 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t0 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t0 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t0 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t0 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t0 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-t0 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t0 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-t0 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t0 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t0 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t0 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t0 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t0 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t0 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t0 .email-verification .btn:active,

#custom-html-t0 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t0 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t0 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t0 .email-verification .far,

#custom-html-t0 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-t0 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t0 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t0 .email-verification .button {

    float: right;

  }

  #custom-html-t0 .email-verification .far,

  #custom-html-t0 .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-t0 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t0 .email-verification.success .far,

#custom-html-t0 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t0 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t0 .email-verification.failed .far,

#custom-html-t0 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t0 .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-t0 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t0 .md-editor > .md-preview,

#custom-html-t0 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t0 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t0 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t0 .small-font {

  font-size: 0.9em;

}

#custom-html-t0 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t0 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t0 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t0 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t0 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t0 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t0 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t0 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t0 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t0 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t0 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t0 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t0 .panel-heading i.fab,

#custom-html-t0 .panel-heading i.fal,

#custom-html-t0 .panel-heading i.far,

#custom-html-t0 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t0 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t0 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t0 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t0 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t0 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t0 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t0 .panel-sidebar .list-group-item.disabled,

#custom-html-t0 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t0 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t0 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t0 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t0 .panel-sidebar a.list-group-item.active,

#custom-html-t0 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t0 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t0 .panel-sidebar a.list-group-item.active i,

#custom-html-t0 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t0 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t0 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t0 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t0 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t0 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t0 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t0 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t0 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t0 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t0 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t0 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t0 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t0 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t0 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t0 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-t0 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t0 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-t0 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t0 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t0 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t0 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t0 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t0 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t0 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t0 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t0 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t0 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t0 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t0 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t0 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t0 .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-t0 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t0 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t0 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t0 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t0 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t0 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t0 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t0 .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-t0 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t0 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t0 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t0 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t0 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t0 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t0 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t0 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t0 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t0 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t0 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t0 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t0 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t0 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t0 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t0 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t0 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t0 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t0 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t0 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t0 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t0 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t0 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t0 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t0 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t0 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t0 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t0 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t0 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t0 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t0 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t0 .panel-mc-sso .btn,

#custom-html-t0 .panel-mc-sso .form-control,

#custom-html-t0 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t0 .panel-mc-sso small {

  display: block;

}

#custom-html-t0 .social-signin-btns {

  text-align: center;

}

#custom-html-t0 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t0 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t0 .btn-social i.far,

#custom-html-t0 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-facebook.active,

#custom-html-t0 .btn-facebook:active,

#custom-html-t0 .btn-facebook:focus,

#custom-html-t0 .btn-facebook:hover,

#custom-html-t0 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-facebook.active,

#custom-html-t0 .btn-facebook:active,

#custom-html-t0 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t0 .btn-facebook.disabled,

#custom-html-t0 .btn-facebook.disabled.active,

#custom-html-t0 .btn-facebook.disabled:active,

#custom-html-t0 .btn-facebook.disabled:focus,

#custom-html-t0 .btn-facebook.disabled:hover,

#custom-html-t0 .btn-facebook[disabled],

#custom-html-t0 .btn-facebook[disabled].active,

#custom-html-t0 .btn-facebook[disabled]:active,

#custom-html-t0 .btn-facebook[disabled]:focus,

#custom-html-t0 .btn-facebook[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-facebook,

#custom-html-t0 fieldset[disabled] .btn-facebook.active,

#custom-html-t0 fieldset[disabled] .btn-facebook:active,

#custom-html-t0 fieldset[disabled] .btn-facebook:focus,

#custom-html-t0 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-google.active,

#custom-html-t0 .btn-google:active,

#custom-html-t0 .btn-google:focus,

#custom-html-t0 .btn-google:hover,

#custom-html-t0 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-google.active,

#custom-html-t0 .btn-google:active,

#custom-html-t0 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t0 .btn-google-plus.disabled.active,

#custom-html-t0 .btn-google-plus.disabled:active,

#custom-html-t0 .btn-google-plus.disabled:focus,

#custom-html-t0 .btn-google-plus[disabled].active,

#custom-html-t0 .btn-google-plus[disabled]:active,

#custom-html-t0 .btn-google-plus[disabled]:focus,

#custom-html-t0 .btn-google-plus[disabled]:hover,

#custom-html-t0 .btn-google.disabled,

#custom-html-t0 .btn-google.disabled:hover,

#custom-html-t0 .btn-google[disabled],

#custom-html-t0 fieldset[disabled] .btn-google,

#custom-html-t0 fieldset[disabled] .btn-google-plus.active,

#custom-html-t0 fieldset[disabled] .btn-google-plus:active,

#custom-html-t0 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t0 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-twitter.active,

#custom-html-t0 .btn-twitter:active,

#custom-html-t0 .btn-twitter:focus,

#custom-html-t0 .btn-twitter:hover,

#custom-html-t0 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .btn-twitter.active,

#custom-html-t0 .btn-twitter:active,

#custom-html-t0 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t0 .btn-twitter.disabled,

#custom-html-t0 .btn-twitter.disabled.active,

#custom-html-t0 .btn-twitter.disabled:active,

#custom-html-t0 .btn-twitter.disabled:focus,

#custom-html-t0 .btn-twitter.disabled:hover,

#custom-html-t0 .btn-twitter[disabled],

#custom-html-t0 .btn-twitter[disabled].active,

#custom-html-t0 .btn-twitter[disabled]:active,

#custom-html-t0 .btn-twitter[disabled]:focus,

#custom-html-t0 .btn-twitter[disabled]:hover,

#custom-html-t0 fieldset[disabled] .btn-twitter,

#custom-html-t0 fieldset[disabled] .btn-twitter.active,

#custom-html-t0 fieldset[disabled] .btn-twitter:active,

#custom-html-t0 fieldset[disabled] .btn-twitter:focus,

#custom-html-t0 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t0 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t0 .providerLinkingFeedback {

  display: none;

}

#custom-html-t0 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t0 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t0 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t0 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t0 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t0 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t0 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t0 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t0 #registration .field,

#custom-html-t0 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t0 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t0 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t0 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t0 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t0 #registration textarea.field {

  height: auto;

}

#custom-html-t0 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t0 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t0 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t0 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t0 #registration .field[disabled],

#custom-html-t0 #registration .field[readonly],

#custom-html-t0 #registration .form-control[disabled],

#custom-html-t0 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t0 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t0 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t0 .upgrade .product-to-be-upgraded h4,

#custom-html-t0 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t0 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t0 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t0 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t0 .upgrade .products .product .current,

#custom-html-t0 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t0 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t0 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-t0 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-t0 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t0 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t0 .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t0 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t0 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t0 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t0 .upgrade .products .far,

#custom-html-t0 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t0 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t0 .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-t0 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t0 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t0 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t0 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t0 .intl-tel-input {

  width: 100%;

}

#custom-html-t0 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t0 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .bootstrap-switch input[type=checkbox],

#custom-html-t0 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t0 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t0 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t0 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t0 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t0 .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-t0 .md-editor .md-footer,

#custom-html-t0 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t0 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t0 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t0 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t0 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t0 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t0 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t0 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t0 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t0 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t0 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t0 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t0 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t0 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t0 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t0 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t0 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t0 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t0 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t0 table.dataTable td,

#custom-html-t0 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t0 table.dataTable td.dataTables_empty,

#custom-html-t0 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t0 table.dataTable.nowrap td,

#custom-html-t0 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t0 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t0 table.dataTable thead > tr > td.sorting,

#custom-html-t0 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t0 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t0 table.dataTable thead > tr > th.sorting,

#custom-html-t0 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t0 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t0 table.dataTable thead > tr > td:active,

#custom-html-t0 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t0 table.dataTable thead .sorting,

#custom-html-t0 table.dataTable thead .sorting_asc,

#custom-html-t0 table.dataTable thead .sorting_asc_disabled,

#custom-html-t0 table.dataTable thead .sorting_desc,

#custom-html-t0 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t0 table.dataTable thead .sorting:after,

#custom-html-t0 table.dataTable thead .sorting_asc:after,

#custom-html-t0 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t0 table.dataTable thead .sorting_desc:after,

#custom-html-t0 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t0 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t0 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t0 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t0 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t0 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t0 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t0 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t0 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t0 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t0 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t0 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t0 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t0 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-t0 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t0 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t0 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t0 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-t0 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t0 table.dataTable.table-condensed .sorting:after,

#custom-html-t0 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t0 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t0 table.table-bordered.dataTable td,

#custom-html-t0 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t0 table.table-bordered.dataTable td:last-child,

#custom-html-t0 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t0 table.table-bordered.dataTable tbody td,

#custom-html-t0 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t0 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t0 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t0 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t0 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t0 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t0 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t0 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t0 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t0 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t0 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t0 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t0 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t0 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t0 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t0 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t0 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t0 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t0 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t0 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t0 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t0 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t0 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t0 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t0 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t0 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t0 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-t0 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t0 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t0 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t0 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t0 .multiselect-container > li {

  padding: 0;

}

#custom-html-t0 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t0 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t0 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t0 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t0 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t0 .multiselect-container > li > a > label.checkbox,

#custom-html-t0 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t0 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t0 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t0 .form-inline .multiselect-container label.checkbox,

#custom-html-t0 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t0 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t0 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7yihT8WH {

  padding-top: 60px;

  padding-bottom: 30px;

  background-image: url("../../../assets/images/mbr-4-1920x1280.jpg");

}

.cid-sl7yihT8WH P {

  color: #767676;

}

.cid-sl7yihT8WH H1 {

  color: #ffffff;

}

.cid-sl7yihT8WH .mbr-text,

.cid-sl7yihT8WH .mbr-section-btn {

  color: #ffffff;

}

.cid-sl7yihT8WH h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3urJXQUj .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3urJXQUj .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3urJXQUj .divider-top::before,

.cid-sF3urJXQUj .divider-bottom::before,

.cid-sF3urJXQUj .divider-top::after,

.cid-sF3urJXQUj .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3urJXQUj .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3urJXQUj .divider-triangles::before {

  top: -50px;

}

.cid-sF3urJXQUj .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3urJXQUj .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3urJXQUj .divider-multitriangles::before,

.cid-sF3urJXQUj .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3urJXQUj .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-rFCEid16J9 {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-rFCEid16J9 h1 {

  color: #616161;

}

.cid-rFCEid16J9 h2,

.cid-rFCEid16J9 h3,

.cid-rFCEid16J9 p {

  color: #767676;

}

.cid-rFCEid16J9 .mbr-section-subtitle {

  font-style: italic;

}

.cid-rFCEid16J9 H1 {

  color: #000000;

  text-align: center;

}

.cid-rFCEid16J9 H3 {

  color: #000000;

}

.cid-rFCEid16J9 .mbr-text,

.cid-rFCEid16J9 .mbr-section-btn {

  color: #000000;

}

.cid-sF3uBdchws .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3uBdchws .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3uBdchws .divider-top::before,

.cid-sF3uBdchws .divider-bottom::before,

.cid-sF3uBdchws .divider-top::after,

.cid-sF3uBdchws .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3uBdchws .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3uBdchws .divider-triangles::before {

  top: -50px;

}

.cid-sF3uBdchws .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3uBdchws .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3uBdchws .divider-multitriangles::before,

.cid-sF3uBdchws .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3uBdchws .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-s889Z4t99I {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s889Z4t99I h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s889Z4t99I p {

  color: #767676;

  text-align: left;

}

.cid-s889Z4t99I .card-box {

  padding-top: 2rem;

}

.cid-s889Z4t99I .card-wrapper {

  height: 100%;

}

.cid-svDABBLxk3 {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDABBLxk3 .content {

    text-align: center;

  }

  .cid-svDABBLxk3 .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDABBLxk3 .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDABBLxk3 .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDABBLxk3 .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDABBLxk3 .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDABBLxk3 .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDABBLxk3 .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDABBLxk3 .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDABBLxk3 .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDABBLxk3 .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDABBLxk3 .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDABBLxk3 .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDABBLxk3 .copyright > p {

  text-align: left;

}

.cid-svDABBLxk3 H5 {

  color: #000000;

}

.cid-svGGTrYP1c .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGGTrYP1c .my-float {

  margin-top: 16px;

}

.cid-svGGTrYP1c P {

  color: #232323;

}

.cid-svGGTrYP1c DIV {

  color: #ffffff;

}

.cid-svGGTrYP1c H10 {

  color: #767676;

}

.cid-svGGTrYP1c .hidden {

  display: none;

}

#custom-html-t4 {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-t4 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t4 body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-t4 article,

#custom-html-t4 aside,

#custom-html-t4 details,

#custom-html-t4 figcaption,

#custom-html-t4 figure,

#custom-html-t4 footer,

#custom-html-t4 header,

#custom-html-t4 hgroup,

#custom-html-t4 main,

#custom-html-t4 menu,

#custom-html-t4 nav,

#custom-html-t4 section,

#custom-html-t4 summary {

  display: block;

}

#custom-html-t4 audio,

#custom-html-t4 canvas,

#custom-html-t4 progress,

#custom-html-t4 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t4 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t4 [hidden],

#custom-html-t4 template {

  display: none;

}

#custom-html-t4 a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-t4 a:active,

#custom-html-t4 a:hover {

  outline: 0;

}

#custom-html-t4 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t4 b,

#custom-html-t4 strong {

  font-weight: 700;

}

#custom-html-t4 dfn {

  font-style: italic;

}

#custom-html-t4 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t4 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t4 small {

  font-size: 80%;

}

#custom-html-t4 sub,

#custom-html-t4 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t4 sup {

  top: -0.5em;

}

#custom-html-t4 sub {

  bottom: -0.25em;

}

#custom-html-t4 img {

  border: 0;

  vertical-align: middle;

}

#custom-html-t4 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t4 figure {

  margin: 0;

}

#custom-html-t4 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t4 pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t4 code,

#custom-html-t4 kbd,

#custom-html-t4 pre,

#custom-html-t4 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-t4 button,

#custom-html-t4 input,

#custom-html-t4 optgroup,

#custom-html-t4 select,

#custom-html-t4 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t4 button {

  overflow: visible;

}

#custom-html-t4 button,

#custom-html-t4 select {

  text-transform: none;

}

#custom-html-t4 button,

#custom-html-t4 html input[type=button],

#custom-html-t4 input[type=reset],

#custom-html-t4 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t4 button[disabled],

#custom-html-t4 html input[disabled] {

  cursor: default;

}

#custom-html-t4 button::-moz-focus-inner,

#custom-html-t4 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t4 input {

  line-height: normal;

}

#custom-html-t4 input[type=checkbox],

#custom-html-t4 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t4 input[type=number]::-webkit-inner-spin-button,

#custom-html-t4 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t4 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-t4 input[type=search]::-webkit-search-cancel-button,

#custom-html-t4 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t4 fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-t4 legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t4 textarea {

  overflow: auto;

}

#custom-html-t4 optgroup {

  font-weight: 700;

}

#custom-html-t4 table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-t4 td,

#custom-html-t4 th {

  padding: 0;

}

@media print {

  #custom-html-t4 *,

  #custom-html-t4 :after,

  #custom-html-t4 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t4 a,

  #custom-html-t4 a:visited {

    text-decoration: underline;

  }

  #custom-html-t4 a[href]:after {

    content: "" !important;

  }

  #custom-html-t4 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t4 a[href^="#"]:after,

  #custom-html-t4 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t4 blockquote,

  #custom-html-t4 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t4 thead {

    display: table-header-group;

  }

  #custom-html-t4 img,

  #custom-html-t4 tr {

    page-break-inside: avoid;

  }

  #custom-html-t4 img {

    max-width: 100% !important;

  }

  #custom-html-t4 h2,

  #custom-html-t4 h3,

  #custom-html-t4 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t4 h2,

  #custom-html-t4 h3 {

    page-break-after: avoid;

  }

  #custom-html-t4 .navbar {

    display: none;

  }

  #custom-html-t4 .btn > .caret,

  #custom-html-t4 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t4 .label {

    border: 1px solid #000000;

  }

  #custom-html-t4 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t4 .table td,

  #custom-html-t4 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t4 .table-bordered td,

  #custom-html-t4 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-t4 .visible-print {

    display: block !important;

  }

  #custom-html-t4 table.visible-print {

    display: table !important;

  }

  #custom-html-t4 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t4 td.visible-print,

  #custom-html-t4 th.visible-print {

    display: table-cell !important;

  }

  #custom-html-t4 .visible-print-block {

    display: block !important;

  }

  #custom-html-t4 .visible-print-inline {

    display: inline !important;

  }

  #custom-html-t4 .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-t4 .hidden-print {

    display: none !important;

  }

  #custom-html-t4 #main-menu,

  #custom-html-t4 #top-nav,

  #custom-html-t4 .header-lined,

  #custom-html-t4 .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t4 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t4 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t4 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t4 .glyphicon-eur:before,

#custom-html-t4 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t4 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t4 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t4 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t4 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t4 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t4 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t4 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t4 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-t4 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t4 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t4 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t4 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t4 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t4 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t4 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t4 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t4 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t4 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t4 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t4 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t4 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t4 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t4 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t4 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t4 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t4 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t4 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t4 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t4 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t4 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t4 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t4 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t4 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t4 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t4 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t4 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t4 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t4 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t4 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t4 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t4 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t4 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t4 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t4 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t4 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t4 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t4 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t4 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t4 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t4 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t4 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t4 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t4 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t4 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t4 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t4 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t4 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t4 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t4 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t4 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t4 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t4 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t4 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t4 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t4 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t4 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t4 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t4 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t4 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t4 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t4 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t4 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t4 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t4 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t4 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t4 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t4 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t4 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t4 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t4 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t4 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t4 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t4 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t4 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t4 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t4 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t4 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t4 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t4 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t4 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t4 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t4 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t4 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t4 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t4 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t4 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t4 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t4 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t4 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t4 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t4 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t4 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t4 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t4 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t4 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t4 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t4 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t4 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t4 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t4 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t4 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t4 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t4 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t4 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t4 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t4 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t4 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t4 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t4 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t4 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t4 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-t4 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t4 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t4 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t4 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t4 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t4 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t4 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t4 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t4 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t4 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t4 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t4 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t4 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t4 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t4 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t4 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t4 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t4 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t4 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t4 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t4 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t4 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t4 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t4 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t4 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t4 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t4 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t4 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t4 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t4 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-t4 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t4 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t4 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t4 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t4 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t4 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t4 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t4 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t4 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t4 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t4 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t4 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t4 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t4 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t4 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t4 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t4 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t4 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t4 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t4 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t4 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t4 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t4 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t4 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t4 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t4 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t4 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t4 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t4 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t4 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t4 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t4 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t4 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t4 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t4 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t4 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t4 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t4 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t4 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t4 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t4 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t4 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t4 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t4 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t4 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t4 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t4 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t4 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t4 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t4 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t4 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t4 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t4 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t4 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t4 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t4 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t4 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t4 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t4 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t4 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t4 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t4 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t4 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t4 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t4 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t4 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t4 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-t4 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t4 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t4 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t4 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t4 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t4 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t4 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t4 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t4 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t4 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t4 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t4 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t4 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t4 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t4 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t4 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t4 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t4 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t4 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t4 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t4 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t4 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t4 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t4 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t4 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t4 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t4 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t4 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t4 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t4 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t4 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t4 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t4 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t4 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t4 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t4 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t4 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t4 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t4 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t4 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t4 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t4 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t4 :after,

#custom-html-t4 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t4 button,

#custom-html-t4 input,

#custom-html-t4 select,

#custom-html-t4 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t4 a:focus,

#custom-html-t4 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t4 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t4 .carousel-inner > .item > a > img,

#custom-html-t4 .carousel-inner > .item > img,

#custom-html-t4 .img-responsive,

#custom-html-t4 .thumbnail a > img,

#custom-html-t4 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t4 .img-rounded {

  border-radius: 6px;

}

#custom-html-t4 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t4 .img-circle {

  border-radius: 50%;

}

#custom-html-t4 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t4 .sr-only-focusable:active,

#custom-html-t4 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t4 [role=button] {

  cursor: pointer;

}

#custom-html-t4 .h1,

#custom-html-t4 .h2,

#custom-html-t4 .h3,

#custom-html-t4 .h4,

#custom-html-t4 .h5,

#custom-html-t4 .h6,

#custom-html-t4 h1,

#custom-html-t4 h2,

#custom-html-t4 h3,

#custom-html-t4 h4,

#custom-html-t4 h5,

#custom-html-t4 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t4 .h1 .small,

#custom-html-t4 .h1 small,

#custom-html-t4 .h2 .small,

#custom-html-t4 .h2 small,

#custom-html-t4 .h3 .small,

#custom-html-t4 .h3 small,

#custom-html-t4 .h4 .small,

#custom-html-t4 .h4 small,

#custom-html-t4 .h5 .small,

#custom-html-t4 .h5 small,

#custom-html-t4 .h6 .small,

#custom-html-t4 .h6 small,

#custom-html-t4 h1 .small,

#custom-html-t4 h1 small,

#custom-html-t4 h2 .small,

#custom-html-t4 h2 small,

#custom-html-t4 h3 .small,

#custom-html-t4 h3 small,

#custom-html-t4 h4 .small,

#custom-html-t4 h4 small,

#custom-html-t4 h5 .small,

#custom-html-t4 h5 small,

#custom-html-t4 h6 .small,

#custom-html-t4 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t4 .h1,

#custom-html-t4 .h2,

#custom-html-t4 .h3,

#custom-html-t4 h1,

#custom-html-t4 h2,

#custom-html-t4 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t4 .h1 .small,

#custom-html-t4 .h1 small,

#custom-html-t4 .h2 .small,

#custom-html-t4 .h2 small,

#custom-html-t4 .h3 .small,

#custom-html-t4 .h3 small,

#custom-html-t4 h1 .small,

#custom-html-t4 h1 small,

#custom-html-t4 h2 .small,

#custom-html-t4 h2 small,

#custom-html-t4 h3 .small,

#custom-html-t4 h3 small {

  font-size: 65%;

}

#custom-html-t4 .h4,

#custom-html-t4 .h5,

#custom-html-t4 .h6,

#custom-html-t4 h4,

#custom-html-t4 h5,

#custom-html-t4 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t4 .h4 .small,

#custom-html-t4 .h4 small,

#custom-html-t4 .h5 .small,

#custom-html-t4 .h5 small,

#custom-html-t4 .h6 .small,

#custom-html-t4 .h6 small,

#custom-html-t4 h4 .small,

#custom-html-t4 h4 small,

#custom-html-t4 h5 .small,

#custom-html-t4 h5 small,

#custom-html-t4 h6 .small,

#custom-html-t4 h6 small {

  font-size: 75%;

}

#custom-html-t4 .h1,

#custom-html-t4 h1 {

  font-size: 36px;

}

#custom-html-t4 .h2,

#custom-html-t4 h2 {

  font-size: 30px;

}

#custom-html-t4 .h3,

#custom-html-t4 h3 {

  font-size: 24px;

}

#custom-html-t4 .h4,

#custom-html-t4 h4 {

  font-size: 18px;

}

#custom-html-t4 .h5,

#custom-html-t4 h5 {

  font-size: 14px;

}

#custom-html-t4 .h6,

#custom-html-t4 h6 {

  font-size: 12px;

}

#custom-html-t4 p {

  margin: 0 0 10px;

}

#custom-html-t4 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t4 .lead {

    font-size: 21px;

  }

  #custom-html-t4 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t4 .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-t4 .container {

    width: 750px;

  }

  #custom-html-t4 .col-sm-1,

  #custom-html-t4 .col-sm-10,

  #custom-html-t4 .col-sm-11,

  #custom-html-t4 .col-sm-12,

  #custom-html-t4 .col-sm-2,

  #custom-html-t4 .col-sm-3,

  #custom-html-t4 .col-sm-4,

  #custom-html-t4 .col-sm-5,

  #custom-html-t4 .col-sm-6,

  #custom-html-t4 .col-sm-7,

  #custom-html-t4 .col-sm-8,

  #custom-html-t4 .col-sm-9 {

    float: left;

  }

  #custom-html-t4 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t4 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t4 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t4 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t4 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t4 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t4 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t4 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t4 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t4 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t4 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t4 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t4 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t4 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t4 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t4 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t4 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t4 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t4 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t4 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t4 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t4 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-t4 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t4 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t4 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t4 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t4 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t4 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t4 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t4 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t4 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t4 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t4 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t4 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t4 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t4 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t4 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t4 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t4 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t4 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t4 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t4 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t4 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t4 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t4 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t4 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t4 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t4 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t4 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t4 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t4 .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-t4 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t4 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t4 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t4 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t4 .form-inline .input-group .form-control,

  #custom-html-t4 .form-inline .input-group .input-group-addon,

  #custom-html-t4 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t4 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t4 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t4 .form-inline .checkbox,

  #custom-html-t4 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t4 .form-inline .checkbox label,

  #custom-html-t4 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t4 .form-inline .checkbox input[type=checkbox],

  #custom-html-t4 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t4 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t4 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-t4 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-t4 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-t4 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-t4 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-t4 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t4 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t4 .nav-tabs.nav-justified > .active > a,

  #custom-html-t4 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t4 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t4 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t4 .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-t4 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t4 .nav-tabs-justified > .active > a,

  #custom-html-t4 .nav-tabs-justified > .active > a:focus,

  #custom-html-t4 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t4 .navbar {

    border-radius: 4px;

  }

  #custom-html-t4 .navbar-header {

    float: left;

  }

  #custom-html-t4 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t4 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t4 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t4 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t4 .navbar-fixed-top .navbar-collapse,

  #custom-html-t4 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-t4 .container-fluid > .navbar-collapse,

  #custom-html-t4 .container-fluid > .navbar-header,

  #custom-html-t4 .container > .navbar-collapse,

  #custom-html-t4 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-t4 .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-t4 .navbar-fixed-bottom,

  #custom-html-t4 .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-t4 .navbar > .container .navbar-brand,

  #custom-html-t4 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-t4 .navbar-toggle {

    display: none;

  }

  #custom-html-t4 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t4 .navbar-nav > li {

    float: left;

  }

  #custom-html-t4 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-t4 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t4 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t4 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t4 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t4 .navbar-form .input-group .form-control,

  #custom-html-t4 .navbar-form .input-group .input-group-addon,

  #custom-html-t4 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t4 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t4 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t4 .navbar-form .checkbox,

  #custom-html-t4 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t4 .navbar-form .checkbox label,

  #custom-html-t4 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t4 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t4 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t4 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t4 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t4 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-t4 .navbar-left {

    float: left !important;

  }

  #custom-html-t4 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t4 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-t4 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t4 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t4 .modal-sm {

    width: 300px;

  }

  #custom-html-t4 .pull-sm-left {

    float: left;

  }

  #custom-html-t4 .pull-sm-right {

    float: right;

  }

  #custom-html-t4 .text-right-sm {

    text-align: right;

  }

  #custom-html-t4 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t4 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-t4 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t4 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t4 .email-verification .button {

    float: right;

  }

  #custom-html-t4 .email-verification .far,

  #custom-html-t4 .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-t4 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t4 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-t4 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t4 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t4 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t4 .small,

#custom-html-t4 small {

  font-size: 85%;

}

#custom-html-t4 .mark,

#custom-html-t4 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t4 .text-left {

  text-align: left;

}

#custom-html-t4 .text-right {

  text-align: right;

}

#custom-html-t4 .text-center {

  text-align: center;

}

#custom-html-t4 .text-justify {

  text-align: justify;

}

#custom-html-t4 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t4 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t4 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t4 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t4 .text-muted {

  color: #777777;

}

#custom-html-t4 .text-primary {

  color: #000000;

}

#custom-html-t4 a.text-primary:focus,

#custom-html-t4 a.text-primary:hover {

  color: #000000;

}

#custom-html-t4 .text-success {

  color: #3c763d;

}

#custom-html-t4 a.text-success:focus,

#custom-html-t4 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t4 .text-info {

  color: #31708f;

}

#custom-html-t4 a.text-info:focus,

#custom-html-t4 a.text-info:hover {

  color: #000000;

}

#custom-html-t4 .text-warning {

  color: #8a6d3b;

}

#custom-html-t4 a.text-warning:focus,

#custom-html-t4 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t4 .text-danger {

  color: #a94442;

}

#custom-html-t4 a.text-danger:focus,

#custom-html-t4 a.text-danger:hover {

  color: #843534;

}

#custom-html-t4 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t4 a.bg-primary:focus,

#custom-html-t4 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t4 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t4 a.bg-success:focus,

#custom-html-t4 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t4 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t4 a.bg-info:focus,

#custom-html-t4 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t4 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t4 a.bg-warning:focus,

#custom-html-t4 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t4 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t4 a.bg-danger:focus,

#custom-html-t4 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t4 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t4 ol,

#custom-html-t4 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t4 ol ol,

#custom-html-t4 ol ul,

#custom-html-t4 ul ol,

#custom-html-t4 ul ul {

  margin-bottom: 0;

}

#custom-html-t4 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t4 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t4 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t4 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t4 dd,

#custom-html-t4 dt {

  line-height: 1.42857143;

}

#custom-html-t4 dt {

  font-weight: 700;

}

#custom-html-t4 dd {

  margin-left: 0;

}

#custom-html-t4 abbr[data-original-title],

#custom-html-t4 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t4 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t4 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t4 blockquote ol:last-child,

#custom-html-t4 blockquote p:last-child,

#custom-html-t4 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t4 blockquote .small,

#custom-html-t4 blockquote footer,

#custom-html-t4 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-t4 blockquote .small:before,

#custom-html-t4 blockquote footer:before,

#custom-html-t4 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t4 .blockquote-reverse,

#custom-html-t4 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t4 .blockquote-reverse .small:before,

#custom-html-t4 .blockquote-reverse footer:before,

#custom-html-t4 .blockquote-reverse small:before,

#custom-html-t4 blockquote.pull-right .small:before,

#custom-html-t4 blockquote.pull-right footer:before,

#custom-html-t4 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t4 .blockquote-reverse .small:after,

#custom-html-t4 .blockquote-reverse footer:after,

#custom-html-t4 .blockquote-reverse small:after,

#custom-html-t4 blockquote.pull-right .small:after,

#custom-html-t4 blockquote.pull-right footer:after,

#custom-html-t4 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t4 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t4 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t4 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t4 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t4 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t4 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t4 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-t4 .container {

    width: 970px;

  }

  #custom-html-t4 .col-md-1,

  #custom-html-t4 .col-md-10,

  #custom-html-t4 .col-md-11,

  #custom-html-t4 .col-md-12,

  #custom-html-t4 .col-md-2,

  #custom-html-t4 .col-md-3,

  #custom-html-t4 .col-md-4,

  #custom-html-t4 .col-md-5,

  #custom-html-t4 .col-md-6,

  #custom-html-t4 .col-md-7,

  #custom-html-t4 .col-md-8,

  #custom-html-t4 .col-md-9 {

    float: left;

  }

  #custom-html-t4 .col-md-12 {

    width: 100%;

  }

  #custom-html-t4 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t4 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t4 .col-md-9 {

    width: 75%;

  }

  #custom-html-t4 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t4 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t4 .col-md-6 {

    width: 50%;

  }

  #custom-html-t4 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t4 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t4 .col-md-3 {

    width: 25%;

  }

  #custom-html-t4 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t4 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t4 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t4 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t4 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t4 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t4 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t4 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t4 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t4 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t4 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t4 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t4 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t4 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t4 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t4 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t4 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t4 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t4 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t4 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t4 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t4 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t4 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t4 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t4 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-t4 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t4 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t4 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t4 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t4 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t4 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t4 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t4 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t4 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t4 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t4 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t4 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t4 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t4 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t4 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t4 .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-t4 .modal-lg {

    width: 900px;

  }

  #custom-html-t4 .pull-md-left {

    float: left;

  }

  #custom-html-t4 .pull-md-right {

    float: right;

  }

  #custom-html-t4 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t4 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t4 .container {

    width: 1170px;

  }

  #custom-html-t4 .col-lg-1,

  #custom-html-t4 .col-lg-10,

  #custom-html-t4 .col-lg-11,

  #custom-html-t4 .col-lg-12,

  #custom-html-t4 .col-lg-2,

  #custom-html-t4 .col-lg-3,

  #custom-html-t4 .col-lg-4,

  #custom-html-t4 .col-lg-5,

  #custom-html-t4 .col-lg-6,

  #custom-html-t4 .col-lg-7,

  #custom-html-t4 .col-lg-8,

  #custom-html-t4 .col-lg-9 {

    float: left;

  }

  #custom-html-t4 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t4 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t4 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t4 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t4 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t4 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t4 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t4 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t4 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t4 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t4 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t4 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t4 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t4 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t4 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t4 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t4 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t4 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t4 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t4 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t4 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t4 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-t4 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t4 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t4 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t4 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t4 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t4 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t4 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t4 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t4 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t4 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t4 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t4 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t4 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t4 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t4 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t4 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t4 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t4 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t4 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t4 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t4 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t4 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t4 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t4 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t4 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t4 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t4 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t4 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t4 .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-t4 .visible-lg {

    display: block !important;

  }

  #custom-html-t4 table.visible-lg {

    display: table !important;

  }

  #custom-html-t4 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t4 td.visible-lg,

  #custom-html-t4 th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-t4 .visible-lg-block {

    display: block !important;

  }

  #custom-html-t4 .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-t4 .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-t4 .hidden-lg {

    display: none !important;

  }

  #custom-html-t4 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t4 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t4 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t4 .col-lg-1,

#custom-html-t4 .col-lg-10,

#custom-html-t4 .col-lg-11,

#custom-html-t4 .col-lg-12,

#custom-html-t4 .col-lg-2,

#custom-html-t4 .col-lg-3,

#custom-html-t4 .col-lg-4,

#custom-html-t4 .col-lg-5,

#custom-html-t4 .col-lg-6,

#custom-html-t4 .col-lg-7,

#custom-html-t4 .col-lg-8,

#custom-html-t4 .col-lg-9,

#custom-html-t4 .col-md-1,

#custom-html-t4 .col-md-10,

#custom-html-t4 .col-md-11,

#custom-html-t4 .col-md-12,

#custom-html-t4 .col-md-2,

#custom-html-t4 .col-md-3,

#custom-html-t4 .col-md-4,

#custom-html-t4 .col-md-5,

#custom-html-t4 .col-md-6,

#custom-html-t4 .col-md-7,

#custom-html-t4 .col-md-8,

#custom-html-t4 .col-md-9,

#custom-html-t4 .col-sm-1,

#custom-html-t4 .col-sm-10,

#custom-html-t4 .col-sm-11,

#custom-html-t4 .col-sm-12,

#custom-html-t4 .col-sm-2,

#custom-html-t4 .col-sm-3,

#custom-html-t4 .col-sm-4,

#custom-html-t4 .col-sm-5,

#custom-html-t4 .col-sm-6,

#custom-html-t4 .col-sm-7,

#custom-html-t4 .col-sm-8,

#custom-html-t4 .col-sm-9,

#custom-html-t4 .col-xs-1,

#custom-html-t4 .col-xs-10,

#custom-html-t4 .col-xs-11,

#custom-html-t4 .col-xs-12,

#custom-html-t4 .col-xs-2,

#custom-html-t4 .col-xs-3,

#custom-html-t4 .col-xs-4,

#custom-html-t4 .col-xs-5,

#custom-html-t4 .col-xs-6,

#custom-html-t4 .col-xs-7,

#custom-html-t4 .col-xs-8,

#custom-html-t4 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t4 .col-xs-1,

#custom-html-t4 .col-xs-10,

#custom-html-t4 .col-xs-11,

#custom-html-t4 .col-xs-12,

#custom-html-t4 .col-xs-2,

#custom-html-t4 .col-xs-3,

#custom-html-t4 .col-xs-4,

#custom-html-t4 .col-xs-5,

#custom-html-t4 .col-xs-6,

#custom-html-t4 .col-xs-7,

#custom-html-t4 .col-xs-8,

#custom-html-t4 .col-xs-9 {

  float: left;

}

#custom-html-t4 .col-xs-12 {

  width: 100%;

}

#custom-html-t4 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t4 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t4 .col-xs-9 {

  width: 75%;

}

#custom-html-t4 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t4 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t4 .col-xs-6 {

  width: 50%;

}

#custom-html-t4 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t4 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-t4 .col-xs-3 {

  width: 25%;

}

#custom-html-t4 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t4 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t4 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t4 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t4 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t4 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t4 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t4 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t4 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t4 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t4 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t4 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t4 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t4 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t4 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t4 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t4 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t4 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t4 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t4 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t4 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t4 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t4 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t4 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t4 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t4 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t4 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t4 .col-xs-push-0 {

  left: auto;

}

#custom-html-t4 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t4 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t4 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t4 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t4 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t4 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t4 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t4 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t4 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t4 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t4 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t4 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t4 .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-t4 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t4 th {

  text-align: left;

}

#custom-html-t4 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t4 .table > tbody > tr > td,

#custom-html-t4 .table > tbody > tr > th,

#custom-html-t4 .table > tfoot > tr > td,

#custom-html-t4 .table > tfoot > tr > th,

#custom-html-t4 .table > thead > tr > td,

#custom-html-t4 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t4 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t4 .table > caption + thead > tr:first-child > td,

#custom-html-t4 .table > caption + thead > tr:first-child > th,

#custom-html-t4 .table > colgroup + thead > tr:first-child > td,

#custom-html-t4 .table > colgroup + thead > tr:first-child > th,

#custom-html-t4 .table > thead:first-child > tr:first-child > td,

#custom-html-t4 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t4 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t4 .table .table {

  background-color: #ffffff;

}

#custom-html-t4 .table-condensed > tbody > tr > td,

#custom-html-t4 .table-condensed > tbody > tr > th,

#custom-html-t4 .table-condensed > tfoot > tr > td,

#custom-html-t4 .table-condensed > tfoot > tr > th,

#custom-html-t4 .table-condensed > thead > tr > td,

#custom-html-t4 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t4 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t4 .table-bordered > tbody > tr > td,

#custom-html-t4 .table-bordered > tbody > tr > th,

#custom-html-t4 .table-bordered > tfoot > tr > td,

#custom-html-t4 .table-bordered > tfoot > tr > th,

#custom-html-t4 .table-bordered > thead > tr > td,

#custom-html-t4 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t4 .table-bordered > thead > tr > td,

#custom-html-t4 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t4 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t4 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t4 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t4 table td[class*=col-],

#custom-html-t4 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t4 .table > tbody > tr.active > td,

#custom-html-t4 .table > tbody > tr.active > th,

#custom-html-t4 .table > tbody > tr > td.active,

#custom-html-t4 .table > tbody > tr > th.active,

#custom-html-t4 .table > tfoot > tr.active > td,

#custom-html-t4 .table > tfoot > tr.active > th,

#custom-html-t4 .table > tfoot > tr > td.active,

#custom-html-t4 .table > tfoot > tr > th.active,

#custom-html-t4 .table > thead > tr.active > td,

#custom-html-t4 .table > thead > tr.active > th,

#custom-html-t4 .table > thead > tr > td.active,

#custom-html-t4 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t4 .table-hover > tbody > tr.active:hover > td,

#custom-html-t4 .table-hover > tbody > tr.active:hover > th,

#custom-html-t4 .table-hover > tbody > tr:hover > .active,

#custom-html-t4 .table-hover > tbody > tr > td.active:hover,

#custom-html-t4 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t4 .table > tbody > tr.success > td,

#custom-html-t4 .table > tbody > tr.success > th,

#custom-html-t4 .table > tbody > tr > td.success,

#custom-html-t4 .table > tbody > tr > th.success,

#custom-html-t4 .table > tfoot > tr.success > td,

#custom-html-t4 .table > tfoot > tr.success > th,

#custom-html-t4 .table > tfoot > tr > td.success,

#custom-html-t4 .table > tfoot > tr > th.success,

#custom-html-t4 .table > thead > tr.success > td,

#custom-html-t4 .table > thead > tr.success > th,

#custom-html-t4 .table > thead > tr > td.success,

#custom-html-t4 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t4 .table-hover > tbody > tr.success:hover > td,

#custom-html-t4 .table-hover > tbody > tr.success:hover > th,

#custom-html-t4 .table-hover > tbody > tr:hover > .success,

#custom-html-t4 .table-hover > tbody > tr > td.success:hover,

#custom-html-t4 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t4 .table > tbody > tr.info > td,

#custom-html-t4 .table > tbody > tr.info > th,

#custom-html-t4 .table > tbody > tr > td.info,

#custom-html-t4 .table > tbody > tr > th.info,

#custom-html-t4 .table > tfoot > tr.info > td,

#custom-html-t4 .table > tfoot > tr.info > th,

#custom-html-t4 .table > tfoot > tr > td.info,

#custom-html-t4 .table > tfoot > tr > th.info,

#custom-html-t4 .table > thead > tr.info > td,

#custom-html-t4 .table > thead > tr.info > th,

#custom-html-t4 .table > thead > tr > td.info,

#custom-html-t4 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t4 .table-hover > tbody > tr.info:hover > td,

#custom-html-t4 .table-hover > tbody > tr.info:hover > th,

#custom-html-t4 .table-hover > tbody > tr:hover > .info,

#custom-html-t4 .table-hover > tbody > tr > td.info:hover,

#custom-html-t4 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t4 .table > tbody > tr.warning > td,

#custom-html-t4 .table > tbody > tr.warning > th,

#custom-html-t4 .table > tbody > tr > td.warning,

#custom-html-t4 .table > tbody > tr > th.warning,

#custom-html-t4 .table > tfoot > tr.warning > td,

#custom-html-t4 .table > tfoot > tr.warning > th,

#custom-html-t4 .table > tfoot > tr > td.warning,

#custom-html-t4 .table > tfoot > tr > th.warning,

#custom-html-t4 .table > thead > tr.warning > td,

#custom-html-t4 .table > thead > tr.warning > th,

#custom-html-t4 .table > thead > tr > td.warning,

#custom-html-t4 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t4 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t4 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t4 .table-hover > tbody > tr:hover > .warning,

#custom-html-t4 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t4 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t4 .table > tbody > tr.danger > td,

#custom-html-t4 .table > tbody > tr.danger > th,

#custom-html-t4 .table > tbody > tr > td.danger,

#custom-html-t4 .table > tbody > tr > th.danger,

#custom-html-t4 .table > tfoot > tr.danger > td,

#custom-html-t4 .table > tfoot > tr.danger > th,

#custom-html-t4 .table > tfoot > tr > td.danger,

#custom-html-t4 .table > tfoot > tr > th.danger,

#custom-html-t4 .table > thead > tr.danger > td,

#custom-html-t4 .table > thead > tr.danger > th,

#custom-html-t4 .table > thead > tr > td.danger,

#custom-html-t4 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t4 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t4 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t4 .table-hover > tbody > tr:hover > .danger,

#custom-html-t4 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t4 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t4 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t4 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t4 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t4 .table-responsive > .table > tbody > tr > td,

  #custom-html-t4 .table-responsive > .table > tbody > tr > th,

  #custom-html-t4 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t4 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t4 .table-responsive > .table > thead > tr > td,

  #custom-html-t4 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t4 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t4 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t4 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t4 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t4 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t4 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t4 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t4 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t4 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t4 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-t4 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t4 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t4 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t4 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t4 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t4 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t4 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-t4 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t4 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t4 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t4 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-t4 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t4 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t4 input[type=file] {

  display: block;

}

#custom-html-t4 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-t4 select[multiple],

#custom-html-t4 select[size] {

  height: auto;

}

#custom-html-t4 input[type=checkbox]:focus,

#custom-html-t4 input[type=file]:focus,

#custom-html-t4 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t4 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t4 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t4 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t4 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t4 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t4 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t4 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t4 .form-control[disabled],

#custom-html-t4 .form-control[readonly],

#custom-html-t4 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t4 .form-control[disabled],

#custom-html-t4 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t4 textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t4 input[type=date].form-control,

  #custom-html-t4 input[type=datetime-local].form-control,

  #custom-html-t4 input[type=month].form-control,

  #custom-html-t4 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t4 .input-group-sm input[type=date],

  #custom-html-t4 .input-group-sm input[type=datetime-local],

  #custom-html-t4 .input-group-sm input[type=month],

  #custom-html-t4 .input-group-sm input[type=time],

  #custom-html-t4 input[type=date].input-sm,

  #custom-html-t4 input[type=datetime-local].input-sm,

  #custom-html-t4 input[type=month].input-sm,

  #custom-html-t4 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t4 .input-group-lg input[type=date],

  #custom-html-t4 .input-group-lg input[type=datetime-local],

  #custom-html-t4 .input-group-lg input[type=month],

  #custom-html-t4 .input-group-lg input[type=time],

  #custom-html-t4 input[type=date].input-lg,

  #custom-html-t4 input[type=datetime-local].input-lg,

  #custom-html-t4 input[type=month].input-lg,

  #custom-html-t4 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t4 .form-group {

  margin-bottom: 15px;

}

#custom-html-t4 .checkbox,

#custom-html-t4 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t4 .checkbox label,

#custom-html-t4 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t4 .checkbox input[type=checkbox],

#custom-html-t4 .checkbox-inline input[type=checkbox],

#custom-html-t4 .radio input[type=radio],

#custom-html-t4 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t4 .checkbox + .checkbox,

#custom-html-t4 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t4 .checkbox-inline,

#custom-html-t4 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t4 .checkbox-inline + .checkbox-inline,

#custom-html-t4 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t4 fieldset[disabled] input[type=checkbox],

#custom-html-t4 fieldset[disabled] input[type=radio],

#custom-html-t4 input[type=checkbox].disabled,

#custom-html-t4 input[type=checkbox][disabled],

#custom-html-t4 input[type=radio].disabled,

#custom-html-t4 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t4 .checkbox-inline.disabled,

#custom-html-t4 .radio-inline.disabled,

#custom-html-t4 fieldset[disabled] .checkbox-inline,

#custom-html-t4 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t4 .checkbox.disabled label,

#custom-html-t4 .radio.disabled label,

#custom-html-t4 fieldset[disabled] .checkbox label,

#custom-html-t4 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t4 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t4 .form-control-static.input-lg,

#custom-html-t4 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t4 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t4 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t4 select[multiple].input-sm,

#custom-html-t4 textarea.input-sm {

  height: auto;

}

#custom-html-t4 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t4 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t4 .form-group-sm select[multiple].form-control,

#custom-html-t4 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t4 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t4 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t4 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t4 select[multiple].input-lg,

#custom-html-t4 textarea.input-lg {

  height: auto;

}

#custom-html-t4 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t4 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-t4 .form-group-lg select[multiple].form-control,

#custom-html-t4 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t4 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t4 .has-feedback {

  position: relative;

}

#custom-html-t4 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t4 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t4 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t4 .input-group-lg + .form-control-feedback,

#custom-html-t4 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t4 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t4 .input-group-sm + .form-control-feedback,

#custom-html-t4 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t4 .has-success .checkbox,

#custom-html-t4 .has-success .checkbox-inline,

#custom-html-t4 .has-success .control-label,

#custom-html-t4 .has-success .help-block,

#custom-html-t4 .has-success .radio,

#custom-html-t4 .has-success .radio-inline,

#custom-html-t4 .has-success.checkbox label,

#custom-html-t4 .has-success.checkbox-inline label,

#custom-html-t4 .has-success.radio label,

#custom-html-t4 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t4 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t4 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t4 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t4 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t4 .has-warning .checkbox,

#custom-html-t4 .has-warning .checkbox-inline,

#custom-html-t4 .has-warning .control-label,

#custom-html-t4 .has-warning .help-block,

#custom-html-t4 .has-warning .radio,

#custom-html-t4 .has-warning .radio-inline,

#custom-html-t4 .has-warning.checkbox label,

#custom-html-t4 .has-warning.checkbox-inline label,

#custom-html-t4 .has-warning.radio label,

#custom-html-t4 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t4 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t4 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t4 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t4 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t4 .has-error .checkbox,

#custom-html-t4 .has-error .checkbox-inline,

#custom-html-t4 .has-error .control-label,

#custom-html-t4 .has-error .help-block,

#custom-html-t4 .has-error .radio,

#custom-html-t4 .has-error .radio-inline,

#custom-html-t4 .has-error.checkbox label,

#custom-html-t4 .has-error.checkbox-inline label,

#custom-html-t4 .has-error.radio label,

#custom-html-t4 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t4 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t4 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t4 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t4 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t4 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t4 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t4 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-t4 .form-horizontal .checkbox,

#custom-html-t4 .form-horizontal .checkbox-inline,

#custom-html-t4 .form-horizontal .radio,

#custom-html-t4 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t4 .form-horizontal .checkbox,

#custom-html-t4 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t4 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t4 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-t4 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-t4 .btn.active.focus,

#custom-html-t4 .btn.active:focus,

#custom-html-t4 .btn.focus,

#custom-html-t4 .btn:active.focus,

#custom-html-t4 .btn:active:focus,

#custom-html-t4 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t4 .btn.focus,

#custom-html-t4 .btn:focus,

#custom-html-t4 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t4 .btn.active,

#custom-html-t4 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t4 .btn.disabled,

#custom-html-t4 .btn[disabled],

#custom-html-t4 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t4 a.btn.disabled,

#custom-html-t4 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t4 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t4 .btn-default.focus,

#custom-html-t4 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t4 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t4 .btn-default.active,

#custom-html-t4 .btn-default:active,

#custom-html-t4 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-t4 .btn-default.active.focus,

#custom-html-t4 .btn-default.active:focus,

#custom-html-t4 .btn-default.active:hover,

#custom-html-t4 .btn-default:active.focus,

#custom-html-t4 .btn-default:active:focus,

#custom-html-t4 .btn-default:active:hover,

#custom-html-t4 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t4 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t4 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t4 .btn-default.disabled.focus,

#custom-html-t4 .btn-default.disabled:focus,

#custom-html-t4 .btn-default.disabled:hover,

#custom-html-t4 .btn-default[disabled].focus,

#custom-html-t4 .btn-default[disabled]:focus,

#custom-html-t4 .btn-default[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-default.focus,

#custom-html-t4 fieldset[disabled] .btn-default:focus,

#custom-html-t4 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t4 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t4 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t4 .btn-primary.focus,

#custom-html-t4 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t4 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t4 .btn-primary.active,

#custom-html-t4 .btn-primary:active,

#custom-html-t4 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-t4 .btn-primary.active.focus,

#custom-html-t4 .btn-primary.active:focus,

#custom-html-t4 .btn-primary.active:hover,

#custom-html-t4 .btn-primary:active.focus,

#custom-html-t4 .btn-primary:active:focus,

#custom-html-t4 .btn-primary:active:hover,

#custom-html-t4 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t4 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t4 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t4 .btn-primary.disabled.focus,

#custom-html-t4 .btn-primary.disabled:focus,

#custom-html-t4 .btn-primary.disabled:hover,

#custom-html-t4 .btn-primary[disabled].focus,

#custom-html-t4 .btn-primary[disabled]:focus,

#custom-html-t4 .btn-primary[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-primary.focus,

#custom-html-t4 fieldset[disabled] .btn-primary:focus,

#custom-html-t4 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t4 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t4 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t4 .btn-success.focus,

#custom-html-t4 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t4 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t4 .btn-success.active,

#custom-html-t4 .btn-success:active,

#custom-html-t4 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-t4 .btn-success.active.focus,

#custom-html-t4 .btn-success.active:focus,

#custom-html-t4 .btn-success.active:hover,

#custom-html-t4 .btn-success:active.focus,

#custom-html-t4 .btn-success:active:focus,

#custom-html-t4 .btn-success:active:hover,

#custom-html-t4 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t4 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t4 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t4 .btn-success.disabled.focus,

#custom-html-t4 .btn-success.disabled:focus,

#custom-html-t4 .btn-success.disabled:hover,

#custom-html-t4 .btn-success[disabled].focus,

#custom-html-t4 .btn-success[disabled]:focus,

#custom-html-t4 .btn-success[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-success.focus,

#custom-html-t4 fieldset[disabled] .btn-success:focus,

#custom-html-t4 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t4 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t4 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t4 .btn-info.focus,

#custom-html-t4 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t4 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t4 .btn-info.active,

#custom-html-t4 .btn-info:active,

#custom-html-t4 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-t4 .btn-info.active.focus,

#custom-html-t4 .btn-info.active:focus,

#custom-html-t4 .btn-info.active:hover,

#custom-html-t4 .btn-info:active.focus,

#custom-html-t4 .btn-info:active:focus,

#custom-html-t4 .btn-info:active:hover,

#custom-html-t4 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t4 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t4 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t4 .btn-info.disabled.focus,

#custom-html-t4 .btn-info.disabled:focus,

#custom-html-t4 .btn-info.disabled:hover,

#custom-html-t4 .btn-info[disabled].focus,

#custom-html-t4 .btn-info[disabled]:focus,

#custom-html-t4 .btn-info[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-info.focus,

#custom-html-t4 fieldset[disabled] .btn-info:focus,

#custom-html-t4 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t4 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t4 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t4 .btn-warning.focus,

#custom-html-t4 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t4 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t4 .btn-warning.active,

#custom-html-t4 .btn-warning:active,

#custom-html-t4 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-t4 .btn-warning.active.focus,

#custom-html-t4 .btn-warning.active:focus,

#custom-html-t4 .btn-warning.active:hover,

#custom-html-t4 .btn-warning:active.focus,

#custom-html-t4 .btn-warning:active:focus,

#custom-html-t4 .btn-warning:active:hover,

#custom-html-t4 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t4 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t4 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t4 .btn-warning.disabled.focus,

#custom-html-t4 .btn-warning.disabled:focus,

#custom-html-t4 .btn-warning.disabled:hover,

#custom-html-t4 .btn-warning[disabled].focus,

#custom-html-t4 .btn-warning[disabled]:focus,

#custom-html-t4 .btn-warning[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-warning.focus,

#custom-html-t4 fieldset[disabled] .btn-warning:focus,

#custom-html-t4 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t4 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t4 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t4 .btn-danger.focus,

#custom-html-t4 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t4 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t4 .btn-danger.active,

#custom-html-t4 .btn-danger:active,

#custom-html-t4 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-t4 .btn-danger.active.focus,

#custom-html-t4 .btn-danger.active:focus,

#custom-html-t4 .btn-danger.active:hover,

#custom-html-t4 .btn-danger:active.focus,

#custom-html-t4 .btn-danger:active:focus,

#custom-html-t4 .btn-danger:active:hover,

#custom-html-t4 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t4 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t4 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t4 .btn-danger.disabled.focus,

#custom-html-t4 .btn-danger.disabled:focus,

#custom-html-t4 .btn-danger.disabled:hover,

#custom-html-t4 .btn-danger[disabled].focus,

#custom-html-t4 .btn-danger[disabled]:focus,

#custom-html-t4 .btn-danger[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-danger.focus,

#custom-html-t4 fieldset[disabled] .btn-danger:focus,

#custom-html-t4 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t4 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t4 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t4 .btn-link,

#custom-html-t4 .btn-link.active,

#custom-html-t4 .btn-link:active,

#custom-html-t4 .btn-link[disabled],

#custom-html-t4 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t4 .btn-link,

#custom-html-t4 .btn-link:active,

#custom-html-t4 .btn-link:focus,

#custom-html-t4 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t4 .btn-link:focus,

#custom-html-t4 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t4 .btn-link[disabled]:focus,

#custom-html-t4 .btn-link[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-link:focus,

#custom-html-t4 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t4 .btn-group-lg > .btn,

#custom-html-t4 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t4 .btn-group-sm > .btn,

#custom-html-t4 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t4 .btn-group-xs > .btn,

#custom-html-t4 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t4 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t4 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t4 input[type=button].btn-block,

#custom-html-t4 input[type=reset].btn-block,

#custom-html-t4 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t4 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t4 .fade.in {

  opacity: 1;

}

#custom-html-t4 .collapse {

  display: none;

}

#custom-html-t4 .collapse.in {

  display: block;

}

#custom-html-t4 tr.collapse.in {

  display: table-row;

}

#custom-html-t4 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t4 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t4 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t4 .dropdown,

#custom-html-t4 .dropup {

  position: relative;

}

#custom-html-t4 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t4 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t4 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t4 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t4 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-t4 .dropdown-menu > li > a:focus,

#custom-html-t4 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t4 .dropdown-menu > .active > a,

#custom-html-t4 .dropdown-menu > .active > a:focus,

#custom-html-t4 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-t4 .dropdown-menu > .disabled > a,

#custom-html-t4 .dropdown-menu > .disabled > a:focus,

#custom-html-t4 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t4 .dropdown-menu > .disabled > a:focus,

#custom-html-t4 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t4 .open > .dropdown-menu {

  display: block;

}

#custom-html-t4 .open > a {

  outline: 0;

}

#custom-html-t4 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t4 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t4 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t4 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t4 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t4 .dropup .caret,

#custom-html-t4 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t4 .dropup .dropdown-menu,

#custom-html-t4 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-t4 .btn-group,

#custom-html-t4 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t4 .btn-group-vertical > .btn,

#custom-html-t4 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t4 .btn-group-vertical > .btn.active,

#custom-html-t4 .btn-group-vertical > .btn:active,

#custom-html-t4 .btn-group-vertical > .btn:focus,

#custom-html-t4 .btn-group-vertical > .btn:hover,

#custom-html-t4 .btn-group > .btn.active,

#custom-html-t4 .btn-group > .btn:active,

#custom-html-t4 .btn-group > .btn:focus,

#custom-html-t4 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t4 .btn-group .btn + .btn,

#custom-html-t4 .btn-group .btn + .btn-group,

#custom-html-t4 .btn-group .btn-group + .btn,

#custom-html-t4 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t4 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t4 .btn-toolbar .btn,

#custom-html-t4 .btn-toolbar .btn-group,

#custom-html-t4 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t4 .btn-toolbar > .btn,

#custom-html-t4 .btn-toolbar > .btn-group,

#custom-html-t4 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t4 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t4 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t4 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t4 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t4 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t4 .btn-group > .btn-group {

  float: left;

}

#custom-html-t4 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t4 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t4 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t4 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t4 .btn-group .dropdown-toggle:active,

#custom-html-t4 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t4 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t4 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t4 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t4 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t4 .btn .caret {

  margin-left: 0;

}

#custom-html-t4 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t4 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t4 .btn-group-vertical > .btn,

#custom-html-t4 .btn-group-vertical > .btn-group,

#custom-html-t4 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t4 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t4 .btn-group-vertical > .btn + .btn,

#custom-html-t4 .btn-group-vertical > .btn + .btn-group,

#custom-html-t4 .btn-group-vertical > .btn-group + .btn,

#custom-html-t4 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t4 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t4 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t4 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t4 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t4 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t4 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t4 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t4 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t4 .btn-group-justified > .btn,

#custom-html-t4 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t4 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t4 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t4 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t4 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t4 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t4 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t4 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t4 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t4 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t4 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t4 .input-group-lg > .form-control,

#custom-html-t4 .input-group-lg > .input-group-addon,

#custom-html-t4 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t4 select.input-group-lg > .form-control,

#custom-html-t4 select.input-group-lg > .input-group-addon,

#custom-html-t4 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t4 select[multiple].input-group-lg > .form-control,

#custom-html-t4 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t4 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t4 textarea.input-group-lg > .form-control,

#custom-html-t4 textarea.input-group-lg > .input-group-addon,

#custom-html-t4 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t4 .input-group-sm > .form-control,

#custom-html-t4 .input-group-sm > .input-group-addon,

#custom-html-t4 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t4 select.input-group-sm > .form-control,

#custom-html-t4 select.input-group-sm > .input-group-addon,

#custom-html-t4 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t4 select[multiple].input-group-sm > .form-control,

#custom-html-t4 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t4 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t4 textarea.input-group-sm > .form-control,

#custom-html-t4 textarea.input-group-sm > .input-group-addon,

#custom-html-t4 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t4 .input-group .form-control,

#custom-html-t4 .input-group-addon,

#custom-html-t4 .input-group-btn {

  display: table-cell;

}

#custom-html-t4 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t4 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t4 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t4 .input-group-addon,

#custom-html-t4 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t4 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t4 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t4 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t4 .input-group-addon input[type=checkbox],

#custom-html-t4 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t4 .input-group .form-control:first-child,

#custom-html-t4 .input-group-addon:first-child,

#custom-html-t4 .input-group-btn:first-child > .btn,

#custom-html-t4 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t4 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t4 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t4 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t4 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t4 .input-group .form-control:last-child,

#custom-html-t4 .input-group-addon:last-child,

#custom-html-t4 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t4 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t4 .input-group-btn:last-child > .btn,

#custom-html-t4 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t4 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t4 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t4 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t4 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t4 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t4 .input-group-btn > .btn:active,

#custom-html-t4 .input-group-btn > .btn:focus,

#custom-html-t4 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t4 .input-group-btn:first-child > .btn,

#custom-html-t4 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t4 .input-group-btn:last-child > .btn,

#custom-html-t4 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t4 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t4 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t4 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t4 .nav > li > a:focus,

#custom-html-t4 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t4 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t4 .nav > li.disabled > a:focus,

#custom-html-t4 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t4 .nav .open > a,

#custom-html-t4 .nav .open > a:focus,

#custom-html-t4 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t4 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t4 .nav > li > a > img {

  max-width: none;

}

#custom-html-t4 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t4 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t4 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t4 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t4 .nav-tabs > li.active > a,

#custom-html-t4 .nav-tabs > li.active > a:focus,

#custom-html-t4 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t4 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t4 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t4 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t4 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t4 .nav-tabs.nav-justified > .active > a,

#custom-html-t4 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t4 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t4 .nav-pills > li {

  float: left;

}

#custom-html-t4 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t4 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t4 .nav-pills > li.active > a,

#custom-html-t4 .nav-pills > li.active > a:focus,

#custom-html-t4 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t4 .nav-stacked > li {

  float: none;

}

#custom-html-t4 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t4 .nav-justified {

  width: 100%;

}

#custom-html-t4 .nav-justified > li {

  float: none;

}

#custom-html-t4 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t4 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t4 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t4 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t4 .nav-tabs-justified > .active > a,

#custom-html-t4 .nav-tabs-justified > .active > a:focus,

#custom-html-t4 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t4 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t4 .tab-content > .active {

  display: block;

}

#custom-html-t4 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t4 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-t4 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t4 .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-t4 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t4 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t4 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t4 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t4 .container-fluid > .navbar-collapse,

#custom-html-t4 .container-fluid > .navbar-header,

#custom-html-t4 .container > .navbar-collapse,

#custom-html-t4 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t4 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-t4 .navbar-fixed-bottom,

#custom-html-t4 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-t4 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t4 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t4 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t4 .navbar-brand:focus,

#custom-html-t4 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t4 .navbar-brand > img {

  display: block;

}

#custom-html-t4 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t4 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t4 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t4 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-t4 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t4 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t4 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t4 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t4 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t4 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t4 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t4 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-t4 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t4 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-t4 .visible-xs {

    display: block !important;

  }

  #custom-html-t4 table.visible-xs {

    display: table !important;

  }

  #custom-html-t4 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t4 td.visible-xs,

  #custom-html-t4 th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-t4 .visible-xs-block {

    display: block !important;

  }

  #custom-html-t4 .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-t4 .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-t4 .hidden-xs {

    display: none !important;

  }

  #custom-html-t4 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t4 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-t4 section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-t4 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t4 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t4 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t4 .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-t4 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t4 .tiles .tile:nth-child(1),

  #custom-html-t4 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-t4 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t4 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t4 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-t4 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t4 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t4 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-t4 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-t4 .promo-banner form {

    text-align: center;

  }

}

#custom-html-t4 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t4 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t4 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t4 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t4 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t4 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t4 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t4 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t4 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t4 .navbar-default .navbar-brand:focus,

#custom-html-t4 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t4 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t4 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t4 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t4 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t4 .navbar-default .navbar-nav > .active > a,

#custom-html-t4 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t4 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t4 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t4 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t4 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t4 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t4 .navbar-default .navbar-toggle:focus,

#custom-html-t4 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t4 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t4 .navbar-default .navbar-collapse,

#custom-html-t4 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t4 .navbar-default .navbar-nav > .open > a,

#custom-html-t4 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t4 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t4 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t4 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t4 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t4 .navbar-default .btn-link:focus,

#custom-html-t4 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-t4 .navbar-default .btn-link[disabled]:focus,

#custom-html-t4 .navbar-default .btn-link[disabled]:hover,

#custom-html-t4 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t4 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t4 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t4 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t4 .navbar-inverse .navbar-brand:focus,

#custom-html-t4 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t4 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t4 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t4 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t4 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t4 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t4 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t4 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t4 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t4 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t4 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t4 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t4 .navbar-inverse .navbar-toggle:focus,

#custom-html-t4 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t4 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t4 .navbar-inverse .navbar-collapse,

#custom-html-t4 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t4 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t4 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t4 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t4 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t4 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t4 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t4 .navbar-inverse .btn-link:focus,

#custom-html-t4 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t4 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t4 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t4 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t4 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t4 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t4 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t4 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t4 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t4 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-t4 .pagination > li {

  display: inline;

}

#custom-html-t4 .pagination > li > a,

#custom-html-t4 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t4 .pagination > li:first-child > a,

#custom-html-t4 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t4 .pagination > li:last-child > a,

#custom-html-t4 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t4 .pagination > li > a:focus,

#custom-html-t4 .pagination > li > a:hover,

#custom-html-t4 .pagination > li > span:focus,

#custom-html-t4 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t4 .pagination > .active > a,

#custom-html-t4 .pagination > .active > a:focus,

#custom-html-t4 .pagination > .active > a:hover,

#custom-html-t4 .pagination > .active > span,

#custom-html-t4 .pagination > .active > span:focus,

#custom-html-t4 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t4 .pagination > .disabled > a,

#custom-html-t4 .pagination > .disabled > a:focus,

#custom-html-t4 .pagination > .disabled > a:hover,

#custom-html-t4 .pagination > .disabled > span,

#custom-html-t4 .pagination > .disabled > span:focus,

#custom-html-t4 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t4 .pagination-lg > li > a,

#custom-html-t4 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t4 .pagination-lg > li:first-child > a,

#custom-html-t4 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t4 .pagination-lg > li:last-child > a,

#custom-html-t4 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t4 .pagination-sm > li > a,

#custom-html-t4 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t4 .pagination-sm > li:first-child > a,

#custom-html-t4 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t4 .pagination-sm > li:last-child > a,

#custom-html-t4 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t4 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t4 .pager li {

  display: inline;

}

#custom-html-t4 .pager li > a,

#custom-html-t4 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t4 .pager li > a:focus,

#custom-html-t4 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t4 .pager .next > a,

#custom-html-t4 .pager .next > span {

  float: right;

}

#custom-html-t4 .pager .previous > a,

#custom-html-t4 .pager .previous > span {

  float: left;

}

#custom-html-t4 .pager .disabled > a,

#custom-html-t4 .pager .disabled > a:focus,

#custom-html-t4 .pager .disabled > a:hover,

#custom-html-t4 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t4 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-t4 a.label:focus,

#custom-html-t4 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t4 .label:empty {

  display: none;

}

#custom-html-t4 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t4 .label-default {

  background-color: #777777;

}

#custom-html-t4 .label-default[href]:focus,

#custom-html-t4 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t4 .label-primary {

  background-color: #337ab7;

}

#custom-html-t4 .label-primary[href]:focus,

#custom-html-t4 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t4 .label-success {

  background-color: #5cb85c;

}

#custom-html-t4 .label-success[href]:focus,

#custom-html-t4 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t4 .label-info {

  background-color: #5bc0de;

}

#custom-html-t4 .label-info[href]:focus,

#custom-html-t4 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t4 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t4 .label-warning[href]:focus,

#custom-html-t4 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t4 .label-danger {

  background-color: #d9534f;

}

#custom-html-t4 .label-danger[href]:focus,

#custom-html-t4 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t4 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t4 .badge:empty {

  display: none;

}

#custom-html-t4 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t4 .btn-group-xs > .btn .badge,

#custom-html-t4 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t4 a.badge:focus,

#custom-html-t4 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t4 .list-group-item.active > .badge,

#custom-html-t4 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t4 .list-group-item > .badge {

  float: right;

}

#custom-html-t4 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t4 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t4 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t4 .jumbotron .h1,

#custom-html-t4 .jumbotron h1 {

  color: inherit;

}

#custom-html-t4 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t4 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t4 .container .jumbotron,

#custom-html-t4 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t4 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t4 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t4 .container .jumbotron,

  #custom-html-t4 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t4 .jumbotron .h1,

  #custom-html-t4 .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-t4 .carousel-control .glyphicon-chevron-left,

  #custom-html-t4 .carousel-control .glyphicon-chevron-right,

  #custom-html-t4 .carousel-control .icon-next,

  #custom-html-t4 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t4 .carousel-control .glyphicon-chevron-left,

  #custom-html-t4 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t4 .carousel-control .glyphicon-chevron-right,

  #custom-html-t4 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t4 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t4 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t4 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t4 .thumbnail a > img,

#custom-html-t4 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t4 a.thumbnail.active,

#custom-html-t4 a.thumbnail:focus,

#custom-html-t4 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t4 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t4 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t4 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t4 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t4 .alert > p,

#custom-html-t4 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t4 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t4 .alert-dismissable,

#custom-html-t4 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t4 .alert-dismissable .close,

#custom-html-t4 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t4 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t4 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-t4 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t4 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t4 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t4 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t4 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t4 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t4 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t4 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t4 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t4 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t4 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t4 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t4 .progress-bar-striped,

#custom-html-t4 .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t4 .progress-bar.active,

#custom-html-t4 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t4 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t4 .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t4 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t4 .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t4 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t4 .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t4 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t4 .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t4 .media {

  margin-top: 15px;

}

#custom-html-t4 .media:first-child {

  margin-top: 0;

}

#custom-html-t4 .media,

#custom-html-t4 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t4 .media-body {

  width: 10000px;

}

#custom-html-t4 .media-object {

  display: block;

}

#custom-html-t4 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t4 .media-right,

#custom-html-t4 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t4 .media-left,

#custom-html-t4 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t4 .media-body,

#custom-html-t4 .media-left,

#custom-html-t4 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t4 .media-middle {

  vertical-align: middle;

}

#custom-html-t4 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t4 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t4 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t4 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-t4 .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-t4 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t4 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t4 a.list-group-item,

#custom-html-t4 button.list-group-item {

  color: #555555;

}

#custom-html-t4 a.list-group-item .list-group-item-heading,

#custom-html-t4 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t4 a.list-group-item:focus,

#custom-html-t4 a.list-group-item:hover,

#custom-html-t4 button.list-group-item:focus,

#custom-html-t4 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t4 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t4 .list-group-item.disabled,

#custom-html-t4 .list-group-item.disabled:focus,

#custom-html-t4 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t4 .list-group-item.disabled .list-group-item-heading,

#custom-html-t4 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t4 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t4 .list-group-item.disabled .list-group-item-text,

#custom-html-t4 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t4 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t4 .list-group-item.active,

#custom-html-t4 .list-group-item.active:focus,

#custom-html-t4 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t4 .list-group-item.active .list-group-item-heading,

#custom-html-t4 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t4 .list-group-item.active .list-group-item-heading > small,

#custom-html-t4 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t4 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t4 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t4 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t4 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t4 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t4 .list-group-item.active .list-group-item-text,

#custom-html-t4 .list-group-item.active:focus .list-group-item-text,

#custom-html-t4 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t4 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t4 a.list-group-item-success,

#custom-html-t4 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t4 a.list-group-item-success .list-group-item-heading,

#custom-html-t4 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t4 a.list-group-item-success:focus,

#custom-html-t4 a.list-group-item-success:hover,

#custom-html-t4 button.list-group-item-success:focus,

#custom-html-t4 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t4 a.list-group-item-success.active,

#custom-html-t4 a.list-group-item-success.active:focus,

#custom-html-t4 a.list-group-item-success.active:hover,

#custom-html-t4 button.list-group-item-success.active,

#custom-html-t4 button.list-group-item-success.active:focus,

#custom-html-t4 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t4 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t4 a.list-group-item-info,

#custom-html-t4 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t4 a.list-group-item-info .list-group-item-heading,

#custom-html-t4 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t4 a.list-group-item-info:focus,

#custom-html-t4 a.list-group-item-info:hover,

#custom-html-t4 button.list-group-item-info:focus,

#custom-html-t4 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t4 a.list-group-item-info.active,

#custom-html-t4 a.list-group-item-info.active:focus,

#custom-html-t4 a.list-group-item-info.active:hover,

#custom-html-t4 button.list-group-item-info.active,

#custom-html-t4 button.list-group-item-info.active:focus,

#custom-html-t4 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t4 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t4 a.list-group-item-warning,

#custom-html-t4 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t4 a.list-group-item-warning .list-group-item-heading,

#custom-html-t4 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t4 a.list-group-item-warning:focus,

#custom-html-t4 a.list-group-item-warning:hover,

#custom-html-t4 button.list-group-item-warning:focus,

#custom-html-t4 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t4 a.list-group-item-warning.active,

#custom-html-t4 a.list-group-item-warning.active:focus,

#custom-html-t4 a.list-group-item-warning.active:hover,

#custom-html-t4 button.list-group-item-warning.active,

#custom-html-t4 button.list-group-item-warning.active:focus,

#custom-html-t4 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t4 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t4 a.list-group-item-danger,

#custom-html-t4 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t4 a.list-group-item-danger .list-group-item-heading,

#custom-html-t4 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t4 a.list-group-item-danger:focus,

#custom-html-t4 a.list-group-item-danger:hover,

#custom-html-t4 button.list-group-item-danger:focus,

#custom-html-t4 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t4 a.list-group-item-danger.active,

#custom-html-t4 a.list-group-item-danger.active:focus,

#custom-html-t4 a.list-group-item-danger.active:hover,

#custom-html-t4 button.list-group-item-danger.active,

#custom-html-t4 button.list-group-item-danger.active:focus,

#custom-html-t4 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t4 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t4 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t4 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-t4 .panel-body {

  padding: 10px 15px;

}

#custom-html-t4 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t4 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t4 .panel-title > .small,

#custom-html-t4 .panel-title > .small > a,

#custom-html-t4 .panel-title > a,

#custom-html-t4 .panel-title > small,

#custom-html-t4 .panel-title > small > a {

  color: inherit;

}

#custom-html-t4 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t4 .panel > .list-group,

#custom-html-t4 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t4 .panel > .list-group .list-group-item,

#custom-html-t4 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t4 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t4 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t4 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t4 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t4 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t4 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t4 .panel > .panel-collapse > .table,

#custom-html-t4 .panel > .table,

#custom-html-t4 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t4 .panel > .panel-collapse > .table caption,

#custom-html-t4 .panel > .table caption,

#custom-html-t4 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t4 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t4 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t4 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t4 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t4 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t4 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t4 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t4 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t4 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t4 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t4 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t4 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t4 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t4 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t4 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t4 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t4 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t4 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t4 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t4 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t4 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t4 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t4 .panel > .panel-body + .table,

#custom-html-t4 .panel > .panel-body + .table-responsive,

#custom-html-t4 .panel > .table + .panel-body,

#custom-html-t4 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t4 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t4 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t4 .panel > .table-bordered,

#custom-html-t4 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t4 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t4 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t4 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t4 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t4 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t4 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t4 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t4 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t4 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t4 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t4 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t4 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t4 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t4 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t4 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t4 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t4 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t4 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t4 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t4 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t4 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t4 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t4 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t4 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t4 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-t4 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t4 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t4 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t4 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t4 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t4 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t4 .panel-default {

  border-color: #dddddd;

}

#custom-html-t4 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t4 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t4 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t4 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t4 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t4 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t4 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t4 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t4 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t4 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t4 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t4 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t4 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t4 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-t4 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t4 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t4 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t4 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t4 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t4 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t4 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t4 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t4 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t4 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t4 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t4 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t4 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t4 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t4 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t4 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t4 .embed-responsive .embed-responsive-item,

#custom-html-t4 .embed-responsive embed,

#custom-html-t4 .embed-responsive iframe,

#custom-html-t4 .embed-responsive object,

#custom-html-t4 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t4 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t4 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t4 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t4 .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t4 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t4 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t4 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t4 .close:focus,

#custom-html-t4 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t4 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t4 .modal-open {

  overflow: hidden;

}

#custom-html-t4 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t4 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t4 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t4 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t4 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t4 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t4 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t4 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t4 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t4 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t4 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t4 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t4 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t4 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t4 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t4 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t4 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t4 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-t4 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t4 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t4 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t4 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t4 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t4 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t4 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t4 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t4 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t4 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t4 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t4 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t4 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t4 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t4 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t4 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t4 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t4 .popover.top {

  margin-top: -10px;

}

#custom-html-t4 .popover.right {

  margin-left: 10px;

}

#custom-html-t4 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t4 .popover.left {

  margin-left: -10px;

}

#custom-html-t4 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t4 .popover-content {

  padding: 9px 14px;

}

#custom-html-t4 .popover > .arrow,

#custom-html-t4 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t4 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t4 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t4 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t4 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t4 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t4 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t4 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t4 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t4 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t4 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t4 .carousel {

  position: relative;

}

#custom-html-t4 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t4 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t4 .carousel-inner > .item > a > img,

#custom-html-t4 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t4 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t4 .carousel-inner > .item.active.right,

  #custom-html-t4 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t4 .carousel-inner > .item.active.left,

  #custom-html-t4 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t4 .carousel-inner > .item.active,

  #custom-html-t4 .carousel-inner > .item.next.left,

  #custom-html-t4 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t4 .carousel-inner > .active,

#custom-html-t4 .carousel-inner > .next,

#custom-html-t4 .carousel-inner > .prev {

  display: block;

}

#custom-html-t4 .carousel-inner > .active {

  left: 0;

}

#custom-html-t4 .carousel-inner > .next,

#custom-html-t4 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t4 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t4 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t4 .carousel-inner > .next.left,

#custom-html-t4 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t4 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t4 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t4 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t4 .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t4 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t4 .carousel-control:focus,

#custom-html-t4 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t4 .carousel-control .glyphicon-chevron-left,

#custom-html-t4 .carousel-control .glyphicon-chevron-right,

#custom-html-t4 .carousel-control .icon-next,

#custom-html-t4 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t4 .carousel-control .glyphicon-chevron-left,

#custom-html-t4 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t4 .carousel-control .glyphicon-chevron-right,

#custom-html-t4 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t4 .carousel-control .icon-next,

#custom-html-t4 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t4 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t4 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t4 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t4 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t4 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t4 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t4 .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-t4 .btn-group-vertical > .btn-group:after,

#custom-html-t4 .btn-group-vertical > .btn-group:before,

#custom-html-t4 .btn-toolbar:after,

#custom-html-t4 .btn-toolbar:before,

#custom-html-t4 .clearfix:after,

#custom-html-t4 .clearfix:before,

#custom-html-t4 .container-fluid:after,

#custom-html-t4 .container-fluid:before,

#custom-html-t4 .container:after,

#custom-html-t4 .container:before,

#custom-html-t4 .dl-horizontal dd:after,

#custom-html-t4 .dl-horizontal dd:before,

#custom-html-t4 .form-horizontal .form-group:after,

#custom-html-t4 .form-horizontal .form-group:before,

#custom-html-t4 .modal-footer:after,

#custom-html-t4 .modal-footer:before,

#custom-html-t4 .modal-header:after,

#custom-html-t4 .modal-header:before,

#custom-html-t4 .nav:after,

#custom-html-t4 .nav:before,

#custom-html-t4 .navbar-collapse:after,

#custom-html-t4 .navbar-collapse:before,

#custom-html-t4 .navbar-header:after,

#custom-html-t4 .navbar-header:before,

#custom-html-t4 .navbar:after,

#custom-html-t4 .navbar:before,

#custom-html-t4 .pager:after,

#custom-html-t4 .pager:before,

#custom-html-t4 .panel-body:after,

#custom-html-t4 .panel-body:before,

#custom-html-t4 .row:after,

#custom-html-t4 .row:before {

  display: table;

  content: " ";

}

#custom-html-t4 .btn-group-vertical > .btn-group:after,

#custom-html-t4 .btn-toolbar:after,

#custom-html-t4 .clearfix:after,

#custom-html-t4 .container-fluid:after,

#custom-html-t4 .container:after,

#custom-html-t4 .dl-horizontal dd:after,

#custom-html-t4 .form-horizontal .form-group:after,

#custom-html-t4 .modal-footer:after,

#custom-html-t4 .modal-header:after,

#custom-html-t4 .nav:after,

#custom-html-t4 .navbar-collapse:after,

#custom-html-t4 .navbar-header:after,

#custom-html-t4 .navbar:after,

#custom-html-t4 .pager:after,

#custom-html-t4 .panel-body:after,

#custom-html-t4 .row:after {

  clear: both;

}

#custom-html-t4 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t4 .pull-right {

  float: right !important;

}

#custom-html-t4 .pull-left {

  float: left !important;

}

#custom-html-t4 .hide {

  display: none !important;

}

#custom-html-t4 .show {

  display: block !important;

}

#custom-html-t4 .invisible {

  visibility: hidden;

}

#custom-html-t4 .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t4 .hidden {

  display: none !important;

}

#custom-html-t4 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t4 .visible-lg,

#custom-html-t4 .visible-md,

#custom-html-t4 .visible-sm,

#custom-html-t4 .visible-xs {

  display: none !important;

}

#custom-html-t4 .visible-lg-block,

#custom-html-t4 .visible-lg-inline,

#custom-html-t4 .visible-lg-inline-block,

#custom-html-t4 .visible-md-block,

#custom-html-t4 .visible-md-inline,

#custom-html-t4 .visible-md-inline-block,

#custom-html-t4 .visible-sm-block,

#custom-html-t4 .visible-sm-inline,

#custom-html-t4 .visible-sm-inline-block,

#custom-html-t4 .visible-xs-block,

#custom-html-t4 .visible-xs-inline,

#custom-html-t4 .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t4 .visible-sm {

    display: block !important;

  }

  #custom-html-t4 table.visible-sm {

    display: table !important;

  }

  #custom-html-t4 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t4 td.visible-sm,

  #custom-html-t4 th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-t4 .visible-sm-block {

    display: block !important;

  }

  #custom-html-t4 .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-t4 .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-t4 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t4 .visible-md {

    display: block !important;

  }

  #custom-html-t4 table.visible-md {

    display: table !important;

  }

  #custom-html-t4 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t4 td.visible-md,

  #custom-html-t4 th.visible-md {

    display: table-cell !important;

  }

  #custom-html-t4 .visible-md-block {

    display: block !important;

  }

  #custom-html-t4 .visible-md-inline {

    display: inline !important;

  }

  #custom-html-t4 .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-t4 .hidden-md {

    display: none !important;

  }

}

#custom-html-t4 .visible-print {

  display: none !important;

}

#custom-html-t4 .visible-print-block {

  display: none !important;

}

#custom-html-t4 .visible-print-inline {

  display: none !important;

}

#custom-html-t4 .visible-print-inline-block {

  display: none !important;

}

#custom-html-t4 .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-t4 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t4 .intl-tel-input .hide {

  display: none;

}

#custom-html-t4 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t4 .intl-tel-input input,

#custom-html-t4 .intl-tel-input input[type=tel],

#custom-html-t4 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t4 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t4 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t4 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t4 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t4 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t4 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t4 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t4 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t4 .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-t4 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t4 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t4 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t4 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t4 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t4 .intl-tel-input .country-list .country-name,

#custom-html-t4 .intl-tel-input .country-list .dial-code,

#custom-html-t4 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t4 .intl-tel-input .country-list .country-name,

#custom-html-t4 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t4 .intl-tel-input.allow-dropdown input,

#custom-html-t4 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t4 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t4 .intl-tel-input.separate-dial-code input,

#custom-html-t4 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t4 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t4 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t4 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t4 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t4 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t4 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t4 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t4 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t4 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t4 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t4 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t4 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t4 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t4 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t4 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t4 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t4 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t4 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-t4 .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t4 .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t4 .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t4 .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t4 .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-t4 .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t4 .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t4 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t4 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t4 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t4 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t4 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t4 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t4 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t4 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t4 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t4 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t4 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t4 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t4 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t4 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t4 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t4 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t4 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t4 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t4 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t4 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t4 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t4 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t4 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t4 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t4 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t4 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t4 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t4 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t4 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t4 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t4 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t4 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t4 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t4 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t4 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t4 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t4 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t4 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t4 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t4 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t4 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t4 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t4 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t4 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t4 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t4 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t4 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t4 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t4 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t4 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t4 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t4 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t4 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t4 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t4 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t4 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t4 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t4 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t4 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t4 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t4 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t4 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t4 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t4 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t4 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t4 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t4 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t4 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t4 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t4 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t4 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t4 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t4 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t4 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t4 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t4 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t4 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t4 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t4 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t4 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t4 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t4 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t4 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t4 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t4 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t4 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t4 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t4 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t4 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t4 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t4 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t4 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t4 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t4 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t4 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t4 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t4 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t4 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t4 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t4 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t4 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t4 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t4 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-t4 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t4 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t4 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t4 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t4 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t4 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t4 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t4 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t4 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t4 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t4 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t4 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t4 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t4 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t4 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t4 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t4 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t4 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t4 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t4 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t4 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t4 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t4 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t4 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t4 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t4 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t4 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t4 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t4 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t4 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t4 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t4 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t4 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t4 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t4 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t4 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t4 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t4 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t4 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t4 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t4 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t4 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t4 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t4 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t4 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t4 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t4 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t4 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t4 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t4 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t4 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t4 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t4 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t4 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t4 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t4 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t4 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t4 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t4 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t4 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t4 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t4 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t4 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t4 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t4 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t4 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t4 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t4 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t4 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t4 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t4 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t4 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t4 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t4 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t4 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t4 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t4 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t4 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t4 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t4 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t4 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t4 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t4 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t4 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t4 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t4 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t4 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t4 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t4 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t4 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t4 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t4 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t4 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t4 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t4 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t4 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t4 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t4 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t4 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t4 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t4 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t4 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t4 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t4 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t4 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t4 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t4 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t4 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t4 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t4 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t4 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t4 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t4 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t4 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t4 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t4 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t4 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t4 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t4 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-t4 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t4 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t4 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t4 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t4 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t4 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t4 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t4 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t4 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t4 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t4 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t4 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t4 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t4 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t4 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t4 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t4 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-t4 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t4 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t4 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t4 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t4 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t4 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t4 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t4 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t4 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t4 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t4 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t4 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t4 body,

#custom-html-t4 button,

#custom-html-t4 input,

#custom-html-t4 select,

#custom-html-t4 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t4 h1,

#custom-html-t4 h2,

#custom-html-t4 h3,

#custom-html-t4 h4,

#custom-html-t4 h5,

#custom-html-t4 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-t4 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t4 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t4 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t4 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t4 .navbar-main .navbar-nav > .active > a,

#custom-html-t4 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t4 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t4 .navbar-main .navbar-nav > .open > a,

#custom-html-t4 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t4 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t4 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t4 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t4 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t4 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-t4 .navbar-header {

    float: none;

  }

  #custom-html-t4 .navbar-left,

  #custom-html-t4 .navbar-right {

    float: none !important;

  }

  #custom-html-t4 .navbar-toggle {

    display: block;

  }

  #custom-html-t4 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t4 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t4 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t4 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t4 .navbar-nav > li {

    float: none;

  }

  #custom-html-t4 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t4 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-t4 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t4 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t4 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-t4 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t4 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t4 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-t4 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t4 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t4 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t4 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t4 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t4 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-t4 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t4 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-t4 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t4 a.list-group-item.active,

#custom-html-t4 a.list-group-item.active:focus,

#custom-html-t4 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t4 .dropdown-menu > li > a:focus,

#custom-html-t4 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t4 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t4 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t4 body,

#custom-html-t4 html {

  height: 100%;

}

#custom-html-t4 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t4 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t4 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t4 section#header .search {

  margin: 20px 0;

}

#custom-html-t4 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t4 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t4 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t4 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t4 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t4 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t4 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t4 section#footer {

    line-height: 32px;

  }

}

#custom-html-t4 section#footer .back-to-top {

  float: right;

}

#custom-html-t4 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t4 .adminreturndiv {

  display: none !important;

}

#custom-html-t4 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t4 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t4 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t4 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t4 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t4 .navbar-main .navbar-toggle:focus,

#custom-html-t4 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t4 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t4 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-t4 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t4 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t4 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t4 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t4 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t4 .h1,

  #custom-html-t4 h1 {

    font-size: 26px;

  }

  #custom-html-t4 .h2,

  #custom-html-t4 h2 {

    font-size: 20px;

  }

  #custom-html-t4 .h3,

  #custom-html-t4 h3 {

    font-size: 16px;

  }

  #custom-html-t4 .h4,

  #custom-html-t4 h4 {

    font-size: 14px;

  }

  #custom-html-t4 .h5,

  #custom-html-t4 h5 {

    font-size: 12px;

  }

  #custom-html-t4 .h6,

  #custom-html-t4 h6 {

    font-size: 11px;

  }

  #custom-html-t4 div.header-lined small {

    display: none;

  }

  #custom-html-t4 .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-t4 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t4 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t4 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t4 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-t4 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t4 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t4 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t4 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t4 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t4 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-t4 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t4 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t4 .margin-10 {

  margin: 10px;

}

#custom-html-t4 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t4 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t4 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t4 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t4 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t4 .input-inline {

  display: inline-block;

}

#custom-html-t4 .input-inline-100 {

  width: 100px;

}

#custom-html-t4 .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-t4 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t4 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t4 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-t4 i.icon-rss {

  color: #ff6600;

}

#custom-html-t4 section#main-menu {

  background-color: #000000;

}

#custom-html-t4 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t4 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t4 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t4 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t4 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t4 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t4 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t4 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t4 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t4 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t4 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t4 section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-t4 .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-t4 .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-t4 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t4 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t4 .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-t4 #stepResults {

    font-size: 14px;

  }

  #custom-html-t4 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t4 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-t4 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t4 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t4 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t4 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t4 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t4 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t4 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t4 .home-shortcuts li span {

  display: none;

}

#custom-html-t4 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t4 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-t4 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t4 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t4 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t4 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t4 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t4 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t4 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t4 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t4 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t4 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t4 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t4 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t4 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t4 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t4 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t4 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t4 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t4 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t4 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t4 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t4 .tiles .tile:last-child {

  border: 0;

}

#custom-html-t4 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t4 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t4 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t4 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t4 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t4 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t4 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t4 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t4 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t4 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t4 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t4 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t4 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t4 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t4 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t4 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t4 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t4 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t4 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t4 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t4 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t4 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t4 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t4 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t4 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t4 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t4 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t4 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t4 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t4 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t4 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t4 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t4 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t4 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t4 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t4 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t4 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t4 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t4 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t4 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t4 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t4 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t4 ul.top-nav > li,

#custom-html-t4 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t4 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t4 ul.top-nav > li:active > a,

#custom-html-t4 ul.top-nav > li:focus > a,

#custom-html-t4 ul.top-nav > li:hover > a,

#custom-html-t4 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t4 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t4 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t4 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t4 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-t4 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t4 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t4 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t4 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t4 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t4 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t4 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t4 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-t4 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t4 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-t4 .domain-check-availability {

  width: 100px;

}

#custom-html-t4 .domain-step-options {

  min-height: 300px;

}

#custom-html-t4 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t4 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t4 .domain-checker-invalid,

#custom-html-t4 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t4 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t4 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t4 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t4 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t4 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t4 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t4 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t4 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-t4 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t4 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t4 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t4 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t4 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t4 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t4 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t4 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t4 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t4 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t4 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t4 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t4 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t4 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t4 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t4 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t4 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t4 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t4 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t4 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t4 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t4 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t4 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t4 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t4 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t4 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t4 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t4 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t4 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t4 div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t4 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t4 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t4 .product-status-active {

  background-color: #46a546;

}

#custom-html-t4 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t4 .product-status-cancelled,

#custom-html-t4 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t4 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t4 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t4 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t4 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t4 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t4 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t4 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t4 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t4 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t4 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t4 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t4 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t4 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t4 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-t4 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t4 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t4 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t4 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t4 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t4 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t4 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t4 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t4 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t4 .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-t4 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t4 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t4 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t4 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t4 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t4 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t4 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t4 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t4 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t4 .status-pending {

  color: #d9534f;

}

#custom-html-t4 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t4 .status-active,

#custom-html-t4 .status-completed,

#custom-html-t4 .status-open {

  color: #3fad46;

}

#custom-html-t4 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t4 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t4 .status-answered,

#custom-html-t4 .status-fraud {

  color: #000000;

}

#custom-html-t4 .status-expired,

#custom-html-t4 .status-transferred.away {

  color: #004258;

}

#custom-html-t4 .status-cancelled {

  color: #87939f;

}

#custom-html-t4 .status-terminated {

  color: #666666;

}

#custom-html-t4 .status-onhold {

  color: #224488;

}

#custom-html-t4 .status-inprogress {

  color: #cc0000;

}

#custom-html-t4 .status-closed {

  color: #888888;

}

#custom-html-t4 .status-paid {

  color: #498302;

}

#custom-html-t4 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t4 .status-collections {

  color: #9a141e;

}

#custom-html-t4 .status-refunded {

  color: #319fc3;

}

#custom-html-t4 .status-delivered {

  color: #224488;

}

#custom-html-t4 .status-accepted {

  color: #498302;

}

#custom-html-t4 .status-dead,

#custom-html-t4 .status-lost {

  color: #000000;

}

#custom-html-t4 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t4 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t4 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t4 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t4 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t4 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t4 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t4 .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-t4 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t4 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t4 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t4 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t4 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t4 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t4 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t4 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t4 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t4 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t4 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t4 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t4 .ticket-reply .rating,

#custom-html-t4 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t4 .ticket-reply .rating span.star,

#custom-html-t4 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t4 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t4 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t4 .ticket-reply .rating span.star:before,

#custom-html-t4 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t4 .ticket-reply .rating span.star:hover:before,

#custom-html-t4 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t4 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t4 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t4 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t4 .ticket-reply .clear {

  clear: both;

}

#custom-html-t4 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t4 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t4 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t4 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t4 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t4 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t4 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t4 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t4 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t4 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-t4 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t4 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t4 .popover-user-notifications ul li i.far,

#custom-html-t4 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t4 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t4 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t4 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t4 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t4 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t4 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t4 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t4 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t4 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t4 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t4 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t4 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t4 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t4 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t4 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t4 div.credit-card div.end {

  clear: both;

}

#custom-html-t4 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t4 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t4 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t4 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t4 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t4 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t4 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t4 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t4 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t4 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t4 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t4 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t4 .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-t4 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t4 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t4 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t4 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t4 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t4 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t4 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t4 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t4 .kb-category a small {

  color: #888888;

}

#custom-html-t4 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t4 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t4 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t4 .kbarticles a.admin-inline-edit,

#custom-html-t4 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t4 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t4 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t4 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t4 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t4 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t4 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t4 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t4 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t4 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t4 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t4 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t4 #stepResults {

  font-size: 20px;

}

#custom-html-t4 #stepResults .label {

  font-size: 20px;

}

#custom-html-t4 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t4 h3.with-badge i,

#custom-html-t4 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t4 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-t4 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t4 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t4 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t4 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t4 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t4 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t4 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t4 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t4 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t4 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t4 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t4 .login-popover {

  font-size: 12px;

}

#custom-html-t4 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t4 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t4 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t4 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t4 .error-container {

  text-align: center;

}

#custom-html-t4 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t4 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t4 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t4 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t4 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t4 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t4 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t4 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t4 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t4 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-t4 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t4 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t4 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t4 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t4 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t4 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t4 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t4 .email-verification .btn:active,

#custom-html-t4 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t4 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t4 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t4 .email-verification .far,

#custom-html-t4 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-t4 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t4 .email-verification.success .far,

#custom-html-t4 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t4 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t4 .email-verification.failed .far,

#custom-html-t4 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t4 .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-t4 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t4 .md-editor > .md-preview,

#custom-html-t4 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t4 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t4 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t4 .small-font {

  font-size: 0.9em;

}

#custom-html-t4 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t4 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t4 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t4 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t4 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t4 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t4 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t4 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t4 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t4 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t4 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t4 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t4 .panel-heading i.fab,

#custom-html-t4 .panel-heading i.fal,

#custom-html-t4 .panel-heading i.far,

#custom-html-t4 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t4 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t4 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t4 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t4 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t4 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t4 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t4 .panel-sidebar .list-group-item.disabled,

#custom-html-t4 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t4 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t4 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t4 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t4 .panel-sidebar a.list-group-item.active,

#custom-html-t4 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t4 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t4 .panel-sidebar a.list-group-item.active i,

#custom-html-t4 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t4 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t4 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t4 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t4 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t4 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t4 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t4 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t4 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t4 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t4 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t4 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t4 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t4 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t4 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t4 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-t4 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t4 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t4 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t4 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t4 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t4 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t4 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t4 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t4 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t4 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t4 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t4 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t4 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-t4 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t4 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t4 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t4 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t4 .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-t4 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t4 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t4 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t4 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t4 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t4 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t4 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t4 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t4 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t4 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t4 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t4 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t4 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t4 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t4 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t4 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t4 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t4 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t4 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t4 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t4 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t4 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t4 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t4 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t4 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t4 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t4 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t4 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t4 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t4 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t4 .panel-mc-sso .btn,

#custom-html-t4 .panel-mc-sso .form-control,

#custom-html-t4 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t4 .panel-mc-sso small {

  display: block;

}

#custom-html-t4 .social-signin-btns {

  text-align: center;

}

#custom-html-t4 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t4 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t4 .btn-social i.far,

#custom-html-t4 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-facebook.active,

#custom-html-t4 .btn-facebook:active,

#custom-html-t4 .btn-facebook:focus,

#custom-html-t4 .btn-facebook:hover,

#custom-html-t4 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-facebook.active,

#custom-html-t4 .btn-facebook:active,

#custom-html-t4 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t4 .btn-facebook.disabled,

#custom-html-t4 .btn-facebook.disabled.active,

#custom-html-t4 .btn-facebook.disabled:active,

#custom-html-t4 .btn-facebook.disabled:focus,

#custom-html-t4 .btn-facebook.disabled:hover,

#custom-html-t4 .btn-facebook[disabled],

#custom-html-t4 .btn-facebook[disabled].active,

#custom-html-t4 .btn-facebook[disabled]:active,

#custom-html-t4 .btn-facebook[disabled]:focus,

#custom-html-t4 .btn-facebook[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-facebook,

#custom-html-t4 fieldset[disabled] .btn-facebook.active,

#custom-html-t4 fieldset[disabled] .btn-facebook:active,

#custom-html-t4 fieldset[disabled] .btn-facebook:focus,

#custom-html-t4 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-google.active,

#custom-html-t4 .btn-google:active,

#custom-html-t4 .btn-google:focus,

#custom-html-t4 .btn-google:hover,

#custom-html-t4 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-google.active,

#custom-html-t4 .btn-google:active,

#custom-html-t4 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t4 .btn-google-plus.disabled.active,

#custom-html-t4 .btn-google-plus.disabled:active,

#custom-html-t4 .btn-google-plus.disabled:focus,

#custom-html-t4 .btn-google-plus[disabled].active,

#custom-html-t4 .btn-google-plus[disabled]:active,

#custom-html-t4 .btn-google-plus[disabled]:focus,

#custom-html-t4 .btn-google-plus[disabled]:hover,

#custom-html-t4 .btn-google.disabled,

#custom-html-t4 .btn-google.disabled:hover,

#custom-html-t4 .btn-google[disabled],

#custom-html-t4 fieldset[disabled] .btn-google,

#custom-html-t4 fieldset[disabled] .btn-google-plus.active,

#custom-html-t4 fieldset[disabled] .btn-google-plus:active,

#custom-html-t4 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t4 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-twitter.active,

#custom-html-t4 .btn-twitter:active,

#custom-html-t4 .btn-twitter:focus,

#custom-html-t4 .btn-twitter:hover,

#custom-html-t4 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-twitter.active,

#custom-html-t4 .btn-twitter:active,

#custom-html-t4 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t4 .btn-twitter.disabled,

#custom-html-t4 .btn-twitter.disabled.active,

#custom-html-t4 .btn-twitter.disabled:active,

#custom-html-t4 .btn-twitter.disabled:focus,

#custom-html-t4 .btn-twitter.disabled:hover,

#custom-html-t4 .btn-twitter[disabled],

#custom-html-t4 .btn-twitter[disabled].active,

#custom-html-t4 .btn-twitter[disabled]:active,

#custom-html-t4 .btn-twitter[disabled]:focus,

#custom-html-t4 .btn-twitter[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-twitter,

#custom-html-t4 fieldset[disabled] .btn-twitter.active,

#custom-html-t4 fieldset[disabled] .btn-twitter:active,

#custom-html-t4 fieldset[disabled] .btn-twitter:focus,

#custom-html-t4 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t4 .providerLinkingFeedback {

  display: none;

}

#custom-html-t4 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t4 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t4 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t4 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t4 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t4 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t4 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t4 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t4 #registration .field,

#custom-html-t4 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t4 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t4 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t4 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t4 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t4 #registration textarea.field {

  height: auto;

}

#custom-html-t4 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t4 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t4 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t4 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t4 #registration .field[disabled],

#custom-html-t4 #registration .field[readonly],

#custom-html-t4 #registration .form-control[disabled],

#custom-html-t4 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t4 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t4 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t4 .upgrade .product-to-be-upgraded h4,

#custom-html-t4 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t4 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t4 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t4 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t4 .upgrade .products .product .current,

#custom-html-t4 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t4 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t4 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t4 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-t4 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t4 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t4 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t4 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t4 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t4 .upgrade .products .far,

#custom-html-t4 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t4 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t4 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t4 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t4 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t4 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t4 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .bootstrap-switch input[type=checkbox],

#custom-html-t4 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t4 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t4 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t4 .md-editor .md-footer,

#custom-html-t4 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t4 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t4 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t4 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t4 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t4 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t4 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t4 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t4 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t4 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t4 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t4 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t4 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t4 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t4 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t4 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t4 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t4 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t4 table.dataTable td,

#custom-html-t4 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t4 table.dataTable td.dataTables_empty,

#custom-html-t4 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t4 table.dataTable.nowrap td,

#custom-html-t4 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t4 table.dataTable thead > tr > td.sorting,

#custom-html-t4 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t4 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t4 table.dataTable thead > tr > th.sorting,

#custom-html-t4 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t4 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t4 table.dataTable thead > tr > td:active,

#custom-html-t4 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t4 table.dataTable thead .sorting,

#custom-html-t4 table.dataTable thead .sorting_asc,

#custom-html-t4 table.dataTable thead .sorting_asc_disabled,

#custom-html-t4 table.dataTable thead .sorting_desc,

#custom-html-t4 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t4 table.dataTable thead .sorting:after,

#custom-html-t4 table.dataTable thead .sorting_asc:after,

#custom-html-t4 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t4 table.dataTable thead .sorting_desc:after,

#custom-html-t4 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t4 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t4 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t4 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t4 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t4 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t4 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t4 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t4 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t4 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t4 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t4 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t4 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t4 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-t4 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t4 table.dataTable.table-condensed .sorting:after,

#custom-html-t4 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t4 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t4 table.table-bordered.dataTable td,

#custom-html-t4 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t4 table.table-bordered.dataTable td:last-child,

#custom-html-t4 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t4 table.table-bordered.dataTable tbody td,

#custom-html-t4 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t4 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t4 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t4 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t4 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t4 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t4 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t4 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t4 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t4 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t4 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t4 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t4 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t4 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t4 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t4 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t4 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t4 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t4 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t4 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t4 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t4 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t4 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t4 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t4 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t4 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-t4 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t4 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t4 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t4 .multiselect-container > li {

  padding: 0;

}

#custom-html-t4 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t4 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t4 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t4 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t4 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t4 .multiselect-container > li > a > label.checkbox,

#custom-html-t4 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t4 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t4 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t4 .form-inline .multiselect-container label.checkbox,

#custom-html-t4 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t4 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t4 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-t4 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-t4 body {

  margin: 0;

}

#custom-html-t4 article,

#custom-html-t4 aside,

#custom-html-t4 details,

#custom-html-t4 figcaption,

#custom-html-t4 figure,

#custom-html-t4 footer,

#custom-html-t4 header,

#custom-html-t4 hgroup,

#custom-html-t4 main,

#custom-html-t4 menu,

#custom-html-t4 nav,

#custom-html-t4 section,

#custom-html-t4 summary {

  display: block;

}

#custom-html-t4 audio,

#custom-html-t4 canvas,

#custom-html-t4 progress,

#custom-html-t4 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t4 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t4 [hidden],

#custom-html-t4 template {

  display: none;

}

#custom-html-t4 a {

  background-color: transparent;

}

#custom-html-t4 a:active,

#custom-html-t4 a:hover {

  outline: 0;

}

#custom-html-t4 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t4 b,

#custom-html-t4 strong {

  font-weight: 700;

}

#custom-html-t4 dfn {

  font-style: italic;

}

#custom-html-t4 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t4 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t4 small {

  font-size: 80%;

}

#custom-html-t4 sub,

#custom-html-t4 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t4 sup {

  top: -0.5em;

}

#custom-html-t4 sub {

  bottom: -0.25em;

}

#custom-html-t4 img {

  border: 0;

}

#custom-html-t4 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t4 figure {

  margin: 1em 40px;

}

#custom-html-t4 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t4 pre {

  overflow: auto;

}

#custom-html-t4 code,

#custom-html-t4 kbd,

#custom-html-t4 pre,

#custom-html-t4 samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-t4 button,

#custom-html-t4 input,

#custom-html-t4 optgroup,

#custom-html-t4 select,

#custom-html-t4 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t4 button {

  overflow: visible;

}

#custom-html-t4 button,

#custom-html-t4 select {

  text-transform: none;

}

#custom-html-t4 button,

#custom-html-t4 html input[type=button],

#custom-html-t4 input[type=reset],

#custom-html-t4 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t4 button[disabled],

#custom-html-t4 html input[disabled] {

  cursor: default;

}

#custom-html-t4 button::-moz-focus-inner,

#custom-html-t4 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t4 input {

  line-height: normal;

}

#custom-html-t4 input[type=checkbox],

#custom-html-t4 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-t4 input[type=number]::-webkit-inner-spin-button,

#custom-html-t4 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t4 input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-t4 input[type=search]::-webkit-search-cancel-button,

#custom-html-t4 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t4 fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-t4 legend {

  padding: 0;

  border: 0;

}

#custom-html-t4 textarea {

  overflow: auto;

}

#custom-html-t4 optgroup {

  font-weight: 700;

}

#custom-html-t4 table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-t4 td,

#custom-html-t4 th {

  padding: 0;

}

@media print {

  #custom-html-t4 *,

  #custom-html-t4 :after,

  #custom-html-t4 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t4 a,

  #custom-html-t4 a:visited {

    text-decoration: underline;

  }

  #custom-html-t4 a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-t4 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t4 a[href^="#"]:after,

  #custom-html-t4 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t4 blockquote,

  #custom-html-t4 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t4 thead {

    display: table-header-group;

  }

  #custom-html-t4 img,

  #custom-html-t4 tr {

    page-break-inside: avoid;

  }

  #custom-html-t4 img {

    max-width: 100% !important;

  }

  #custom-html-t4 h2,

  #custom-html-t4 h3,

  #custom-html-t4 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t4 h2,

  #custom-html-t4 h3 {

    page-break-after: avoid;

  }

  #custom-html-t4 .navbar {

    display: none;

  }

  #custom-html-t4 .btn > .caret,

  #custom-html-t4 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t4 .label {

    border: 1px solid #000000;

  }

  #custom-html-t4 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t4 .table td,

  #custom-html-t4 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t4 .table-bordered td,

  #custom-html-t4 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t4 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t4 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t4 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t4 .glyphicon-eur:before,

#custom-html-t4 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t4 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t4 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t4 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t4 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t4 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t4 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t4 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t4 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-t4 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t4 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t4 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t4 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t4 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t4 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t4 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t4 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t4 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t4 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t4 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t4 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t4 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t4 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t4 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t4 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t4 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t4 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t4 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t4 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t4 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t4 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t4 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t4 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t4 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t4 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t4 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t4 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t4 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t4 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t4 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t4 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t4 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t4 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t4 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t4 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t4 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t4 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t4 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t4 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t4 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t4 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t4 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t4 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t4 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t4 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t4 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t4 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t4 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t4 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t4 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t4 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t4 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t4 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t4 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t4 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t4 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t4 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t4 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t4 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t4 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t4 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t4 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t4 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t4 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t4 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t4 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t4 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t4 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t4 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t4 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t4 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t4 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t4 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t4 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t4 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t4 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t4 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t4 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t4 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t4 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t4 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t4 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t4 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t4 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t4 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t4 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t4 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t4 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t4 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t4 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t4 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t4 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t4 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t4 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t4 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t4 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t4 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t4 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t4 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t4 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t4 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t4 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t4 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t4 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t4 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t4 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t4 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t4 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t4 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t4 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t4 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t4 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-t4 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t4 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t4 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t4 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t4 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t4 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t4 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t4 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t4 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t4 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t4 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t4 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t4 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t4 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t4 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t4 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t4 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t4 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t4 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t4 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t4 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t4 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t4 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t4 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t4 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t4 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t4 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t4 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t4 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t4 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-t4 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t4 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t4 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t4 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t4 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t4 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t4 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t4 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t4 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t4 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t4 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t4 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t4 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t4 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t4 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t4 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t4 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t4 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t4 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t4 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t4 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t4 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t4 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t4 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t4 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t4 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t4 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t4 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t4 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t4 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t4 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t4 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t4 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t4 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t4 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t4 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t4 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t4 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t4 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t4 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t4 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t4 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t4 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t4 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t4 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t4 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t4 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t4 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t4 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t4 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t4 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t4 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t4 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t4 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t4 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t4 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t4 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t4 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t4 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t4 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t4 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t4 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t4 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t4 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t4 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t4 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t4 .glyphicon-lamp:before {

  content: "\e223";


}

#custom-html-t4 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t4 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t4 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t4 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t4 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t4 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t4 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t4 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t4 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t4 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t4 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t4 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t4 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t4 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t4 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t4 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t4 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t4 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t4 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t4 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t4 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t4 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t4 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t4 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t4 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t4 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t4 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t4 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t4 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t4 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t4 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t4 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t4 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t4 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t4 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t4 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t4 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t4 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t4 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t4 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t4 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t4 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t4 :after,

#custom-html-t4 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t4 html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t4 body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-t4 button,

#custom-html-t4 input,

#custom-html-t4 select,

#custom-html-t4 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t4 a {

  color: #000;

  text-decoration: none;

}

#custom-html-t4 a:focus,

#custom-html-t4 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t4 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t4 figure {

  margin: 0;

}

#custom-html-t4 img {

  vertical-align: middle;

}

#custom-html-t4 .carousel-inner > .item > a > img,

#custom-html-t4 .carousel-inner > .item > img,

#custom-html-t4 .img-responsive,

#custom-html-t4 .thumbnail a > img,

#custom-html-t4 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t4 .img-rounded {

  border-radius: 6px;

}

#custom-html-t4 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t4 .img-circle {

  border-radius: 50%;

}

#custom-html-t4 hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t4 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t4 .sr-only-focusable:active,

#custom-html-t4 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t4 [role=button] {

  cursor: pointer;

}

#custom-html-t4 .h1,

#custom-html-t4 .h2,

#custom-html-t4 .h3,

#custom-html-t4 .h4,

#custom-html-t4 .h5,

#custom-html-t4 .h6,

#custom-html-t4 h1,

#custom-html-t4 h2,

#custom-html-t4 h3,

#custom-html-t4 h4,

#custom-html-t4 h5,

#custom-html-t4 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t4 .h1 .small,

#custom-html-t4 .h1 small,

#custom-html-t4 .h2 .small,

#custom-html-t4 .h2 small,

#custom-html-t4 .h3 .small,

#custom-html-t4 .h3 small,

#custom-html-t4 .h4 .small,

#custom-html-t4 .h4 small,

#custom-html-t4 .h5 .small,

#custom-html-t4 .h5 small,

#custom-html-t4 .h6 .small,

#custom-html-t4 .h6 small,

#custom-html-t4 h1 .small,

#custom-html-t4 h1 small,

#custom-html-t4 h2 .small,

#custom-html-t4 h2 small,

#custom-html-t4 h3 .small,

#custom-html-t4 h3 small,

#custom-html-t4 h4 .small,

#custom-html-t4 h4 small,

#custom-html-t4 h5 .small,

#custom-html-t4 h5 small,

#custom-html-t4 h6 .small,

#custom-html-t4 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t4 .h1,

#custom-html-t4 .h2,

#custom-html-t4 .h3,

#custom-html-t4 h1,

#custom-html-t4 h2,

#custom-html-t4 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t4 .h1 .small,

#custom-html-t4 .h1 small,

#custom-html-t4 .h2 .small,

#custom-html-t4 .h2 small,

#custom-html-t4 .h3 .small,

#custom-html-t4 .h3 small,

#custom-html-t4 h1 .small,

#custom-html-t4 h1 small,

#custom-html-t4 h2 .small,

#custom-html-t4 h2 small,

#custom-html-t4 h3 .small,

#custom-html-t4 h3 small {

  font-size: 65%;

}

#custom-html-t4 .h4,

#custom-html-t4 .h5,

#custom-html-t4 .h6,

#custom-html-t4 h4,

#custom-html-t4 h5,

#custom-html-t4 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t4 .h4 .small,

#custom-html-t4 .h4 small,

#custom-html-t4 .h5 .small,

#custom-html-t4 .h5 small,

#custom-html-t4 .h6 .small,

#custom-html-t4 .h6 small,

#custom-html-t4 h4 .small,

#custom-html-t4 h4 small,

#custom-html-t4 h5 .small,

#custom-html-t4 h5 small,

#custom-html-t4 h6 .small,

#custom-html-t4 h6 small {

  font-size: 75%;

}

#custom-html-t4 .h1,

#custom-html-t4 h1 {

  font-size: 36px;

}

#custom-html-t4 .h2,

#custom-html-t4 h2 {

  font-size: 30px;

}

#custom-html-t4 .h3,

#custom-html-t4 h3 {

  font-size: 24px;

}

#custom-html-t4 .h4,

#custom-html-t4 h4 {

  font-size: 18px;

}

#custom-html-t4 .h5,

#custom-html-t4 h5 {

  font-size: 14px;

}

#custom-html-t4 .h6,

#custom-html-t4 h6 {

  font-size: 12px;

}

#custom-html-t4 p {

  margin: 0 0 10px;

}

#custom-html-t4 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t4 .lead {

    font-size: 21px;

  }

}

#custom-html-t4 .small,

#custom-html-t4 small {

  font-size: 85%;

}

#custom-html-t4 .mark,

#custom-html-t4 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t4 .text-left {

  text-align: left;

}

#custom-html-t4 .text-right {

  text-align: right;

}

#custom-html-t4 .text-center {

  text-align: center;

}

#custom-html-t4 .text-justify {

  text-align: justify;

}

#custom-html-t4 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t4 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t4 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t4 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t4 .text-muted {

  color: #777777;

}

#custom-html-t4 .text-primary {

  color: #000000;

}

#custom-html-t4 a.text-primary:focus,

#custom-html-t4 a.text-primary:hover {

  color: #000000;

}

#custom-html-t4 .text-success {

  color: #3c763d;

}

#custom-html-t4 a.text-success:focus,

#custom-html-t4 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t4 .text-info {

  color: #31708f;

}

#custom-html-t4 a.text-info:focus,

#custom-html-t4 a.text-info:hover {

  color: #000000;

}

#custom-html-t4 .text-warning {

  color: #8a6d3b;

}

#custom-html-t4 a.text-warning:focus,

#custom-html-t4 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t4 .text-danger {

  color: #a94442;

}

#custom-html-t4 a.text-danger:focus,

#custom-html-t4 a.text-danger:hover {

  color: #843534;

}

#custom-html-t4 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t4 a.bg-primary:focus,

#custom-html-t4 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t4 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t4 a.bg-success:focus,

#custom-html-t4 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t4 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t4 a.bg-info:focus,

#custom-html-t4 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t4 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t4 a.bg-warning:focus,

#custom-html-t4 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t4 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t4 a.bg-danger:focus,

#custom-html-t4 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t4 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t4 ol,

#custom-html-t4 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t4 ol ol,

#custom-html-t4 ol ul,

#custom-html-t4 ul ol,

#custom-html-t4 ul ul {

  margin-bottom: 0;

}

#custom-html-t4 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t4 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t4 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t4 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t4 dd,

#custom-html-t4 dt {

  line-height: 1.42857143;

}

#custom-html-t4 dt {

  font-weight: 700;

}

#custom-html-t4 dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t4 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t4 .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-t4 abbr[data-original-title],

#custom-html-t4 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t4 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t4 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t4 blockquote ol:last-child,

#custom-html-t4 blockquote p:last-child,

#custom-html-t4 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t4 blockquote .small,

#custom-html-t4 blockquote footer,

#custom-html-t4 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-t4 blockquote .small:before,

#custom-html-t4 blockquote footer:before,

#custom-html-t4 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t4 .blockquote-reverse,

#custom-html-t4 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t4 .blockquote-reverse .small:before,

#custom-html-t4 .blockquote-reverse footer:before,

#custom-html-t4 .blockquote-reverse small:before,

#custom-html-t4 blockquote.pull-right .small:before,

#custom-html-t4 blockquote.pull-right footer:before,

#custom-html-t4 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t4 .blockquote-reverse .small:after,

#custom-html-t4 .blockquote-reverse footer:after,

#custom-html-t4 .blockquote-reverse small:after,

#custom-html-t4 blockquote.pull-right .small:after,

#custom-html-t4 blockquote.pull-right footer:after,

#custom-html-t4 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t4 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t4 code,

#custom-html-t4 kbd,

#custom-html-t4 pre,

#custom-html-t4 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-t4 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t4 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t4 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t4 pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t4 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t4 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t4 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-t4 .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-t4 .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t4 .container {

    width: 1170px;

  }

}

#custom-html-t4 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t4 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t4 .col-lg-1,

#custom-html-t4 .col-lg-10,

#custom-html-t4 .col-lg-11,

#custom-html-t4 .col-lg-12,

#custom-html-t4 .col-lg-2,

#custom-html-t4 .col-lg-3,

#custom-html-t4 .col-lg-4,

#custom-html-t4 .col-lg-5,

#custom-html-t4 .col-lg-6,

#custom-html-t4 .col-lg-7,

#custom-html-t4 .col-lg-8,

#custom-html-t4 .col-lg-9,

#custom-html-t4 .col-md-1,

#custom-html-t4 .col-md-10,

#custom-html-t4 .col-md-11,

#custom-html-t4 .col-md-12,

#custom-html-t4 .col-md-2,

#custom-html-t4 .col-md-3,

#custom-html-t4 .col-md-4,

#custom-html-t4 .col-md-5,

#custom-html-t4 .col-md-6,

#custom-html-t4 .col-md-7,

#custom-html-t4 .col-md-8,

#custom-html-t4 .col-md-9,

#custom-html-t4 .col-sm-1,

#custom-html-t4 .col-sm-10,

#custom-html-t4 .col-sm-11,

#custom-html-t4 .col-sm-12,

#custom-html-t4 .col-sm-2,

#custom-html-t4 .col-sm-3,

#custom-html-t4 .col-sm-4,

#custom-html-t4 .col-sm-5,

#custom-html-t4 .col-sm-6,

#custom-html-t4 .col-sm-7,

#custom-html-t4 .col-sm-8,

#custom-html-t4 .col-sm-9,

#custom-html-t4 .col-xs-1,

#custom-html-t4 .col-xs-10,

#custom-html-t4 .col-xs-11,

#custom-html-t4 .col-xs-12,

#custom-html-t4 .col-xs-2,

#custom-html-t4 .col-xs-3,

#custom-html-t4 .col-xs-4,

#custom-html-t4 .col-xs-5,

#custom-html-t4 .col-xs-6,

#custom-html-t4 .col-xs-7,

#custom-html-t4 .col-xs-8,

#custom-html-t4 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t4 .col-xs-1,

#custom-html-t4 .col-xs-10,

#custom-html-t4 .col-xs-11,

#custom-html-t4 .col-xs-12,

#custom-html-t4 .col-xs-2,

#custom-html-t4 .col-xs-3,

#custom-html-t4 .col-xs-4,

#custom-html-t4 .col-xs-5,

#custom-html-t4 .col-xs-6,

#custom-html-t4 .col-xs-7,

#custom-html-t4 .col-xs-8,

#custom-html-t4 .col-xs-9 {

  float: left;

}

#custom-html-t4 .col-xs-12 {

  width: 100%;

}

#custom-html-t4 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t4 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t4 .col-xs-9 {

  width: 75%;

}

#custom-html-t4 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t4 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t4 .col-xs-6 {

  width: 50%;

}

#custom-html-t4 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t4 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-t4 .col-xs-3 {

  width: 25%;

}

#custom-html-t4 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t4 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t4 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t4 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t4 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t4 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t4 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t4 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t4 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t4 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t4 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t4 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t4 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t4 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t4 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t4 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t4 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t4 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t4 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t4 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t4 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t4 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t4 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t4 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t4 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t4 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t4 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t4 .col-xs-push-0 {

  left: auto;

}

#custom-html-t4 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t4 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t4 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t4 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t4 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t4 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t4 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t4 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t4 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t4 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t4 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t4 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t4 .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t4 .col-sm-1,

  #custom-html-t4 .col-sm-10,

  #custom-html-t4 .col-sm-11,

  #custom-html-t4 .col-sm-12,

  #custom-html-t4 .col-sm-2,

  #custom-html-t4 .col-sm-3,

  #custom-html-t4 .col-sm-4,

  #custom-html-t4 .col-sm-5,

  #custom-html-t4 .col-sm-6,

  #custom-html-t4 .col-sm-7,

  #custom-html-t4 .col-sm-8,

  #custom-html-t4 .col-sm-9 {

    float: left;

  }

  #custom-html-t4 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t4 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t4 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t4 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t4 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t4 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t4 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t4 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t4 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t4 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t4 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t4 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t4 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t4 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t4 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t4 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t4 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t4 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t4 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t4 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t4 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t4 .col-sm-pull-3 {

    right: 25%;

  }


  #custom-html-t4 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t4 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t4 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t4 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t4 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t4 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t4 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t4 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t4 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t4 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t4 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t4 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t4 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t4 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t4 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t4 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t4 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t4 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t4 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t4 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t4 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t4 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t4 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t4 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t4 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t4 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t4 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t4 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t4 .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-t4 .col-md-1,

  #custom-html-t4 .col-md-10,

  #custom-html-t4 .col-md-11,

  #custom-html-t4 .col-md-12,

  #custom-html-t4 .col-md-2,

  #custom-html-t4 .col-md-3,

  #custom-html-t4 .col-md-4,

  #custom-html-t4 .col-md-5,

  #custom-html-t4 .col-md-6,

  #custom-html-t4 .col-md-7,

  #custom-html-t4 .col-md-8,

  #custom-html-t4 .col-md-9 {

    float: left;

  }

  #custom-html-t4 .col-md-12 {

    width: 100%;

  }

  #custom-html-t4 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t4 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t4 .col-md-9 {

    width: 75%;

  }

  #custom-html-t4 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t4 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t4 .col-md-6 {

    width: 50%;

  }

  #custom-html-t4 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t4 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t4 .col-md-3 {

    width: 25%;

  }

  #custom-html-t4 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t4 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t4 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t4 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t4 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t4 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t4 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t4 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t4 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t4 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t4 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t4 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t4 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t4 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t4 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t4 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t4 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t4 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t4 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t4 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t4 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t4 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t4 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t4 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t4 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-t4 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t4 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t4 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t4 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t4 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t4 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t4 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t4 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t4 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t4 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t4 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t4 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t4 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t4 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t4 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t4 .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-t4 .col-lg-1,

  #custom-html-t4 .col-lg-10,

  #custom-html-t4 .col-lg-11,

  #custom-html-t4 .col-lg-12,

  #custom-html-t4 .col-lg-2,

  #custom-html-t4 .col-lg-3,

  #custom-html-t4 .col-lg-4,

  #custom-html-t4 .col-lg-5,

  #custom-html-t4 .col-lg-6,

  #custom-html-t4 .col-lg-7,

  #custom-html-t4 .col-lg-8,

  #custom-html-t4 .col-lg-9 {

    float: left;

  }

  #custom-html-t4 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t4 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t4 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t4 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t4 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t4 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t4 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t4 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t4 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t4 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t4 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t4 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t4 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t4 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t4 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t4 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t4 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t4 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t4 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t4 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t4 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t4 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-t4 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t4 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t4 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t4 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t4 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t4 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t4 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t4 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t4 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t4 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t4 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t4 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t4 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t4 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t4 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t4 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t4 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t4 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t4 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t4 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t4 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t4 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t4 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t4 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t4 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t4 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t4 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t4 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t4 .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-t4 table {

  background-color: transparent;

}

#custom-html-t4 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t4 th {

  text-align: left;

}

#custom-html-t4 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t4 .table > tbody > tr > td,

#custom-html-t4 .table > tbody > tr > th,

#custom-html-t4 .table > tfoot > tr > td,

#custom-html-t4 .table > tfoot > tr > th,

#custom-html-t4 .table > thead > tr > td,

#custom-html-t4 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t4 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t4 .table > caption + thead > tr:first-child > td,

#custom-html-t4 .table > caption + thead > tr:first-child > th,

#custom-html-t4 .table > colgroup + thead > tr:first-child > td,

#custom-html-t4 .table > colgroup + thead > tr:first-child > th,

#custom-html-t4 .table > thead:first-child > tr:first-child > td,

#custom-html-t4 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t4 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t4 .table .table {

  background-color: #ffffff;

}

#custom-html-t4 .table-condensed > tbody > tr > td,

#custom-html-t4 .table-condensed > tbody > tr > th,

#custom-html-t4 .table-condensed > tfoot > tr > td,

#custom-html-t4 .table-condensed > tfoot > tr > th,

#custom-html-t4 .table-condensed > thead > tr > td,

#custom-html-t4 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t4 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t4 .table-bordered > tbody > tr > td,

#custom-html-t4 .table-bordered > tbody > tr > th,

#custom-html-t4 .table-bordered > tfoot > tr > td,

#custom-html-t4 .table-bordered > tfoot > tr > th,

#custom-html-t4 .table-bordered > thead > tr > td,

#custom-html-t4 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t4 .table-bordered > thead > tr > td,

#custom-html-t4 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t4 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t4 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t4 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t4 table td[class*=col-],

#custom-html-t4 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t4 .table > tbody > tr.active > td,

#custom-html-t4 .table > tbody > tr.active > th,

#custom-html-t4 .table > tbody > tr > td.active,

#custom-html-t4 .table > tbody > tr > th.active,

#custom-html-t4 .table > tfoot > tr.active > td,

#custom-html-t4 .table > tfoot > tr.active > th,

#custom-html-t4 .table > tfoot > tr > td.active,

#custom-html-t4 .table > tfoot > tr > th.active,

#custom-html-t4 .table > thead > tr.active > td,

#custom-html-t4 .table > thead > tr.active > th,

#custom-html-t4 .table > thead > tr > td.active,

#custom-html-t4 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t4 .table-hover > tbody > tr.active:hover > td,

#custom-html-t4 .table-hover > tbody > tr.active:hover > th,

#custom-html-t4 .table-hover > tbody > tr:hover > .active,

#custom-html-t4 .table-hover > tbody > tr > td.active:hover,

#custom-html-t4 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t4 .table > tbody > tr.success > td,

#custom-html-t4 .table > tbody > tr.success > th,

#custom-html-t4 .table > tbody > tr > td.success,

#custom-html-t4 .table > tbody > tr > th.success,

#custom-html-t4 .table > tfoot > tr.success > td,

#custom-html-t4 .table > tfoot > tr.success > th,

#custom-html-t4 .table > tfoot > tr > td.success,

#custom-html-t4 .table > tfoot > tr > th.success,

#custom-html-t4 .table > thead > tr.success > td,

#custom-html-t4 .table > thead > tr.success > th,

#custom-html-t4 .table > thead > tr > td.success,

#custom-html-t4 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t4 .table-hover > tbody > tr.success:hover > td,

#custom-html-t4 .table-hover > tbody > tr.success:hover > th,

#custom-html-t4 .table-hover > tbody > tr:hover > .success,

#custom-html-t4 .table-hover > tbody > tr > td.success:hover,

#custom-html-t4 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t4 .table > tbody > tr.info > td,

#custom-html-t4 .table > tbody > tr.info > th,

#custom-html-t4 .table > tbody > tr > td.info,

#custom-html-t4 .table > tbody > tr > th.info,

#custom-html-t4 .table > tfoot > tr.info > td,

#custom-html-t4 .table > tfoot > tr.info > th,

#custom-html-t4 .table > tfoot > tr > td.info,

#custom-html-t4 .table > tfoot > tr > th.info,

#custom-html-t4 .table > thead > tr.info > td,

#custom-html-t4 .table > thead > tr.info > th,

#custom-html-t4 .table > thead > tr > td.info,

#custom-html-t4 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t4 .table-hover > tbody > tr.info:hover > td,

#custom-html-t4 .table-hover > tbody > tr.info:hover > th,

#custom-html-t4 .table-hover > tbody > tr:hover > .info,

#custom-html-t4 .table-hover > tbody > tr > td.info:hover,

#custom-html-t4 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t4 .table > tbody > tr.warning > td,

#custom-html-t4 .table > tbody > tr.warning > th,

#custom-html-t4 .table > tbody > tr > td.warning,

#custom-html-t4 .table > tbody > tr > th.warning,

#custom-html-t4 .table > tfoot > tr.warning > td,

#custom-html-t4 .table > tfoot > tr.warning > th,

#custom-html-t4 .table > tfoot > tr > td.warning,

#custom-html-t4 .table > tfoot > tr > th.warning,

#custom-html-t4 .table > thead > tr.warning > td,

#custom-html-t4 .table > thead > tr.warning > th,

#custom-html-t4 .table > thead > tr > td.warning,

#custom-html-t4 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t4 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t4 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t4 .table-hover > tbody > tr:hover > .warning,

#custom-html-t4 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t4 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t4 .table > tbody > tr.danger > td,

#custom-html-t4 .table > tbody > tr.danger > th,

#custom-html-t4 .table > tbody > tr > td.danger,

#custom-html-t4 .table > tbody > tr > th.danger,

#custom-html-t4 .table > tfoot > tr.danger > td,

#custom-html-t4 .table > tfoot > tr.danger > th,

#custom-html-t4 .table > tfoot > tr > td.danger,

#custom-html-t4 .table > tfoot > tr > th.danger,

#custom-html-t4 .table > thead > tr.danger > td,

#custom-html-t4 .table > thead > tr.danger > th,

#custom-html-t4 .table > thead > tr > td.danger,

#custom-html-t4 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t4 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t4 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t4 .table-hover > tbody > tr:hover > .danger,

#custom-html-t4 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t4 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t4 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t4 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t4 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t4 .table-responsive > .table > tbody > tr > td,

  #custom-html-t4 .table-responsive > .table > tbody > tr > th,

  #custom-html-t4 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t4 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t4 .table-responsive > .table > thead > tr > td,

  #custom-html-t4 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t4 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t4 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t4 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t4 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t4 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t4 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t4 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t4 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t4 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t4 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-t4 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t4 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t4 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t4 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t4 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t4 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t4 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-t4 fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-t4 legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t4 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t4 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t4 input[type=checkbox],

#custom-html-t4 input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t4 input[type=file] {

  display: block;

}

#custom-html-t4 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-t4 select[multiple],

#custom-html-t4 select[size] {

  height: auto;

}

#custom-html-t4 input[type=checkbox]:focus,

#custom-html-t4 input[type=file]:focus,

#custom-html-t4 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t4 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t4 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t4 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t4 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t4 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t4 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t4 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t4 .form-control[disabled],

#custom-html-t4 .form-control[readonly],

#custom-html-t4 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t4 .form-control[disabled],

#custom-html-t4 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t4 textarea.form-control {

  height: auto;

}

#custom-html-t4 input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t4 input[type=date].form-control,

  #custom-html-t4 input[type=datetime-local].form-control,

  #custom-html-t4 input[type=month].form-control,

  #custom-html-t4 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t4 .input-group-sm input[type=date],

  #custom-html-t4 .input-group-sm input[type=datetime-local],

  #custom-html-t4 .input-group-sm input[type=month],

  #custom-html-t4 .input-group-sm input[type=time],

  #custom-html-t4 input[type=date].input-sm,

  #custom-html-t4 input[type=datetime-local].input-sm,

  #custom-html-t4 input[type=month].input-sm,

  #custom-html-t4 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t4 .input-group-lg input[type=date],

  #custom-html-t4 .input-group-lg input[type=datetime-local],

  #custom-html-t4 .input-group-lg input[type=month],

  #custom-html-t4 .input-group-lg input[type=time],

  #custom-html-t4 input[type=date].input-lg,

  #custom-html-t4 input[type=datetime-local].input-lg,

  #custom-html-t4 input[type=month].input-lg,

  #custom-html-t4 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t4 .form-group {

  margin-bottom: 15px;

}

#custom-html-t4 .checkbox,

#custom-html-t4 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t4 .checkbox label,

#custom-html-t4 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t4 .checkbox input[type=checkbox],

#custom-html-t4 .checkbox-inline input[type=checkbox],

#custom-html-t4 .radio input[type=radio],

#custom-html-t4 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t4 .checkbox + .checkbox,

#custom-html-t4 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t4 .checkbox-inline,

#custom-html-t4 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t4 .checkbox-inline + .checkbox-inline,

#custom-html-t4 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t4 fieldset[disabled] input[type=checkbox],

#custom-html-t4 fieldset[disabled] input[type=radio],

#custom-html-t4 input[type=checkbox].disabled,

#custom-html-t4 input[type=checkbox][disabled],

#custom-html-t4 input[type=radio].disabled,

#custom-html-t4 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t4 .checkbox-inline.disabled,

#custom-html-t4 .radio-inline.disabled,

#custom-html-t4 fieldset[disabled] .checkbox-inline,

#custom-html-t4 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t4 .checkbox.disabled label,

#custom-html-t4 .radio.disabled label,

#custom-html-t4 fieldset[disabled] .checkbox label,

#custom-html-t4 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t4 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t4 .form-control-static.input-lg,

#custom-html-t4 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t4 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t4 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t4 select[multiple].input-sm,

#custom-html-t4 textarea.input-sm {

  height: auto;

}

#custom-html-t4 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t4 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t4 .form-group-sm select[multiple].form-control,

#custom-html-t4 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t4 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t4 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t4 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t4 select[multiple].input-lg,

#custom-html-t4 textarea.input-lg {

  height: auto;

}

#custom-html-t4 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t4 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-t4 .form-group-lg select[multiple].form-control,

#custom-html-t4 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t4 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t4 .has-feedback {

  position: relative;

}

#custom-html-t4 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t4 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t4 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t4 .input-group-lg + .form-control-feedback,

#custom-html-t4 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t4 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t4 .input-group-sm + .form-control-feedback,

#custom-html-t4 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t4 .has-success .checkbox,

#custom-html-t4 .has-success .checkbox-inline,

#custom-html-t4 .has-success .control-label,

#custom-html-t4 .has-success .help-block,

#custom-html-t4 .has-success .radio,

#custom-html-t4 .has-success .radio-inline,

#custom-html-t4 .has-success.checkbox label,

#custom-html-t4 .has-success.checkbox-inline label,

#custom-html-t4 .has-success.radio label,

#custom-html-t4 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t4 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t4 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t4 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t4 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t4 .has-warning .checkbox,

#custom-html-t4 .has-warning .checkbox-inline,

#custom-html-t4 .has-warning .control-label,

#custom-html-t4 .has-warning .help-block,

#custom-html-t4 .has-warning .radio,

#custom-html-t4 .has-warning .radio-inline,

#custom-html-t4 .has-warning.checkbox label,

#custom-html-t4 .has-warning.checkbox-inline label,

#custom-html-t4 .has-warning.radio label,

#custom-html-t4 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t4 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t4 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t4 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t4 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t4 .has-error .checkbox,

#custom-html-t4 .has-error .checkbox-inline,

#custom-html-t4 .has-error .control-label,

#custom-html-t4 .has-error .help-block,

#custom-html-t4 .has-error .radio,

#custom-html-t4 .has-error .radio-inline,

#custom-html-t4 .has-error.checkbox label,

#custom-html-t4 .has-error.checkbox-inline label,

#custom-html-t4 .has-error.radio label,

#custom-html-t4 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t4 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t4 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t4 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t4 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t4 .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-t4 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t4 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-t4 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t4 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t4 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t4 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t4 .form-inline .input-group .form-control,

  #custom-html-t4 .form-inline .input-group .input-group-addon,

  #custom-html-t4 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t4 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t4 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t4 .form-inline .checkbox,

  #custom-html-t4 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t4 .form-inline .checkbox label,

  #custom-html-t4 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t4 .form-inline .checkbox input[type=checkbox],

  #custom-html-t4 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t4 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-t4 .form-horizontal .checkbox,

#custom-html-t4 .form-horizontal .checkbox-inline,

#custom-html-t4 .form-horizontal .radio,

#custom-html-t4 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t4 .form-horizontal .checkbox,

#custom-html-t4 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t4 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t4 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-t4 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-t4 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-t4 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-t4 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t4 .btn.active.focus,

#custom-html-t4 .btn.active:focus,

#custom-html-t4 .btn.focus,

#custom-html-t4 .btn:active.focus,

#custom-html-t4 .btn:active:focus,

#custom-html-t4 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t4 .btn.focus,

#custom-html-t4 .btn:focus,

#custom-html-t4 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t4 .btn.active,

#custom-html-t4 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t4 .btn.disabled,

#custom-html-t4 .btn[disabled],

#custom-html-t4 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t4 a.btn.disabled,

#custom-html-t4 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t4 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t4 .btn-default.focus,

#custom-html-t4 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t4 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t4 .btn-default.active,

#custom-html-t4 .btn-default:active,

#custom-html-t4 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t4 .btn-default.active.focus,

#custom-html-t4 .btn-default.active:focus,

#custom-html-t4 .btn-default.active:hover,

#custom-html-t4 .btn-default:active.focus,

#custom-html-t4 .btn-default:active:focus,

#custom-html-t4 .btn-default:active:hover,

#custom-html-t4 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t4 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t4 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t4 .btn-default.active,

#custom-html-t4 .btn-default:active,

#custom-html-t4 .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-t4 .btn-default.disabled.focus,

#custom-html-t4 .btn-default.disabled:focus,

#custom-html-t4 .btn-default.disabled:hover,

#custom-html-t4 .btn-default[disabled].focus,

#custom-html-t4 .btn-default[disabled]:focus,

#custom-html-t4 .btn-default[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-default.focus,

#custom-html-t4 fieldset[disabled] .btn-default:focus,

#custom-html-t4 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t4 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t4 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t4 .btn-primary.focus,

#custom-html-t4 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t4 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t4 .btn-primary.active,

#custom-html-t4 .btn-primary:active,

#custom-html-t4 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t4 .btn-primary.active.focus,

#custom-html-t4 .btn-primary.active:focus,

#custom-html-t4 .btn-primary.active:hover,

#custom-html-t4 .btn-primary:active.focus,

#custom-html-t4 .btn-primary:active:focus,

#custom-html-t4 .btn-primary:active:hover,

#custom-html-t4 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t4 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t4 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t4 .btn-primary.active,

#custom-html-t4 .btn-primary:active,

#custom-html-t4 .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-t4 .btn-primary.disabled.focus,

#custom-html-t4 .btn-primary.disabled:focus,

#custom-html-t4 .btn-primary.disabled:hover,

#custom-html-t4 .btn-primary[disabled].focus,

#custom-html-t4 .btn-primary[disabled]:focus,

#custom-html-t4 .btn-primary[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-primary.focus,

#custom-html-t4 fieldset[disabled] .btn-primary:focus,

#custom-html-t4 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t4 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t4 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t4 .btn-success.focus,

#custom-html-t4 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t4 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t4 .btn-success.active,

#custom-html-t4 .btn-success:active,

#custom-html-t4 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t4 .btn-success.active.focus,

#custom-html-t4 .btn-success.active:focus,

#custom-html-t4 .btn-success.active:hover,

#custom-html-t4 .btn-success:active.focus,

#custom-html-t4 .btn-success:active:focus,

#custom-html-t4 .btn-success:active:hover,

#custom-html-t4 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t4 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t4 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t4 .btn-success.active,

#custom-html-t4 .btn-success:active,

#custom-html-t4 .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-t4 .btn-success.disabled.focus,

#custom-html-t4 .btn-success.disabled:focus,

#custom-html-t4 .btn-success.disabled:hover,

#custom-html-t4 .btn-success[disabled].focus,

#custom-html-t4 .btn-success[disabled]:focus,

#custom-html-t4 .btn-success[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-success.focus,

#custom-html-t4 fieldset[disabled] .btn-success:focus,

#custom-html-t4 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t4 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t4 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t4 .btn-info.focus,

#custom-html-t4 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t4 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t4 .btn-info.active,

#custom-html-t4 .btn-info:active,

#custom-html-t4 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t4 .btn-info.active.focus,

#custom-html-t4 .btn-info.active:focus,

#custom-html-t4 .btn-info.active:hover,

#custom-html-t4 .btn-info:active.focus,

#custom-html-t4 .btn-info:active:focus,

#custom-html-t4 .btn-info:active:hover,

#custom-html-t4 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t4 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t4 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t4 .btn-info.active,

#custom-html-t4 .btn-info:active,

#custom-html-t4 .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-t4 .btn-info.disabled.focus,

#custom-html-t4 .btn-info.disabled:focus,

#custom-html-t4 .btn-info.disabled:hover,

#custom-html-t4 .btn-info[disabled].focus,

#custom-html-t4 .btn-info[disabled]:focus,

#custom-html-t4 .btn-info[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-info.focus,

#custom-html-t4 fieldset[disabled] .btn-info:focus,

#custom-html-t4 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t4 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t4 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t4 .btn-warning.focus,

#custom-html-t4 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t4 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t4 .btn-warning.active,

#custom-html-t4 .btn-warning:active,

#custom-html-t4 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t4 .btn-warning.active.focus,

#custom-html-t4 .btn-warning.active:focus,

#custom-html-t4 .btn-warning.active:hover,

#custom-html-t4 .btn-warning:active.focus,

#custom-html-t4 .btn-warning:active:focus,

#custom-html-t4 .btn-warning:active:hover,

#custom-html-t4 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t4 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t4 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t4 .btn-warning.active,

#custom-html-t4 .btn-warning:active,

#custom-html-t4 .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-t4 .btn-warning.disabled.focus,

#custom-html-t4 .btn-warning.disabled:focus,

#custom-html-t4 .btn-warning.disabled:hover,

#custom-html-t4 .btn-warning[disabled].focus,

#custom-html-t4 .btn-warning[disabled]:focus,

#custom-html-t4 .btn-warning[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-warning.focus,

#custom-html-t4 fieldset[disabled] .btn-warning:focus,

#custom-html-t4 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t4 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t4 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t4 .btn-danger.focus,

#custom-html-t4 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t4 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t4 .btn-danger.active,

#custom-html-t4 .btn-danger:active,

#custom-html-t4 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t4 .btn-danger.active.focus,

#custom-html-t4 .btn-danger.active:focus,

#custom-html-t4 .btn-danger.active:hover,

#custom-html-t4 .btn-danger:active.focus,

#custom-html-t4 .btn-danger:active:focus,

#custom-html-t4 .btn-danger:active:hover,

#custom-html-t4 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t4 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t4 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t4 .btn-danger.active,

#custom-html-t4 .btn-danger:active,

#custom-html-t4 .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-t4 .btn-danger.disabled.focus,

#custom-html-t4 .btn-danger.disabled:focus,

#custom-html-t4 .btn-danger.disabled:hover,

#custom-html-t4 .btn-danger[disabled].focus,

#custom-html-t4 .btn-danger[disabled]:focus,

#custom-html-t4 .btn-danger[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-danger.focus,

#custom-html-t4 fieldset[disabled] .btn-danger:focus,

#custom-html-t4 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t4 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t4 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t4 .btn-link,

#custom-html-t4 .btn-link.active,

#custom-html-t4 .btn-link:active,

#custom-html-t4 .btn-link[disabled],

#custom-html-t4 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t4 .btn-link,

#custom-html-t4 .btn-link:active,

#custom-html-t4 .btn-link:focus,

#custom-html-t4 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t4 .btn-link:focus,

#custom-html-t4 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t4 .btn-link[disabled]:focus,

#custom-html-t4 .btn-link[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-link:focus,

#custom-html-t4 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t4 .btn-group-lg > .btn,

#custom-html-t4 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t4 .btn-group-sm > .btn,

#custom-html-t4 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t4 .btn-group-xs > .btn,

#custom-html-t4 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t4 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t4 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t4 input[type=button].btn-block,

#custom-html-t4 input[type=reset].btn-block,

#custom-html-t4 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t4 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t4 .fade.in {

  opacity: 1;

}

#custom-html-t4 .collapse {

  display: none;

}

#custom-html-t4 .collapse.in {

  display: block;

}

#custom-html-t4 tr.collapse.in {

  display: table-row;

}

#custom-html-t4 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t4 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t4 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t4 .dropdown,

#custom-html-t4 .dropup {

  position: relative;

}

#custom-html-t4 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t4 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t4 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t4 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t4 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-t4 .dropdown-menu > li > a:focus,

#custom-html-t4 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t4 .dropdown-menu > .active > a,

#custom-html-t4 .dropdown-menu > .active > a:focus,

#custom-html-t4 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-t4 .dropdown-menu > .disabled > a,

#custom-html-t4 .dropdown-menu > .disabled > a:focus,

#custom-html-t4 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t4 .dropdown-menu > .disabled > a:focus,

#custom-html-t4 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t4 .open > .dropdown-menu {

  display: block;

}

#custom-html-t4 .open > a {

  outline: 0;

}

#custom-html-t4 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t4 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t4 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t4 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t4 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t4 .dropup .caret,

#custom-html-t4 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t4 .dropup .dropdown-menu,

#custom-html-t4 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-t4 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-t4 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-t4 .btn-group,

#custom-html-t4 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t4 .btn-group-vertical > .btn,

#custom-html-t4 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t4 .btn-group-vertical > .btn.active,

#custom-html-t4 .btn-group-vertical > .btn:active,

#custom-html-t4 .btn-group-vertical > .btn:focus,

#custom-html-t4 .btn-group-vertical > .btn:hover,

#custom-html-t4 .btn-group > .btn.active,

#custom-html-t4 .btn-group > .btn:active,

#custom-html-t4 .btn-group > .btn:focus,

#custom-html-t4 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t4 .btn-group .btn + .btn,

#custom-html-t4 .btn-group .btn + .btn-group,

#custom-html-t4 .btn-group .btn-group + .btn,

#custom-html-t4 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t4 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t4 .btn-toolbar .btn,

#custom-html-t4 .btn-toolbar .btn-group,

#custom-html-t4 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t4 .btn-toolbar > .btn,

#custom-html-t4 .btn-toolbar > .btn-group,

#custom-html-t4 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t4 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t4 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t4 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t4 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t4 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t4 .btn-group > .btn-group {

  float: left;

}

#custom-html-t4 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t4 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t4 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t4 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t4 .btn-group .dropdown-toggle:active,

#custom-html-t4 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t4 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t4 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t4 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t4 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t4 .btn .caret {

  margin-left: 0;

}

#custom-html-t4 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t4 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t4 .btn-group-vertical > .btn,

#custom-html-t4 .btn-group-vertical > .btn-group,

#custom-html-t4 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t4 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t4 .btn-group-vertical > .btn + .btn,

#custom-html-t4 .btn-group-vertical > .btn + .btn-group,

#custom-html-t4 .btn-group-vertical > .btn-group + .btn,

#custom-html-t4 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t4 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t4 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t4 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t4 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t4 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t4 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t4 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t4 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t4 .btn-group-justified > .btn,

#custom-html-t4 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t4 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t4 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t4 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t4 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t4 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t4 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t4 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t4 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t4 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t4 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t4 .input-group-lg > .form-control,

#custom-html-t4 .input-group-lg > .input-group-addon,

#custom-html-t4 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t4 select.input-group-lg > .form-control,

#custom-html-t4 select.input-group-lg > .input-group-addon,

#custom-html-t4 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t4 select[multiple].input-group-lg > .form-control,

#custom-html-t4 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t4 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t4 textarea.input-group-lg > .form-control,

#custom-html-t4 textarea.input-group-lg > .input-group-addon,

#custom-html-t4 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t4 .input-group-sm > .form-control,

#custom-html-t4 .input-group-sm > .input-group-addon,

#custom-html-t4 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t4 select.input-group-sm > .form-control,

#custom-html-t4 select.input-group-sm > .input-group-addon,

#custom-html-t4 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t4 select[multiple].input-group-sm > .form-control,

#custom-html-t4 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t4 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t4 textarea.input-group-sm > .form-control,

#custom-html-t4 textarea.input-group-sm > .input-group-addon,

#custom-html-t4 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t4 .input-group .form-control,

#custom-html-t4 .input-group-addon,

#custom-html-t4 .input-group-btn {

  display: table-cell;

}

#custom-html-t4 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t4 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t4 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t4 .input-group-addon,

#custom-html-t4 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t4 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t4 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t4 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t4 .input-group-addon input[type=checkbox],

#custom-html-t4 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t4 .input-group .form-control:first-child,

#custom-html-t4 .input-group-addon:first-child,

#custom-html-t4 .input-group-btn:first-child > .btn,

#custom-html-t4 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t4 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t4 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t4 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t4 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t4 .input-group .form-control:last-child,

#custom-html-t4 .input-group-addon:last-child,

#custom-html-t4 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t4 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t4 .input-group-btn:last-child > .btn,

#custom-html-t4 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t4 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t4 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t4 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t4 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t4 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t4 .input-group-btn > .btn:active,

#custom-html-t4 .input-group-btn > .btn:focus,

#custom-html-t4 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t4 .input-group-btn:first-child > .btn,

#custom-html-t4 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t4 .input-group-btn:last-child > .btn,

#custom-html-t4 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t4 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t4 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t4 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t4 .nav > li > a:focus,

#custom-html-t4 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t4 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t4 .nav > li.disabled > a:focus,

#custom-html-t4 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t4 .nav .open > a,

#custom-html-t4 .nav .open > a:focus,

#custom-html-t4 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t4 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t4 .nav > li > a > img {

  max-width: none;

}

#custom-html-t4 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t4 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t4 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t4 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t4 .nav-tabs > li.active > a,

#custom-html-t4 .nav-tabs > li.active > a:focus,

#custom-html-t4 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t4 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t4 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t4 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t4 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t4 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t4 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t4 .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t4 .nav-tabs.nav-justified > .active > a,

#custom-html-t4 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t4 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t4 .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t4 .nav-tabs.nav-justified > .active > a,

  #custom-html-t4 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t4 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t4 .nav-pills > li {

  float: left;

}

#custom-html-t4 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t4 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t4 .nav-pills > li.active > a,

#custom-html-t4 .nav-pills > li.active > a:focus,

#custom-html-t4 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t4 .nav-stacked > li {

  float: none;

}

#custom-html-t4 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t4 .nav-justified {

  width: 100%;

}

#custom-html-t4 .nav-justified > li {

  float: none;

}

#custom-html-t4 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t4 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t4 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t4 .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t4 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t4 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t4 .nav-tabs-justified > .active > a,

#custom-html-t4 .nav-tabs-justified > .active > a:focus,

#custom-html-t4 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t4 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t4 .nav-tabs-justified > .active > a,

  #custom-html-t4 .nav-tabs-justified > .active > a:focus,

  #custom-html-t4 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t4 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t4 .tab-content > .active {

  display: block;

}

#custom-html-t4 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t4 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-t4 .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-t4 .navbar-header {

    float: left;

  }

}

#custom-html-t4 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t4 .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-t4 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t4 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t4 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t4 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t4 .navbar-fixed-top .navbar-collapse,

  #custom-html-t4 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-t4 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t4 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t4 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t4 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t4 .container-fluid > .navbar-collapse,

#custom-html-t4 .container-fluid > .navbar-header,

#custom-html-t4 .container > .navbar-collapse,

#custom-html-t4 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t4 .container-fluid > .navbar-collapse,

  #custom-html-t4 .container-fluid > .navbar-header,

  #custom-html-t4 .container > .navbar-collapse,

  #custom-html-t4 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-t4 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-t4 .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-t4 .navbar-fixed-bottom,

#custom-html-t4 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-t4 .navbar-fixed-bottom,

  #custom-html-t4 .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-t4 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t4 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t4 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t4 .navbar-brand:focus,

#custom-html-t4 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t4 .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-t4 .navbar > .container .navbar-brand,

  #custom-html-t4 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-t4 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t4 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t4 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t4 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-t4 .navbar-toggle {

    display: none;

  }

}

#custom-html-t4 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t4 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t4 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t4 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t4 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t4 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t4 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t4 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-t4 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t4 .navbar-nav > li {

    float: left;

  }

  #custom-html-t4 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-t4 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-t4 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t4 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t4 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t4 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t4 .navbar-form .input-group .form-control,

  #custom-html-t4 .navbar-form .input-group .input-group-addon,

  #custom-html-t4 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t4 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t4 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t4 .navbar-form .checkbox,

  #custom-html-t4 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t4 .navbar-form .checkbox label,

  #custom-html-t4 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t4 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t4 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t4 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-t4 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t4 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-t4 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-t4 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t4 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t4 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t4 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t4 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t4 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-t4 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-t4 .navbar-left {

    float: left !important;

  }

  #custom-html-t4 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t4 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-t4 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t4 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t4 .navbar-default .navbar-brand:focus,

#custom-html-t4 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t4 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t4 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t4 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t4 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t4 .navbar-default .navbar-nav > .active > a,

#custom-html-t4 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t4 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t4 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t4 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t4 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t4 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t4 .navbar-default .navbar-toggle:focus,

#custom-html-t4 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t4 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t4 .navbar-default .navbar-collapse,

#custom-html-t4 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t4 .navbar-default .navbar-nav > .open > a,

#custom-html-t4 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t4 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t4 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-t4 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t4 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t4 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t4 .navbar-default .btn-link:focus,

#custom-html-t4 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-t4 .navbar-default .btn-link[disabled]:focus,

#custom-html-t4 .navbar-default .btn-link[disabled]:hover,

#custom-html-t4 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t4 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t4 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t4 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t4 .navbar-inverse .navbar-brand:focus,

#custom-html-t4 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t4 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t4 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t4 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t4 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t4 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t4 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t4 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t4 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t4 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t4 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t4 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t4 .navbar-inverse .navbar-toggle:focus,

#custom-html-t4 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t4 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t4 .navbar-inverse .navbar-collapse,

#custom-html-t4 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t4 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t4 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t4 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t4 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-t4 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t4 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t4 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t4 .navbar-inverse .btn-link:focus,

#custom-html-t4 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t4 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t4 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t4 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t4 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t4 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t4 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t4 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t4 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t4 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-t4 .pagination > li {

  display: inline;

}

#custom-html-t4 .pagination > li > a,

#custom-html-t4 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t4 .pagination > li:first-child > a,

#custom-html-t4 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t4 .pagination > li:last-child > a,

#custom-html-t4 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t4 .pagination > li > a:focus,

#custom-html-t4 .pagination > li > a:hover,

#custom-html-t4 .pagination > li > span:focus,

#custom-html-t4 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t4 .pagination > .active > a,

#custom-html-t4 .pagination > .active > a:focus,

#custom-html-t4 .pagination > .active > a:hover,

#custom-html-t4 .pagination > .active > span,

#custom-html-t4 .pagination > .active > span:focus,

#custom-html-t4 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-t4 .pagination > .disabled > a,

#custom-html-t4 .pagination > .disabled > a:focus,

#custom-html-t4 .pagination > .disabled > a:hover,

#custom-html-t4 .pagination > .disabled > span,

#custom-html-t4 .pagination > .disabled > span:focus,

#custom-html-t4 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t4 .pagination-lg > li > a,

#custom-html-t4 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t4 .pagination-lg > li:first-child > a,

#custom-html-t4 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t4 .pagination-lg > li:last-child > a,

#custom-html-t4 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t4 .pagination-sm > li > a,

#custom-html-t4 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t4 .pagination-sm > li:first-child > a,

#custom-html-t4 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t4 .pagination-sm > li:last-child > a,

#custom-html-t4 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t4 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t4 .pager li {

  display: inline;

}

#custom-html-t4 .pager li > a,

#custom-html-t4 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t4 .pager li > a:focus,

#custom-html-t4 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t4 .pager .next > a,

#custom-html-t4 .pager .next > span {

  float: right;

}

#custom-html-t4 .pager .previous > a,

#custom-html-t4 .pager .previous > span {

  float: left;

}

#custom-html-t4 .pager .disabled > a,

#custom-html-t4 .pager .disabled > a:focus,

#custom-html-t4 .pager .disabled > a:hover,

#custom-html-t4 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t4 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-t4 a.label:focus,

#custom-html-t4 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t4 .label:empty {

  display: none;

}

#custom-html-t4 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t4 .label-default {

  background-color: #777777;

}

#custom-html-t4 .label-default[href]:focus,

#custom-html-t4 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t4 .label-primary {

  background-color: #337ab7;

}

#custom-html-t4 .label-primary[href]:focus,

#custom-html-t4 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t4 .label-success {

  background-color: #5cb85c;

}

#custom-html-t4 .label-success[href]:focus,

#custom-html-t4 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t4 .label-info {

  background-color: #5bc0de;

}

#custom-html-t4 .label-info[href]:focus,

#custom-html-t4 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t4 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t4 .label-warning[href]:focus,

#custom-html-t4 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t4 .label-danger {

  background-color: #d9534f;

}

#custom-html-t4 .label-danger[href]:focus,

#custom-html-t4 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t4 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t4 .badge:empty {

  display: none;

}

#custom-html-t4 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t4 .btn-group-xs > .btn .badge,

#custom-html-t4 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t4 a.badge:focus,

#custom-html-t4 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t4 .list-group-item.active > .badge,

#custom-html-t4 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t4 .list-group-item > .badge {

  float: right;

}

#custom-html-t4 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t4 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t4 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t4 .jumbotron .h1,

#custom-html-t4 .jumbotron h1 {

  color: inherit;

}

#custom-html-t4 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t4 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t4 .container .jumbotron,

#custom-html-t4 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t4 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t4 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t4 .container .jumbotron,

  #custom-html-t4 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t4 .jumbotron .h1,

  #custom-html-t4 .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-t4 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t4 .thumbnail a > img,

#custom-html-t4 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t4 a.thumbnail.active,

#custom-html-t4 a.thumbnail:focus,

#custom-html-t4 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t4 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t4 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t4 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t4 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t4 .alert > p,

#custom-html-t4 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t4 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t4 .alert-dismissable,

#custom-html-t4 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t4 .alert-dismissable .close,

#custom-html-t4 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t4 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t4 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-t4 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t4 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t4 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t4 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t4 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t4 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t4 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t4 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t4 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t4 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t4 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t4 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t4 .progress-bar-striped,

#custom-html-t4 .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t4 .progress-bar.active,

#custom-html-t4 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t4 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t4 .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t4 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t4 .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t4 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t4 .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t4 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t4 .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t4 .media {

  margin-top: 15px;

}

#custom-html-t4 .media:first-child {

  margin-top: 0;

}

#custom-html-t4 .media,

#custom-html-t4 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t4 .media-body {

  width: 10000px;

}

#custom-html-t4 .media-object {

  display: block;

}

#custom-html-t4 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t4 .media-right,

#custom-html-t4 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t4 .media-left,

#custom-html-t4 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t4 .media-body,

#custom-html-t4 .media-left,

#custom-html-t4 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t4 .media-middle {

  vertical-align: middle;

}

#custom-html-t4 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t4 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t4 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t4 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-t4 .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t4 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t4 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t4 a.list-group-item,

#custom-html-t4 button.list-group-item {

  color: #555555;

}

#custom-html-t4 a.list-group-item .list-group-item-heading,

#custom-html-t4 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t4 a.list-group-item:focus,

#custom-html-t4 a.list-group-item:hover,

#custom-html-t4 button.list-group-item:focus,

#custom-html-t4 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t4 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t4 .list-group-item.disabled,

#custom-html-t4 .list-group-item.disabled:focus,

#custom-html-t4 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t4 .list-group-item.disabled .list-group-item-heading,

#custom-html-t4 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t4 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t4 .list-group-item.disabled .list-group-item-text,

#custom-html-t4 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t4 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t4 .list-group-item.active,

#custom-html-t4 .list-group-item.active:focus,

#custom-html-t4 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t4 .list-group-item.active .list-group-item-heading,

#custom-html-t4 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t4 .list-group-item.active .list-group-item-heading > small,

#custom-html-t4 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t4 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t4 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t4 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t4 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t4 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t4 .list-group-item.active .list-group-item-text,

#custom-html-t4 .list-group-item.active:focus .list-group-item-text,

#custom-html-t4 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t4 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t4 a.list-group-item-success,

#custom-html-t4 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t4 a.list-group-item-success .list-group-item-heading,

#custom-html-t4 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t4 a.list-group-item-success:focus,

#custom-html-t4 a.list-group-item-success:hover,

#custom-html-t4 button.list-group-item-success:focus,

#custom-html-t4 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t4 a.list-group-item-success.active,

#custom-html-t4 a.list-group-item-success.active:focus,

#custom-html-t4 a.list-group-item-success.active:hover,

#custom-html-t4 button.list-group-item-success.active,

#custom-html-t4 button.list-group-item-success.active:focus,

#custom-html-t4 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t4 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t4 a.list-group-item-info,

#custom-html-t4 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t4 a.list-group-item-info .list-group-item-heading,

#custom-html-t4 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t4 a.list-group-item-info:focus,

#custom-html-t4 a.list-group-item-info:hover,

#custom-html-t4 button.list-group-item-info:focus,

#custom-html-t4 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t4 a.list-group-item-info.active,

#custom-html-t4 a.list-group-item-info.active:focus,

#custom-html-t4 a.list-group-item-info.active:hover,

#custom-html-t4 button.list-group-item-info.active,

#custom-html-t4 button.list-group-item-info.active:focus,

#custom-html-t4 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t4 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t4 a.list-group-item-warning,

#custom-html-t4 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t4 a.list-group-item-warning .list-group-item-heading,

#custom-html-t4 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t4 a.list-group-item-warning:focus,

#custom-html-t4 a.list-group-item-warning:hover,

#custom-html-t4 button.list-group-item-warning:focus,

#custom-html-t4 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t4 a.list-group-item-warning.active,

#custom-html-t4 a.list-group-item-warning.active:focus,

#custom-html-t4 a.list-group-item-warning.active:hover,

#custom-html-t4 button.list-group-item-warning.active,

#custom-html-t4 button.list-group-item-warning.active:focus,

#custom-html-t4 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t4 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t4 a.list-group-item-danger,

#custom-html-t4 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t4 a.list-group-item-danger .list-group-item-heading,

#custom-html-t4 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t4 a.list-group-item-danger:focus,

#custom-html-t4 a.list-group-item-danger:hover,

#custom-html-t4 button.list-group-item-danger:focus,

#custom-html-t4 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t4 a.list-group-item-danger.active,

#custom-html-t4 a.list-group-item-danger.active:focus,

#custom-html-t4 a.list-group-item-danger.active:hover,

#custom-html-t4 button.list-group-item-danger.active,

#custom-html-t4 button.list-group-item-danger.active:focus,

#custom-html-t4 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t4 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t4 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t4 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t4 .panel-body {

  padding: 15px;

}

#custom-html-t4 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t4 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t4 .panel-title > .small,

#custom-html-t4 .panel-title > .small > a,

#custom-html-t4 .panel-title > a,

#custom-html-t4 .panel-title > small,

#custom-html-t4 .panel-title > small > a {

  color: inherit;

}

#custom-html-t4 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t4 .panel > .list-group,

#custom-html-t4 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t4 .panel > .list-group .list-group-item,

#custom-html-t4 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t4 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t4 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t4 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t4 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t4 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t4 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t4 .panel > .panel-collapse > .table,

#custom-html-t4 .panel > .table,

#custom-html-t4 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t4 .panel > .panel-collapse > .table caption,

#custom-html-t4 .panel > .table caption,

#custom-html-t4 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t4 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t4 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t4 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t4 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t4 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t4 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t4 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t4 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t4 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t4 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t4 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t4 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t4 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t4 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t4 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t4 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t4 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t4 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t4 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t4 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t4 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t4 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t4 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t4 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t4 .panel > .panel-body + .table,

#custom-html-t4 .panel > .panel-body + .table-responsive,

#custom-html-t4 .panel > .table + .panel-body,

#custom-html-t4 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t4 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t4 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t4 .panel > .table-bordered,

#custom-html-t4 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t4 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t4 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t4 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t4 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t4 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t4 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t4 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t4 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t4 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t4 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t4 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t4 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t4 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t4 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t4 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t4 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t4 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t4 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t4 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t4 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t4 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t4 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t4 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t4 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t4 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t4 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t4 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-t4 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t4 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t4 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t4 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t4 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t4 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t4 .panel-default {

  border-color: #dddddd;

}

#custom-html-t4 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t4 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t4 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t4 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t4 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t4 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t4 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t4 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t4 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t4 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t4 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t4 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t4 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t4 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-t4 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t4 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t4 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t4 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t4 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t4 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t4 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t4 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t4 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t4 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t4 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t4 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t4 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t4 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t4 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t4 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t4 .embed-responsive .embed-responsive-item,

#custom-html-t4 .embed-responsive embed,

#custom-html-t4 .embed-responsive iframe,

#custom-html-t4 .embed-responsive object,

#custom-html-t4 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t4 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t4 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t4 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t4 .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t4 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t4 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t4 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t4 .close:focus,

#custom-html-t4 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t4 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t4 .modal-open {

  overflow: hidden;

}

#custom-html-t4 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t4 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t4 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t4 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t4 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t4 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t4 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t4 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t4 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t4 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t4 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t4 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t4 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t4 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t4 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t4 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t4 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t4 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-t4 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t4 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t4 .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-t4 .modal-lg {

    width: 900px;

  }

}

#custom-html-t4 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t4 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t4 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t4 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t4 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t4 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t4 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t4 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t4 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t4 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t4 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t4 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t4 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t4 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t4 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t4 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t4 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t4 .popover.top {

  margin-top: -10px;

}

#custom-html-t4 .popover.right {

  margin-left: 10px;

}

#custom-html-t4 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t4 .popover.left {

  margin-left: -10px;

}

#custom-html-t4 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t4 .popover-content {

  padding: 9px 14px;

}

#custom-html-t4 .popover > .arrow,

#custom-html-t4 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t4 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t4 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t4 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t4 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t4 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t4 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t4 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t4 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t4 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t4 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t4 .carousel {

  position: relative;

}

#custom-html-t4 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t4 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t4 .carousel-inner > .item > a > img,

#custom-html-t4 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t4 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t4 .carousel-inner > .item.active.right,

  #custom-html-t4 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t4 .carousel-inner > .item.active.left,

  #custom-html-t4 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t4 .carousel-inner > .item.active,

  #custom-html-t4 .carousel-inner > .item.next.left,

  #custom-html-t4 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t4 .carousel-inner > .active,

#custom-html-t4 .carousel-inner > .next,

#custom-html-t4 .carousel-inner > .prev {

  display: block;

}

#custom-html-t4 .carousel-inner > .active {

  left: 0;

}

#custom-html-t4 .carousel-inner > .next,

#custom-html-t4 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t4 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t4 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t4 .carousel-inner > .next.left,

#custom-html-t4 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t4 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t4 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t4 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t4 .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t4 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t4 .carousel-control:focus,

#custom-html-t4 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t4 .carousel-control .glyphicon-chevron-left,

#custom-html-t4 .carousel-control .glyphicon-chevron-right,

#custom-html-t4 .carousel-control .icon-next,

#custom-html-t4 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t4 .carousel-control .glyphicon-chevron-left,

#custom-html-t4 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t4 .carousel-control .glyphicon-chevron-right,

#custom-html-t4 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t4 .carousel-control .icon-next,

#custom-html-t4 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t4 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t4 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t4 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t4 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t4 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t4 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t4 .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-t4 .carousel-control .glyphicon-chevron-left,

  #custom-html-t4 .carousel-control .glyphicon-chevron-right,

  #custom-html-t4 .carousel-control .icon-next,

  #custom-html-t4 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t4 .carousel-control .glyphicon-chevron-left,

  #custom-html-t4 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t4 .carousel-control .glyphicon-chevron-right,

  #custom-html-t4 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t4 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t4 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t4 .btn-group-vertical > .btn-group:after,

#custom-html-t4 .btn-group-vertical > .btn-group:before,

#custom-html-t4 .btn-toolbar:after,

#custom-html-t4 .btn-toolbar:before,

#custom-html-t4 .clearfix:after,

#custom-html-t4 .clearfix:before,

#custom-html-t4 .container-fluid:after,

#custom-html-t4 .container-fluid:before,

#custom-html-t4 .container:after,

#custom-html-t4 .container:before,

#custom-html-t4 .dl-horizontal dd:after,

#custom-html-t4 .dl-horizontal dd:before,

#custom-html-t4 .form-horizontal .form-group:after,

#custom-html-t4 .form-horizontal .form-group:before,

#custom-html-t4 .modal-footer:after,

#custom-html-t4 .modal-footer:before,

#custom-html-t4 .modal-header:after,

#custom-html-t4 .modal-header:before,

#custom-html-t4 .nav:after,

#custom-html-t4 .nav:before,

#custom-html-t4 .navbar-collapse:after,

#custom-html-t4 .navbar-collapse:before,

#custom-html-t4 .navbar-header:after,

#custom-html-t4 .navbar-header:before,

#custom-html-t4 .navbar:after,

#custom-html-t4 .navbar:before,

#custom-html-t4 .pager:after,

#custom-html-t4 .pager:before,

#custom-html-t4 .panel-body:after,

#custom-html-t4 .panel-body:before,

#custom-html-t4 .row:after,

#custom-html-t4 .row:before {

  display: table;

  content: " ";

}

#custom-html-t4 .btn-group-vertical > .btn-group:after,

#custom-html-t4 .btn-toolbar:after,

#custom-html-t4 .clearfix:after,

#custom-html-t4 .container-fluid:after,

#custom-html-t4 .container:after,

#custom-html-t4 .dl-horizontal dd:after,

#custom-html-t4 .form-horizontal .form-group:after,

#custom-html-t4 .modal-footer:after,

#custom-html-t4 .modal-header:after,

#custom-html-t4 .nav:after,

#custom-html-t4 .navbar-collapse:after,

#custom-html-t4 .navbar-header:after,

#custom-html-t4 .navbar:after,

#custom-html-t4 .pager:after,

#custom-html-t4 .panel-body:after,

#custom-html-t4 .row:after {

  clear: both;

}

#custom-html-t4 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t4 .pull-right {

  float: right !important;

}

#custom-html-t4 .pull-left {

  float: left !important;

}

#custom-html-t4 .hide {

  display: none !important;

}

#custom-html-t4 .show {

  display: block !important;

}

#custom-html-t4 .invisible {

  visibility: hidden;

}

#custom-html-t4 .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t4 .hidden {

  display: none !important;

}

#custom-html-t4 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t4 .visible-lg,

#custom-html-t4 .visible-md,

#custom-html-t4 .visible-sm,

#custom-html-t4 .visible-xs {

  display: none !important;

}

#custom-html-t4 .visible-lg-block,

#custom-html-t4 .visible-lg-inline,

#custom-html-t4 .visible-lg-inline-block,

#custom-html-t4 .visible-md-block,

#custom-html-t4 .visible-md-inline,

#custom-html-t4 .visible-md-inline-block,

#custom-html-t4 .visible-sm-block,

#custom-html-t4 .visible-sm-inline,

#custom-html-t4 .visible-sm-inline-block,

#custom-html-t4 .visible-xs-block,

#custom-html-t4 .visible-xs-inline,

#custom-html-t4 .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-t4 .visible-xs {

    display: block !important;

  }

  #custom-html-t4 table.visible-xs {

    display: table !important;

  }

  #custom-html-t4 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t4 td.visible-xs,

  #custom-html-t4 th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t4 .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t4 .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t4 .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t4 .visible-sm {

    display: block !important;

  }

  #custom-html-t4 table.visible-sm {

    display: table !important;

  }

  #custom-html-t4 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t4 td.visible-sm,

  #custom-html-t4 th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t4 .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t4 .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t4 .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t4 .visible-md {

    display: block !important;

  }

  #custom-html-t4 table.visible-md {

    display: table !important;

  }

  #custom-html-t4 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t4 td.visible-md,

  #custom-html-t4 th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t4 .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t4 .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t4 .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t4 .visible-lg {

    display: block !important;

  }

  #custom-html-t4 table.visible-lg {

    display: table !important;

  }

  #custom-html-t4 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t4 td.visible-lg,

  #custom-html-t4 th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t4 .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t4 .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t4 .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t4 .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t4 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t4 .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t4 .hidden-lg {

    display: none !important;

  }

}

#custom-html-t4 .visible-print {

  display: none !important;

}

@media print {

  #custom-html-t4 .visible-print {

    display: block !important;

  }

  #custom-html-t4 table.visible-print {

    display: table !important;

  }

  #custom-html-t4 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t4 td.visible-print,

  #custom-html-t4 th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-t4 .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-t4 .visible-print-block {

    display: block !important;

  }

}

#custom-html-t4 .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-t4 .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-t4 .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-t4 .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-t4 .hidden-print {

    display: none !important;

  }

}

#custom-html-t4 .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-t4 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t4 .intl-tel-input .hide {

  display: none;

}

#custom-html-t4 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t4 .intl-tel-input input,

#custom-html-t4 .intl-tel-input input[type=tel],

#custom-html-t4 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t4 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t4 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t4 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t4 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t4 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t4 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t4 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t4 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t4 .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-t4 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t4 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t4 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t4 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t4 .intl-tel-input .country-list .country-name,

#custom-html-t4 .intl-tel-input .country-list .dial-code,

#custom-html-t4 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t4 .intl-tel-input .country-list .country-name,

#custom-html-t4 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t4 .intl-tel-input.allow-dropdown input,

#custom-html-t4 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t4 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t4 .intl-tel-input.separate-dial-code input,

#custom-html-t4 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t4 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t4 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t4 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t4 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t4 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t4 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t4 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t4 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t4 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t4 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t4 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t4 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;


}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t4 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t4 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t4 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t4 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t4 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t4 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t4 .iti-flag {

  width: 20px;

}

#custom-html-t4 .iti-flag.be {

  width: 18px;

}

#custom-html-t4 .iti-flag.ch {

  width: 15px;

}

#custom-html-t4 .iti-flag.mc {

  width: 19px;

}

#custom-html-t4 .iti-flag.ne {

  width: 18px;

}

#custom-html-t4 .iti-flag.np {

  width: 13px;

}

#custom-html-t4 .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t4 .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-t4 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t4 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t4 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t4 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t4 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t4 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t4 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t4 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t4 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t4 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t4 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t4 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t4 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t4 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t4 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t4 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t4 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t4 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t4 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t4 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t4 .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t4 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t4 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t4 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t4 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t4 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t4 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t4 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t4 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t4 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t4 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t4 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t4 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t4 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t4 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t4 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t4 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t4 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t4 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t4 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t4 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t4 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t4 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t4 .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t4 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t4 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t4 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t4 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t4 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t4 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t4 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t4 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t4 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t4 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t4 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t4 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t4 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t4 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t4 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t4 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t4 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t4 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t4 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t4 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t4 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t4 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t4 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t4 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t4 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t4 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t4 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t4 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t4 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t4 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t4 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t4 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t4 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t4 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t4 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t4 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t4 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t4 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t4 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t4 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t4 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t4 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t4 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t4 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t4 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t4 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t4 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t4 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t4 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t4 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t4 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t4 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t4 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t4 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t4 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t4 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t4 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t4 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t4 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t4 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t4 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-t4 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t4 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t4 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t4 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t4 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t4 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t4 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t4 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t4 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t4 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t4 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t4 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t4 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t4 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t4 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t4 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t4 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t4 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t4 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t4 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t4 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t4 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t4 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t4 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t4 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t4 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t4 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t4 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t4 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t4 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t4 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t4 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t4 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t4 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t4 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t4 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t4 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t4 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t4 .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t4 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t4 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t4 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t4 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t4 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t4 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t4 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t4 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t4 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t4 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t4 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t4 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t4 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t4 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t4 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t4 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t4 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t4 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t4 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t4 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t4 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t4 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t4 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t4 .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t4 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t4 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t4 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t4 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t4 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t4 .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-t4 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t4 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t4 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t4 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t4 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t4 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t4 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t4 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t4 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t4 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t4 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t4 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t4 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t4 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t4 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t4 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t4 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t4 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t4 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t4 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t4 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t4 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t4 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t4 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t4 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t4 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t4 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t4 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t4 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t4 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t4 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t4 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t4 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t4 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t4 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t4 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t4 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t4 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t4 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t4 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t4 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t4 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t4 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t4 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t4 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t4 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t4 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t4 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t4 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t4 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t4 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t4 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t4 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-t4 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t4 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t4 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t4 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t4 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t4 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t4 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t4 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t4 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t4 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t4 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t4 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t4 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t4 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t4 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t4 .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-t4 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t4 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-t4 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t4 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t4 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t4 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t4 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t4 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t4 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t4 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t4 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t4 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t4 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t4 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t4 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t4 .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t4 .iti-flag.np {

  background-color: transparent;

}

#custom-html-t4 body,

#custom-html-t4 button,

#custom-html-t4 input,

#custom-html-t4 select,

#custom-html-t4 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t4 h1,

#custom-html-t4 h2,

#custom-html-t4 h3,

#custom-html-t4 h4,

#custom-html-t4 h5,

#custom-html-t4 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-t4 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t4 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t4 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t4 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-t4 .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t4 .navbar-main .navbar-nav > .active > a,

#custom-html-t4 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t4 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t4 .navbar-main .navbar-nav > .open > a,

#custom-html-t4 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t4 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t4 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t4 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t4 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t4 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t4 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-t4 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t4 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-t4 .navbar-header {

    float: none;

  }

  #custom-html-t4 .navbar-left,

  #custom-html-t4 .navbar-right {

    float: none !important;

  }

  #custom-html-t4 .navbar-toggle {

    display: block;

  }

  #custom-html-t4 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t4 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t4 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t4 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t4 .navbar-nav > li {

    float: none;

  }

  #custom-html-t4 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t4 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-t4 .panel {

  font-size: 0.9em;

}

#custom-html-t4 .list-group {

  font-size: 0.9em;

}

#custom-html-t4 .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-t4 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t4 a.list-group-item.active,

#custom-html-t4 a.list-group-item.active:focus,

#custom-html-t4 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t4 .pagination {

  font-size: 0.8em;

}

#custom-html-t4 .pagination > .active > a,

#custom-html-t4 .pagination > .active > a:focus,

#custom-html-t4 .pagination > .active > a:hover,

#custom-html-t4 .pagination > .active > span,

#custom-html-t4 .pagination > .active > span:focus,

#custom-html-t4 .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t4 .dropdown-menu > li > a:focus,

#custom-html-t4 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t4 .label {

  border-radius: 0;

}

#custom-html-t4 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t4 .list-group-item {

  padding: 7px 15px;

}

#custom-html-t4 .panel-body {

  padding: 10px 15px;

}

#custom-html-t4 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t4 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t4 .btn {

  overflow: hidden;

}

#custom-html-t4 body,

#custom-html-t4 html {

  height: 100%;

}

#custom-html-t4 body {

  background-color: #f8f8f8;

}

#custom-html-t4 h1,

#custom-html-t4 h2,

#custom-html-t4 h3,

#custom-html-t4 h4,

#custom-html-t4 h5,

#custom-html-t4 h6 {

  font-weight: 400;

}

#custom-html-t4 a {

  color: #005588;

}

#custom-html-t4 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t4 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t4 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t4 section#header .search {

  margin: 20px 0;

}

#custom-html-t4 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t4 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t4 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t4 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t4 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t4 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t4 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t4 section#footer {

    line-height: 32px;

  }

}

#custom-html-t4 section#footer .back-to-top {

  float: right;

}

#custom-html-t4 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t4 .adminreturndiv {

  display: none !important;

}

#custom-html-t4 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t4 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t4 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t4 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t4 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t4 .navbar-main .navbar-toggle:focus,

#custom-html-t4 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t4 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t4 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-t4 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t4 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t4 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-t4 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t4 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t4 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t4 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t4 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t4 .h1,

  #custom-html-t4 h1 {

    font-size: 26px;

  }

  #custom-html-t4 .h2,

  #custom-html-t4 h2 {

    font-size: 20px;

  }

  #custom-html-t4 .h3,

  #custom-html-t4 h3 {

    font-size: 16px;

  }

  #custom-html-t4 .h4,

  #custom-html-t4 h4 {

    font-size: 14px;

  }

  #custom-html-t4 .h5,

  #custom-html-t4 h5 {

    font-size: 12px;

  }

  #custom-html-t4 .h6,

  #custom-html-t4 h6 {

    font-size: 11px;

  }

  #custom-html-t4 div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-t4 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t4 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t4 .margin-10 {

  margin: 10px;

}

#custom-html-t4 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t4 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t4 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t4 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t4 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t4 .input-inline {

  display: inline-block;

}

#custom-html-t4 .input-inline-100 {

  width: 100px;

}

#custom-html-t4 .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-t4 .pull-md-left {

    float: left;

  }

  #custom-html-t4 .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-t4 .pull-sm-left {

    float: left;

  }

  #custom-html-t4 .pull-sm-right {

    float: right;

  }

  #custom-html-t4 .text-right-sm {

    text-align: right;

  }

}

#custom-html-t4 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t4 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t4 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-t4 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-t4 .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-t4 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t4 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t4 i.icon-rss {

  color: #ff6600;

}

#custom-html-t4 section#main-menu {

  background-color: #000000;

}

#custom-html-t4 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t4 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t4 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t4 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t4 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t4 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t4 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t4 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t4 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t4 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t4 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t4 section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-t4 section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-t4 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t4 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t4 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t4 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t4 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t4 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t4 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t4 .home-shortcuts li span {

  display: none;

}

#custom-html-t4 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t4 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-t4 .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-t4 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t4 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t4 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t4 .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-t4 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t4 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t4 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t4 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t4 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t4 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t4 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t4 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t4 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t4 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t4 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t4 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t4 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t4 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t4 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t4 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t4 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t4 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t4 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t4 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t4 .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-t4 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t4 .tiles .tile:nth-child(1),

  #custom-html-t4 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-t4 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t4 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t4 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t4 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t4 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t4 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t4 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t4 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t4 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t4 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t4 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t4 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t4 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t4 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t4 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t4 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t4 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t4 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t4 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t4 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t4 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t4 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t4 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t4 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t4 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t4 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t4 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t4 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t4 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t4 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t4 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t4 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t4 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t4 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t4 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t4 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t4 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t4 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t4 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t4 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t4 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t4 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t4 ul.top-nav > li,

#custom-html-t4 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t4 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t4 ul.top-nav > li:active > a,

#custom-html-t4 ul.top-nav > li:focus > a,

#custom-html-t4 ul.top-nav > li:hover > a,

#custom-html-t4 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t4 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t4 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t4 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t4 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-t4 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t4 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t4 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-t4 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t4 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t4 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-t4 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t4 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t4 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t4 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t4 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t4 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t4 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t4 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-t4 .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-t4 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t4 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-t4 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t4 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t4 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-t4 .domain-check-availability {

  width: 100px;

}

#custom-html-t4 .domain-step-options {

  min-height: 300px;

}

#custom-html-t4 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t4 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t4 .domain-checker-invalid,

#custom-html-t4 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t4 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t4 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t4 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t4 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t4 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t4 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t4 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t4 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t4 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-t4 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t4 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t4 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t4 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t4 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t4 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t4 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t4 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t4 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t4 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t4 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t4 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t4 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t4 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t4 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t4 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t4 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t4 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t4 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t4 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t4 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t4 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t4 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t4 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t4 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t4 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t4 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t4 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t4 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t4 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t4 div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t4 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t4 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t4 .product-status-active {

  background-color: #46a546;

}

#custom-html-t4 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t4 .product-status-cancelled,

#custom-html-t4 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t4 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t4 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t4 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t4 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t4 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t4 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-t4 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t4 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t4 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t4 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t4 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t4 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t4 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t4 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-t4 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t4 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t4 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t4 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-t4 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t4 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t4 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t4 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t4 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t4 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t4 .pagination > li > a,

#custom-html-t4 .pagination > li > span {

  color: #444444;

}

#custom-html-t4 .pagination > .active > a,

#custom-html-t4 .pagination > .active > a:focus,

#custom-html-t4 .pagination > .active > a:hover,

#custom-html-t4 .pagination > .active > span,

#custom-html-t4 .pagination > .active > span:focus,

#custom-html-t4 .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t4 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t4 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t4 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t4 .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-t4 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t4 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t4 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t4 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t4 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t4 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t4 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t4 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t4 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t4 .status-pending {

  color: #d9534f;

}

#custom-html-t4 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t4 .status-active,

#custom-html-t4 .status-completed,

#custom-html-t4 .status-open {

  color: #3fad46;

}

#custom-html-t4 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t4 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t4 .status-answered,

#custom-html-t4 .status-fraud {

  color: #000000;

}

#custom-html-t4 .status-expired,

#custom-html-t4 .status-transferred.away {

  color: #004258;

}

#custom-html-t4 .status-cancelled {

  color: #9fa29a;

}

#custom-html-t4 .status-terminated {

  color: #666666;

}

#custom-html-t4 .status-onhold {

  color: #224488;

}

#custom-html-t4 .status-inprogress {

  color: #cc0000;

}

#custom-html-t4 .status-closed {

  color: #888888;

}

#custom-html-t4 .status-paid {

  color: #498302;

}

#custom-html-t4 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t4 .status-cancelled {

  color: #87939f;

}

#custom-html-t4 .status-collections {

  color: #9a141e;

}

#custom-html-t4 .status-refunded {

  color: #319fc3;

}

#custom-html-t4 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t4 .status-delivered {

  color: #224488;

}

#custom-html-t4 .status-accepted {

  color: #498302;

}

#custom-html-t4 .status-dead,

#custom-html-t4 .status-lost {

  color: #000000;

}

#custom-html-t4 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t4 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t4 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t4 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t4 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t4 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t4 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t4 .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-t4 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t4 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t4 .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-t4 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t4 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t4 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t4 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t4 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t4 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t4 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t4 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t4 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t4 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t4 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t4 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t4 .ticket-reply .rating,

#custom-html-t4 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t4 .ticket-reply .rating span.star,

#custom-html-t4 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t4 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t4 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t4 .ticket-reply .rating span.star:before,

#custom-html-t4 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t4 .ticket-reply .rating span.star:hover:before,

#custom-html-t4 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t4 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t4 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t4 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t4 .ticket-reply .clear {

  clear: both;

}

#custom-html-t4 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t4 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t4 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t4 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t4 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t4 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t4 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t4 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t4 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t4 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-t4 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t4 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t4 .popover-user-notifications ul li i.far,

#custom-html-t4 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t4 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t4 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t4 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t4 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t4 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t4 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t4 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t4 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t4 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t4 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t4 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t4 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t4 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t4 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t4 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t4 div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-t4 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t4 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t4 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t4 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t4 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t4 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-t4 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t4 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t4 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t4 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t4 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t4 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t4 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t4 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t4 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t4 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t4 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t4 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t4 .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-t4 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t4 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t4 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t4 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t4 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t4 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-t4 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t4 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t4 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t4 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t4 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t4 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t4 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t4 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t4 .kb-category a small {

  color: #888888;

}

#custom-html-t4 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t4 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t4 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t4 .kbarticles a.admin-inline-edit,

#custom-html-t4 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t4 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t4 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t4 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t4 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t4 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t4 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t4 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t4 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t4 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t4 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t4 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t4 #stepResults {

  font-size: 20px;

}

#custom-html-t4 #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-t4 #stepResults {

    font-size: 14px;

  }

  #custom-html-t4 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t4 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-t4 #main-menu,

  #custom-html-t4 #top-nav,

  #custom-html-t4 .header-lined,

  #custom-html-t4 .sidebar {

    display: none;

  }

  #custom-html-t4 a[href]:after {

    content: "" !important;

  }

}

#custom-html-t4 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t4 h3.with-badge i,

#custom-html-t4 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t4 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-t4 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t4 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-t4 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t4 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t4 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t4 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t4 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t4 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t4 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t4 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t4 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t4 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t4 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t4 .login-popover {

  font-size: 12px;

}

#custom-html-t4 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t4 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t4 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t4 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t4 .error-container {

  text-align: center;

}

#custom-html-t4 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t4 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t4 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t4 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t4 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t4 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t4 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t4 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t4 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t4 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-t4 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t4 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-t4 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t4 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t4 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t4 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t4 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t4 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t4 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t4 .email-verification .btn:active,

#custom-html-t4 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t4 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t4 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t4 .email-verification .far,

#custom-html-t4 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-t4 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t4 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t4 .email-verification .button {

    float: right;

  }

  #custom-html-t4 .email-verification .far,

  #custom-html-t4 .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-t4 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t4 .email-verification.success .far,

#custom-html-t4 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t4 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t4 .email-verification.failed .far,

#custom-html-t4 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t4 .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-t4 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t4 .md-editor > .md-preview,

#custom-html-t4 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t4 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t4 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t4 .small-font {

  font-size: 0.9em;

}

#custom-html-t4 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t4 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t4 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t4 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t4 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t4 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t4 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t4 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t4 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t4 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t4 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t4 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t4 .panel-heading i.fab,

#custom-html-t4 .panel-heading i.fal,

#custom-html-t4 .panel-heading i.far,

#custom-html-t4 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t4 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t4 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t4 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t4 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t4 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t4 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t4 .panel-sidebar .list-group-item.disabled,

#custom-html-t4 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t4 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t4 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t4 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t4 .panel-sidebar a.list-group-item.active,

#custom-html-t4 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t4 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t4 .panel-sidebar a.list-group-item.active i,

#custom-html-t4 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t4 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t4 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t4 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t4 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t4 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t4 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t4 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t4 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t4 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t4 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t4 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t4 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t4 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t4 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t4 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-t4 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t4 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-t4 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t4 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t4 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t4 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t4 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t4 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t4 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t4 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t4 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t4 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t4 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t4 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t4 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t4 .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-t4 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t4 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t4 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t4 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t4 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t4 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t4 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t4 .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-t4 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t4 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t4 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t4 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t4 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t4 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t4 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t4 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t4 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t4 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t4 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t4 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t4 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t4 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t4 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t4 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t4 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t4 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t4 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t4 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t4 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t4 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t4 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t4 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t4 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t4 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t4 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t4 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t4 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t4 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t4 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t4 .panel-mc-sso .btn,

#custom-html-t4 .panel-mc-sso .form-control,

#custom-html-t4 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t4 .panel-mc-sso small {

  display: block;

}

#custom-html-t4 .social-signin-btns {

  text-align: center;

}

#custom-html-t4 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t4 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t4 .btn-social i.far,

#custom-html-t4 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-facebook.active,

#custom-html-t4 .btn-facebook:active,

#custom-html-t4 .btn-facebook:focus,

#custom-html-t4 .btn-facebook:hover,

#custom-html-t4 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-facebook.active,

#custom-html-t4 .btn-facebook:active,

#custom-html-t4 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t4 .btn-facebook.disabled,

#custom-html-t4 .btn-facebook.disabled.active,

#custom-html-t4 .btn-facebook.disabled:active,

#custom-html-t4 .btn-facebook.disabled:focus,

#custom-html-t4 .btn-facebook.disabled:hover,

#custom-html-t4 .btn-facebook[disabled],

#custom-html-t4 .btn-facebook[disabled].active,

#custom-html-t4 .btn-facebook[disabled]:active,

#custom-html-t4 .btn-facebook[disabled]:focus,

#custom-html-t4 .btn-facebook[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-facebook,

#custom-html-t4 fieldset[disabled] .btn-facebook.active,

#custom-html-t4 fieldset[disabled] .btn-facebook:active,

#custom-html-t4 fieldset[disabled] .btn-facebook:focus,

#custom-html-t4 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-google.active,

#custom-html-t4 .btn-google:active,

#custom-html-t4 .btn-google:focus,

#custom-html-t4 .btn-google:hover,

#custom-html-t4 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-google.active,

#custom-html-t4 .btn-google:active,

#custom-html-t4 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t4 .btn-google-plus.disabled.active,

#custom-html-t4 .btn-google-plus.disabled:active,

#custom-html-t4 .btn-google-plus.disabled:focus,

#custom-html-t4 .btn-google-plus[disabled].active,

#custom-html-t4 .btn-google-plus[disabled]:active,

#custom-html-t4 .btn-google-plus[disabled]:focus,

#custom-html-t4 .btn-google-plus[disabled]:hover,

#custom-html-t4 .btn-google.disabled,

#custom-html-t4 .btn-google.disabled:hover,

#custom-html-t4 .btn-google[disabled],

#custom-html-t4 fieldset[disabled] .btn-google,

#custom-html-t4 fieldset[disabled] .btn-google-plus.active,

#custom-html-t4 fieldset[disabled] .btn-google-plus:active,

#custom-html-t4 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t4 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-twitter.active,

#custom-html-t4 .btn-twitter:active,

#custom-html-t4 .btn-twitter:focus,

#custom-html-t4 .btn-twitter:hover,

#custom-html-t4 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .btn-twitter.active,

#custom-html-t4 .btn-twitter:active,

#custom-html-t4 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t4 .btn-twitter.disabled,

#custom-html-t4 .btn-twitter.disabled.active,

#custom-html-t4 .btn-twitter.disabled:active,

#custom-html-t4 .btn-twitter.disabled:focus,

#custom-html-t4 .btn-twitter.disabled:hover,

#custom-html-t4 .btn-twitter[disabled],

#custom-html-t4 .btn-twitter[disabled].active,

#custom-html-t4 .btn-twitter[disabled]:active,

#custom-html-t4 .btn-twitter[disabled]:focus,

#custom-html-t4 .btn-twitter[disabled]:hover,

#custom-html-t4 fieldset[disabled] .btn-twitter,

#custom-html-t4 fieldset[disabled] .btn-twitter.active,

#custom-html-t4 fieldset[disabled] .btn-twitter:active,

#custom-html-t4 fieldset[disabled] .btn-twitter:focus,

#custom-html-t4 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t4 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t4 .providerLinkingFeedback {

  display: none;

}

#custom-html-t4 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t4 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t4 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t4 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t4 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t4 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t4 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t4 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t4 #registration .field,

#custom-html-t4 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t4 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t4 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t4 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t4 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t4 #registration textarea.field {

  height: auto;

}

#custom-html-t4 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t4 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t4 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t4 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t4 #registration .field[disabled],

#custom-html-t4 #registration .field[readonly],

#custom-html-t4 #registration .form-control[disabled],

#custom-html-t4 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t4 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t4 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t4 .upgrade .product-to-be-upgraded h4,

#custom-html-t4 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t4 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t4 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t4 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t4 .upgrade .products .product .current,

#custom-html-t4 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t4 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t4 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-t4 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-t4 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t4 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t4 .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t4 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t4 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t4 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t4 .upgrade .products .far,

#custom-html-t4 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t4 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t4 .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-t4 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t4 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t4 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t4 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t4 .intl-tel-input {

  width: 100%;

}

#custom-html-t4 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t4 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .bootstrap-switch input[type=checkbox],

#custom-html-t4 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t4 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t4 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t4 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t4 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t4 .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-t4 .md-editor .md-footer,

#custom-html-t4 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t4 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t4 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t4 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t4 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t4 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t4 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t4 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t4 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t4 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t4 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t4 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t4 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t4 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t4 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t4 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t4 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t4 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t4 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t4 table.dataTable td,

#custom-html-t4 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t4 table.dataTable td.dataTables_empty,

#custom-html-t4 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t4 table.dataTable.nowrap td,

#custom-html-t4 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t4 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t4 table.dataTable thead > tr > td.sorting,

#custom-html-t4 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t4 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t4 table.dataTable thead > tr > th.sorting,

#custom-html-t4 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t4 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t4 table.dataTable thead > tr > td:active,

#custom-html-t4 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t4 table.dataTable thead .sorting,

#custom-html-t4 table.dataTable thead .sorting_asc,

#custom-html-t4 table.dataTable thead .sorting_asc_disabled,

#custom-html-t4 table.dataTable thead .sorting_desc,

#custom-html-t4 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t4 table.dataTable thead .sorting:after,

#custom-html-t4 table.dataTable thead .sorting_asc:after,

#custom-html-t4 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t4 table.dataTable thead .sorting_desc:after,

#custom-html-t4 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t4 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t4 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t4 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t4 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t4 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t4 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t4 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t4 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t4 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t4 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t4 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t4 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t4 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-t4 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t4 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t4 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t4 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-t4 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t4 table.dataTable.table-condensed .sorting:after,

#custom-html-t4 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t4 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t4 table.table-bordered.dataTable td,

#custom-html-t4 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t4 table.table-bordered.dataTable td:last-child,

#custom-html-t4 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t4 table.table-bordered.dataTable tbody td,

#custom-html-t4 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t4 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t4 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t4 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t4 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t4 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t4 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t4 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t4 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t4 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t4 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t4 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t4 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t4 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t4 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t4 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t4 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t4 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t4 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t4 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t4 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t4 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t4 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t4 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t4 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t4 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t4 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-t4 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t4 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t4 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t4 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t4 .multiselect-container > li {

  padding: 0;

}

#custom-html-t4 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t4 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t4 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t4 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t4 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t4 .multiselect-container > li > a > label.checkbox,

#custom-html-t4 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t4 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t4 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t4 .form-inline .multiselect-container label.checkbox,

#custom-html-t4 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t4 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t4 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7z2BKTYx {

  padding-top: 45px;

  padding-bottom: 30px;

  background-image: url("../../../assets/images/mbr-7-1920x1280.jpg");

}

.cid-sl7z2BKTYx P {

  color: #767676;

}

.cid-sl7z2BKTYx H1 {

  color: #ffffff;

}

.cid-sl7z2BKTYx .mbr-text,

.cid-sl7z2BKTYx .mbr-section-btn {

  color: #ffffff;

}

.cid-sl7z2BKTYx h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3yXQC1I6 .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3yXQC1I6 .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3yXQC1I6 .divider-top::before,

.cid-sF3yXQC1I6 .divider-bottom::before,

.cid-sF3yXQC1I6 .divider-top::after,

.cid-sF3yXQC1I6 .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3yXQC1I6 .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3yXQC1I6 .divider-triangles::before {

  top: -50px;

}

.cid-sF3yXQC1I6 .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3yXQC1I6 .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3yXQC1I6 .divider-multitriangles::before,

.cid-sF3yXQC1I6 .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3yXQC1I6 .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-s1wmCZXMqZ {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-s1wmCZXMqZ div.b {

  padding-top: 2rem;

}

.cid-s1wmCZXMqZ .mbr-text {

  color: #000000;

  margin: 0;

  padding-top: 1.5rem;

}

.cid-s1wmCZXMqZ a:not([href]):not([tabindex]) {

  color: #fff;

  border-radius: 3px;

}

.cid-s1wmCZXMqZ .google-map {

  height: 25rem;

  position: relative;

}

.cid-s1wmCZXMqZ .google-map iframe {

  height: 100%;

  width: 100%;

}

.cid-s1wmCZXMqZ .google-map [data-state-details] {

  color: #6b6763;

  font-family: Montserrat;

  height: 1.5em;

  margin-top: -0.75em;

  padding-left: 1.25rem;

  padding-right: 1.25rem;

  position: absolute;

  text-align: center;

  top: 50%;

  width: 100%;

}

.cid-s1wmCZXMqZ .google-map[data-state] {

  background: #e9e5dc;

}

.cid-s1wmCZXMqZ .google-map[data-state="loading"] [data-state-details] {

  display: none;

}

.cid-s1wmCZXMqZ div.left-block.wrapper {

  height: 100%;

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

}

@media (max-width: 767px) {

  .cid-s1wmCZXMqZ div.left-block.wrapper {

    padding-bottom: 3rem;

  }

}

.cid-s1wmCZXMqZ H5 {

  color: #000000;

}

.cid-sF3yYHHsZ0 .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3yYHHsZ0 .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3yYHHsZ0 .divider-top::before,

.cid-sF3yYHHsZ0 .divider-bottom::before,

.cid-sF3yYHHsZ0 .divider-top::after,

.cid-sF3yYHHsZ0 .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3yYHHsZ0 .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3yYHHsZ0 .divider-triangles::before {

  top: -50px;

}

.cid-sF3yYHHsZ0 .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3yYHHsZ0 .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3yYHHsZ0 .divider-multitriangles::before,

.cid-sF3yYHHsZ0 .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3yYHHsZ0 .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-s8r42MV3kj {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #efefef;

}

.cid-s8r42MV3kj .title {

  margin-bottom: 2rem;

}

.cid-s8r42MV3kj .mbr-section-subtitle {

  color: #000000;

}

.cid-s8r42MV3kj a:not([href]):not([tabindex]) {

  color: #fff;

  border-radius: 3px;

}

.cid-s8r42MV3kj a.btn-white:not([href]):not([tabindex]) {

  color: #333;

}

.cid-s8r42MV3kj textarea.form-control {

  min-height: 188px;

}

.cid-s8r42MV3kj H2 {

  color: #000000;

}

.cid-s8r42MV3kj LABEL {

  color: #000000;

}

.cid-sF3yZvC2nW .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3yZvC2nW .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3yZvC2nW .divider-top::before,

.cid-sF3yZvC2nW .divider-bottom::before,

.cid-sF3yZvC2nW .divider-top::after,

.cid-sF3yZvC2nW .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3yZvC2nW .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3yZvC2nW .divider-triangles::before {

  top: -50px;

}

.cid-sF3yZvC2nW .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3yZvC2nW .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3yZvC2nW .divider-multitriangles::before,

.cid-sF3yZvC2nW .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3yZvC2nW .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-s8r4yOsDWj {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-s8r4yOsDWj .title {

  margin-bottom: 2rem;

}

.cid-s8r4yOsDWj .mbr-section-subtitle {

  color: #000000;

}

.cid-s8r4yOsDWj a:not([href]):not([tabindex]) {

  color: #fff;

  border-radius: 3px;

}

.cid-s8r4yOsDWj a.btn-white:not([href]):not([tabindex]) {

  color: #333;

}

.cid-s8r4yOsDWj textarea.form-control {

  min-height: 188px;

}

.cid-s8r4yOsDWj H2 {

  color: #000000;

}

.cid-s8r4yOsDWj LABEL {

  color: #000000;

}

.cid-sF3z0Lh4zo .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3z0Lh4zo .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3z0Lh4zo .divider-top::before,

.cid-sF3z0Lh4zo .divider-bottom::before,

.cid-sF3z0Lh4zo .divider-top::after,

.cid-sF3z0Lh4zo .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3z0Lh4zo .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3z0Lh4zo .divider-triangles::before {

  top: -50px;

}

.cid-sF3z0Lh4zo .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3z0Lh4zo .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3z0Lh4zo .divider-multitriangles::before,

.cid-sF3z0Lh4zo .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3z0Lh4zo .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-s88ac9LUA6 {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s88ac9LUA6 h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s88ac9LUA6 p {

  color: #767676;

  text-align: left;

}

.cid-s88ac9LUA6 .card-box {

  padding-top: 2rem;

}

.cid-s88ac9LUA6 .card-wrapper {

  height: 100%;

}

.cid-svDDj16cbd {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDDj16cbd .content {

    text-align: center;

  }

  .cid-svDDj16cbd .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDDj16cbd .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDDj16cbd .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDDj16cbd .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDDj16cbd .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDDj16cbd .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDDj16cbd .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDDj16cbd .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDDj16cbd .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDDj16cbd .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDDj16cbd .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDDj16cbd .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDDj16cbd .copyright > p {

  text-align: left;

}

.cid-svDDj16cbd H5 {

  color: #000000;

}

.cid-svGHfZblik .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGHfZblik .my-float {

  margin-top: 16px;

}

.cid-svGHfZblik P {

  color: #232323;

}

.cid-svGHfZblik DIV {

  color: #ffffff;

}

.cid-svGHfZblik H10 {

  color: #767676;

}

.cid-svGHfZblik .hidden {

  display: none;

}

#custom-html-t3 {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-t3 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t3 body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-t3 article,

#custom-html-t3 aside,

#custom-html-t3 details,

#custom-html-t3 figcaption,

#custom-html-t3 figure,

#custom-html-t3 footer,

#custom-html-t3 header,

#custom-html-t3 hgroup,

#custom-html-t3 main,

#custom-html-t3 menu,

#custom-html-t3 nav,

#custom-html-t3 section,

#custom-html-t3 summary {

  display: block;

}

#custom-html-t3 audio,

#custom-html-t3 canvas,

#custom-html-t3 progress,

#custom-html-t3 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t3 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t3 [hidden],

#custom-html-t3 template {

  display: none;

}

#custom-html-t3 a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-t3 a:active,

#custom-html-t3 a:hover {

  outline: 0;

}

#custom-html-t3 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t3 b,

#custom-html-t3 strong {

  font-weight: 700;

}

#custom-html-t3 dfn {

  font-style: italic;

}

#custom-html-t3 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t3 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t3 small {

  font-size: 80%;

}

#custom-html-t3 sub,

#custom-html-t3 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t3 sup {

  top: -0.5em;

}

#custom-html-t3 sub {

  bottom: -0.25em;

}

#custom-html-t3 img {

  border: 0;

  vertical-align: middle;

}

#custom-html-t3 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t3 figure {

  margin: 0;

}

#custom-html-t3 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t3 pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t3 code,

#custom-html-t3 kbd,

#custom-html-t3 pre,

#custom-html-t3 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-t3 button,

#custom-html-t3 input,

#custom-html-t3 optgroup,

#custom-html-t3 select,

#custom-html-t3 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t3 button {

  overflow: visible;

}

#custom-html-t3 button,

#custom-html-t3 select {

  text-transform: none;

}

#custom-html-t3 button,

#custom-html-t3 html input[type=button],

#custom-html-t3 input[type=reset],

#custom-html-t3 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t3 button[disabled],

#custom-html-t3 html input[disabled] {

  cursor: default;

}

#custom-html-t3 button::-moz-focus-inner,

#custom-html-t3 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t3 input {

  line-height: normal;

}

#custom-html-t3 input[type=checkbox],

#custom-html-t3 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t3 input[type=number]::-webkit-inner-spin-button,

#custom-html-t3 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t3 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-t3 input[type=search]::-webkit-search-cancel-button,

#custom-html-t3 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t3 fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-t3 legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t3 textarea {

  overflow: auto;

}

#custom-html-t3 optgroup {

  font-weight: 700;

}

#custom-html-t3 table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-t3 td,

#custom-html-t3 th {

  padding: 0;

}

@media print {

  #custom-html-t3 *,

  #custom-html-t3 :after,

  #custom-html-t3 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t3 a,

  #custom-html-t3 a:visited {

    text-decoration: underline;

  }

  #custom-html-t3 a[href]:after {

    content: "" !important;

  }

  #custom-html-t3 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t3 a[href^="#"]:after,

  #custom-html-t3 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t3 blockquote,

  #custom-html-t3 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t3 thead {

    display: table-header-group;

  }

  #custom-html-t3 img,

  #custom-html-t3 tr {

    page-break-inside: avoid;

  }

  #custom-html-t3 img {

    max-width: 100% !important;

  }

  #custom-html-t3 h2,

  #custom-html-t3 h3,

  #custom-html-t3 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t3 h2,

  #custom-html-t3 h3 {

    page-break-after: avoid;

  }

  #custom-html-t3 .navbar {

    display: none;

  }

  #custom-html-t3 .btn > .caret,

  #custom-html-t3 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t3 .label {

    border: 1px solid #000000;

  }

  #custom-html-t3 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t3 .table td,

  #custom-html-t3 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t3 .table-bordered td,

  #custom-html-t3 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-t3 .visible-print {

    display: block !important;

  }

  #custom-html-t3 table.visible-print {

    display: table !important;

  }

  #custom-html-t3 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t3 td.visible-print,

  #custom-html-t3 th.visible-print {

    display: table-cell !important;

  }

  #custom-html-t3 .visible-print-block {

    display: block !important;

  }

  #custom-html-t3 .visible-print-inline {

    display: inline !important;

  }

  #custom-html-t3 .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-t3 .hidden-print {

    display: none !important;

  }

  #custom-html-t3 #main-menu,

  #custom-html-t3 #top-nav,

  #custom-html-t3 .header-lined,

  #custom-html-t3 .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t3 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t3 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t3 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t3 .glyphicon-eur:before,

#custom-html-t3 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t3 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t3 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t3 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t3 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t3 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t3 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t3 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t3 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-t3 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t3 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t3 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t3 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t3 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t3 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t3 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t3 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t3 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t3 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t3 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t3 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t3 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t3 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t3 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t3 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t3 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t3 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t3 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t3 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t3 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t3 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t3 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t3 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t3 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t3 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t3 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t3 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t3 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t3 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t3 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t3 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t3 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t3 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t3 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t3 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t3 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t3 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t3 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t3 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t3 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t3 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t3 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t3 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t3 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t3 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t3 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t3 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t3 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t3 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t3 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t3 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t3 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t3 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t3 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t3 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t3 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t3 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t3 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t3 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t3 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t3 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t3 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t3 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t3 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t3 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t3 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t3 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t3 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t3 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t3 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t3 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t3 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t3 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t3 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t3 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t3 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t3 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t3 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t3 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t3 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t3 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t3 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t3 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t3 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t3 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t3 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t3 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t3 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t3 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t3 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t3 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t3 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t3 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t3 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t3 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t3 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t3 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t3 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t3 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t3 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t3 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t3 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t3 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t3 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t3 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t3 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t3 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t3 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t3 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t3 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t3 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t3 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-t3 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t3 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t3 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t3 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t3 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t3 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t3 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t3 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t3 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t3 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t3 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t3 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t3 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t3 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t3 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t3 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t3 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t3 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t3 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t3 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t3 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t3 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t3 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t3 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t3 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t3 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t3 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t3 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t3 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t3 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-t3 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t3 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t3 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t3 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t3 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t3 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t3 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t3 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t3 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t3 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t3 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t3 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t3 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t3 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t3 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t3 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t3 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t3 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t3 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t3 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t3 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t3 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t3 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t3 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t3 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t3 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t3 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t3 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t3 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t3 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t3 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t3 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t3 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t3 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t3 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t3 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t3 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t3 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t3 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t3 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t3 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t3 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t3 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t3 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t3 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t3 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t3 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t3 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t3 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t3 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t3 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t3 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t3 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t3 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t3 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t3 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t3 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t3 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t3 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t3 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t3 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t3 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t3 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t3 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t3 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t3 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t3 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-t3 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t3 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t3 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t3 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t3 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t3 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t3 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t3 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t3 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t3 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t3 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t3 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t3 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t3 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t3 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t3 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t3 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t3 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t3 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t3 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t3 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t3 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t3 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t3 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t3 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t3 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t3 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t3 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t3 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t3 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t3 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t3 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t3 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t3 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t3 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t3 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t3 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t3 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t3 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t3 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t3 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t3 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t3 :after,

#custom-html-t3 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t3 button,

#custom-html-t3 input,

#custom-html-t3 select,

#custom-html-t3 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t3 a:focus,

#custom-html-t3 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t3 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t3 .carousel-inner > .item > a > img,

#custom-html-t3 .carousel-inner > .item > img,

#custom-html-t3 .img-responsive,

#custom-html-t3 .thumbnail a > img,

#custom-html-t3 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t3 .img-rounded {

  border-radius: 6px;

}

#custom-html-t3 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t3 .img-circle {

  border-radius: 50%;

}

#custom-html-t3 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t3 .sr-only-focusable:active,

#custom-html-t3 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t3 [role=button] {

  cursor: pointer;

}

#custom-html-t3 .h1,

#custom-html-t3 .h2,

#custom-html-t3 .h3,

#custom-html-t3 .h4,

#custom-html-t3 .h5,

#custom-html-t3 .h6,

#custom-html-t3 h1,

#custom-html-t3 h2,

#custom-html-t3 h3,

#custom-html-t3 h4,

#custom-html-t3 h5,

#custom-html-t3 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t3 .h1 .small,

#custom-html-t3 .h1 small,

#custom-html-t3 .h2 .small,

#custom-html-t3 .h2 small,

#custom-html-t3 .h3 .small,

#custom-html-t3 .h3 small,

#custom-html-t3 .h4 .small,

#custom-html-t3 .h4 small,

#custom-html-t3 .h5 .small,

#custom-html-t3 .h5 small,

#custom-html-t3 .h6 .small,

#custom-html-t3 .h6 small,

#custom-html-t3 h1 .small,

#custom-html-t3 h1 small,

#custom-html-t3 h2 .small,

#custom-html-t3 h2 small,

#custom-html-t3 h3 .small,

#custom-html-t3 h3 small,

#custom-html-t3 h4 .small,

#custom-html-t3 h4 small,

#custom-html-t3 h5 .small,

#custom-html-t3 h5 small,

#custom-html-t3 h6 .small,

#custom-html-t3 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t3 .h1,

#custom-html-t3 .h2,

#custom-html-t3 .h3,

#custom-html-t3 h1,

#custom-html-t3 h2,

#custom-html-t3 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t3 .h1 .small,

#custom-html-t3 .h1 small,

#custom-html-t3 .h2 .small,

#custom-html-t3 .h2 small,

#custom-html-t3 .h3 .small,

#custom-html-t3 .h3 small,

#custom-html-t3 h1 .small,

#custom-html-t3 h1 small,

#custom-html-t3 h2 .small,

#custom-html-t3 h2 small,

#custom-html-t3 h3 .small,

#custom-html-t3 h3 small {

  font-size: 65%;

}

#custom-html-t3 .h4,

#custom-html-t3 .h5,

#custom-html-t3 .h6,

#custom-html-t3 h4,

#custom-html-t3 h5,

#custom-html-t3 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t3 .h4 .small,

#custom-html-t3 .h4 small,

#custom-html-t3 .h5 .small,

#custom-html-t3 .h5 small,

#custom-html-t3 .h6 .small,

#custom-html-t3 .h6 small,

#custom-html-t3 h4 .small,

#custom-html-t3 h4 small,

#custom-html-t3 h5 .small,

#custom-html-t3 h5 small,

#custom-html-t3 h6 .small,

#custom-html-t3 h6 small {

  font-size: 75%;

}

#custom-html-t3 .h1,

#custom-html-t3 h1 {

  font-size: 36px;

}

#custom-html-t3 .h2,

#custom-html-t3 h2 {

  font-size: 30px;

}

#custom-html-t3 .h3,

#custom-html-t3 h3 {

  font-size: 24px;

}

#custom-html-t3 .h4,

#custom-html-t3 h4 {

  font-size: 18px;

}

#custom-html-t3 .h5,

#custom-html-t3 h5 {

  font-size: 14px;

}

#custom-html-t3 .h6,

#custom-html-t3 h6 {

  font-size: 12px;

}

#custom-html-t3 p {

  margin: 0 0 10px;

}

#custom-html-t3 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t3 .lead {

    font-size: 21px;

  }

  #custom-html-t3 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t3 .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-t3 .container {

    width: 750px;

  }

  #custom-html-t3 .col-sm-1,

  #custom-html-t3 .col-sm-10,

  #custom-html-t3 .col-sm-11,

  #custom-html-t3 .col-sm-12,

  #custom-html-t3 .col-sm-2,

  #custom-html-t3 .col-sm-3,

  #custom-html-t3 .col-sm-4,

  #custom-html-t3 .col-sm-5,

  #custom-html-t3 .col-sm-6,

  #custom-html-t3 .col-sm-7,

  #custom-html-t3 .col-sm-8,

  #custom-html-t3 .col-sm-9 {

    float: left;

  }

  #custom-html-t3 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t3 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t3 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t3 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t3 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t3 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t3 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t3 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t3 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t3 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t3 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t3 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t3 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t3 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t3 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t3 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t3 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t3 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t3 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t3 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t3 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t3 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-t3 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t3 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t3 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t3 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t3 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t3 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t3 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t3 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t3 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t3 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t3 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t3 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t3 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t3 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t3 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t3 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t3 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t3 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t3 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t3 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t3 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t3 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t3 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t3 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t3 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t3 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t3 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t3 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t3 .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-t3 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t3 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t3 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t3 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t3 .form-inline .input-group .form-control,

  #custom-html-t3 .form-inline .input-group .input-group-addon,

  #custom-html-t3 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t3 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t3 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t3 .form-inline .checkbox,

  #custom-html-t3 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t3 .form-inline .checkbox label,

  #custom-html-t3 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t3 .form-inline .checkbox input[type=checkbox],

  #custom-html-t3 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t3 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t3 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-t3 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-t3 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-t3 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-t3 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-t3 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t3 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t3 .nav-tabs.nav-justified > .active > a,

  #custom-html-t3 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t3 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t3 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t3 .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-t3 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t3 .nav-tabs-justified > .active > a,

  #custom-html-t3 .nav-tabs-justified > .active > a:focus,

  #custom-html-t3 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t3 .navbar {

    border-radius: 4px;

  }

  #custom-html-t3 .navbar-header {

    float: left;

  }

  #custom-html-t3 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t3 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t3 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t3 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t3 .navbar-fixed-top .navbar-collapse,

  #custom-html-t3 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-t3 .container-fluid > .navbar-collapse,

  #custom-html-t3 .container-fluid > .navbar-header,

  #custom-html-t3 .container > .navbar-collapse,

  #custom-html-t3 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-t3 .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-t3 .navbar-fixed-bottom,

  #custom-html-t3 .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-t3 .navbar > .container .navbar-brand,

  #custom-html-t3 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-t3 .navbar-toggle {

    display: none;

  }

  #custom-html-t3 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t3 .navbar-nav > li {

    float: left;

  }

  #custom-html-t3 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-t3 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t3 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t3 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t3 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t3 .navbar-form .input-group .form-control,

  #custom-html-t3 .navbar-form .input-group .input-group-addon,

  #custom-html-t3 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t3 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t3 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t3 .navbar-form .checkbox,

  #custom-html-t3 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t3 .navbar-form .checkbox label,

  #custom-html-t3 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t3 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t3 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t3 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t3 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t3 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-t3 .navbar-left {

    float: left !important;

  }

  #custom-html-t3 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t3 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-t3 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t3 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t3 .modal-sm {

    width: 300px;

  }

  #custom-html-t3 .pull-sm-left {

    float: left;

  }

  #custom-html-t3 .pull-sm-right {

    float: right;

  }

  #custom-html-t3 .text-right-sm {

    text-align: right;

  }

  #custom-html-t3 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t3 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-t3 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t3 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t3 .email-verification .button {

    float: right;

  }

  #custom-html-t3 .email-verification .far,

  #custom-html-t3 .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-t3 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t3 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-t3 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t3 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t3 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t3 .small,

#custom-html-t3 small {

  font-size: 85%;

}

#custom-html-t3 .mark,

#custom-html-t3 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t3 .text-left {

  text-align: left;

}

#custom-html-t3 .text-right {

  text-align: right;

}

#custom-html-t3 .text-center {

  text-align: center;

}

#custom-html-t3 .text-justify {

  text-align: justify;

}

#custom-html-t3 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t3 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t3 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t3 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t3 .text-muted {

  color: #777777;

}

#custom-html-t3 .text-primary {

  color: #000000;

}

#custom-html-t3 a.text-primary:focus,

#custom-html-t3 a.text-primary:hover {

  color: #000000;

}

#custom-html-t3 .text-success {

  color: #3c763d;

}

#custom-html-t3 a.text-success:focus,

#custom-html-t3 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t3 .text-info {

  color: #31708f;

}

#custom-html-t3 a.text-info:focus,

#custom-html-t3 a.text-info:hover {

  color: #000000;

}

#custom-html-t3 .text-warning {

  color: #8a6d3b;

}

#custom-html-t3 a.text-warning:focus,

#custom-html-t3 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t3 .text-danger {

  color: #a94442;

}

#custom-html-t3 a.text-danger:focus,

#custom-html-t3 a.text-danger:hover {

  color: #843534;

}

#custom-html-t3 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t3 a.bg-primary:focus,

#custom-html-t3 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t3 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t3 a.bg-success:focus,

#custom-html-t3 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t3 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t3 a.bg-info:focus,

#custom-html-t3 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t3 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t3 a.bg-warning:focus,

#custom-html-t3 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t3 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t3 a.bg-danger:focus,

#custom-html-t3 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t3 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t3 ol,

#custom-html-t3 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t3 ol ol,

#custom-html-t3 ol ul,

#custom-html-t3 ul ol,

#custom-html-t3 ul ul {

  margin-bottom: 0;

}

#custom-html-t3 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t3 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t3 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t3 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t3 dd,

#custom-html-t3 dt {

  line-height: 1.42857143;

}

#custom-html-t3 dt {

  font-weight: 700;

}

#custom-html-t3 dd {

  margin-left: 0;

}

#custom-html-t3 abbr[data-original-title],

#custom-html-t3 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t3 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t3 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t3 blockquote ol:last-child,

#custom-html-t3 blockquote p:last-child,

#custom-html-t3 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t3 blockquote .small,

#custom-html-t3 blockquote footer,

#custom-html-t3 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-t3 blockquote .small:before,

#custom-html-t3 blockquote footer:before,

#custom-html-t3 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t3 .blockquote-reverse,

#custom-html-t3 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t3 .blockquote-reverse .small:before,

#custom-html-t3 .blockquote-reverse footer:before,

#custom-html-t3 .blockquote-reverse small:before,

#custom-html-t3 blockquote.pull-right .small:before,

#custom-html-t3 blockquote.pull-right footer:before,

#custom-html-t3 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t3 .blockquote-reverse .small:after,


#custom-html-t3 .blockquote-reverse footer:after,

#custom-html-t3 .blockquote-reverse small:after,

#custom-html-t3 blockquote.pull-right .small:after,

#custom-html-t3 blockquote.pull-right footer:after,

#custom-html-t3 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t3 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t3 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t3 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t3 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t3 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t3 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t3 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-t3 .container {

    width: 970px;

  }

  #custom-html-t3 .col-md-1,

  #custom-html-t3 .col-md-10,

  #custom-html-t3 .col-md-11,

  #custom-html-t3 .col-md-12,

  #custom-html-t3 .col-md-2,

  #custom-html-t3 .col-md-3,

  #custom-html-t3 .col-md-4,

  #custom-html-t3 .col-md-5,

  #custom-html-t3 .col-md-6,

  #custom-html-t3 .col-md-7,

  #custom-html-t3 .col-md-8,

  #custom-html-t3 .col-md-9 {

    float: left;

  }

  #custom-html-t3 .col-md-12 {

    width: 100%;

  }

  #custom-html-t3 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t3 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t3 .col-md-9 {

    width: 75%;

  }

  #custom-html-t3 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t3 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t3 .col-md-6 {

    width: 50%;

  }

  #custom-html-t3 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t3 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t3 .col-md-3 {

    width: 25%;

  }

  #custom-html-t3 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t3 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t3 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t3 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t3 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t3 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t3 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t3 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t3 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t3 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t3 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t3 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t3 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t3 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t3 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t3 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t3 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t3 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t3 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t3 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t3 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t3 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t3 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t3 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t3 .col-md-push-3 {

    left: 25%;

  }


  #custom-html-t3 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t3 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t3 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t3 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t3 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t3 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t3 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t3 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t3 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t3 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t3 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t3 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t3 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t3 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t3 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t3 .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-t3 .modal-lg {

    width: 900px;

  }

  #custom-html-t3 .pull-md-left {

    float: left;

  }

  #custom-html-t3 .pull-md-right {

    float: right;

  }

  #custom-html-t3 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t3 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t3 .container {

    width: 1170px;

  }

  #custom-html-t3 .col-lg-1,

  #custom-html-t3 .col-lg-10,

  #custom-html-t3 .col-lg-11,

  #custom-html-t3 .col-lg-12,

  #custom-html-t3 .col-lg-2,

  #custom-html-t3 .col-lg-3,

  #custom-html-t3 .col-lg-4,

  #custom-html-t3 .col-lg-5,

  #custom-html-t3 .col-lg-6,

  #custom-html-t3 .col-lg-7,

  #custom-html-t3 .col-lg-8,

  #custom-html-t3 .col-lg-9 {

    float: left;

  }

  #custom-html-t3 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t3 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t3 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t3 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t3 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t3 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t3 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t3 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t3 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t3 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t3 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t3 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t3 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t3 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t3 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t3 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t3 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t3 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t3 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t3 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t3 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t3 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-t3 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t3 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t3 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t3 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t3 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t3 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t3 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t3 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t3 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t3 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t3 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t3 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t3 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t3 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t3 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t3 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t3 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t3 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t3 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t3 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t3 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t3 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t3 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t3 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t3 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t3 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t3 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t3 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t3 .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-t3 .visible-lg {

    display: block !important;

  }

  #custom-html-t3 table.visible-lg {

    display: table !important;

  }

  #custom-html-t3 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t3 td.visible-lg,

  #custom-html-t3 th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-t3 .visible-lg-block {

    display: block !important;

  }

  #custom-html-t3 .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-t3 .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-t3 .hidden-lg {

    display: none !important;

  }

  #custom-html-t3 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t3 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t3 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t3 .col-lg-1,

#custom-html-t3 .col-lg-10,

#custom-html-t3 .col-lg-11,

#custom-html-t3 .col-lg-12,

#custom-html-t3 .col-lg-2,

#custom-html-t3 .col-lg-3,

#custom-html-t3 .col-lg-4,

#custom-html-t3 .col-lg-5,

#custom-html-t3 .col-lg-6,

#custom-html-t3 .col-lg-7,

#custom-html-t3 .col-lg-8,

#custom-html-t3 .col-lg-9,

#custom-html-t3 .col-md-1,

#custom-html-t3 .col-md-10,

#custom-html-t3 .col-md-11,

#custom-html-t3 .col-md-12,

#custom-html-t3 .col-md-2,

#custom-html-t3 .col-md-3,

#custom-html-t3 .col-md-4,

#custom-html-t3 .col-md-5,

#custom-html-t3 .col-md-6,

#custom-html-t3 .col-md-7,

#custom-html-t3 .col-md-8,

#custom-html-t3 .col-md-9,

#custom-html-t3 .col-sm-1,

#custom-html-t3 .col-sm-10,

#custom-html-t3 .col-sm-11,

#custom-html-t3 .col-sm-12,

#custom-html-t3 .col-sm-2,

#custom-html-t3 .col-sm-3,

#custom-html-t3 .col-sm-4,

#custom-html-t3 .col-sm-5,

#custom-html-t3 .col-sm-6,

#custom-html-t3 .col-sm-7,

#custom-html-t3 .col-sm-8,

#custom-html-t3 .col-sm-9,

#custom-html-t3 .col-xs-1,

#custom-html-t3 .col-xs-10,

#custom-html-t3 .col-xs-11,

#custom-html-t3 .col-xs-12,

#custom-html-t3 .col-xs-2,

#custom-html-t3 .col-xs-3,

#custom-html-t3 .col-xs-4,

#custom-html-t3 .col-xs-5,

#custom-html-t3 .col-xs-6,

#custom-html-t3 .col-xs-7,

#custom-html-t3 .col-xs-8,

#custom-html-t3 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t3 .col-xs-1,

#custom-html-t3 .col-xs-10,

#custom-html-t3 .col-xs-11,

#custom-html-t3 .col-xs-12,

#custom-html-t3 .col-xs-2,

#custom-html-t3 .col-xs-3,

#custom-html-t3 .col-xs-4,

#custom-html-t3 .col-xs-5,

#custom-html-t3 .col-xs-6,

#custom-html-t3 .col-xs-7,

#custom-html-t3 .col-xs-8,

#custom-html-t3 .col-xs-9 {

  float: left;

}

#custom-html-t3 .col-xs-12 {

  width: 100%;

}

#custom-html-t3 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t3 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t3 .col-xs-9 {

  width: 75%;

}

#custom-html-t3 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t3 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t3 .col-xs-6 {

  width: 50%;

}

#custom-html-t3 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t3 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-t3 .col-xs-3 {

  width: 25%;

}

#custom-html-t3 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t3 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t3 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t3 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t3 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t3 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t3 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t3 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t3 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t3 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t3 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t3 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t3 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t3 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t3 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t3 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t3 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t3 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t3 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t3 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t3 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t3 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t3 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t3 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t3 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t3 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t3 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t3 .col-xs-push-0 {

  left: auto;

}

#custom-html-t3 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t3 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t3 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t3 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t3 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t3 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t3 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t3 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t3 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t3 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t3 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t3 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t3 .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-t3 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t3 th {

  text-align: left;

}

#custom-html-t3 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t3 .table > tbody > tr > td,

#custom-html-t3 .table > tbody > tr > th,

#custom-html-t3 .table > tfoot > tr > td,

#custom-html-t3 .table > tfoot > tr > th,

#custom-html-t3 .table > thead > tr > td,

#custom-html-t3 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t3 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t3 .table > caption + thead > tr:first-child > td,

#custom-html-t3 .table > caption + thead > tr:first-child > th,

#custom-html-t3 .table > colgroup + thead > tr:first-child > td,

#custom-html-t3 .table > colgroup + thead > tr:first-child > th,

#custom-html-t3 .table > thead:first-child > tr:first-child > td,

#custom-html-t3 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t3 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t3 .table .table {

  background-color: #ffffff;

}

#custom-html-t3 .table-condensed > tbody > tr > td,

#custom-html-t3 .table-condensed > tbody > tr > th,

#custom-html-t3 .table-condensed > tfoot > tr > td,

#custom-html-t3 .table-condensed > tfoot > tr > th,

#custom-html-t3 .table-condensed > thead > tr > td,

#custom-html-t3 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t3 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t3 .table-bordered > tbody > tr > td,

#custom-html-t3 .table-bordered > tbody > tr > th,

#custom-html-t3 .table-bordered > tfoot > tr > td,

#custom-html-t3 .table-bordered > tfoot > tr > th,

#custom-html-t3 .table-bordered > thead > tr > td,

#custom-html-t3 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t3 .table-bordered > thead > tr > td,

#custom-html-t3 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t3 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t3 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t3 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t3 table td[class*=col-],

#custom-html-t3 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t3 .table > tbody > tr.active > td,

#custom-html-t3 .table > tbody > tr.active > th,

#custom-html-t3 .table > tbody > tr > td.active,

#custom-html-t3 .table > tbody > tr > th.active,

#custom-html-t3 .table > tfoot > tr.active > td,

#custom-html-t3 .table > tfoot > tr.active > th,

#custom-html-t3 .table > tfoot > tr > td.active,

#custom-html-t3 .table > tfoot > tr > th.active,

#custom-html-t3 .table > thead > tr.active > td,

#custom-html-t3 .table > thead > tr.active > th,

#custom-html-t3 .table > thead > tr > td.active,

#custom-html-t3 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t3 .table-hover > tbody > tr.active:hover > td,

#custom-html-t3 .table-hover > tbody > tr.active:hover > th,

#custom-html-t3 .table-hover > tbody > tr:hover > .active,

#custom-html-t3 .table-hover > tbody > tr > td.active:hover,

#custom-html-t3 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t3 .table > tbody > tr.success > td,

#custom-html-t3 .table > tbody > tr.success > th,

#custom-html-t3 .table > tbody > tr > td.success,

#custom-html-t3 .table > tbody > tr > th.success,

#custom-html-t3 .table > tfoot > tr.success > td,

#custom-html-t3 .table > tfoot > tr.success > th,

#custom-html-t3 .table > tfoot > tr > td.success,

#custom-html-t3 .table > tfoot > tr > th.success,

#custom-html-t3 .table > thead > tr.success > td,

#custom-html-t3 .table > thead > tr.success > th,

#custom-html-t3 .table > thead > tr > td.success,

#custom-html-t3 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t3 .table-hover > tbody > tr.success:hover > td,

#custom-html-t3 .table-hover > tbody > tr.success:hover > th,

#custom-html-t3 .table-hover > tbody > tr:hover > .success,

#custom-html-t3 .table-hover > tbody > tr > td.success:hover,

#custom-html-t3 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t3 .table > tbody > tr.info > td,

#custom-html-t3 .table > tbody > tr.info > th,

#custom-html-t3 .table > tbody > tr > td.info,

#custom-html-t3 .table > tbody > tr > th.info,

#custom-html-t3 .table > tfoot > tr.info > td,

#custom-html-t3 .table > tfoot > tr.info > th,

#custom-html-t3 .table > tfoot > tr > td.info,

#custom-html-t3 .table > tfoot > tr > th.info,

#custom-html-t3 .table > thead > tr.info > td,

#custom-html-t3 .table > thead > tr.info > th,

#custom-html-t3 .table > thead > tr > td.info,

#custom-html-t3 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t3 .table-hover > tbody > tr.info:hover > td,

#custom-html-t3 .table-hover > tbody > tr.info:hover > th,

#custom-html-t3 .table-hover > tbody > tr:hover > .info,

#custom-html-t3 .table-hover > tbody > tr > td.info:hover,

#custom-html-t3 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t3 .table > tbody > tr.warning > td,

#custom-html-t3 .table > tbody > tr.warning > th,

#custom-html-t3 .table > tbody > tr > td.warning,

#custom-html-t3 .table > tbody > tr > th.warning,

#custom-html-t3 .table > tfoot > tr.warning > td,

#custom-html-t3 .table > tfoot > tr.warning > th,

#custom-html-t3 .table > tfoot > tr > td.warning,

#custom-html-t3 .table > tfoot > tr > th.warning,

#custom-html-t3 .table > thead > tr.warning > td,

#custom-html-t3 .table > thead > tr.warning > th,

#custom-html-t3 .table > thead > tr > td.warning,

#custom-html-t3 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t3 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t3 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t3 .table-hover > tbody > tr:hover > .warning,

#custom-html-t3 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t3 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t3 .table > tbody > tr.danger > td,

#custom-html-t3 .table > tbody > tr.danger > th,

#custom-html-t3 .table > tbody > tr > td.danger,

#custom-html-t3 .table > tbody > tr > th.danger,

#custom-html-t3 .table > tfoot > tr.danger > td,

#custom-html-t3 .table > tfoot > tr.danger > th,

#custom-html-t3 .table > tfoot > tr > td.danger,

#custom-html-t3 .table > tfoot > tr > th.danger,

#custom-html-t3 .table > thead > tr.danger > td,

#custom-html-t3 .table > thead > tr.danger > th,

#custom-html-t3 .table > thead > tr > td.danger,

#custom-html-t3 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t3 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t3 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t3 .table-hover > tbody > tr:hover > .danger,

#custom-html-t3 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t3 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t3 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t3 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t3 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t3 .table-responsive > .table > tbody > tr > td,

  #custom-html-t3 .table-responsive > .table > tbody > tr > th,

  #custom-html-t3 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t3 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t3 .table-responsive > .table > thead > tr > td,

  #custom-html-t3 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t3 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t3 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t3 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t3 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t3 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t3 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t3 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t3 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t3 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t3 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-t3 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t3 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t3 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t3 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t3 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t3 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t3 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-t3 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t3 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t3 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t3 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-t3 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t3 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t3 input[type=file] {

  display: block;

}

#custom-html-t3 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-t3 select[multiple],

#custom-html-t3 select[size] {

  height: auto;

}

#custom-html-t3 input[type=checkbox]:focus,

#custom-html-t3 input[type=file]:focus,

#custom-html-t3 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t3 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t3 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t3 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t3 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t3 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t3 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t3 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t3 .form-control[disabled],

#custom-html-t3 .form-control[readonly],

#custom-html-t3 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t3 .form-control[disabled],

#custom-html-t3 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t3 textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t3 input[type=date].form-control,

  #custom-html-t3 input[type=datetime-local].form-control,

  #custom-html-t3 input[type=month].form-control,

  #custom-html-t3 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t3 .input-group-sm input[type=date],

  #custom-html-t3 .input-group-sm input[type=datetime-local],

  #custom-html-t3 .input-group-sm input[type=month],

  #custom-html-t3 .input-group-sm input[type=time],

  #custom-html-t3 input[type=date].input-sm,

  #custom-html-t3 input[type=datetime-local].input-sm,

  #custom-html-t3 input[type=month].input-sm,

  #custom-html-t3 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t3 .input-group-lg input[type=date],

  #custom-html-t3 .input-group-lg input[type=datetime-local],

  #custom-html-t3 .input-group-lg input[type=month],

  #custom-html-t3 .input-group-lg input[type=time],

  #custom-html-t3 input[type=date].input-lg,

  #custom-html-t3 input[type=datetime-local].input-lg,

  #custom-html-t3 input[type=month].input-lg,

  #custom-html-t3 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t3 .form-group {

  margin-bottom: 15px;

}

#custom-html-t3 .checkbox,

#custom-html-t3 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t3 .checkbox label,

#custom-html-t3 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t3 .checkbox input[type=checkbox],

#custom-html-t3 .checkbox-inline input[type=checkbox],

#custom-html-t3 .radio input[type=radio],

#custom-html-t3 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t3 .checkbox + .checkbox,

#custom-html-t3 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t3 .checkbox-inline,

#custom-html-t3 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t3 .checkbox-inline + .checkbox-inline,

#custom-html-t3 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t3 fieldset[disabled] input[type=checkbox],

#custom-html-t3 fieldset[disabled] input[type=radio],

#custom-html-t3 input[type=checkbox].disabled,

#custom-html-t3 input[type=checkbox][disabled],

#custom-html-t3 input[type=radio].disabled,

#custom-html-t3 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t3 .checkbox-inline.disabled,

#custom-html-t3 .radio-inline.disabled,

#custom-html-t3 fieldset[disabled] .checkbox-inline,

#custom-html-t3 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t3 .checkbox.disabled label,

#custom-html-t3 .radio.disabled label,

#custom-html-t3 fieldset[disabled] .checkbox label,

#custom-html-t3 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t3 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t3 .form-control-static.input-lg,

#custom-html-t3 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t3 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t3 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t3 select[multiple].input-sm,

#custom-html-t3 textarea.input-sm {

  height: auto;

}

#custom-html-t3 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t3 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t3 .form-group-sm select[multiple].form-control,

#custom-html-t3 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t3 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t3 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t3 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t3 select[multiple].input-lg,

#custom-html-t3 textarea.input-lg {

  height: auto;

}

#custom-html-t3 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t3 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-t3 .form-group-lg select[multiple].form-control,

#custom-html-t3 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t3 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t3 .has-feedback {

  position: relative;

}

#custom-html-t3 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t3 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t3 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t3 .input-group-lg + .form-control-feedback,

#custom-html-t3 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t3 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t3 .input-group-sm + .form-control-feedback,

#custom-html-t3 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t3 .has-success .checkbox,

#custom-html-t3 .has-success .checkbox-inline,

#custom-html-t3 .has-success .control-label,

#custom-html-t3 .has-success .help-block,

#custom-html-t3 .has-success .radio,

#custom-html-t3 .has-success .radio-inline,

#custom-html-t3 .has-success.checkbox label,

#custom-html-t3 .has-success.checkbox-inline label,

#custom-html-t3 .has-success.radio label,

#custom-html-t3 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t3 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t3 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t3 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t3 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t3 .has-warning .checkbox,

#custom-html-t3 .has-warning .checkbox-inline,

#custom-html-t3 .has-warning .control-label,

#custom-html-t3 .has-warning .help-block,

#custom-html-t3 .has-warning .radio,

#custom-html-t3 .has-warning .radio-inline,

#custom-html-t3 .has-warning.checkbox label,

#custom-html-t3 .has-warning.checkbox-inline label,

#custom-html-t3 .has-warning.radio label,

#custom-html-t3 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t3 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t3 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t3 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t3 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t3 .has-error .checkbox,

#custom-html-t3 .has-error .checkbox-inline,

#custom-html-t3 .has-error .control-label,

#custom-html-t3 .has-error .help-block,

#custom-html-t3 .has-error .radio,

#custom-html-t3 .has-error .radio-inline,

#custom-html-t3 .has-error.checkbox label,

#custom-html-t3 .has-error.checkbox-inline label,

#custom-html-t3 .has-error.radio label,

#custom-html-t3 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t3 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t3 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t3 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t3 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t3 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t3 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t3 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-t3 .form-horizontal .checkbox,

#custom-html-t3 .form-horizontal .checkbox-inline,

#custom-html-t3 .form-horizontal .radio,

#custom-html-t3 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t3 .form-horizontal .checkbox,

#custom-html-t3 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t3 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t3 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-t3 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-t3 .btn.active.focus,

#custom-html-t3 .btn.active:focus,

#custom-html-t3 .btn.focus,

#custom-html-t3 .btn:active.focus,

#custom-html-t3 .btn:active:focus,

#custom-html-t3 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t3 .btn.focus,

#custom-html-t3 .btn:focus,

#custom-html-t3 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t3 .btn.active,

#custom-html-t3 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t3 .btn.disabled,

#custom-html-t3 .btn[disabled],

#custom-html-t3 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t3 a.btn.disabled,

#custom-html-t3 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t3 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t3 .btn-default.focus,

#custom-html-t3 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t3 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t3 .btn-default.active,

#custom-html-t3 .btn-default:active,

#custom-html-t3 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-t3 .btn-default.active.focus,

#custom-html-t3 .btn-default.active:focus,

#custom-html-t3 .btn-default.active:hover,

#custom-html-t3 .btn-default:active.focus,

#custom-html-t3 .btn-default:active:focus,

#custom-html-t3 .btn-default:active:hover,

#custom-html-t3 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t3 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t3 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t3 .btn-default.disabled.focus,

#custom-html-t3 .btn-default.disabled:focus,

#custom-html-t3 .btn-default.disabled:hover,

#custom-html-t3 .btn-default[disabled].focus,

#custom-html-t3 .btn-default[disabled]:focus,

#custom-html-t3 .btn-default[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-default.focus,

#custom-html-t3 fieldset[disabled] .btn-default:focus,

#custom-html-t3 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t3 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t3 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t3 .btn-primary.focus,

#custom-html-t3 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t3 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t3 .btn-primary.active,

#custom-html-t3 .btn-primary:active,

#custom-html-t3 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-t3 .btn-primary.active.focus,

#custom-html-t3 .btn-primary.active:focus,

#custom-html-t3 .btn-primary.active:hover,

#custom-html-t3 .btn-primary:active.focus,

#custom-html-t3 .btn-primary:active:focus,

#custom-html-t3 .btn-primary:active:hover,

#custom-html-t3 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t3 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t3 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t3 .btn-primary.disabled.focus,

#custom-html-t3 .btn-primary.disabled:focus,

#custom-html-t3 .btn-primary.disabled:hover,

#custom-html-t3 .btn-primary[disabled].focus,

#custom-html-t3 .btn-primary[disabled]:focus,

#custom-html-t3 .btn-primary[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-primary.focus,

#custom-html-t3 fieldset[disabled] .btn-primary:focus,

#custom-html-t3 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t3 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t3 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t3 .btn-success.focus,

#custom-html-t3 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t3 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t3 .btn-success.active,

#custom-html-t3 .btn-success:active,

#custom-html-t3 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-t3 .btn-success.active.focus,

#custom-html-t3 .btn-success.active:focus,

#custom-html-t3 .btn-success.active:hover,

#custom-html-t3 .btn-success:active.focus,

#custom-html-t3 .btn-success:active:focus,

#custom-html-t3 .btn-success:active:hover,

#custom-html-t3 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t3 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t3 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t3 .btn-success.disabled.focus,

#custom-html-t3 .btn-success.disabled:focus,

#custom-html-t3 .btn-success.disabled:hover,

#custom-html-t3 .btn-success[disabled].focus,

#custom-html-t3 .btn-success[disabled]:focus,

#custom-html-t3 .btn-success[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-success.focus,

#custom-html-t3 fieldset[disabled] .btn-success:focus,

#custom-html-t3 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t3 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t3 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t3 .btn-info.focus,

#custom-html-t3 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t3 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t3 .btn-info.active,

#custom-html-t3 .btn-info:active,

#custom-html-t3 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-t3 .btn-info.active.focus,

#custom-html-t3 .btn-info.active:focus,

#custom-html-t3 .btn-info.active:hover,

#custom-html-t3 .btn-info:active.focus,

#custom-html-t3 .btn-info:active:focus,

#custom-html-t3 .btn-info:active:hover,

#custom-html-t3 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t3 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t3 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t3 .btn-info.disabled.focus,

#custom-html-t3 .btn-info.disabled:focus,

#custom-html-t3 .btn-info.disabled:hover,

#custom-html-t3 .btn-info[disabled].focus,

#custom-html-t3 .btn-info[disabled]:focus,

#custom-html-t3 .btn-info[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-info.focus,

#custom-html-t3 fieldset[disabled] .btn-info:focus,

#custom-html-t3 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t3 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t3 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t3 .btn-warning.focus,

#custom-html-t3 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t3 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t3 .btn-warning.active,

#custom-html-t3 .btn-warning:active,

#custom-html-t3 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-t3 .btn-warning.active.focus,

#custom-html-t3 .btn-warning.active:focus,

#custom-html-t3 .btn-warning.active:hover,

#custom-html-t3 .btn-warning:active.focus,

#custom-html-t3 .btn-warning:active:focus,

#custom-html-t3 .btn-warning:active:hover,

#custom-html-t3 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t3 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t3 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t3 .btn-warning.disabled.focus,

#custom-html-t3 .btn-warning.disabled:focus,

#custom-html-t3 .btn-warning.disabled:hover,

#custom-html-t3 .btn-warning[disabled].focus,

#custom-html-t3 .btn-warning[disabled]:focus,

#custom-html-t3 .btn-warning[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-warning.focus,

#custom-html-t3 fieldset[disabled] .btn-warning:focus,

#custom-html-t3 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t3 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t3 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t3 .btn-danger.focus,

#custom-html-t3 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t3 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t3 .btn-danger.active,

#custom-html-t3 .btn-danger:active,

#custom-html-t3 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-t3 .btn-danger.active.focus,

#custom-html-t3 .btn-danger.active:focus,

#custom-html-t3 .btn-danger.active:hover,

#custom-html-t3 .btn-danger:active.focus,

#custom-html-t3 .btn-danger:active:focus,

#custom-html-t3 .btn-danger:active:hover,

#custom-html-t3 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t3 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t3 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t3 .btn-danger.disabled.focus,

#custom-html-t3 .btn-danger.disabled:focus,

#custom-html-t3 .btn-danger.disabled:hover,

#custom-html-t3 .btn-danger[disabled].focus,

#custom-html-t3 .btn-danger[disabled]:focus,

#custom-html-t3 .btn-danger[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-danger.focus,

#custom-html-t3 fieldset[disabled] .btn-danger:focus,

#custom-html-t3 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t3 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t3 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t3 .btn-link,

#custom-html-t3 .btn-link.active,

#custom-html-t3 .btn-link:active,

#custom-html-t3 .btn-link[disabled],

#custom-html-t3 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t3 .btn-link,

#custom-html-t3 .btn-link:active,

#custom-html-t3 .btn-link:focus,

#custom-html-t3 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t3 .btn-link:focus,

#custom-html-t3 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t3 .btn-link[disabled]:focus,

#custom-html-t3 .btn-link[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-link:focus,

#custom-html-t3 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t3 .btn-group-lg > .btn,

#custom-html-t3 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t3 .btn-group-sm > .btn,

#custom-html-t3 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t3 .btn-group-xs > .btn,

#custom-html-t3 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t3 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t3 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t3 input[type=button].btn-block,

#custom-html-t3 input[type=reset].btn-block,

#custom-html-t3 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t3 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t3 .fade.in {

  opacity: 1;

}

#custom-html-t3 .collapse {

  display: none;

}

#custom-html-t3 .collapse.in {

  display: block;

}

#custom-html-t3 tr.collapse.in {

  display: table-row;

}

#custom-html-t3 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t3 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t3 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t3 .dropdown,

#custom-html-t3 .dropup {

  position: relative;

}

#custom-html-t3 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t3 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t3 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t3 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t3 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-t3 .dropdown-menu > li > a:focus,

#custom-html-t3 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t3 .dropdown-menu > .active > a,

#custom-html-t3 .dropdown-menu > .active > a:focus,

#custom-html-t3 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-t3 .dropdown-menu > .disabled > a,

#custom-html-t3 .dropdown-menu > .disabled > a:focus,

#custom-html-t3 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t3 .dropdown-menu > .disabled > a:focus,

#custom-html-t3 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t3 .open > .dropdown-menu {

  display: block;

}

#custom-html-t3 .open > a {

  outline: 0;

}

#custom-html-t3 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t3 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t3 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t3 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t3 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t3 .dropup .caret,

#custom-html-t3 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t3 .dropup .dropdown-menu,

#custom-html-t3 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-t3 .btn-group,

#custom-html-t3 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t3 .btn-group-vertical > .btn,

#custom-html-t3 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t3 .btn-group-vertical > .btn.active,

#custom-html-t3 .btn-group-vertical > .btn:active,

#custom-html-t3 .btn-group-vertical > .btn:focus,

#custom-html-t3 .btn-group-vertical > .btn:hover,

#custom-html-t3 .btn-group > .btn.active,

#custom-html-t3 .btn-group > .btn:active,

#custom-html-t3 .btn-group > .btn:focus,

#custom-html-t3 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t3 .btn-group .btn + .btn,

#custom-html-t3 .btn-group .btn + .btn-group,

#custom-html-t3 .btn-group .btn-group + .btn,

#custom-html-t3 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t3 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t3 .btn-toolbar .btn,

#custom-html-t3 .btn-toolbar .btn-group,

#custom-html-t3 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t3 .btn-toolbar > .btn,

#custom-html-t3 .btn-toolbar > .btn-group,

#custom-html-t3 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t3 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t3 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t3 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t3 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t3 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t3 .btn-group > .btn-group {

  float: left;

}

#custom-html-t3 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t3 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t3 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t3 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t3 .btn-group .dropdown-toggle:active,

#custom-html-t3 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t3 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t3 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t3 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t3 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t3 .btn .caret {

  margin-left: 0;

}

#custom-html-t3 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t3 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t3 .btn-group-vertical > .btn,

#custom-html-t3 .btn-group-vertical > .btn-group,

#custom-html-t3 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t3 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t3 .btn-group-vertical > .btn + .btn,

#custom-html-t3 .btn-group-vertical > .btn + .btn-group,

#custom-html-t3 .btn-group-vertical > .btn-group + .btn,

#custom-html-t3 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t3 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t3 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t3 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t3 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t3 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t3 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t3 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t3 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t3 .btn-group-justified > .btn,

#custom-html-t3 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t3 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t3 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t3 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t3 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t3 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t3 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t3 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t3 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t3 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t3 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t3 .input-group-lg > .form-control,

#custom-html-t3 .input-group-lg > .input-group-addon,

#custom-html-t3 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t3 select.input-group-lg > .form-control,

#custom-html-t3 select.input-group-lg > .input-group-addon,

#custom-html-t3 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t3 select[multiple].input-group-lg > .form-control,

#custom-html-t3 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t3 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t3 textarea.input-group-lg > .form-control,

#custom-html-t3 textarea.input-group-lg > .input-group-addon,

#custom-html-t3 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t3 .input-group-sm > .form-control,

#custom-html-t3 .input-group-sm > .input-group-addon,

#custom-html-t3 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t3 select.input-group-sm > .form-control,

#custom-html-t3 select.input-group-sm > .input-group-addon,

#custom-html-t3 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t3 select[multiple].input-group-sm > .form-control,

#custom-html-t3 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t3 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t3 textarea.input-group-sm > .form-control,

#custom-html-t3 textarea.input-group-sm > .input-group-addon,

#custom-html-t3 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t3 .input-group .form-control,

#custom-html-t3 .input-group-addon,

#custom-html-t3 .input-group-btn {

  display: table-cell;

}

#custom-html-t3 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t3 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t3 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t3 .input-group-addon,

#custom-html-t3 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t3 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t3 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t3 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t3 .input-group-addon input[type=checkbox],

#custom-html-t3 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t3 .input-group .form-control:first-child,

#custom-html-t3 .input-group-addon:first-child,

#custom-html-t3 .input-group-btn:first-child > .btn,

#custom-html-t3 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t3 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t3 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t3 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t3 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t3 .input-group .form-control:last-child,

#custom-html-t3 .input-group-addon:last-child,

#custom-html-t3 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t3 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t3 .input-group-btn:last-child > .btn,

#custom-html-t3 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t3 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t3 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t3 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t3 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t3 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t3 .input-group-btn > .btn:active,

#custom-html-t3 .input-group-btn > .btn:focus,

#custom-html-t3 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t3 .input-group-btn:first-child > .btn,

#custom-html-t3 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t3 .input-group-btn:last-child > .btn,

#custom-html-t3 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t3 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t3 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t3 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t3 .nav > li > a:focus,

#custom-html-t3 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t3 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t3 .nav > li.disabled > a:focus,

#custom-html-t3 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t3 .nav .open > a,

#custom-html-t3 .nav .open > a:focus,

#custom-html-t3 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t3 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t3 .nav > li > a > img {

  max-width: none;

}

#custom-html-t3 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t3 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t3 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t3 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t3 .nav-tabs > li.active > a,

#custom-html-t3 .nav-tabs > li.active > a:focus,

#custom-html-t3 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t3 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t3 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t3 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t3 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t3 .nav-tabs.nav-justified > .active > a,

#custom-html-t3 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t3 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t3 .nav-pills > li {

  float: left;

}

#custom-html-t3 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t3 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t3 .nav-pills > li.active > a,

#custom-html-t3 .nav-pills > li.active > a:focus,

#custom-html-t3 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t3 .nav-stacked > li {

  float: none;

}

#custom-html-t3 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t3 .nav-justified {

  width: 100%;

}

#custom-html-t3 .nav-justified > li {

  float: none;

}

#custom-html-t3 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t3 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t3 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t3 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t3 .nav-tabs-justified > .active > a,

#custom-html-t3 .nav-tabs-justified > .active > a:focus,

#custom-html-t3 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t3 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t3 .tab-content > .active {

  display: block;

}

#custom-html-t3 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t3 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-t3 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t3 .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-t3 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t3 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t3 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t3 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t3 .container-fluid > .navbar-collapse,

#custom-html-t3 .container-fluid > .navbar-header,

#custom-html-t3 .container > .navbar-collapse,

#custom-html-t3 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t3 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-t3 .navbar-fixed-bottom,

#custom-html-t3 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-t3 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t3 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t3 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t3 .navbar-brand:focus,

#custom-html-t3 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t3 .navbar-brand > img {

  display: block;

}

#custom-html-t3 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t3 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t3 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t3 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-t3 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t3 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t3 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t3 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t3 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t3 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t3 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t3 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-t3 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t3 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-t3 .visible-xs {

    display: block !important;

  }

  #custom-html-t3 table.visible-xs {

    display: table !important;

  }

  #custom-html-t3 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t3 td.visible-xs,

  #custom-html-t3 th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-t3 .visible-xs-block {

    display: block !important;

  }

  #custom-html-t3 .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-t3 .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-t3 .hidden-xs {

    display: none !important;

  }

  #custom-html-t3 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t3 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-t3 section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-t3 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t3 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t3 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t3 .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-t3 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t3 .tiles .tile:nth-child(1),

  #custom-html-t3 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-t3 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t3 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t3 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-t3 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t3 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t3 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-t3 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-t3 .promo-banner form {

    text-align: center;

  }

}

#custom-html-t3 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t3 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t3 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t3 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t3 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t3 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t3 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t3 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t3 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t3 .navbar-default .navbar-brand:focus,

#custom-html-t3 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t3 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t3 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t3 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t3 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t3 .navbar-default .navbar-nav > .active > a,

#custom-html-t3 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t3 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t3 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t3 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t3 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t3 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t3 .navbar-default .navbar-toggle:focus,

#custom-html-t3 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t3 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t3 .navbar-default .navbar-collapse,

#custom-html-t3 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t3 .navbar-default .navbar-nav > .open > a,

#custom-html-t3 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t3 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t3 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t3 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t3 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t3 .navbar-default .btn-link:focus,

#custom-html-t3 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-t3 .navbar-default .btn-link[disabled]:focus,

#custom-html-t3 .navbar-default .btn-link[disabled]:hover,

#custom-html-t3 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t3 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t3 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t3 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t3 .navbar-inverse .navbar-brand:focus,

#custom-html-t3 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t3 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t3 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t3 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t3 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t3 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t3 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t3 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t3 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t3 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t3 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t3 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t3 .navbar-inverse .navbar-toggle:focus,

#custom-html-t3 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t3 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t3 .navbar-inverse .navbar-collapse,

#custom-html-t3 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t3 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t3 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t3 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t3 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t3 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t3 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t3 .navbar-inverse .btn-link:focus,

#custom-html-t3 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t3 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t3 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t3 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t3 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t3 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t3 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t3 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t3 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t3 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-t3 .pagination > li {

  display: inline;

}

#custom-html-t3 .pagination > li > a,

#custom-html-t3 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t3 .pagination > li:first-child > a,

#custom-html-t3 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t3 .pagination > li:last-child > a,

#custom-html-t3 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t3 .pagination > li > a:focus,

#custom-html-t3 .pagination > li > a:hover,

#custom-html-t3 .pagination > li > span:focus,

#custom-html-t3 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t3 .pagination > .active > a,

#custom-html-t3 .pagination > .active > a:focus,

#custom-html-t3 .pagination > .active > a:hover,

#custom-html-t3 .pagination > .active > span,

#custom-html-t3 .pagination > .active > span:focus,

#custom-html-t3 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t3 .pagination > .disabled > a,

#custom-html-t3 .pagination > .disabled > a:focus,

#custom-html-t3 .pagination > .disabled > a:hover,

#custom-html-t3 .pagination > .disabled > span,

#custom-html-t3 .pagination > .disabled > span:focus,

#custom-html-t3 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t3 .pagination-lg > li > a,

#custom-html-t3 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t3 .pagination-lg > li:first-child > a,

#custom-html-t3 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t3 .pagination-lg > li:last-child > a,

#custom-html-t3 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t3 .pagination-sm > li > a,

#custom-html-t3 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t3 .pagination-sm > li:first-child > a,

#custom-html-t3 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t3 .pagination-sm > li:last-child > a,

#custom-html-t3 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t3 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t3 .pager li {

  display: inline;

}

#custom-html-t3 .pager li > a,

#custom-html-t3 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t3 .pager li > a:focus,

#custom-html-t3 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t3 .pager .next > a,

#custom-html-t3 .pager .next > span {

  float: right;

}

#custom-html-t3 .pager .previous > a,

#custom-html-t3 .pager .previous > span {

  float: left;

}

#custom-html-t3 .pager .disabled > a,

#custom-html-t3 .pager .disabled > a:focus,

#custom-html-t3 .pager .disabled > a:hover,

#custom-html-t3 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t3 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-t3 a.label:focus,

#custom-html-t3 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t3 .label:empty {

  display: none;

}

#custom-html-t3 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t3 .label-default {

  background-color: #777777;

}

#custom-html-t3 .label-default[href]:focus,

#custom-html-t3 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t3 .label-primary {

  background-color: #337ab7;

}

#custom-html-t3 .label-primary[href]:focus,

#custom-html-t3 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t3 .label-success {

  background-color: #5cb85c;

}

#custom-html-t3 .label-success[href]:focus,

#custom-html-t3 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t3 .label-info {

  background-color: #5bc0de;

}

#custom-html-t3 .label-info[href]:focus,

#custom-html-t3 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t3 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t3 .label-warning[href]:focus,

#custom-html-t3 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t3 .label-danger {

  background-color: #d9534f;

}

#custom-html-t3 .label-danger[href]:focus,

#custom-html-t3 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t3 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t3 .badge:empty {

  display: none;

}

#custom-html-t3 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t3 .btn-group-xs > .btn .badge,

#custom-html-t3 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t3 a.badge:focus,

#custom-html-t3 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t3 .list-group-item.active > .badge,

#custom-html-t3 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t3 .list-group-item > .badge {

  float: right;

}

#custom-html-t3 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t3 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t3 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t3 .jumbotron .h1,

#custom-html-t3 .jumbotron h1 {

  color: inherit;

}

#custom-html-t3 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t3 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t3 .container .jumbotron,

#custom-html-t3 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t3 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t3 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t3 .container .jumbotron,

  #custom-html-t3 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t3 .jumbotron .h1,

  #custom-html-t3 .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-t3 .carousel-control .glyphicon-chevron-left,

  #custom-html-t3 .carousel-control .glyphicon-chevron-right,

  #custom-html-t3 .carousel-control .icon-next,

  #custom-html-t3 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t3 .carousel-control .glyphicon-chevron-left,

  #custom-html-t3 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t3 .carousel-control .glyphicon-chevron-right,

  #custom-html-t3 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t3 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t3 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t3 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t3 .thumbnail a > img,

#custom-html-t3 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t3 a.thumbnail.active,

#custom-html-t3 a.thumbnail:focus,

#custom-html-t3 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t3 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t3 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t3 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t3 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t3 .alert > p,

#custom-html-t3 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t3 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t3 .alert-dismissable,

#custom-html-t3 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t3 .alert-dismissable .close,

#custom-html-t3 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t3 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t3 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-t3 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t3 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t3 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t3 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t3 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t3 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t3 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t3 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t3 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t3 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t3 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t3 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t3 .progress-bar-striped,

#custom-html-t3 .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t3 .progress-bar.active,

#custom-html-t3 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t3 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t3 .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t3 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t3 .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t3 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t3 .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t3 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t3 .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t3 .media {

  margin-top: 15px;

}

#custom-html-t3 .media:first-child {

  margin-top: 0;

}

#custom-html-t3 .media,

#custom-html-t3 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t3 .media-body {

  width: 10000px;

}

#custom-html-t3 .media-object {

  display: block;

}

#custom-html-t3 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t3 .media-right,

#custom-html-t3 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t3 .media-left,

#custom-html-t3 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t3 .media-body,

#custom-html-t3 .media-left,

#custom-html-t3 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t3 .media-middle {

  vertical-align: middle;

}

#custom-html-t3 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t3 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t3 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t3 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-t3 .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-t3 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t3 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t3 a.list-group-item,

#custom-html-t3 button.list-group-item {

  color: #555555;

}

#custom-html-t3 a.list-group-item .list-group-item-heading,

#custom-html-t3 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t3 a.list-group-item:focus,

#custom-html-t3 a.list-group-item:hover,

#custom-html-t3 button.list-group-item:focus,

#custom-html-t3 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t3 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t3 .list-group-item.disabled,

#custom-html-t3 .list-group-item.disabled:focus,

#custom-html-t3 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t3 .list-group-item.disabled .list-group-item-heading,

#custom-html-t3 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t3 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t3 .list-group-item.disabled .list-group-item-text,

#custom-html-t3 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t3 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t3 .list-group-item.active,

#custom-html-t3 .list-group-item.active:focus,

#custom-html-t3 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t3 .list-group-item.active .list-group-item-heading,

#custom-html-t3 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t3 .list-group-item.active .list-group-item-heading > small,

#custom-html-t3 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t3 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t3 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t3 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t3 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t3 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t3 .list-group-item.active .list-group-item-text,

#custom-html-t3 .list-group-item.active:focus .list-group-item-text,

#custom-html-t3 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t3 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t3 a.list-group-item-success,

#custom-html-t3 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t3 a.list-group-item-success .list-group-item-heading,

#custom-html-t3 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t3 a.list-group-item-success:focus,

#custom-html-t3 a.list-group-item-success:hover,

#custom-html-t3 button.list-group-item-success:focus,

#custom-html-t3 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t3 a.list-group-item-success.active,

#custom-html-t3 a.list-group-item-success.active:focus,

#custom-html-t3 a.list-group-item-success.active:hover,

#custom-html-t3 button.list-group-item-success.active,

#custom-html-t3 button.list-group-item-success.active:focus,

#custom-html-t3 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t3 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t3 a.list-group-item-info,

#custom-html-t3 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t3 a.list-group-item-info .list-group-item-heading,

#custom-html-t3 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t3 a.list-group-item-info:focus,

#custom-html-t3 a.list-group-item-info:hover,

#custom-html-t3 button.list-group-item-info:focus,

#custom-html-t3 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t3 a.list-group-item-info.active,

#custom-html-t3 a.list-group-item-info.active:focus,

#custom-html-t3 a.list-group-item-info.active:hover,

#custom-html-t3 button.list-group-item-info.active,

#custom-html-t3 button.list-group-item-info.active:focus,

#custom-html-t3 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t3 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t3 a.list-group-item-warning,

#custom-html-t3 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t3 a.list-group-item-warning .list-group-item-heading,

#custom-html-t3 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t3 a.list-group-item-warning:focus,

#custom-html-t3 a.list-group-item-warning:hover,

#custom-html-t3 button.list-group-item-warning:focus,

#custom-html-t3 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t3 a.list-group-item-warning.active,

#custom-html-t3 a.list-group-item-warning.active:focus,

#custom-html-t3 a.list-group-item-warning.active:hover,

#custom-html-t3 button.list-group-item-warning.active,

#custom-html-t3 button.list-group-item-warning.active:focus,

#custom-html-t3 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t3 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t3 a.list-group-item-danger,

#custom-html-t3 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t3 a.list-group-item-danger .list-group-item-heading,

#custom-html-t3 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t3 a.list-group-item-danger:focus,

#custom-html-t3 a.list-group-item-danger:hover,

#custom-html-t3 button.list-group-item-danger:focus,

#custom-html-t3 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t3 a.list-group-item-danger.active,

#custom-html-t3 a.list-group-item-danger.active:focus,

#custom-html-t3 a.list-group-item-danger.active:hover,

#custom-html-t3 button.list-group-item-danger.active,

#custom-html-t3 button.list-group-item-danger.active:focus,

#custom-html-t3 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t3 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t3 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t3 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-t3 .panel-body {

  padding: 10px 15px;

}

#custom-html-t3 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t3 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t3 .panel-title > .small,

#custom-html-t3 .panel-title > .small > a,

#custom-html-t3 .panel-title > a,

#custom-html-t3 .panel-title > small,

#custom-html-t3 .panel-title > small > a {

  color: inherit;

}

#custom-html-t3 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t3 .panel > .list-group,

#custom-html-t3 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t3 .panel > .list-group .list-group-item,

#custom-html-t3 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t3 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t3 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t3 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t3 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t3 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t3 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t3 .panel > .panel-collapse > .table,

#custom-html-t3 .panel > .table,

#custom-html-t3 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t3 .panel > .panel-collapse > .table caption,

#custom-html-t3 .panel > .table caption,

#custom-html-t3 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t3 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t3 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t3 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t3 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t3 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t3 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t3 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t3 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t3 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t3 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t3 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t3 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t3 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t3 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t3 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t3 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t3 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t3 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t3 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t3 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t3 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t3 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t3 .panel > .panel-body + .table,

#custom-html-t3 .panel > .panel-body + .table-responsive,

#custom-html-t3 .panel > .table + .panel-body,

#custom-html-t3 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t3 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t3 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t3 .panel > .table-bordered,

#custom-html-t3 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t3 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t3 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t3 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t3 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t3 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t3 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t3 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t3 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t3 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t3 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t3 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t3 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t3 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t3 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t3 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t3 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t3 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t3 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t3 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t3 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t3 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t3 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t3 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t3 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t3 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-t3 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t3 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t3 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t3 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t3 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t3 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t3 .panel-default {

  border-color: #dddddd;

}

#custom-html-t3 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t3 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t3 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t3 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t3 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t3 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t3 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t3 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t3 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t3 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t3 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t3 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t3 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t3 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-t3 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t3 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t3 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t3 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t3 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t3 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t3 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t3 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t3 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t3 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t3 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t3 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t3 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t3 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t3 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t3 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t3 .embed-responsive .embed-responsive-item,

#custom-html-t3 .embed-responsive embed,

#custom-html-t3 .embed-responsive iframe,

#custom-html-t3 .embed-responsive object,

#custom-html-t3 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t3 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t3 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t3 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t3 .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t3 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t3 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t3 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t3 .close:focus,

#custom-html-t3 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t3 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t3 .modal-open {

  overflow: hidden;

}

#custom-html-t3 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t3 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t3 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t3 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t3 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t3 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t3 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t3 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t3 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t3 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t3 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t3 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t3 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t3 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t3 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t3 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t3 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t3 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-t3 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t3 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t3 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t3 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t3 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t3 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t3 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t3 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t3 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t3 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t3 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t3 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t3 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t3 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t3 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t3 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t3 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t3 .popover.top {

  margin-top: -10px;

}

#custom-html-t3 .popover.right {

  margin-left: 10px;

}

#custom-html-t3 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t3 .popover.left {

  margin-left: -10px;

}

#custom-html-t3 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t3 .popover-content {

  padding: 9px 14px;

}

#custom-html-t3 .popover > .arrow,

#custom-html-t3 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t3 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t3 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t3 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t3 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t3 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t3 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t3 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t3 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t3 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t3 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t3 .carousel {

  position: relative;

}

#custom-html-t3 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t3 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t3 .carousel-inner > .item > a > img,

#custom-html-t3 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t3 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t3 .carousel-inner > .item.active.right,

  #custom-html-t3 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t3 .carousel-inner > .item.active.left,

  #custom-html-t3 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t3 .carousel-inner > .item.active,

  #custom-html-t3 .carousel-inner > .item.next.left,

  #custom-html-t3 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t3 .carousel-inner > .active,

#custom-html-t3 .carousel-inner > .next,

#custom-html-t3 .carousel-inner > .prev {

  display: block;

}

#custom-html-t3 .carousel-inner > .active {

  left: 0;

}

#custom-html-t3 .carousel-inner > .next,

#custom-html-t3 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t3 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t3 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t3 .carousel-inner > .next.left,

#custom-html-t3 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t3 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t3 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t3 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t3 .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t3 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t3 .carousel-control:focus,

#custom-html-t3 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t3 .carousel-control .glyphicon-chevron-left,

#custom-html-t3 .carousel-control .glyphicon-chevron-right,

#custom-html-t3 .carousel-control .icon-next,

#custom-html-t3 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t3 .carousel-control .glyphicon-chevron-left,

#custom-html-t3 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t3 .carousel-control .glyphicon-chevron-right,

#custom-html-t3 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t3 .carousel-control .icon-next,

#custom-html-t3 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t3 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t3 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t3 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t3 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t3 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t3 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t3 .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-t3 .btn-group-vertical > .btn-group:after,

#custom-html-t3 .btn-group-vertical > .btn-group:before,

#custom-html-t3 .btn-toolbar:after,

#custom-html-t3 .btn-toolbar:before,

#custom-html-t3 .clearfix:after,

#custom-html-t3 .clearfix:before,

#custom-html-t3 .container-fluid:after,

#custom-html-t3 .container-fluid:before,

#custom-html-t3 .container:after,

#custom-html-t3 .container:before,

#custom-html-t3 .dl-horizontal dd:after,

#custom-html-t3 .dl-horizontal dd:before,

#custom-html-t3 .form-horizontal .form-group:after,

#custom-html-t3 .form-horizontal .form-group:before,

#custom-html-t3 .modal-footer:after,

#custom-html-t3 .modal-footer:before,

#custom-html-t3 .modal-header:after,

#custom-html-t3 .modal-header:before,

#custom-html-t3 .nav:after,

#custom-html-t3 .nav:before,

#custom-html-t3 .navbar-collapse:after,

#custom-html-t3 .navbar-collapse:before,

#custom-html-t3 .navbar-header:after,

#custom-html-t3 .navbar-header:before,

#custom-html-t3 .navbar:after,

#custom-html-t3 .navbar:before,

#custom-html-t3 .pager:after,

#custom-html-t3 .pager:before,

#custom-html-t3 .panel-body:after,

#custom-html-t3 .panel-body:before,

#custom-html-t3 .row:after,

#custom-html-t3 .row:before {

  display: table;

  content: " ";

}

#custom-html-t3 .btn-group-vertical > .btn-group:after,

#custom-html-t3 .btn-toolbar:after,

#custom-html-t3 .clearfix:after,

#custom-html-t3 .container-fluid:after,

#custom-html-t3 .container:after,

#custom-html-t3 .dl-horizontal dd:after,

#custom-html-t3 .form-horizontal .form-group:after,

#custom-html-t3 .modal-footer:after,

#custom-html-t3 .modal-header:after,

#custom-html-t3 .nav:after,

#custom-html-t3 .navbar-collapse:after,

#custom-html-t3 .navbar-header:after,

#custom-html-t3 .navbar:after,

#custom-html-t3 .pager:after,

#custom-html-t3 .panel-body:after,

#custom-html-t3 .row:after {

  clear: both;

}

#custom-html-t3 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t3 .pull-right {

  float: right !important;

}

#custom-html-t3 .pull-left {

  float: left !important;

}

#custom-html-t3 .hide {

  display: none !important;

}

#custom-html-t3 .show {

  display: block !important;

}

#custom-html-t3 .invisible {

  visibility: hidden;

}

#custom-html-t3 .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t3 .hidden {

  display: none !important;

}

#custom-html-t3 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t3 .visible-lg,

#custom-html-t3 .visible-md,

#custom-html-t3 .visible-sm,

#custom-html-t3 .visible-xs {

  display: none !important;

}

#custom-html-t3 .visible-lg-block,

#custom-html-t3 .visible-lg-inline,

#custom-html-t3 .visible-lg-inline-block,

#custom-html-t3 .visible-md-block,

#custom-html-t3 .visible-md-inline,

#custom-html-t3 .visible-md-inline-block,

#custom-html-t3 .visible-sm-block,

#custom-html-t3 .visible-sm-inline,

#custom-html-t3 .visible-sm-inline-block,

#custom-html-t3 .visible-xs-block,

#custom-html-t3 .visible-xs-inline,

#custom-html-t3 .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t3 .visible-sm {

    display: block !important;

  }

  #custom-html-t3 table.visible-sm {

    display: table !important;

  }

  #custom-html-t3 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t3 td.visible-sm,

  #custom-html-t3 th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-t3 .visible-sm-block {

    display: block !important;

  }

  #custom-html-t3 .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-t3 .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-t3 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t3 .visible-md {

    display: block !important;

  }

  #custom-html-t3 table.visible-md {

    display: table !important;

  }

  #custom-html-t3 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t3 td.visible-md,

  #custom-html-t3 th.visible-md {

    display: table-cell !important;

  }

  #custom-html-t3 .visible-md-block {

    display: block !important;

  }

  #custom-html-t3 .visible-md-inline {

    display: inline !important;

  }

  #custom-html-t3 .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-t3 .hidden-md {

    display: none !important;

  }

}

#custom-html-t3 .visible-print {

  display: none !important;

}

#custom-html-t3 .visible-print-block {

  display: none !important;

}

#custom-html-t3 .visible-print-inline {

  display: none !important;

}

#custom-html-t3 .visible-print-inline-block {

  display: none !important;

}

#custom-html-t3 .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-t3 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t3 .intl-tel-input .hide {

  display: none;

}

#custom-html-t3 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t3 .intl-tel-input input,

#custom-html-t3 .intl-tel-input input[type=tel],

#custom-html-t3 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t3 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t3 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t3 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t3 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t3 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t3 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t3 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t3 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t3 .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-t3 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t3 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t3 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t3 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t3 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t3 .intl-tel-input .country-list .country-name,

#custom-html-t3 .intl-tel-input .country-list .dial-code,

#custom-html-t3 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t3 .intl-tel-input .country-list .country-name,

#custom-html-t3 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t3 .intl-tel-input.allow-dropdown input,

#custom-html-t3 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t3 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t3 .intl-tel-input.separate-dial-code input,

#custom-html-t3 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t3 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t3 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t3 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t3 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t3 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t3 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t3 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t3 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t3 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t3 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t3 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t3 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t3 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t3 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t3 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t3 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t3 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t3 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-t3 .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t3 .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t3 .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t3 .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t3 .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-t3 .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t3 .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t3 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t3 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t3 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t3 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t3 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t3 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t3 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t3 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t3 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t3 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t3 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t3 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t3 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t3 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t3 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t3 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t3 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t3 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t3 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t3 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t3 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t3 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t3 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t3 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t3 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t3 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t3 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t3 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t3 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t3 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t3 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t3 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t3 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t3 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t3 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t3 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t3 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t3 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t3 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t3 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t3 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t3 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t3 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t3 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t3 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t3 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t3 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t3 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t3 .iti-flag.cp {


  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t3 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t3 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t3 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t3 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t3 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t3 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t3 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t3 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t3 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t3 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t3 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t3 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t3 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t3 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t3 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t3 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t3 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t3 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t3 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t3 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t3 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t3 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t3 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t3 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t3 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t3 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t3 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t3 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t3 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t3 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t3 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t3 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t3 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t3 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t3 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t3 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t3 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t3 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t3 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t3 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t3 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t3 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t3 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t3 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t3 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t3 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t3 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t3 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t3 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t3 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t3 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t3 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t3 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t3 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-t3 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t3 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t3 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t3 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t3 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t3 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t3 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t3 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t3 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t3 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t3 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t3 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t3 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t3 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t3 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t3 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t3 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t3 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t3 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t3 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t3 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t3 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t3 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t3 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t3 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t3 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t3 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t3 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t3 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t3 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t3 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t3 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t3 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t3 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t3 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t3 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t3 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t3 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t3 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t3 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t3 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t3 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t3 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t3 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t3 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t3 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t3 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t3 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t3 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t3 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t3 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t3 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t3 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t3 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t3 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t3 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t3 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t3 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t3 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t3 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t3 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t3 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t3 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t3 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t3 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t3 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t3 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t3 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t3 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t3 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t3 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t3 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t3 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t3 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t3 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t3 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t3 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t3 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t3 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t3 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t3 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t3 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t3 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t3 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t3 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t3 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t3 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t3 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t3 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t3 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t3 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t3 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t3 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t3 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t3 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t3 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t3 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t3 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t3 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t3 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t3 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t3 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t3 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t3 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t3 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t3 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t3 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t3 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t3 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t3 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t3 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t3 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t3 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t3 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t3 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t3 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t3 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t3 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t3 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-t3 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t3 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t3 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t3 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t3 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t3 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t3 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t3 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t3 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t3 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t3 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t3 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t3 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t3 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t3 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t3 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t3 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-t3 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t3 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t3 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t3 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t3 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t3 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t3 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t3 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t3 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t3 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t3 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t3 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t3 body,

#custom-html-t3 button,

#custom-html-t3 input,

#custom-html-t3 select,

#custom-html-t3 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t3 h1,

#custom-html-t3 h2,

#custom-html-t3 h3,

#custom-html-t3 h4,

#custom-html-t3 h5,

#custom-html-t3 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-t3 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t3 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t3 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t3 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t3 .navbar-main .navbar-nav > .active > a,

#custom-html-t3 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t3 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t3 .navbar-main .navbar-nav > .open > a,

#custom-html-t3 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t3 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t3 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t3 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t3 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t3 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-t3 .navbar-header {

    float: none;

  }

  #custom-html-t3 .navbar-left,

  #custom-html-t3 .navbar-right {

    float: none !important;

  }

  #custom-html-t3 .navbar-toggle {

    display: block;

  }

  #custom-html-t3 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t3 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t3 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t3 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t3 .navbar-nav > li {

    float: none;

  }

  #custom-html-t3 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t3 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-t3 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t3 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t3 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-t3 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t3 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t3 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-t3 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t3 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t3 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t3 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t3 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t3 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-t3 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t3 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-t3 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t3 a.list-group-item.active,

#custom-html-t3 a.list-group-item.active:focus,

#custom-html-t3 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t3 .dropdown-menu > li > a:focus,

#custom-html-t3 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t3 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t3 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t3 body,

#custom-html-t3 html {

  height: 100%;

}

#custom-html-t3 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t3 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t3 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t3 section#header .search {

  margin: 20px 0;

}

#custom-html-t3 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t3 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t3 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t3 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t3 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t3 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t3 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t3 section#footer {

    line-height: 32px;

  }

}

#custom-html-t3 section#footer .back-to-top {

  float: right;

}

#custom-html-t3 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t3 .adminreturndiv {

  display: none !important;

}

#custom-html-t3 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t3 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t3 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t3 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t3 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t3 .navbar-main .navbar-toggle:focus,

#custom-html-t3 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t3 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t3 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-t3 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t3 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t3 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t3 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t3 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t3 .h1,

  #custom-html-t3 h1 {

    font-size: 26px;

  }

  #custom-html-t3 .h2,

  #custom-html-t3 h2 {

    font-size: 20px;

  }

  #custom-html-t3 .h3,

  #custom-html-t3 h3 {

    font-size: 16px;

  }

  #custom-html-t3 .h4,

  #custom-html-t3 h4 {

    font-size: 14px;

  }

  #custom-html-t3 .h5,

  #custom-html-t3 h5 {

    font-size: 12px;

  }

  #custom-html-t3 .h6,

  #custom-html-t3 h6 {

    font-size: 11px;

  }

  #custom-html-t3 div.header-lined small {

    display: none;

  }

  #custom-html-t3 .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-t3 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t3 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t3 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t3 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-t3 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t3 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t3 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t3 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t3 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t3 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-t3 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t3 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t3 .margin-10 {

  margin: 10px;

}

#custom-html-t3 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t3 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t3 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t3 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t3 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t3 .input-inline {

  display: inline-block;

}

#custom-html-t3 .input-inline-100 {

  width: 100px;

}

#custom-html-t3 .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-t3 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t3 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t3 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-t3 i.icon-rss {

  color: #ff6600;

}

#custom-html-t3 section#main-menu {

  background-color: #000000;

}

#custom-html-t3 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t3 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t3 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t3 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t3 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t3 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t3 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t3 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t3 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t3 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t3 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t3 section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-t3 .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-t3 .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-t3 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t3 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t3 .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-t3 #stepResults {

    font-size: 14px;

  }

  #custom-html-t3 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t3 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-t3 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t3 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t3 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t3 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t3 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t3 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t3 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t3 .home-shortcuts li span {

  display: none;

}

#custom-html-t3 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t3 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-t3 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t3 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t3 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t3 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t3 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t3 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t3 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t3 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t3 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t3 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t3 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t3 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t3 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t3 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t3 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t3 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t3 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t3 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t3 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t3 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t3 .tiles .tile:last-child {

  border: 0;

}

#custom-html-t3 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t3 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t3 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t3 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t3 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t3 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t3 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t3 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t3 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t3 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t3 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t3 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t3 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t3 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t3 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t3 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t3 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t3 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t3 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t3 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t3 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t3 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t3 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t3 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t3 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t3 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t3 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t3 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t3 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t3 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t3 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t3 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t3 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t3 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t3 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t3 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t3 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t3 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t3 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t3 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t3 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t3 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t3 ul.top-nav > li,

#custom-html-t3 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t3 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t3 ul.top-nav > li:active > a,

#custom-html-t3 ul.top-nav > li:focus > a,

#custom-html-t3 ul.top-nav > li:hover > a,

#custom-html-t3 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t3 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t3 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t3 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t3 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-t3 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t3 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t3 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t3 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t3 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t3 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t3 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t3 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-t3 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t3 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-t3 .domain-check-availability {

  width: 100px;

}

#custom-html-t3 .domain-step-options {

  min-height: 300px;

}

#custom-html-t3 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t3 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t3 .domain-checker-invalid,

#custom-html-t3 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t3 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t3 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t3 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t3 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t3 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t3 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t3 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t3 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-t3 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t3 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t3 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t3 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t3 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t3 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t3 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t3 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t3 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t3 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t3 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t3 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t3 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t3 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t3 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t3 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t3 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t3 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t3 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t3 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t3 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t3 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t3 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t3 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t3 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t3 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t3 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t3 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t3 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t3 div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t3 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t3 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t3 .product-status-active {

  background-color: #46a546;

}

#custom-html-t3 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t3 .product-status-cancelled,

#custom-html-t3 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t3 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t3 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t3 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t3 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t3 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t3 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t3 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t3 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t3 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t3 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t3 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t3 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t3 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t3 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-t3 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t3 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t3 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t3 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t3 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t3 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t3 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t3 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t3 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t3 .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-t3 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t3 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t3 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t3 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t3 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t3 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t3 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t3 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t3 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t3 .status-pending {

  color: #d9534f;

}

#custom-html-t3 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t3 .status-active,

#custom-html-t3 .status-completed,

#custom-html-t3 .status-open {

  color: #3fad46;

}

#custom-html-t3 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t3 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t3 .status-answered,

#custom-html-t3 .status-fraud {

  color: #000000;

}

#custom-html-t3 .status-expired,

#custom-html-t3 .status-transferred.away {

  color: #004258;

}

#custom-html-t3 .status-cancelled {

  color: #87939f;

}

#custom-html-t3 .status-terminated {

  color: #666666;

}

#custom-html-t3 .status-onhold {

  color: #224488;

}

#custom-html-t3 .status-inprogress {

  color: #cc0000;

}

#custom-html-t3 .status-closed {

  color: #888888;

}

#custom-html-t3 .status-paid {

  color: #498302;

}

#custom-html-t3 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t3 .status-collections {

  color: #9a141e;

}

#custom-html-t3 .status-refunded {

  color: #319fc3;

}

#custom-html-t3 .status-delivered {

  color: #224488;

}

#custom-html-t3 .status-accepted {

  color: #498302;

}

#custom-html-t3 .status-dead,

#custom-html-t3 .status-lost {

  color: #000000;

}

#custom-html-t3 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t3 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t3 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t3 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t3 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t3 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t3 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t3 .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-t3 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t3 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t3 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t3 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t3 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t3 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t3 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t3 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t3 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t3 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t3 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t3 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t3 .ticket-reply .rating,

#custom-html-t3 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t3 .ticket-reply .rating span.star,

#custom-html-t3 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t3 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t3 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t3 .ticket-reply .rating span.star:before,

#custom-html-t3 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t3 .ticket-reply .rating span.star:hover:before,

#custom-html-t3 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t3 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t3 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t3 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t3 .ticket-reply .clear {

  clear: both;

}

#custom-html-t3 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t3 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t3 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t3 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t3 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t3 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t3 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t3 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t3 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t3 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-t3 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t3 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t3 .popover-user-notifications ul li i.far,

#custom-html-t3 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t3 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t3 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t3 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t3 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t3 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t3 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t3 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t3 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t3 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t3 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t3 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t3 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t3 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t3 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t3 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t3 div.credit-card div.end {

  clear: both;

}

#custom-html-t3 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t3 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t3 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t3 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t3 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t3 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t3 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t3 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t3 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t3 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t3 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t3 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t3 .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-t3 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t3 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t3 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t3 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t3 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t3 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t3 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t3 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t3 .kb-category a small {

  color: #888888;

}

#custom-html-t3 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t3 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t3 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t3 .kbarticles a.admin-inline-edit,

#custom-html-t3 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t3 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t3 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t3 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t3 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t3 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t3 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t3 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t3 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t3 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t3 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t3 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t3 #stepResults {

  font-size: 20px;

}

#custom-html-t3 #stepResults .label {

  font-size: 20px;

}

#custom-html-t3 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t3 h3.with-badge i,

#custom-html-t3 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t3 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-t3 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t3 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t3 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t3 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t3 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t3 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t3 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t3 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t3 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t3 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t3 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t3 .login-popover {

  font-size: 12px;

}

#custom-html-t3 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t3 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t3 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t3 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t3 .error-container {

  text-align: center;

}

#custom-html-t3 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t3 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t3 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t3 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t3 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t3 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t3 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t3 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t3 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t3 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-t3 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t3 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t3 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t3 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t3 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t3 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t3 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t3 .email-verification .btn:active,

#custom-html-t3 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t3 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t3 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t3 .email-verification .far,

#custom-html-t3 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-t3 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t3 .email-verification.success .far,

#custom-html-t3 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t3 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t3 .email-verification.failed .far,

#custom-html-t3 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t3 .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-t3 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t3 .md-editor > .md-preview,

#custom-html-t3 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t3 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t3 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t3 .small-font {

  font-size: 0.9em;

}

#custom-html-t3 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t3 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t3 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t3 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t3 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t3 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t3 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t3 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t3 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t3 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t3 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t3 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t3 .panel-heading i.fab,

#custom-html-t3 .panel-heading i.fal,

#custom-html-t3 .panel-heading i.far,

#custom-html-t3 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t3 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t3 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t3 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t3 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t3 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t3 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t3 .panel-sidebar .list-group-item.disabled,

#custom-html-t3 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t3 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t3 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t3 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t3 .panel-sidebar a.list-group-item.active,

#custom-html-t3 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t3 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t3 .panel-sidebar a.list-group-item.active i,

#custom-html-t3 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t3 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t3 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t3 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t3 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t3 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t3 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t3 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t3 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t3 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t3 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t3 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t3 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t3 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t3 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t3 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-t3 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t3 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t3 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t3 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t3 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t3 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t3 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t3 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t3 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t3 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t3 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t3 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t3 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-t3 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t3 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t3 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t3 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t3 .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-t3 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t3 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t3 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t3 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t3 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t3 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t3 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t3 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t3 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t3 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t3 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t3 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t3 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t3 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t3 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t3 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t3 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t3 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t3 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t3 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t3 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t3 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t3 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t3 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t3 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t3 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t3 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t3 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t3 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t3 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t3 .panel-mc-sso .btn,

#custom-html-t3 .panel-mc-sso .form-control,

#custom-html-t3 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t3 .panel-mc-sso small {

  display: block;

}

#custom-html-t3 .social-signin-btns {

  text-align: center;

}

#custom-html-t3 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t3 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t3 .btn-social i.far,

#custom-html-t3 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-facebook.active,

#custom-html-t3 .btn-facebook:active,

#custom-html-t3 .btn-facebook:focus,

#custom-html-t3 .btn-facebook:hover,

#custom-html-t3 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-facebook.active,

#custom-html-t3 .btn-facebook:active,

#custom-html-t3 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t3 .btn-facebook.disabled,

#custom-html-t3 .btn-facebook.disabled.active,

#custom-html-t3 .btn-facebook.disabled:active,

#custom-html-t3 .btn-facebook.disabled:focus,

#custom-html-t3 .btn-facebook.disabled:hover,

#custom-html-t3 .btn-facebook[disabled],

#custom-html-t3 .btn-facebook[disabled].active,

#custom-html-t3 .btn-facebook[disabled]:active,

#custom-html-t3 .btn-facebook[disabled]:focus,

#custom-html-t3 .btn-facebook[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-facebook,

#custom-html-t3 fieldset[disabled] .btn-facebook.active,

#custom-html-t3 fieldset[disabled] .btn-facebook:active,

#custom-html-t3 fieldset[disabled] .btn-facebook:focus,

#custom-html-t3 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-google.active,

#custom-html-t3 .btn-google:active,

#custom-html-t3 .btn-google:focus,

#custom-html-t3 .btn-google:hover,

#custom-html-t3 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-google.active,

#custom-html-t3 .btn-google:active,

#custom-html-t3 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t3 .btn-google-plus.disabled.active,

#custom-html-t3 .btn-google-plus.disabled:active,

#custom-html-t3 .btn-google-plus.disabled:focus,

#custom-html-t3 .btn-google-plus[disabled].active,

#custom-html-t3 .btn-google-plus[disabled]:active,

#custom-html-t3 .btn-google-plus[disabled]:focus,

#custom-html-t3 .btn-google-plus[disabled]:hover,

#custom-html-t3 .btn-google.disabled,

#custom-html-t3 .btn-google.disabled:hover,

#custom-html-t3 .btn-google[disabled],

#custom-html-t3 fieldset[disabled] .btn-google,

#custom-html-t3 fieldset[disabled] .btn-google-plus.active,

#custom-html-t3 fieldset[disabled] .btn-google-plus:active,

#custom-html-t3 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t3 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-twitter.active,

#custom-html-t3 .btn-twitter:active,

#custom-html-t3 .btn-twitter:focus,

#custom-html-t3 .btn-twitter:hover,

#custom-html-t3 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-twitter.active,

#custom-html-t3 .btn-twitter:active,

#custom-html-t3 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t3 .btn-twitter.disabled,

#custom-html-t3 .btn-twitter.disabled.active,

#custom-html-t3 .btn-twitter.disabled:active,

#custom-html-t3 .btn-twitter.disabled:focus,

#custom-html-t3 .btn-twitter.disabled:hover,

#custom-html-t3 .btn-twitter[disabled],

#custom-html-t3 .btn-twitter[disabled].active,

#custom-html-t3 .btn-twitter[disabled]:active,

#custom-html-t3 .btn-twitter[disabled]:focus,

#custom-html-t3 .btn-twitter[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-twitter,

#custom-html-t3 fieldset[disabled] .btn-twitter.active,

#custom-html-t3 fieldset[disabled] .btn-twitter:active,

#custom-html-t3 fieldset[disabled] .btn-twitter:focus,

#custom-html-t3 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t3 .providerLinkingFeedback {

  display: none;

}

#custom-html-t3 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t3 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t3 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t3 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t3 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t3 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t3 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t3 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t3 #registration .field,

#custom-html-t3 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t3 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t3 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t3 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t3 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t3 #registration textarea.field {

  height: auto;

}

#custom-html-t3 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t3 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t3 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t3 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t3 #registration .field[disabled],

#custom-html-t3 #registration .field[readonly],

#custom-html-t3 #registration .form-control[disabled],

#custom-html-t3 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t3 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t3 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t3 .upgrade .product-to-be-upgraded h4,

#custom-html-t3 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t3 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t3 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t3 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t3 .upgrade .products .product .current,

#custom-html-t3 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t3 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t3 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t3 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-t3 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t3 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t3 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t3 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t3 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t3 .upgrade .products .far,

#custom-html-t3 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t3 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t3 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t3 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t3 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t3 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t3 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .bootstrap-switch input[type=checkbox],

#custom-html-t3 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t3 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t3 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t3 .md-editor .md-footer,

#custom-html-t3 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t3 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t3 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t3 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t3 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t3 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t3 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t3 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t3 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t3 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t3 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t3 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t3 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t3 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t3 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t3 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t3 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t3 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t3 table.dataTable td,

#custom-html-t3 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t3 table.dataTable td.dataTables_empty,

#custom-html-t3 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t3 table.dataTable.nowrap td,

#custom-html-t3 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t3 table.dataTable thead > tr > td.sorting,

#custom-html-t3 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t3 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t3 table.dataTable thead > tr > th.sorting,

#custom-html-t3 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t3 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t3 table.dataTable thead > tr > td:active,

#custom-html-t3 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t3 table.dataTable thead .sorting,

#custom-html-t3 table.dataTable thead .sorting_asc,

#custom-html-t3 table.dataTable thead .sorting_asc_disabled,

#custom-html-t3 table.dataTable thead .sorting_desc,

#custom-html-t3 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t3 table.dataTable thead .sorting:after,

#custom-html-t3 table.dataTable thead .sorting_asc:after,

#custom-html-t3 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t3 table.dataTable thead .sorting_desc:after,

#custom-html-t3 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t3 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t3 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t3 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t3 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t3 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t3 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t3 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t3 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t3 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t3 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t3 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t3 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t3 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-t3 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t3 table.dataTable.table-condensed .sorting:after,

#custom-html-t3 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t3 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t3 table.table-bordered.dataTable td,

#custom-html-t3 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t3 table.table-bordered.dataTable td:last-child,

#custom-html-t3 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t3 table.table-bordered.dataTable tbody td,

#custom-html-t3 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t3 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t3 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t3 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t3 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t3 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t3 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t3 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t3 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t3 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t3 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t3 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t3 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t3 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t3 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t3 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t3 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t3 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t3 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t3 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t3 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t3 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t3 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t3 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t3 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t3 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-t3 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t3 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t3 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t3 .multiselect-container > li {

  padding: 0;

}

#custom-html-t3 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t3 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t3 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t3 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t3 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t3 .multiselect-container > li > a > label.checkbox,

#custom-html-t3 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t3 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t3 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t3 .form-inline .multiselect-container label.checkbox,

#custom-html-t3 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t3 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t3 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-t3 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-t3 body {

  margin: 0;

}

#custom-html-t3 article,

#custom-html-t3 aside,

#custom-html-t3 details,

#custom-html-t3 figcaption,

#custom-html-t3 figure,

#custom-html-t3 footer,

#custom-html-t3 header,

#custom-html-t3 hgroup,

#custom-html-t3 main,

#custom-html-t3 menu,

#custom-html-t3 nav,

#custom-html-t3 section,

#custom-html-t3 summary {

  display: block;

}

#custom-html-t3 audio,

#custom-html-t3 canvas,

#custom-html-t3 progress,

#custom-html-t3 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t3 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t3 [hidden],

#custom-html-t3 template {

  display: none;

}

#custom-html-t3 a {

  background-color: transparent;

}

#custom-html-t3 a:active,

#custom-html-t3 a:hover {

  outline: 0;

}

#custom-html-t3 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t3 b,

#custom-html-t3 strong {

  font-weight: 700;

}

#custom-html-t3 dfn {

  font-style: italic;

}

#custom-html-t3 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t3 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t3 small {

  font-size: 80%;

}

#custom-html-t3 sub,

#custom-html-t3 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t3 sup {

  top: -0.5em;

}

#custom-html-t3 sub {

  bottom: -0.25em;

}

#custom-html-t3 img {

  border: 0;

}

#custom-html-t3 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t3 figure {

  margin: 1em 40px;

}

#custom-html-t3 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t3 pre {

  overflow: auto;

}

#custom-html-t3 code,

#custom-html-t3 kbd,

#custom-html-t3 pre,

#custom-html-t3 samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-t3 button,

#custom-html-t3 input,

#custom-html-t3 optgroup,

#custom-html-t3 select,

#custom-html-t3 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t3 button {

  overflow: visible;

}

#custom-html-t3 button,

#custom-html-t3 select {

  text-transform: none;

}

#custom-html-t3 button,

#custom-html-t3 html input[type=button],

#custom-html-t3 input[type=reset],

#custom-html-t3 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t3 button[disabled],

#custom-html-t3 html input[disabled] {

  cursor: default;

}

#custom-html-t3 button::-moz-focus-inner,

#custom-html-t3 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t3 input {

  line-height: normal;

}

#custom-html-t3 input[type=checkbox],

#custom-html-t3 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-t3 input[type=number]::-webkit-inner-spin-button,

#custom-html-t3 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t3 input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-t3 input[type=search]::-webkit-search-cancel-button,

#custom-html-t3 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t3 fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-t3 legend {

  padding: 0;

  border: 0;

}

#custom-html-t3 textarea {

  overflow: auto;

}

#custom-html-t3 optgroup {

  font-weight: 700;

}

#custom-html-t3 table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-t3 td,

#custom-html-t3 th {

  padding: 0;

}

@media print {

  #custom-html-t3 *,

  #custom-html-t3 :after,

  #custom-html-t3 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t3 a,

  #custom-html-t3 a:visited {

    text-decoration: underline;

  }

  #custom-html-t3 a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-t3 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t3 a[href^="#"]:after,

  #custom-html-t3 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t3 blockquote,

  #custom-html-t3 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t3 thead {

    display: table-header-group;

  }

  #custom-html-t3 img,

  #custom-html-t3 tr {

    page-break-inside: avoid;

  }

  #custom-html-t3 img {

    max-width: 100% !important;

  }

  #custom-html-t3 h2,

  #custom-html-t3 h3,

  #custom-html-t3 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t3 h2,

  #custom-html-t3 h3 {

    page-break-after: avoid;

  }

  #custom-html-t3 .navbar {

    display: none;

  }

  #custom-html-t3 .btn > .caret,

  #custom-html-t3 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t3 .label {

    border: 1px solid #000000;

  }

  #custom-html-t3 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t3 .table td,

  #custom-html-t3 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t3 .table-bordered td,

  #custom-html-t3 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t3 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t3 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t3 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t3 .glyphicon-eur:before,

#custom-html-t3 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t3 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t3 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t3 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t3 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t3 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t3 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t3 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t3 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-t3 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t3 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t3 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t3 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t3 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t3 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t3 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t3 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t3 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t3 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t3 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t3 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t3 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t3 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t3 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t3 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t3 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t3 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t3 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t3 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t3 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t3 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t3 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t3 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t3 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t3 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t3 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t3 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t3 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t3 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t3 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t3 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t3 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t3 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t3 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t3 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t3 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t3 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t3 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t3 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t3 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t3 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t3 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t3 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t3 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t3 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t3 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t3 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t3 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t3 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t3 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t3 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t3 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t3 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t3 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t3 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t3 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t3 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t3 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t3 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t3 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t3 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t3 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t3 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t3 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t3 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t3 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t3 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t3 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t3 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t3 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t3 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t3 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t3 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t3 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t3 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t3 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t3 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t3 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t3 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t3 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t3 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t3 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t3 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t3 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t3 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t3 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t3 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t3 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t3 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t3 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t3 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t3 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t3 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t3 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t3 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t3 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t3 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t3 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t3 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t3 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t3 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t3 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t3 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t3 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t3 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t3 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t3 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t3 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t3 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t3 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t3 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t3 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-t3 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t3 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t3 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t3 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t3 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t3 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t3 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t3 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t3 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t3 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t3 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t3 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t3 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t3 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t3 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t3 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t3 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t3 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t3 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t3 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t3 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t3 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t3 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t3 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t3 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t3 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t3 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t3 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t3 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t3 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-t3 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t3 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t3 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t3 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t3 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t3 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t3 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t3 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t3 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t3 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t3 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t3 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t3 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t3 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t3 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t3 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t3 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t3 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t3 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t3 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t3 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t3 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t3 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t3 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t3 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t3 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t3 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t3 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t3 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t3 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t3 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t3 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t3 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t3 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t3 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t3 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t3 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t3 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t3 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t3 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t3 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t3 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t3 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t3 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t3 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t3 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t3 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t3 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t3 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t3 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t3 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t3 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t3 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t3 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t3 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t3 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t3 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t3 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t3 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t3 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t3 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t3 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t3 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t3 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t3 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t3 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t3 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-t3 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t3 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t3 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t3 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t3 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t3 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t3 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t3 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t3 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t3 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t3 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t3 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t3 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t3 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t3 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t3 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t3 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t3 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t3 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t3 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t3 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t3 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t3 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t3 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t3 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t3 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t3 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t3 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t3 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t3 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t3 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t3 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t3 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t3 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t3 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t3 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t3 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t3 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t3 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t3 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t3 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t3 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t3 :after,

#custom-html-t3 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t3 html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t3 body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-t3 button,

#custom-html-t3 input,

#custom-html-t3 select,

#custom-html-t3 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t3 a {

  color: #000;

  text-decoration: none;

}

#custom-html-t3 a:focus,

#custom-html-t3 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t3 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t3 figure {

  margin: 0;

}

#custom-html-t3 img {

  vertical-align: middle;

}

#custom-html-t3 .carousel-inner > .item > a > img,

#custom-html-t3 .carousel-inner > .item > img,

#custom-html-t3 .img-responsive,

#custom-html-t3 .thumbnail a > img,

#custom-html-t3 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t3 .img-rounded {

  border-radius: 6px;

}

#custom-html-t3 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t3 .img-circle {

  border-radius: 50%;

}

#custom-html-t3 hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t3 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t3 .sr-only-focusable:active,

#custom-html-t3 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t3 [role=button] {

  cursor: pointer;

}

#custom-html-t3 .h1,

#custom-html-t3 .h2,

#custom-html-t3 .h3,

#custom-html-t3 .h4,

#custom-html-t3 .h5,

#custom-html-t3 .h6,

#custom-html-t3 h1,

#custom-html-t3 h2,

#custom-html-t3 h3,

#custom-html-t3 h4,

#custom-html-t3 h5,

#custom-html-t3 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t3 .h1 .small,

#custom-html-t3 .h1 small,

#custom-html-t3 .h2 .small,

#custom-html-t3 .h2 small,

#custom-html-t3 .h3 .small,

#custom-html-t3 .h3 small,

#custom-html-t3 .h4 .small,

#custom-html-t3 .h4 small,

#custom-html-t3 .h5 .small,

#custom-html-t3 .h5 small,

#custom-html-t3 .h6 .small,

#custom-html-t3 .h6 small,

#custom-html-t3 h1 .small,

#custom-html-t3 h1 small,

#custom-html-t3 h2 .small,

#custom-html-t3 h2 small,

#custom-html-t3 h3 .small,

#custom-html-t3 h3 small,

#custom-html-t3 h4 .small,

#custom-html-t3 h4 small,

#custom-html-t3 h5 .small,

#custom-html-t3 h5 small,

#custom-html-t3 h6 .small,

#custom-html-t3 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t3 .h1,

#custom-html-t3 .h2,

#custom-html-t3 .h3,

#custom-html-t3 h1,

#custom-html-t3 h2,

#custom-html-t3 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t3 .h1 .small,

#custom-html-t3 .h1 small,

#custom-html-t3 .h2 .small,

#custom-html-t3 .h2 small,

#custom-html-t3 .h3 .small,

#custom-html-t3 .h3 small,

#custom-html-t3 h1 .small,

#custom-html-t3 h1 small,

#custom-html-t3 h2 .small,

#custom-html-t3 h2 small,

#custom-html-t3 h3 .small,

#custom-html-t3 h3 small {

  font-size: 65%;

}

#custom-html-t3 .h4,

#custom-html-t3 .h5,

#custom-html-t3 .h6,

#custom-html-t3 h4,

#custom-html-t3 h5,

#custom-html-t3 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t3 .h4 .small,

#custom-html-t3 .h4 small,

#custom-html-t3 .h5 .small,

#custom-html-t3 .h5 small,

#custom-html-t3 .h6 .small,

#custom-html-t3 .h6 small,

#custom-html-t3 h4 .small,

#custom-html-t3 h4 small,

#custom-html-t3 h5 .small,

#custom-html-t3 h5 small,

#custom-html-t3 h6 .small,

#custom-html-t3 h6 small {

  font-size: 75%;

}

#custom-html-t3 .h1,

#custom-html-t3 h1 {

  font-size: 36px;

}

#custom-html-t3 .h2,

#custom-html-t3 h2 {

  font-size: 30px;

}

#custom-html-t3 .h3,

#custom-html-t3 h3 {

  font-size: 24px;

}

#custom-html-t3 .h4,

#custom-html-t3 h4 {

  font-size: 18px;

}

#custom-html-t3 .h5,

#custom-html-t3 h5 {

  font-size: 14px;

}

#custom-html-t3 .h6,

#custom-html-t3 h6 {

  font-size: 12px;

}

#custom-html-t3 p {

  margin: 0 0 10px;

}

#custom-html-t3 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t3 .lead {

    font-size: 21px;

  }

}

#custom-html-t3 .small,

#custom-html-t3 small {

  font-size: 85%;

}

#custom-html-t3 .mark,

#custom-html-t3 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t3 .text-left {

  text-align: left;

}

#custom-html-t3 .text-right {

  text-align: right;

}

#custom-html-t3 .text-center {

  text-align: center;

}

#custom-html-t3 .text-justify {

  text-align: justify;

}

#custom-html-t3 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t3 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t3 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t3 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t3 .text-muted {

  color: #777777;

}

#custom-html-t3 .text-primary {

  color: #000000;

}

#custom-html-t3 a.text-primary:focus,

#custom-html-t3 a.text-primary:hover {

  color: #000000;

}

#custom-html-t3 .text-success {

  color: #3c763d;

}

#custom-html-t3 a.text-success:focus,

#custom-html-t3 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t3 .text-info {

  color: #31708f;

}

#custom-html-t3 a.text-info:focus,

#custom-html-t3 a.text-info:hover {

  color: #000000;

}

#custom-html-t3 .text-warning {

  color: #8a6d3b;

}

#custom-html-t3 a.text-warning:focus,

#custom-html-t3 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t3 .text-danger {

  color: #a94442;

}

#custom-html-t3 a.text-danger:focus,

#custom-html-t3 a.text-danger:hover {

  color: #843534;

}

#custom-html-t3 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t3 a.bg-primary:focus,

#custom-html-t3 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t3 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t3 a.bg-success:focus,

#custom-html-t3 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t3 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t3 a.bg-info:focus,

#custom-html-t3 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t3 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t3 a.bg-warning:focus,

#custom-html-t3 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t3 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t3 a.bg-danger:focus,

#custom-html-t3 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t3 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t3 ol,

#custom-html-t3 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t3 ol ol,

#custom-html-t3 ol ul,

#custom-html-t3 ul ol,

#custom-html-t3 ul ul {

  margin-bottom: 0;

}

#custom-html-t3 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t3 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t3 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t3 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t3 dd,

#custom-html-t3 dt {

  line-height: 1.42857143;

}

#custom-html-t3 dt {

  font-weight: 700;

}

#custom-html-t3 dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t3 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t3 .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-t3 abbr[data-original-title],

#custom-html-t3 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t3 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t3 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t3 blockquote ol:last-child,

#custom-html-t3 blockquote p:last-child,

#custom-html-t3 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t3 blockquote .small,

#custom-html-t3 blockquote footer,

#custom-html-t3 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-t3 blockquote .small:before,

#custom-html-t3 blockquote footer:before,

#custom-html-t3 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t3 .blockquote-reverse,

#custom-html-t3 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t3 .blockquote-reverse .small:before,

#custom-html-t3 .blockquote-reverse footer:before,

#custom-html-t3 .blockquote-reverse small:before,

#custom-html-t3 blockquote.pull-right .small:before,

#custom-html-t3 blockquote.pull-right footer:before,

#custom-html-t3 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t3 .blockquote-reverse .small:after,

#custom-html-t3 .blockquote-reverse footer:after,

#custom-html-t3 .blockquote-reverse small:after,

#custom-html-t3 blockquote.pull-right .small:after,

#custom-html-t3 blockquote.pull-right footer:after,

#custom-html-t3 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t3 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t3 code,

#custom-html-t3 kbd,

#custom-html-t3 pre,

#custom-html-t3 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-t3 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t3 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t3 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t3 pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t3 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t3 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t3 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-t3 .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-t3 .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t3 .container {

    width: 1170px;

  }

}

#custom-html-t3 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t3 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t3 .col-lg-1,

#custom-html-t3 .col-lg-10,

#custom-html-t3 .col-lg-11,

#custom-html-t3 .col-lg-12,

#custom-html-t3 .col-lg-2,

#custom-html-t3 .col-lg-3,

#custom-html-t3 .col-lg-4,

#custom-html-t3 .col-lg-5,

#custom-html-t3 .col-lg-6,

#custom-html-t3 .col-lg-7,

#custom-html-t3 .col-lg-8,

#custom-html-t3 .col-lg-9,

#custom-html-t3 .col-md-1,

#custom-html-t3 .col-md-10,

#custom-html-t3 .col-md-11,

#custom-html-t3 .col-md-12,

#custom-html-t3 .col-md-2,

#custom-html-t3 .col-md-3,

#custom-html-t3 .col-md-4,

#custom-html-t3 .col-md-5,

#custom-html-t3 .col-md-6,

#custom-html-t3 .col-md-7,

#custom-html-t3 .col-md-8,

#custom-html-t3 .col-md-9,

#custom-html-t3 .col-sm-1,

#custom-html-t3 .col-sm-10,

#custom-html-t3 .col-sm-11,

#custom-html-t3 .col-sm-12,

#custom-html-t3 .col-sm-2,

#custom-html-t3 .col-sm-3,

#custom-html-t3 .col-sm-4,

#custom-html-t3 .col-sm-5,

#custom-html-t3 .col-sm-6,

#custom-html-t3 .col-sm-7,

#custom-html-t3 .col-sm-8,

#custom-html-t3 .col-sm-9,

#custom-html-t3 .col-xs-1,

#custom-html-t3 .col-xs-10,

#custom-html-t3 .col-xs-11,

#custom-html-t3 .col-xs-12,

#custom-html-t3 .col-xs-2,

#custom-html-t3 .col-xs-3,

#custom-html-t3 .col-xs-4,

#custom-html-t3 .col-xs-5,

#custom-html-t3 .col-xs-6,

#custom-html-t3 .col-xs-7,

#custom-html-t3 .col-xs-8,

#custom-html-t3 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t3 .col-xs-1,

#custom-html-t3 .col-xs-10,

#custom-html-t3 .col-xs-11,

#custom-html-t3 .col-xs-12,

#custom-html-t3 .col-xs-2,

#custom-html-t3 .col-xs-3,

#custom-html-t3 .col-xs-4,

#custom-html-t3 .col-xs-5,

#custom-html-t3 .col-xs-6,

#custom-html-t3 .col-xs-7,

#custom-html-t3 .col-xs-8,

#custom-html-t3 .col-xs-9 {

  float: left;

}

#custom-html-t3 .col-xs-12 {

  width: 100%;

}

#custom-html-t3 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t3 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t3 .col-xs-9 {

  width: 75%;

}

#custom-html-t3 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t3 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t3 .col-xs-6 {

  width: 50%;

}

#custom-html-t3 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t3 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-t3 .col-xs-3 {

  width: 25%;

}

#custom-html-t3 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t3 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t3 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t3 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t3 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t3 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t3 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t3 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t3 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t3 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t3 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t3 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t3 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t3 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t3 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t3 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t3 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t3 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t3 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t3 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t3 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t3 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t3 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t3 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t3 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t3 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t3 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t3 .col-xs-push-0 {

  left: auto;

}

#custom-html-t3 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t3 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t3 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t3 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t3 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t3 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t3 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t3 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t3 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t3 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t3 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t3 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t3 .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t3 .col-sm-1,

  #custom-html-t3 .col-sm-10,

  #custom-html-t3 .col-sm-11,

  #custom-html-t3 .col-sm-12,

  #custom-html-t3 .col-sm-2,

  #custom-html-t3 .col-sm-3,

  #custom-html-t3 .col-sm-4,

  #custom-html-t3 .col-sm-5,

  #custom-html-t3 .col-sm-6,

  #custom-html-t3 .col-sm-7,

  #custom-html-t3 .col-sm-8,

  #custom-html-t3 .col-sm-9 {

    float: left;

  }

  #custom-html-t3 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t3 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t3 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t3 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t3 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t3 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t3 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t3 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t3 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t3 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t3 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t3 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t3 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t3 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t3 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t3 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t3 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t3 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t3 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t3 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t3 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t3 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-t3 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t3 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t3 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t3 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t3 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t3 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t3 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t3 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t3 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t3 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t3 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t3 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t3 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t3 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t3 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t3 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t3 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t3 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t3 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t3 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t3 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t3 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t3 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t3 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t3 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t3 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t3 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t3 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t3 .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-t3 .col-md-1,

  #custom-html-t3 .col-md-10,

  #custom-html-t3 .col-md-11,

  #custom-html-t3 .col-md-12,

  #custom-html-t3 .col-md-2,

  #custom-html-t3 .col-md-3,

  #custom-html-t3 .col-md-4,

  #custom-html-t3 .col-md-5,

  #custom-html-t3 .col-md-6,

  #custom-html-t3 .col-md-7,

  #custom-html-t3 .col-md-8,

  #custom-html-t3 .col-md-9 {

    float: left;

  }

  #custom-html-t3 .col-md-12 {

    width: 100%;

  }

  #custom-html-t3 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t3 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t3 .col-md-9 {

    width: 75%;

  }

  #custom-html-t3 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t3 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t3 .col-md-6 {

    width: 50%;

  }

  #custom-html-t3 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t3 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t3 .col-md-3 {

    width: 25%;

  }

  #custom-html-t3 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t3 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t3 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t3 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t3 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t3 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t3 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t3 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t3 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t3 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t3 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t3 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t3 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t3 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t3 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t3 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t3 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t3 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t3 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t3 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t3 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t3 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t3 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t3 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t3 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-t3 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t3 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t3 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t3 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t3 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t3 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t3 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t3 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t3 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t3 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t3 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t3 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t3 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t3 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t3 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t3 .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-t3 .col-lg-1,

  #custom-html-t3 .col-lg-10,

  #custom-html-t3 .col-lg-11,

  #custom-html-t3 .col-lg-12,

  #custom-html-t3 .col-lg-2,

  #custom-html-t3 .col-lg-3,

  #custom-html-t3 .col-lg-4,

  #custom-html-t3 .col-lg-5,

  #custom-html-t3 .col-lg-6,

  #custom-html-t3 .col-lg-7,

  #custom-html-t3 .col-lg-8,

  #custom-html-t3 .col-lg-9 {

    float: left;

  }

  #custom-html-t3 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t3 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t3 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t3 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t3 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t3 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t3 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t3 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t3 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t3 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t3 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t3 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t3 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t3 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t3 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t3 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t3 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t3 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t3 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t3 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t3 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t3 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-t3 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t3 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t3 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t3 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t3 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t3 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t3 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t3 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t3 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t3 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t3 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t3 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t3 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t3 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t3 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t3 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t3 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t3 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t3 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t3 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t3 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t3 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t3 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t3 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t3 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t3 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t3 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t3 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t3 .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-t3 table {

  background-color: transparent;

}

#custom-html-t3 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t3 th {

  text-align: left;

}

#custom-html-t3 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t3 .table > tbody > tr > td,

#custom-html-t3 .table > tbody > tr > th,

#custom-html-t3 .table > tfoot > tr > td,

#custom-html-t3 .table > tfoot > tr > th,

#custom-html-t3 .table > thead > tr > td,

#custom-html-t3 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t3 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t3 .table > caption + thead > tr:first-child > td,

#custom-html-t3 .table > caption + thead > tr:first-child > th,

#custom-html-t3 .table > colgroup + thead > tr:first-child > td,

#custom-html-t3 .table > colgroup + thead > tr:first-child > th,

#custom-html-t3 .table > thead:first-child > tr:first-child > td,

#custom-html-t3 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t3 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t3 .table .table {

  background-color: #ffffff;

}

#custom-html-t3 .table-condensed > tbody > tr > td,

#custom-html-t3 .table-condensed > tbody > tr > th,

#custom-html-t3 .table-condensed > tfoot > tr > td,

#custom-html-t3 .table-condensed > tfoot > tr > th,

#custom-html-t3 .table-condensed > thead > tr > td,

#custom-html-t3 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t3 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t3 .table-bordered > tbody > tr > td,

#custom-html-t3 .table-bordered > tbody > tr > th,

#custom-html-t3 .table-bordered > tfoot > tr > td,

#custom-html-t3 .table-bordered > tfoot > tr > th,

#custom-html-t3 .table-bordered > thead > tr > td,

#custom-html-t3 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t3 .table-bordered > thead > tr > td,

#custom-html-t3 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t3 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t3 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t3 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t3 table td[class*=col-],

#custom-html-t3 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t3 .table > tbody > tr.active > td,

#custom-html-t3 .table > tbody > tr.active > th,

#custom-html-t3 .table > tbody > tr > td.active,

#custom-html-t3 .table > tbody > tr > th.active,

#custom-html-t3 .table > tfoot > tr.active > td,

#custom-html-t3 .table > tfoot > tr.active > th,

#custom-html-t3 .table > tfoot > tr > td.active,

#custom-html-t3 .table > tfoot > tr > th.active,

#custom-html-t3 .table > thead > tr.active > td,

#custom-html-t3 .table > thead > tr.active > th,

#custom-html-t3 .table > thead > tr > td.active,

#custom-html-t3 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t3 .table-hover > tbody > tr.active:hover > td,

#custom-html-t3 .table-hover > tbody > tr.active:hover > th,

#custom-html-t3 .table-hover > tbody > tr:hover > .active,

#custom-html-t3 .table-hover > tbody > tr > td.active:hover,

#custom-html-t3 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t3 .table > tbody > tr.success > td,

#custom-html-t3 .table > tbody > tr.success > th,

#custom-html-t3 .table > tbody > tr > td.success,

#custom-html-t3 .table > tbody > tr > th.success,

#custom-html-t3 .table > tfoot > tr.success > td,

#custom-html-t3 .table > tfoot > tr.success > th,

#custom-html-t3 .table > tfoot > tr > td.success,

#custom-html-t3 .table > tfoot > tr > th.success,

#custom-html-t3 .table > thead > tr.success > td,

#custom-html-t3 .table > thead > tr.success > th,

#custom-html-t3 .table > thead > tr > td.success,

#custom-html-t3 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t3 .table-hover > tbody > tr.success:hover > td,

#custom-html-t3 .table-hover > tbody > tr.success:hover > th,

#custom-html-t3 .table-hover > tbody > tr:hover > .success,

#custom-html-t3 .table-hover > tbody > tr > td.success:hover,

#custom-html-t3 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t3 .table > tbody > tr.info > td,

#custom-html-t3 .table > tbody > tr.info > th,

#custom-html-t3 .table > tbody > tr > td.info,

#custom-html-t3 .table > tbody > tr > th.info,

#custom-html-t3 .table > tfoot > tr.info > td,

#custom-html-t3 .table > tfoot > tr.info > th,

#custom-html-t3 .table > tfoot > tr > td.info,

#custom-html-t3 .table > tfoot > tr > th.info,

#custom-html-t3 .table > thead > tr.info > td,

#custom-html-t3 .table > thead > tr.info > th,

#custom-html-t3 .table > thead > tr > td.info,

#custom-html-t3 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t3 .table-hover > tbody > tr.info:hover > td,

#custom-html-t3 .table-hover > tbody > tr.info:hover > th,

#custom-html-t3 .table-hover > tbody > tr:hover > .info,

#custom-html-t3 .table-hover > tbody > tr > td.info:hover,

#custom-html-t3 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t3 .table > tbody > tr.warning > td,

#custom-html-t3 .table > tbody > tr.warning > th,

#custom-html-t3 .table > tbody > tr > td.warning,

#custom-html-t3 .table > tbody > tr > th.warning,

#custom-html-t3 .table > tfoot > tr.warning > td,

#custom-html-t3 .table > tfoot > tr.warning > th,

#custom-html-t3 .table > tfoot > tr > td.warning,

#custom-html-t3 .table > tfoot > tr > th.warning,

#custom-html-t3 .table > thead > tr.warning > td,

#custom-html-t3 .table > thead > tr.warning > th,

#custom-html-t3 .table > thead > tr > td.warning,

#custom-html-t3 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t3 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t3 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t3 .table-hover > tbody > tr:hover > .warning,

#custom-html-t3 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t3 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t3 .table > tbody > tr.danger > td,

#custom-html-t3 .table > tbody > tr.danger > th,

#custom-html-t3 .table > tbody > tr > td.danger,

#custom-html-t3 .table > tbody > tr > th.danger,

#custom-html-t3 .table > tfoot > tr.danger > td,

#custom-html-t3 .table > tfoot > tr.danger > th,

#custom-html-t3 .table > tfoot > tr > td.danger,

#custom-html-t3 .table > tfoot > tr > th.danger,

#custom-html-t3 .table > thead > tr.danger > td,

#custom-html-t3 .table > thead > tr.danger > th,

#custom-html-t3 .table > thead > tr > td.danger,

#custom-html-t3 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t3 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t3 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t3 .table-hover > tbody > tr:hover > .danger,

#custom-html-t3 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t3 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t3 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t3 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t3 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t3 .table-responsive > .table > tbody > tr > td,

  #custom-html-t3 .table-responsive > .table > tbody > tr > th,

  #custom-html-t3 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t3 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t3 .table-responsive > .table > thead > tr > td,

  #custom-html-t3 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t3 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t3 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t3 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t3 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t3 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t3 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t3 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t3 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t3 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t3 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-t3 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t3 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t3 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t3 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t3 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t3 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t3 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-t3 fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-t3 legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t3 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t3 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t3 input[type=checkbox],

#custom-html-t3 input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t3 input[type=file] {

  display: block;

}

#custom-html-t3 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-t3 select[multiple],

#custom-html-t3 select[size] {

  height: auto;

}

#custom-html-t3 input[type=checkbox]:focus,

#custom-html-t3 input[type=file]:focus,

#custom-html-t3 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t3 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t3 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t3 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t3 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t3 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t3 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t3 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t3 .form-control[disabled],

#custom-html-t3 .form-control[readonly],

#custom-html-t3 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t3 .form-control[disabled],

#custom-html-t3 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t3 textarea.form-control {

  height: auto;

}

#custom-html-t3 input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t3 input[type=date].form-control,

  #custom-html-t3 input[type=datetime-local].form-control,

  #custom-html-t3 input[type=month].form-control,

  #custom-html-t3 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t3 .input-group-sm input[type=date],

  #custom-html-t3 .input-group-sm input[type=datetime-local],

  #custom-html-t3 .input-group-sm input[type=month],

  #custom-html-t3 .input-group-sm input[type=time],

  #custom-html-t3 input[type=date].input-sm,

  #custom-html-t3 input[type=datetime-local].input-sm,

  #custom-html-t3 input[type=month].input-sm,

  #custom-html-t3 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t3 .input-group-lg input[type=date],

  #custom-html-t3 .input-group-lg input[type=datetime-local],

  #custom-html-t3 .input-group-lg input[type=month],

  #custom-html-t3 .input-group-lg input[type=time],

  #custom-html-t3 input[type=date].input-lg,

  #custom-html-t3 input[type=datetime-local].input-lg,

  #custom-html-t3 input[type=month].input-lg,

  #custom-html-t3 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t3 .form-group {

  margin-bottom: 15px;

}

#custom-html-t3 .checkbox,

#custom-html-t3 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t3 .checkbox label,

#custom-html-t3 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t3 .checkbox input[type=checkbox],

#custom-html-t3 .checkbox-inline input[type=checkbox],

#custom-html-t3 .radio input[type=radio],

#custom-html-t3 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t3 .checkbox + .checkbox,

#custom-html-t3 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t3 .checkbox-inline,

#custom-html-t3 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t3 .checkbox-inline + .checkbox-inline,

#custom-html-t3 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t3 fieldset[disabled] input[type=checkbox],

#custom-html-t3 fieldset[disabled] input[type=radio],

#custom-html-t3 input[type=checkbox].disabled,

#custom-html-t3 input[type=checkbox][disabled],

#custom-html-t3 input[type=radio].disabled,

#custom-html-t3 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t3 .checkbox-inline.disabled,

#custom-html-t3 .radio-inline.disabled,

#custom-html-t3 fieldset[disabled] .checkbox-inline,

#custom-html-t3 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t3 .checkbox.disabled label,

#custom-html-t3 .radio.disabled label,

#custom-html-t3 fieldset[disabled] .checkbox label,

#custom-html-t3 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t3 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t3 .form-control-static.input-lg,

#custom-html-t3 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t3 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t3 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t3 select[multiple].input-sm,

#custom-html-t3 textarea.input-sm {

  height: auto;

}

#custom-html-t3 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t3 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t3 .form-group-sm select[multiple].form-control,

#custom-html-t3 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t3 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t3 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t3 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t3 select[multiple].input-lg,

#custom-html-t3 textarea.input-lg {

  height: auto;

}

#custom-html-t3 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t3 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-t3 .form-group-lg select[multiple].form-control,

#custom-html-t3 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t3 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t3 .has-feedback {

  position: relative;

}

#custom-html-t3 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t3 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t3 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t3 .input-group-lg + .form-control-feedback,

#custom-html-t3 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t3 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t3 .input-group-sm + .form-control-feedback,

#custom-html-t3 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t3 .has-success .checkbox,

#custom-html-t3 .has-success .checkbox-inline,

#custom-html-t3 .has-success .control-label,

#custom-html-t3 .has-success .help-block,

#custom-html-t3 .has-success .radio,

#custom-html-t3 .has-success .radio-inline,

#custom-html-t3 .has-success.checkbox label,

#custom-html-t3 .has-success.checkbox-inline label,

#custom-html-t3 .has-success.radio label,

#custom-html-t3 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t3 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t3 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t3 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t3 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t3 .has-warning .checkbox,

#custom-html-t3 .has-warning .checkbox-inline,

#custom-html-t3 .has-warning .control-label,

#custom-html-t3 .has-warning .help-block,

#custom-html-t3 .has-warning .radio,

#custom-html-t3 .has-warning .radio-inline,

#custom-html-t3 .has-warning.checkbox label,

#custom-html-t3 .has-warning.checkbox-inline label,

#custom-html-t3 .has-warning.radio label,

#custom-html-t3 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t3 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t3 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t3 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t3 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t3 .has-error .checkbox,

#custom-html-t3 .has-error .checkbox-inline,

#custom-html-t3 .has-error .control-label,

#custom-html-t3 .has-error .help-block,

#custom-html-t3 .has-error .radio,

#custom-html-t3 .has-error .radio-inline,

#custom-html-t3 .has-error.checkbox label,

#custom-html-t3 .has-error.checkbox-inline label,

#custom-html-t3 .has-error.radio label,

#custom-html-t3 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t3 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t3 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t3 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t3 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t3 .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-t3 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t3 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-t3 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t3 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t3 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t3 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t3 .form-inline .input-group .form-control,

  #custom-html-t3 .form-inline .input-group .input-group-addon,

  #custom-html-t3 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t3 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t3 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t3 .form-inline .checkbox,

  #custom-html-t3 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t3 .form-inline .checkbox label,

  #custom-html-t3 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t3 .form-inline .checkbox input[type=checkbox],

  #custom-html-t3 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t3 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-t3 .form-horizontal .checkbox,

#custom-html-t3 .form-horizontal .checkbox-inline,

#custom-html-t3 .form-horizontal .radio,

#custom-html-t3 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t3 .form-horizontal .checkbox,

#custom-html-t3 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t3 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t3 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-t3 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-t3 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-t3 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-t3 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t3 .btn.active.focus,

#custom-html-t3 .btn.active:focus,

#custom-html-t3 .btn.focus,

#custom-html-t3 .btn:active.focus,

#custom-html-t3 .btn:active:focus,

#custom-html-t3 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t3 .btn.focus,

#custom-html-t3 .btn:focus,

#custom-html-t3 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t3 .btn.active,

#custom-html-t3 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t3 .btn.disabled,

#custom-html-t3 .btn[disabled],

#custom-html-t3 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t3 a.btn.disabled,

#custom-html-t3 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t3 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t3 .btn-default.focus,

#custom-html-t3 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t3 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t3 .btn-default.active,

#custom-html-t3 .btn-default:active,

#custom-html-t3 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t3 .btn-default.active.focus,

#custom-html-t3 .btn-default.active:focus,

#custom-html-t3 .btn-default.active:hover,

#custom-html-t3 .btn-default:active.focus,

#custom-html-t3 .btn-default:active:focus,

#custom-html-t3 .btn-default:active:hover,

#custom-html-t3 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t3 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t3 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t3 .btn-default.active,

#custom-html-t3 .btn-default:active,

#custom-html-t3 .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-t3 .btn-default.disabled.focus,

#custom-html-t3 .btn-default.disabled:focus,

#custom-html-t3 .btn-default.disabled:hover,

#custom-html-t3 .btn-default[disabled].focus,

#custom-html-t3 .btn-default[disabled]:focus,

#custom-html-t3 .btn-default[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-default.focus,

#custom-html-t3 fieldset[disabled] .btn-default:focus,

#custom-html-t3 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t3 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t3 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t3 .btn-primary.focus,

#custom-html-t3 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t3 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t3 .btn-primary.active,

#custom-html-t3 .btn-primary:active,

#custom-html-t3 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t3 .btn-primary.active.focus,

#custom-html-t3 .btn-primary.active:focus,

#custom-html-t3 .btn-primary.active:hover,

#custom-html-t3 .btn-primary:active.focus,

#custom-html-t3 .btn-primary:active:focus,

#custom-html-t3 .btn-primary:active:hover,

#custom-html-t3 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t3 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t3 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t3 .btn-primary.active,

#custom-html-t3 .btn-primary:active,

#custom-html-t3 .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-t3 .btn-primary.disabled.focus,

#custom-html-t3 .btn-primary.disabled:focus,

#custom-html-t3 .btn-primary.disabled:hover,

#custom-html-t3 .btn-primary[disabled].focus,

#custom-html-t3 .btn-primary[disabled]:focus,

#custom-html-t3 .btn-primary[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-primary.focus,

#custom-html-t3 fieldset[disabled] .btn-primary:focus,

#custom-html-t3 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t3 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t3 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t3 .btn-success.focus,

#custom-html-t3 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t3 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t3 .btn-success.active,

#custom-html-t3 .btn-success:active,

#custom-html-t3 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t3 .btn-success.active.focus,

#custom-html-t3 .btn-success.active:focus,

#custom-html-t3 .btn-success.active:hover,

#custom-html-t3 .btn-success:active.focus,

#custom-html-t3 .btn-success:active:focus,

#custom-html-t3 .btn-success:active:hover,

#custom-html-t3 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t3 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t3 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t3 .btn-success.active,

#custom-html-t3 .btn-success:active,

#custom-html-t3 .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-t3 .btn-success.disabled.focus,

#custom-html-t3 .btn-success.disabled:focus,

#custom-html-t3 .btn-success.disabled:hover,

#custom-html-t3 .btn-success[disabled].focus,

#custom-html-t3 .btn-success[disabled]:focus,

#custom-html-t3 .btn-success[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-success.focus,

#custom-html-t3 fieldset[disabled] .btn-success:focus,

#custom-html-t3 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t3 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t3 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t3 .btn-info.focus,

#custom-html-t3 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t3 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t3 .btn-info.active,

#custom-html-t3 .btn-info:active,

#custom-html-t3 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t3 .btn-info.active.focus,

#custom-html-t3 .btn-info.active:focus,

#custom-html-t3 .btn-info.active:hover,

#custom-html-t3 .btn-info:active.focus,

#custom-html-t3 .btn-info:active:focus,

#custom-html-t3 .btn-info:active:hover,

#custom-html-t3 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t3 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t3 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t3 .btn-info.active,

#custom-html-t3 .btn-info:active,

#custom-html-t3 .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-t3 .btn-info.disabled.focus,

#custom-html-t3 .btn-info.disabled:focus,

#custom-html-t3 .btn-info.disabled:hover,

#custom-html-t3 .btn-info[disabled].focus,

#custom-html-t3 .btn-info[disabled]:focus,

#custom-html-t3 .btn-info[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-info.focus,

#custom-html-t3 fieldset[disabled] .btn-info:focus,

#custom-html-t3 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t3 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t3 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t3 .btn-warning.focus,

#custom-html-t3 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t3 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t3 .btn-warning.active,

#custom-html-t3 .btn-warning:active,

#custom-html-t3 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t3 .btn-warning.active.focus,

#custom-html-t3 .btn-warning.active:focus,

#custom-html-t3 .btn-warning.active:hover,

#custom-html-t3 .btn-warning:active.focus,

#custom-html-t3 .btn-warning:active:focus,

#custom-html-t3 .btn-warning:active:hover,

#custom-html-t3 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t3 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t3 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t3 .btn-warning.active,

#custom-html-t3 .btn-warning:active,

#custom-html-t3 .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-t3 .btn-warning.disabled.focus,

#custom-html-t3 .btn-warning.disabled:focus,

#custom-html-t3 .btn-warning.disabled:hover,

#custom-html-t3 .btn-warning[disabled].focus,

#custom-html-t3 .btn-warning[disabled]:focus,

#custom-html-t3 .btn-warning[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-warning.focus,

#custom-html-t3 fieldset[disabled] .btn-warning:focus,

#custom-html-t3 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t3 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t3 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t3 .btn-danger.focus,

#custom-html-t3 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t3 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t3 .btn-danger.active,

#custom-html-t3 .btn-danger:active,

#custom-html-t3 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t3 .btn-danger.active.focus,

#custom-html-t3 .btn-danger.active:focus,

#custom-html-t3 .btn-danger.active:hover,

#custom-html-t3 .btn-danger:active.focus,

#custom-html-t3 .btn-danger:active:focus,

#custom-html-t3 .btn-danger:active:hover,

#custom-html-t3 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t3 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t3 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t3 .btn-danger.active,

#custom-html-t3 .btn-danger:active,

#custom-html-t3 .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-t3 .btn-danger.disabled.focus,

#custom-html-t3 .btn-danger.disabled:focus,

#custom-html-t3 .btn-danger.disabled:hover,

#custom-html-t3 .btn-danger[disabled].focus,

#custom-html-t3 .btn-danger[disabled]:focus,

#custom-html-t3 .btn-danger[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-danger.focus,

#custom-html-t3 fieldset[disabled] .btn-danger:focus,

#custom-html-t3 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t3 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t3 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t3 .btn-link,

#custom-html-t3 .btn-link.active,

#custom-html-t3 .btn-link:active,

#custom-html-t3 .btn-link[disabled],

#custom-html-t3 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t3 .btn-link,

#custom-html-t3 .btn-link:active,

#custom-html-t3 .btn-link:focus,

#custom-html-t3 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t3 .btn-link:focus,

#custom-html-t3 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t3 .btn-link[disabled]:focus,

#custom-html-t3 .btn-link[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-link:focus,

#custom-html-t3 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t3 .btn-group-lg > .btn,

#custom-html-t3 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t3 .btn-group-sm > .btn,

#custom-html-t3 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t3 .btn-group-xs > .btn,

#custom-html-t3 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t3 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t3 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t3 input[type=button].btn-block,

#custom-html-t3 input[type=reset].btn-block,

#custom-html-t3 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t3 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t3 .fade.in {

  opacity: 1;

}

#custom-html-t3 .collapse {

  display: none;

}

#custom-html-t3 .collapse.in {

  display: block;

}

#custom-html-t3 tr.collapse.in {

  display: table-row;

}

#custom-html-t3 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t3 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t3 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t3 .dropdown,

#custom-html-t3 .dropup {

  position: relative;

}

#custom-html-t3 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t3 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t3 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t3 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t3 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-t3 .dropdown-menu > li > a:focus,

#custom-html-t3 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t3 .dropdown-menu > .active > a,

#custom-html-t3 .dropdown-menu > .active > a:focus,

#custom-html-t3 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;


}

#custom-html-t3 .dropdown-menu > .disabled > a,

#custom-html-t3 .dropdown-menu > .disabled > a:focus,

#custom-html-t3 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t3 .dropdown-menu > .disabled > a:focus,

#custom-html-t3 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t3 .open > .dropdown-menu {

  display: block;

}

#custom-html-t3 .open > a {

  outline: 0;

}

#custom-html-t3 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t3 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t3 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t3 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t3 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t3 .dropup .caret,

#custom-html-t3 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t3 .dropup .dropdown-menu,

#custom-html-t3 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-t3 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-t3 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-t3 .btn-group,

#custom-html-t3 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t3 .btn-group-vertical > .btn,

#custom-html-t3 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t3 .btn-group-vertical > .btn.active,

#custom-html-t3 .btn-group-vertical > .btn:active,

#custom-html-t3 .btn-group-vertical > .btn:focus,

#custom-html-t3 .btn-group-vertical > .btn:hover,

#custom-html-t3 .btn-group > .btn.active,

#custom-html-t3 .btn-group > .btn:active,

#custom-html-t3 .btn-group > .btn:focus,

#custom-html-t3 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t3 .btn-group .btn + .btn,

#custom-html-t3 .btn-group .btn + .btn-group,

#custom-html-t3 .btn-group .btn-group + .btn,

#custom-html-t3 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t3 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t3 .btn-toolbar .btn,

#custom-html-t3 .btn-toolbar .btn-group,

#custom-html-t3 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t3 .btn-toolbar > .btn,

#custom-html-t3 .btn-toolbar > .btn-group,

#custom-html-t3 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t3 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t3 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t3 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t3 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t3 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t3 .btn-group > .btn-group {

  float: left;

}

#custom-html-t3 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t3 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t3 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t3 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t3 .btn-group .dropdown-toggle:active,

#custom-html-t3 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t3 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t3 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t3 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t3 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t3 .btn .caret {

  margin-left: 0;

}

#custom-html-t3 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t3 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t3 .btn-group-vertical > .btn,

#custom-html-t3 .btn-group-vertical > .btn-group,

#custom-html-t3 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t3 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t3 .btn-group-vertical > .btn + .btn,

#custom-html-t3 .btn-group-vertical > .btn + .btn-group,

#custom-html-t3 .btn-group-vertical > .btn-group + .btn,

#custom-html-t3 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t3 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t3 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t3 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t3 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t3 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t3 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t3 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t3 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t3 .btn-group-justified > .btn,

#custom-html-t3 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t3 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t3 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t3 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t3 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t3 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t3 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t3 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t3 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t3 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t3 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t3 .input-group-lg > .form-control,

#custom-html-t3 .input-group-lg > .input-group-addon,

#custom-html-t3 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t3 select.input-group-lg > .form-control,

#custom-html-t3 select.input-group-lg > .input-group-addon,

#custom-html-t3 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t3 select[multiple].input-group-lg > .form-control,

#custom-html-t3 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t3 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t3 textarea.input-group-lg > .form-control,

#custom-html-t3 textarea.input-group-lg > .input-group-addon,

#custom-html-t3 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t3 .input-group-sm > .form-control,

#custom-html-t3 .input-group-sm > .input-group-addon,

#custom-html-t3 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t3 select.input-group-sm > .form-control,

#custom-html-t3 select.input-group-sm > .input-group-addon,

#custom-html-t3 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t3 select[multiple].input-group-sm > .form-control,

#custom-html-t3 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t3 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t3 textarea.input-group-sm > .form-control,

#custom-html-t3 textarea.input-group-sm > .input-group-addon,

#custom-html-t3 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t3 .input-group .form-control,

#custom-html-t3 .input-group-addon,

#custom-html-t3 .input-group-btn {

  display: table-cell;

}

#custom-html-t3 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t3 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t3 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t3 .input-group-addon,

#custom-html-t3 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t3 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t3 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t3 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t3 .input-group-addon input[type=checkbox],

#custom-html-t3 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t3 .input-group .form-control:first-child,

#custom-html-t3 .input-group-addon:first-child,

#custom-html-t3 .input-group-btn:first-child > .btn,

#custom-html-t3 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t3 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t3 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t3 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t3 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t3 .input-group .form-control:last-child,

#custom-html-t3 .input-group-addon:last-child,

#custom-html-t3 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t3 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t3 .input-group-btn:last-child > .btn,

#custom-html-t3 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t3 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t3 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t3 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t3 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t3 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t3 .input-group-btn > .btn:active,

#custom-html-t3 .input-group-btn > .btn:focus,

#custom-html-t3 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t3 .input-group-btn:first-child > .btn,

#custom-html-t3 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t3 .input-group-btn:last-child > .btn,

#custom-html-t3 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t3 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t3 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t3 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t3 .nav > li > a:focus,

#custom-html-t3 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t3 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t3 .nav > li.disabled > a:focus,

#custom-html-t3 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t3 .nav .open > a,

#custom-html-t3 .nav .open > a:focus,

#custom-html-t3 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t3 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t3 .nav > li > a > img {

  max-width: none;

}

#custom-html-t3 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t3 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t3 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t3 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t3 .nav-tabs > li.active > a,

#custom-html-t3 .nav-tabs > li.active > a:focus,

#custom-html-t3 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t3 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t3 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t3 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t3 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t3 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t3 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t3 .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t3 .nav-tabs.nav-justified > .active > a,

#custom-html-t3 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t3 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t3 .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t3 .nav-tabs.nav-justified > .active > a,

  #custom-html-t3 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t3 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t3 .nav-pills > li {

  float: left;

}

#custom-html-t3 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t3 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t3 .nav-pills > li.active > a,

#custom-html-t3 .nav-pills > li.active > a:focus,

#custom-html-t3 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t3 .nav-stacked > li {

  float: none;

}

#custom-html-t3 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t3 .nav-justified {

  width: 100%;

}

#custom-html-t3 .nav-justified > li {

  float: none;

}

#custom-html-t3 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t3 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t3 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t3 .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t3 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t3 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t3 .nav-tabs-justified > .active > a,

#custom-html-t3 .nav-tabs-justified > .active > a:focus,

#custom-html-t3 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t3 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t3 .nav-tabs-justified > .active > a,

  #custom-html-t3 .nav-tabs-justified > .active > a:focus,

  #custom-html-t3 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t3 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t3 .tab-content > .active {

  display: block;

}

#custom-html-t3 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t3 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-t3 .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-t3 .navbar-header {

    float: left;

  }

}

#custom-html-t3 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t3 .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-t3 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t3 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t3 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t3 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t3 .navbar-fixed-top .navbar-collapse,

  #custom-html-t3 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-t3 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t3 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t3 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t3 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t3 .container-fluid > .navbar-collapse,

#custom-html-t3 .container-fluid > .navbar-header,

#custom-html-t3 .container > .navbar-collapse,

#custom-html-t3 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t3 .container-fluid > .navbar-collapse,

  #custom-html-t3 .container-fluid > .navbar-header,

  #custom-html-t3 .container > .navbar-collapse,

  #custom-html-t3 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-t3 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-t3 .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-t3 .navbar-fixed-bottom,

#custom-html-t3 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-t3 .navbar-fixed-bottom,

  #custom-html-t3 .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-t3 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t3 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t3 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t3 .navbar-brand:focus,

#custom-html-t3 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t3 .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-t3 .navbar > .container .navbar-brand,

  #custom-html-t3 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-t3 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t3 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t3 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t3 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-t3 .navbar-toggle {

    display: none;

  }

}

#custom-html-t3 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t3 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t3 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t3 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t3 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t3 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t3 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t3 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-t3 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t3 .navbar-nav > li {

    float: left;

  }

  #custom-html-t3 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-t3 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-t3 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t3 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t3 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t3 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t3 .navbar-form .input-group .form-control,

  #custom-html-t3 .navbar-form .input-group .input-group-addon,

  #custom-html-t3 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t3 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t3 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t3 .navbar-form .checkbox,

  #custom-html-t3 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t3 .navbar-form .checkbox label,

  #custom-html-t3 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t3 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t3 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t3 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-t3 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t3 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-t3 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-t3 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t3 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t3 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t3 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t3 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t3 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-t3 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-t3 .navbar-left {

    float: left !important;

  }

  #custom-html-t3 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t3 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-t3 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t3 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t3 .navbar-default .navbar-brand:focus,

#custom-html-t3 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t3 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t3 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t3 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t3 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t3 .navbar-default .navbar-nav > .active > a,

#custom-html-t3 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t3 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t3 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t3 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t3 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t3 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t3 .navbar-default .navbar-toggle:focus,

#custom-html-t3 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t3 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t3 .navbar-default .navbar-collapse,

#custom-html-t3 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t3 .navbar-default .navbar-nav > .open > a,

#custom-html-t3 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t3 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t3 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-t3 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t3 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t3 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t3 .navbar-default .btn-link:focus,

#custom-html-t3 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-t3 .navbar-default .btn-link[disabled]:focus,

#custom-html-t3 .navbar-default .btn-link[disabled]:hover,

#custom-html-t3 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t3 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t3 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t3 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t3 .navbar-inverse .navbar-brand:focus,

#custom-html-t3 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t3 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t3 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t3 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t3 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t3 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t3 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t3 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t3 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t3 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t3 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t3 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t3 .navbar-inverse .navbar-toggle:focus,

#custom-html-t3 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t3 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t3 .navbar-inverse .navbar-collapse,

#custom-html-t3 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t3 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t3 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t3 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t3 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-t3 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t3 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t3 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t3 .navbar-inverse .btn-link:focus,

#custom-html-t3 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t3 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t3 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t3 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t3 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t3 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t3 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t3 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t3 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t3 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-t3 .pagination > li {

  display: inline;

}

#custom-html-t3 .pagination > li > a,

#custom-html-t3 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t3 .pagination > li:first-child > a,

#custom-html-t3 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t3 .pagination > li:last-child > a,

#custom-html-t3 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t3 .pagination > li > a:focus,

#custom-html-t3 .pagination > li > a:hover,

#custom-html-t3 .pagination > li > span:focus,

#custom-html-t3 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t3 .pagination > .active > a,

#custom-html-t3 .pagination > .active > a:focus,

#custom-html-t3 .pagination > .active > a:hover,

#custom-html-t3 .pagination > .active > span,

#custom-html-t3 .pagination > .active > span:focus,

#custom-html-t3 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-t3 .pagination > .disabled > a,

#custom-html-t3 .pagination > .disabled > a:focus,

#custom-html-t3 .pagination > .disabled > a:hover,

#custom-html-t3 .pagination > .disabled > span,

#custom-html-t3 .pagination > .disabled > span:focus,

#custom-html-t3 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t3 .pagination-lg > li > a,

#custom-html-t3 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t3 .pagination-lg > li:first-child > a,

#custom-html-t3 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t3 .pagination-lg > li:last-child > a,

#custom-html-t3 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t3 .pagination-sm > li > a,

#custom-html-t3 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t3 .pagination-sm > li:first-child > a,

#custom-html-t3 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t3 .pagination-sm > li:last-child > a,

#custom-html-t3 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t3 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t3 .pager li {

  display: inline;

}

#custom-html-t3 .pager li > a,

#custom-html-t3 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t3 .pager li > a:focus,

#custom-html-t3 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t3 .pager .next > a,

#custom-html-t3 .pager .next > span {

  float: right;

}

#custom-html-t3 .pager .previous > a,

#custom-html-t3 .pager .previous > span {

  float: left;

}

#custom-html-t3 .pager .disabled > a,

#custom-html-t3 .pager .disabled > a:focus,

#custom-html-t3 .pager .disabled > a:hover,

#custom-html-t3 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t3 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-t3 a.label:focus,

#custom-html-t3 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t3 .label:empty {

  display: none;

}

#custom-html-t3 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t3 .label-default {

  background-color: #777777;

}

#custom-html-t3 .label-default[href]:focus,

#custom-html-t3 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t3 .label-primary {

  background-color: #337ab7;

}

#custom-html-t3 .label-primary[href]:focus,

#custom-html-t3 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t3 .label-success {

  background-color: #5cb85c;

}

#custom-html-t3 .label-success[href]:focus,

#custom-html-t3 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t3 .label-info {

  background-color: #5bc0de;

}

#custom-html-t3 .label-info[href]:focus,

#custom-html-t3 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t3 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t3 .label-warning[href]:focus,

#custom-html-t3 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t3 .label-danger {

  background-color: #d9534f;

}

#custom-html-t3 .label-danger[href]:focus,

#custom-html-t3 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t3 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t3 .badge:empty {

  display: none;

}

#custom-html-t3 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t3 .btn-group-xs > .btn .badge,

#custom-html-t3 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t3 a.badge:focus,

#custom-html-t3 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t3 .list-group-item.active > .badge,

#custom-html-t3 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t3 .list-group-item > .badge {

  float: right;

}

#custom-html-t3 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t3 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t3 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t3 .jumbotron .h1,

#custom-html-t3 .jumbotron h1 {

  color: inherit;

}

#custom-html-t3 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t3 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t3 .container .jumbotron,

#custom-html-t3 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t3 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t3 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t3 .container .jumbotron,

  #custom-html-t3 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t3 .jumbotron .h1,

  #custom-html-t3 .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-t3 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t3 .thumbnail a > img,

#custom-html-t3 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t3 a.thumbnail.active,

#custom-html-t3 a.thumbnail:focus,

#custom-html-t3 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t3 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t3 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t3 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t3 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t3 .alert > p,

#custom-html-t3 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t3 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t3 .alert-dismissable,

#custom-html-t3 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t3 .alert-dismissable .close,

#custom-html-t3 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t3 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t3 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-t3 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t3 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t3 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t3 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t3 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t3 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t3 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t3 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t3 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t3 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t3 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t3 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t3 .progress-bar-striped,

#custom-html-t3 .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t3 .progress-bar.active,

#custom-html-t3 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t3 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t3 .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t3 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t3 .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t3 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t3 .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t3 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t3 .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t3 .media {

  margin-top: 15px;

}

#custom-html-t3 .media:first-child {

  margin-top: 0;

}

#custom-html-t3 .media,

#custom-html-t3 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t3 .media-body {

  width: 10000px;

}

#custom-html-t3 .media-object {

  display: block;

}

#custom-html-t3 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t3 .media-right,

#custom-html-t3 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t3 .media-left,

#custom-html-t3 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t3 .media-body,

#custom-html-t3 .media-left,

#custom-html-t3 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t3 .media-middle {

  vertical-align: middle;

}

#custom-html-t3 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t3 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t3 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t3 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-t3 .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t3 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t3 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t3 a.list-group-item,

#custom-html-t3 button.list-group-item {

  color: #555555;

}

#custom-html-t3 a.list-group-item .list-group-item-heading,

#custom-html-t3 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t3 a.list-group-item:focus,

#custom-html-t3 a.list-group-item:hover,

#custom-html-t3 button.list-group-item:focus,

#custom-html-t3 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t3 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t3 .list-group-item.disabled,

#custom-html-t3 .list-group-item.disabled:focus,

#custom-html-t3 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t3 .list-group-item.disabled .list-group-item-heading,

#custom-html-t3 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t3 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t3 .list-group-item.disabled .list-group-item-text,

#custom-html-t3 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t3 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t3 .list-group-item.active,

#custom-html-t3 .list-group-item.active:focus,

#custom-html-t3 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t3 .list-group-item.active .list-group-item-heading,

#custom-html-t3 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t3 .list-group-item.active .list-group-item-heading > small,

#custom-html-t3 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t3 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t3 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t3 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t3 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t3 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t3 .list-group-item.active .list-group-item-text,

#custom-html-t3 .list-group-item.active:focus .list-group-item-text,

#custom-html-t3 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t3 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t3 a.list-group-item-success,

#custom-html-t3 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t3 a.list-group-item-success .list-group-item-heading,

#custom-html-t3 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t3 a.list-group-item-success:focus,

#custom-html-t3 a.list-group-item-success:hover,

#custom-html-t3 button.list-group-item-success:focus,

#custom-html-t3 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t3 a.list-group-item-success.active,

#custom-html-t3 a.list-group-item-success.active:focus,

#custom-html-t3 a.list-group-item-success.active:hover,

#custom-html-t3 button.list-group-item-success.active,

#custom-html-t3 button.list-group-item-success.active:focus,

#custom-html-t3 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t3 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t3 a.list-group-item-info,

#custom-html-t3 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t3 a.list-group-item-info .list-group-item-heading,

#custom-html-t3 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t3 a.list-group-item-info:focus,

#custom-html-t3 a.list-group-item-info:hover,

#custom-html-t3 button.list-group-item-info:focus,

#custom-html-t3 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t3 a.list-group-item-info.active,

#custom-html-t3 a.list-group-item-info.active:focus,

#custom-html-t3 a.list-group-item-info.active:hover,

#custom-html-t3 button.list-group-item-info.active,

#custom-html-t3 button.list-group-item-info.active:focus,

#custom-html-t3 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t3 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t3 a.list-group-item-warning,

#custom-html-t3 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t3 a.list-group-item-warning .list-group-item-heading,

#custom-html-t3 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t3 a.list-group-item-warning:focus,

#custom-html-t3 a.list-group-item-warning:hover,

#custom-html-t3 button.list-group-item-warning:focus,

#custom-html-t3 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t3 a.list-group-item-warning.active,

#custom-html-t3 a.list-group-item-warning.active:focus,

#custom-html-t3 a.list-group-item-warning.active:hover,

#custom-html-t3 button.list-group-item-warning.active,

#custom-html-t3 button.list-group-item-warning.active:focus,

#custom-html-t3 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t3 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t3 a.list-group-item-danger,

#custom-html-t3 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t3 a.list-group-item-danger .list-group-item-heading,

#custom-html-t3 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t3 a.list-group-item-danger:focus,

#custom-html-t3 a.list-group-item-danger:hover,

#custom-html-t3 button.list-group-item-danger:focus,

#custom-html-t3 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t3 a.list-group-item-danger.active,

#custom-html-t3 a.list-group-item-danger.active:focus,

#custom-html-t3 a.list-group-item-danger.active:hover,

#custom-html-t3 button.list-group-item-danger.active,

#custom-html-t3 button.list-group-item-danger.active:focus,

#custom-html-t3 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t3 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t3 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t3 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t3 .panel-body {

  padding: 15px;

}

#custom-html-t3 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t3 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t3 .panel-title > .small,

#custom-html-t3 .panel-title > .small > a,

#custom-html-t3 .panel-title > a,

#custom-html-t3 .panel-title > small,

#custom-html-t3 .panel-title > small > a {

  color: inherit;

}

#custom-html-t3 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t3 .panel > .list-group,

#custom-html-t3 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t3 .panel > .list-group .list-group-item,

#custom-html-t3 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t3 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t3 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t3 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t3 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t3 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t3 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t3 .panel > .panel-collapse > .table,

#custom-html-t3 .panel > .table,

#custom-html-t3 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t3 .panel > .panel-collapse > .table caption,

#custom-html-t3 .panel > .table caption,

#custom-html-t3 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t3 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t3 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t3 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t3 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t3 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t3 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t3 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t3 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t3 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t3 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t3 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t3 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t3 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t3 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t3 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t3 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t3 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t3 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t3 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t3 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t3 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t3 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t3 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t3 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t3 .panel > .panel-body + .table,

#custom-html-t3 .panel > .panel-body + .table-responsive,

#custom-html-t3 .panel > .table + .panel-body,

#custom-html-t3 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t3 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t3 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t3 .panel > .table-bordered,

#custom-html-t3 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t3 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t3 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t3 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t3 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t3 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t3 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t3 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t3 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t3 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t3 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t3 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t3 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t3 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t3 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t3 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t3 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t3 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t3 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t3 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t3 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t3 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t3 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t3 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t3 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t3 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t3 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t3 .panel-group .panel {

  margin-bottom: 0;


  border-radius: 4px;

}

#custom-html-t3 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t3 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t3 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t3 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t3 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t3 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t3 .panel-default {

  border-color: #dddddd;

}

#custom-html-t3 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t3 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t3 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t3 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t3 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t3 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t3 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t3 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t3 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t3 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t3 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t3 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t3 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t3 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-t3 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t3 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t3 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t3 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t3 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t3 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t3 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t3 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t3 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t3 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t3 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t3 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t3 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t3 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t3 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t3 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t3 .embed-responsive .embed-responsive-item,

#custom-html-t3 .embed-responsive embed,

#custom-html-t3 .embed-responsive iframe,

#custom-html-t3 .embed-responsive object,

#custom-html-t3 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t3 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t3 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t3 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t3 .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t3 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t3 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t3 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t3 .close:focus,

#custom-html-t3 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t3 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t3 .modal-open {

  overflow: hidden;

}

#custom-html-t3 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t3 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t3 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t3 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t3 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t3 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t3 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t3 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t3 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t3 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t3 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t3 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t3 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t3 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t3 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t3 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t3 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t3 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-t3 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t3 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t3 .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-t3 .modal-lg {

    width: 900px;

  }

}

#custom-html-t3 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t3 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t3 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t3 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t3 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t3 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t3 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t3 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t3 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t3 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t3 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t3 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t3 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t3 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t3 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t3 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t3 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t3 .popover.top {

  margin-top: -10px;

}

#custom-html-t3 .popover.right {

  margin-left: 10px;

}

#custom-html-t3 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t3 .popover.left {

  margin-left: -10px;

}

#custom-html-t3 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t3 .popover-content {

  padding: 9px 14px;

}

#custom-html-t3 .popover > .arrow,

#custom-html-t3 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t3 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t3 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t3 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t3 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t3 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t3 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t3 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t3 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t3 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t3 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t3 .carousel {

  position: relative;

}

#custom-html-t3 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t3 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t3 .carousel-inner > .item > a > img,

#custom-html-t3 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t3 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t3 .carousel-inner > .item.active.right,

  #custom-html-t3 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t3 .carousel-inner > .item.active.left,

  #custom-html-t3 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t3 .carousel-inner > .item.active,

  #custom-html-t3 .carousel-inner > .item.next.left,

  #custom-html-t3 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t3 .carousel-inner > .active,

#custom-html-t3 .carousel-inner > .next,

#custom-html-t3 .carousel-inner > .prev {

  display: block;

}

#custom-html-t3 .carousel-inner > .active {

  left: 0;

}

#custom-html-t3 .carousel-inner > .next,

#custom-html-t3 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t3 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t3 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t3 .carousel-inner > .next.left,

#custom-html-t3 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t3 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t3 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t3 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t3 .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t3 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t3 .carousel-control:focus,

#custom-html-t3 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t3 .carousel-control .glyphicon-chevron-left,

#custom-html-t3 .carousel-control .glyphicon-chevron-right,

#custom-html-t3 .carousel-control .icon-next,

#custom-html-t3 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t3 .carousel-control .glyphicon-chevron-left,

#custom-html-t3 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t3 .carousel-control .glyphicon-chevron-right,

#custom-html-t3 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t3 .carousel-control .icon-next,

#custom-html-t3 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t3 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t3 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t3 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t3 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t3 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t3 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t3 .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-t3 .carousel-control .glyphicon-chevron-left,

  #custom-html-t3 .carousel-control .glyphicon-chevron-right,

  #custom-html-t3 .carousel-control .icon-next,

  #custom-html-t3 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t3 .carousel-control .glyphicon-chevron-left,

  #custom-html-t3 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t3 .carousel-control .glyphicon-chevron-right,

  #custom-html-t3 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t3 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t3 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t3 .btn-group-vertical > .btn-group:after,

#custom-html-t3 .btn-group-vertical > .btn-group:before,

#custom-html-t3 .btn-toolbar:after,

#custom-html-t3 .btn-toolbar:before,

#custom-html-t3 .clearfix:after,

#custom-html-t3 .clearfix:before,

#custom-html-t3 .container-fluid:after,

#custom-html-t3 .container-fluid:before,

#custom-html-t3 .container:after,

#custom-html-t3 .container:before,

#custom-html-t3 .dl-horizontal dd:after,

#custom-html-t3 .dl-horizontal dd:before,

#custom-html-t3 .form-horizontal .form-group:after,

#custom-html-t3 .form-horizontal .form-group:before,

#custom-html-t3 .modal-footer:after,

#custom-html-t3 .modal-footer:before,

#custom-html-t3 .modal-header:after,

#custom-html-t3 .modal-header:before,

#custom-html-t3 .nav:after,

#custom-html-t3 .nav:before,

#custom-html-t3 .navbar-collapse:after,

#custom-html-t3 .navbar-collapse:before,

#custom-html-t3 .navbar-header:after,

#custom-html-t3 .navbar-header:before,

#custom-html-t3 .navbar:after,

#custom-html-t3 .navbar:before,

#custom-html-t3 .pager:after,

#custom-html-t3 .pager:before,

#custom-html-t3 .panel-body:after,

#custom-html-t3 .panel-body:before,

#custom-html-t3 .row:after,

#custom-html-t3 .row:before {

  display: table;

  content: " ";

}

#custom-html-t3 .btn-group-vertical > .btn-group:after,

#custom-html-t3 .btn-toolbar:after,

#custom-html-t3 .clearfix:after,

#custom-html-t3 .container-fluid:after,

#custom-html-t3 .container:after,

#custom-html-t3 .dl-horizontal dd:after,

#custom-html-t3 .form-horizontal .form-group:after,

#custom-html-t3 .modal-footer:after,

#custom-html-t3 .modal-header:after,

#custom-html-t3 .nav:after,

#custom-html-t3 .navbar-collapse:after,

#custom-html-t3 .navbar-header:after,

#custom-html-t3 .navbar:after,

#custom-html-t3 .pager:after,

#custom-html-t3 .panel-body:after,

#custom-html-t3 .row:after {

  clear: both;

}

#custom-html-t3 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t3 .pull-right {

  float: right !important;

}

#custom-html-t3 .pull-left {

  float: left !important;

}

#custom-html-t3 .hide {

  display: none !important;

}

#custom-html-t3 .show {

  display: block !important;

}

#custom-html-t3 .invisible {

  visibility: hidden;

}

#custom-html-t3 .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t3 .hidden {

  display: none !important;

}

#custom-html-t3 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t3 .visible-lg,

#custom-html-t3 .visible-md,

#custom-html-t3 .visible-sm,

#custom-html-t3 .visible-xs {

  display: none !important;

}

#custom-html-t3 .visible-lg-block,

#custom-html-t3 .visible-lg-inline,

#custom-html-t3 .visible-lg-inline-block,

#custom-html-t3 .visible-md-block,

#custom-html-t3 .visible-md-inline,

#custom-html-t3 .visible-md-inline-block,

#custom-html-t3 .visible-sm-block,

#custom-html-t3 .visible-sm-inline,

#custom-html-t3 .visible-sm-inline-block,

#custom-html-t3 .visible-xs-block,

#custom-html-t3 .visible-xs-inline,

#custom-html-t3 .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-t3 .visible-xs {

    display: block !important;

  }

  #custom-html-t3 table.visible-xs {

    display: table !important;

  }

  #custom-html-t3 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t3 td.visible-xs,

  #custom-html-t3 th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t3 .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t3 .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t3 .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t3 .visible-sm {

    display: block !important;

  }

  #custom-html-t3 table.visible-sm {

    display: table !important;

  }

  #custom-html-t3 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t3 td.visible-sm,

  #custom-html-t3 th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t3 .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t3 .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t3 .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t3 .visible-md {

    display: block !important;

  }

  #custom-html-t3 table.visible-md {

    display: table !important;

  }

  #custom-html-t3 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t3 td.visible-md,

  #custom-html-t3 th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t3 .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t3 .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t3 .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t3 .visible-lg {

    display: block !important;

  }

  #custom-html-t3 table.visible-lg {

    display: table !important;

  }

  #custom-html-t3 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t3 td.visible-lg,

  #custom-html-t3 th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t3 .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t3 .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t3 .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t3 .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t3 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t3 .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t3 .hidden-lg {

    display: none !important;

  }

}

#custom-html-t3 .visible-print {

  display: none !important;

}

@media print {

  #custom-html-t3 .visible-print {

    display: block !important;

  }

  #custom-html-t3 table.visible-print {

    display: table !important;

  }

  #custom-html-t3 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t3 td.visible-print,

  #custom-html-t3 th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-t3 .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-t3 .visible-print-block {

    display: block !important;

  }

}

#custom-html-t3 .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-t3 .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-t3 .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-t3 .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-t3 .hidden-print {

    display: none !important;

  }

}

#custom-html-t3 .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-t3 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t3 .intl-tel-input .hide {

  display: none;

}

#custom-html-t3 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t3 .intl-tel-input input,

#custom-html-t3 .intl-tel-input input[type=tel],

#custom-html-t3 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t3 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t3 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t3 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t3 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t3 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t3 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t3 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t3 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t3 .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-t3 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t3 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t3 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t3 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t3 .intl-tel-input .country-list .country-name,

#custom-html-t3 .intl-tel-input .country-list .dial-code,

#custom-html-t3 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t3 .intl-tel-input .country-list .country-name,

#custom-html-t3 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t3 .intl-tel-input.allow-dropdown input,

#custom-html-t3 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t3 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t3 .intl-tel-input.separate-dial-code input,

#custom-html-t3 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t3 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t3 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t3 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t3 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t3 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t3 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t3 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t3 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t3 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t3 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t3 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t3 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t3 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t3 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t3 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t3 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t3 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t3 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t3 .iti-flag {

  width: 20px;

}

#custom-html-t3 .iti-flag.be {

  width: 18px;

}

#custom-html-t3 .iti-flag.ch {

  width: 15px;

}

#custom-html-t3 .iti-flag.mc {

  width: 19px;

}

#custom-html-t3 .iti-flag.ne {

  width: 18px;

}

#custom-html-t3 .iti-flag.np {

  width: 13px;

}


#custom-html-t3 .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t3 .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-t3 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t3 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t3 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t3 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t3 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t3 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t3 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t3 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t3 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t3 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t3 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t3 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t3 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t3 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t3 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t3 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t3 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t3 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t3 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t3 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t3 .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t3 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t3 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t3 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t3 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t3 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t3 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t3 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t3 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t3 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t3 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t3 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t3 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t3 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t3 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t3 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t3 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t3 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t3 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t3 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t3 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t3 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t3 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t3 .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t3 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t3 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t3 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t3 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t3 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t3 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t3 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t3 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t3 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t3 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t3 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t3 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t3 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t3 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t3 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t3 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t3 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t3 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t3 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t3 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t3 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t3 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t3 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t3 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t3 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t3 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t3 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t3 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t3 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t3 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t3 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t3 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t3 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t3 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t3 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t3 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t3 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t3 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t3 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t3 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t3 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t3 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t3 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t3 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t3 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t3 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t3 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t3 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t3 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t3 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t3 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t3 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t3 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t3 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t3 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t3 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t3 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t3 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t3 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t3 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t3 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-t3 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t3 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t3 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t3 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t3 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t3 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t3 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t3 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t3 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t3 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t3 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t3 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t3 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t3 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t3 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t3 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t3 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t3 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t3 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t3 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t3 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t3 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t3 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t3 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t3 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t3 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t3 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t3 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t3 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t3 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t3 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t3 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t3 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t3 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t3 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t3 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t3 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t3 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t3 .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t3 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t3 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t3 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t3 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t3 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t3 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t3 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t3 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t3 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t3 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t3 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t3 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t3 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t3 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t3 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t3 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t3 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t3 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t3 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t3 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t3 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t3 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t3 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t3 .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t3 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t3 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t3 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t3 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t3 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t3 .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-t3 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t3 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t3 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t3 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t3 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t3 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t3 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t3 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t3 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t3 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t3 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t3 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t3 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t3 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t3 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t3 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t3 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t3 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t3 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t3 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t3 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t3 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t3 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t3 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t3 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t3 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t3 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t3 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t3 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t3 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t3 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t3 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t3 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t3 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t3 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t3 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t3 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t3 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t3 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t3 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t3 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t3 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t3 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t3 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t3 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t3 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t3 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t3 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t3 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t3 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t3 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t3 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t3 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-t3 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t3 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t3 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t3 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t3 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t3 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t3 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t3 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t3 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t3 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t3 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t3 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t3 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t3 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t3 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t3 .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-t3 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t3 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;


}

#custom-html-t3 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t3 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t3 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t3 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t3 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t3 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t3 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t3 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t3 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t3 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t3 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t3 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t3 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t3 .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t3 .iti-flag.np {

  background-color: transparent;

}

#custom-html-t3 body,

#custom-html-t3 button,

#custom-html-t3 input,

#custom-html-t3 select,

#custom-html-t3 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t3 h1,

#custom-html-t3 h2,

#custom-html-t3 h3,

#custom-html-t3 h4,

#custom-html-t3 h5,

#custom-html-t3 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-t3 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t3 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t3 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t3 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-t3 .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t3 .navbar-main .navbar-nav > .active > a,

#custom-html-t3 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t3 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t3 .navbar-main .navbar-nav > .open > a,

#custom-html-t3 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t3 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t3 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t3 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t3 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t3 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t3 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-t3 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t3 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-t3 .navbar-header {

    float: none;

  }

  #custom-html-t3 .navbar-left,

  #custom-html-t3 .navbar-right {

    float: none !important;

  }

  #custom-html-t3 .navbar-toggle {

    display: block;

  }

  #custom-html-t3 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t3 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t3 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t3 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t3 .navbar-nav > li {

    float: none;

  }

  #custom-html-t3 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t3 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-t3 .panel {

  font-size: 0.9em;

}

#custom-html-t3 .list-group {

  font-size: 0.9em;

}

#custom-html-t3 .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-t3 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t3 a.list-group-item.active,

#custom-html-t3 a.list-group-item.active:focus,

#custom-html-t3 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t3 .pagination {

  font-size: 0.8em;

}

#custom-html-t3 .pagination > .active > a,

#custom-html-t3 .pagination > .active > a:focus,

#custom-html-t3 .pagination > .active > a:hover,

#custom-html-t3 .pagination > .active > span,

#custom-html-t3 .pagination > .active > span:focus,

#custom-html-t3 .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t3 .dropdown-menu > li > a:focus,

#custom-html-t3 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t3 .label {

  border-radius: 0;

}

#custom-html-t3 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t3 .list-group-item {

  padding: 7px 15px;

}

#custom-html-t3 .panel-body {

  padding: 10px 15px;

}

#custom-html-t3 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t3 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t3 .btn {

  overflow: hidden;

}

#custom-html-t3 body,

#custom-html-t3 html {

  height: 100%;

}

#custom-html-t3 body {

  background-color: #f8f8f8;

}

#custom-html-t3 h1,

#custom-html-t3 h2,

#custom-html-t3 h3,

#custom-html-t3 h4,

#custom-html-t3 h5,

#custom-html-t3 h6 {

  font-weight: 400;

}

#custom-html-t3 a {

  color: #005588;

}

#custom-html-t3 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t3 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t3 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t3 section#header .search {

  margin: 20px 0;

}

#custom-html-t3 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t3 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t3 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t3 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t3 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t3 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t3 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t3 section#footer {

    line-height: 32px;

  }

}

#custom-html-t3 section#footer .back-to-top {

  float: right;

}

#custom-html-t3 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t3 .adminreturndiv {

  display: none !important;

}

#custom-html-t3 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t3 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t3 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t3 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t3 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t3 .navbar-main .navbar-toggle:focus,

#custom-html-t3 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t3 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t3 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-t3 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t3 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t3 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-t3 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t3 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t3 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t3 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t3 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t3 .h1,

  #custom-html-t3 h1 {

    font-size: 26px;

  }

  #custom-html-t3 .h2,

  #custom-html-t3 h2 {

    font-size: 20px;

  }

  #custom-html-t3 .h3,

  #custom-html-t3 h3 {

    font-size: 16px;

  }

  #custom-html-t3 .h4,

  #custom-html-t3 h4 {

    font-size: 14px;

  }

  #custom-html-t3 .h5,

  #custom-html-t3 h5 {

    font-size: 12px;

  }

  #custom-html-t3 .h6,

  #custom-html-t3 h6 {

    font-size: 11px;

  }

  #custom-html-t3 div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-t3 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t3 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t3 .margin-10 {

  margin: 10px;

}

#custom-html-t3 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t3 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t3 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t3 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t3 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t3 .input-inline {

  display: inline-block;

}

#custom-html-t3 .input-inline-100 {

  width: 100px;

}

#custom-html-t3 .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-t3 .pull-md-left {

    float: left;

  }

  #custom-html-t3 .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-t3 .pull-sm-left {

    float: left;

  }

  #custom-html-t3 .pull-sm-right {

    float: right;

  }

  #custom-html-t3 .text-right-sm {

    text-align: right;

  }

}

#custom-html-t3 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t3 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t3 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-t3 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-t3 .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-t3 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t3 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t3 i.icon-rss {

  color: #ff6600;

}

#custom-html-t3 section#main-menu {

  background-color: #000000;

}

#custom-html-t3 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t3 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t3 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t3 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t3 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t3 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t3 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t3 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t3 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t3 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t3 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t3 section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-t3 section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-t3 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t3 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t3 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t3 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t3 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t3 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t3 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t3 .home-shortcuts li span {

  display: none;

}

#custom-html-t3 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t3 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-t3 .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-t3 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t3 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t3 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t3 .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-t3 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t3 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t3 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t3 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t3 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t3 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t3 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t3 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t3 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t3 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t3 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t3 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t3 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t3 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t3 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t3 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t3 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t3 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t3 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t3 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t3 .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-t3 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t3 .tiles .tile:nth-child(1),

  #custom-html-t3 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-t3 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t3 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t3 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t3 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t3 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t3 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t3 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t3 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t3 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t3 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t3 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t3 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t3 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t3 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t3 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t3 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t3 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t3 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t3 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t3 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t3 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t3 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t3 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t3 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t3 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t3 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t3 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t3 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t3 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t3 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t3 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t3 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t3 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t3 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t3 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t3 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t3 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t3 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t3 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t3 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t3 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t3 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t3 ul.top-nav > li,

#custom-html-t3 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t3 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t3 ul.top-nav > li:active > a,

#custom-html-t3 ul.top-nav > li:focus > a,

#custom-html-t3 ul.top-nav > li:hover > a,

#custom-html-t3 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t3 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t3 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t3 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t3 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-t3 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t3 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t3 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-t3 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t3 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t3 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-t3 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t3 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t3 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t3 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t3 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t3 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t3 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t3 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-t3 .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-t3 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t3 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-t3 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t3 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t3 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-t3 .domain-check-availability {

  width: 100px;

}

#custom-html-t3 .domain-step-options {

  min-height: 300px;

}

#custom-html-t3 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t3 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t3 .domain-checker-invalid,

#custom-html-t3 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t3 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t3 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t3 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t3 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t3 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t3 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t3 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t3 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t3 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-t3 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t3 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t3 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t3 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t3 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t3 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t3 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t3 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t3 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t3 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t3 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t3 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t3 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t3 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t3 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t3 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t3 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t3 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t3 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t3 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t3 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t3 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t3 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t3 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t3 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t3 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t3 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t3 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t3 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t3 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t3 div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t3 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t3 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t3 .product-status-active {

  background-color: #46a546;

}

#custom-html-t3 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t3 .product-status-cancelled,

#custom-html-t3 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t3 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t3 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t3 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t3 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t3 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t3 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-t3 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t3 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t3 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t3 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t3 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t3 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t3 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t3 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-t3 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t3 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t3 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t3 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-t3 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t3 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t3 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t3 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t3 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t3 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t3 .pagination > li > a,

#custom-html-t3 .pagination > li > span {

  color: #444444;

}

#custom-html-t3 .pagination > .active > a,

#custom-html-t3 .pagination > .active > a:focus,

#custom-html-t3 .pagination > .active > a:hover,

#custom-html-t3 .pagination > .active > span,

#custom-html-t3 .pagination > .active > span:focus,

#custom-html-t3 .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t3 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t3 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t3 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t3 .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-t3 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t3 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t3 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t3 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t3 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t3 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t3 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t3 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t3 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t3 .status-pending {

  color: #d9534f;

}

#custom-html-t3 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t3 .status-active,

#custom-html-t3 .status-completed,

#custom-html-t3 .status-open {

  color: #3fad46;

}

#custom-html-t3 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t3 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t3 .status-answered,

#custom-html-t3 .status-fraud {

  color: #000000;

}

#custom-html-t3 .status-expired,

#custom-html-t3 .status-transferred.away {

  color: #004258;

}

#custom-html-t3 .status-cancelled {

  color: #9fa29a;

}

#custom-html-t3 .status-terminated {

  color: #666666;

}

#custom-html-t3 .status-onhold {

  color: #224488;

}

#custom-html-t3 .status-inprogress {

  color: #cc0000;

}

#custom-html-t3 .status-closed {

  color: #888888;

}

#custom-html-t3 .status-paid {

  color: #498302;

}

#custom-html-t3 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t3 .status-cancelled {

  color: #87939f;

}

#custom-html-t3 .status-collections {

  color: #9a141e;

}

#custom-html-t3 .status-refunded {

  color: #319fc3;

}

#custom-html-t3 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t3 .status-delivered {

  color: #224488;

}

#custom-html-t3 .status-accepted {

  color: #498302;

}

#custom-html-t3 .status-dead,

#custom-html-t3 .status-lost {

  color: #000000;

}

#custom-html-t3 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t3 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t3 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t3 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t3 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t3 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t3 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t3 .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-t3 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t3 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t3 .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-t3 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t3 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t3 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t3 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t3 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t3 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t3 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t3 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t3 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t3 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t3 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t3 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t3 .ticket-reply .rating,

#custom-html-t3 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t3 .ticket-reply .rating span.star,

#custom-html-t3 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t3 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t3 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t3 .ticket-reply .rating span.star:before,

#custom-html-t3 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t3 .ticket-reply .rating span.star:hover:before,

#custom-html-t3 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t3 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t3 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t3 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t3 .ticket-reply .clear {

  clear: both;

}

#custom-html-t3 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t3 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t3 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t3 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t3 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t3 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t3 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t3 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t3 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t3 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-t3 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t3 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t3 .popover-user-notifications ul li i.far,

#custom-html-t3 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t3 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t3 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t3 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t3 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t3 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t3 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t3 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t3 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t3 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t3 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t3 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t3 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t3 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t3 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t3 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t3 div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-t3 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t3 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t3 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t3 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t3 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t3 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-t3 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t3 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t3 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t3 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t3 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t3 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t3 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t3 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t3 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t3 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t3 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t3 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t3 .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-t3 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t3 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t3 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t3 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t3 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t3 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-t3 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t3 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t3 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t3 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t3 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t3 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t3 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t3 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t3 .kb-category a small {

  color: #888888;

}

#custom-html-t3 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t3 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t3 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t3 .kbarticles a.admin-inline-edit,

#custom-html-t3 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t3 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t3 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t3 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t3 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t3 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t3 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t3 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t3 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t3 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t3 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t3 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t3 #stepResults {

  font-size: 20px;

}

#custom-html-t3 #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-t3 #stepResults {

    font-size: 14px;

  }

  #custom-html-t3 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t3 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-t3 #main-menu,

  #custom-html-t3 #top-nav,

  #custom-html-t3 .header-lined,

  #custom-html-t3 .sidebar {

    display: none;

  }

  #custom-html-t3 a[href]:after {

    content: "" !important;

  }

}

#custom-html-t3 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t3 h3.with-badge i,

#custom-html-t3 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t3 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-t3 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t3 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-t3 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t3 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t3 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t3 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t3 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t3 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t3 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t3 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t3 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t3 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t3 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t3 .login-popover {

  font-size: 12px;

}

#custom-html-t3 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t3 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t3 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t3 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t3 .error-container {

  text-align: center;

}

#custom-html-t3 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t3 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t3 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t3 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t3 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t3 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t3 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t3 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t3 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t3 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-t3 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t3 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-t3 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t3 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t3 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t3 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t3 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t3 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t3 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t3 .email-verification .btn:active,

#custom-html-t3 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t3 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t3 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t3 .email-verification .far,

#custom-html-t3 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-t3 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t3 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t3 .email-verification .button {

    float: right;

  }

  #custom-html-t3 .email-verification .far,

  #custom-html-t3 .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-t3 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t3 .email-verification.success .far,

#custom-html-t3 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t3 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t3 .email-verification.failed .far,

#custom-html-t3 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t3 .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-t3 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t3 .md-editor > .md-preview,

#custom-html-t3 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t3 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t3 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t3 .small-font {

  font-size: 0.9em;

}

#custom-html-t3 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t3 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t3 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t3 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t3 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t3 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t3 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t3 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t3 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t3 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t3 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t3 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t3 .panel-heading i.fab,

#custom-html-t3 .panel-heading i.fal,

#custom-html-t3 .panel-heading i.far,

#custom-html-t3 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t3 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t3 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t3 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t3 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t3 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t3 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t3 .panel-sidebar .list-group-item.disabled,

#custom-html-t3 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t3 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t3 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t3 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t3 .panel-sidebar a.list-group-item.active,

#custom-html-t3 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t3 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t3 .panel-sidebar a.list-group-item.active i,

#custom-html-t3 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t3 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t3 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t3 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t3 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t3 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t3 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t3 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t3 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t3 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t3 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t3 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t3 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t3 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t3 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t3 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-t3 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t3 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-t3 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t3 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t3 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t3 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t3 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t3 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t3 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t3 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t3 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t3 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t3 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t3 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t3 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t3 .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-t3 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t3 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t3 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t3 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t3 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t3 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t3 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t3 .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-t3 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t3 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t3 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t3 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t3 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t3 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t3 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t3 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t3 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t3 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t3 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t3 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t3 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t3 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t3 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t3 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t3 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t3 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t3 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t3 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t3 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t3 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t3 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t3 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t3 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t3 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t3 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t3 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t3 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t3 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t3 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t3 .panel-mc-sso .btn,

#custom-html-t3 .panel-mc-sso .form-control,

#custom-html-t3 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t3 .panel-mc-sso small {

  display: block;

}

#custom-html-t3 .social-signin-btns {

  text-align: center;

}

#custom-html-t3 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t3 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t3 .btn-social i.far,

#custom-html-t3 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-facebook.active,

#custom-html-t3 .btn-facebook:active,

#custom-html-t3 .btn-facebook:focus,

#custom-html-t3 .btn-facebook:hover,

#custom-html-t3 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-facebook.active,

#custom-html-t3 .btn-facebook:active,

#custom-html-t3 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t3 .btn-facebook.disabled,

#custom-html-t3 .btn-facebook.disabled.active,

#custom-html-t3 .btn-facebook.disabled:active,

#custom-html-t3 .btn-facebook.disabled:focus,

#custom-html-t3 .btn-facebook.disabled:hover,

#custom-html-t3 .btn-facebook[disabled],

#custom-html-t3 .btn-facebook[disabled].active,

#custom-html-t3 .btn-facebook[disabled]:active,

#custom-html-t3 .btn-facebook[disabled]:focus,

#custom-html-t3 .btn-facebook[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-facebook,

#custom-html-t3 fieldset[disabled] .btn-facebook.active,

#custom-html-t3 fieldset[disabled] .btn-facebook:active,

#custom-html-t3 fieldset[disabled] .btn-facebook:focus,

#custom-html-t3 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-google.active,

#custom-html-t3 .btn-google:active,

#custom-html-t3 .btn-google:focus,

#custom-html-t3 .btn-google:hover,

#custom-html-t3 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-google.active,

#custom-html-t3 .btn-google:active,

#custom-html-t3 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t3 .btn-google-plus.disabled.active,

#custom-html-t3 .btn-google-plus.disabled:active,

#custom-html-t3 .btn-google-plus.disabled:focus,

#custom-html-t3 .btn-google-plus[disabled].active,

#custom-html-t3 .btn-google-plus[disabled]:active,

#custom-html-t3 .btn-google-plus[disabled]:focus,

#custom-html-t3 .btn-google-plus[disabled]:hover,

#custom-html-t3 .btn-google.disabled,

#custom-html-t3 .btn-google.disabled:hover,

#custom-html-t3 .btn-google[disabled],

#custom-html-t3 fieldset[disabled] .btn-google,

#custom-html-t3 fieldset[disabled] .btn-google-plus.active,

#custom-html-t3 fieldset[disabled] .btn-google-plus:active,

#custom-html-t3 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t3 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-twitter.active,

#custom-html-t3 .btn-twitter:active,

#custom-html-t3 .btn-twitter:focus,

#custom-html-t3 .btn-twitter:hover,

#custom-html-t3 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .btn-twitter.active,

#custom-html-t3 .btn-twitter:active,

#custom-html-t3 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t3 .btn-twitter.disabled,

#custom-html-t3 .btn-twitter.disabled.active,

#custom-html-t3 .btn-twitter.disabled:active,

#custom-html-t3 .btn-twitter.disabled:focus,

#custom-html-t3 .btn-twitter.disabled:hover,

#custom-html-t3 .btn-twitter[disabled],

#custom-html-t3 .btn-twitter[disabled].active,

#custom-html-t3 .btn-twitter[disabled]:active,

#custom-html-t3 .btn-twitter[disabled]:focus,

#custom-html-t3 .btn-twitter[disabled]:hover,

#custom-html-t3 fieldset[disabled] .btn-twitter,

#custom-html-t3 fieldset[disabled] .btn-twitter.active,

#custom-html-t3 fieldset[disabled] .btn-twitter:active,

#custom-html-t3 fieldset[disabled] .btn-twitter:focus,

#custom-html-t3 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t3 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t3 .providerLinkingFeedback {

  display: none;

}

#custom-html-t3 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t3 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t3 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t3 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t3 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t3 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t3 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t3 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t3 #registration .field,

#custom-html-t3 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t3 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t3 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t3 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t3 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t3 #registration textarea.field {

  height: auto;

}

#custom-html-t3 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t3 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t3 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t3 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t3 #registration .field[disabled],

#custom-html-t3 #registration .field[readonly],

#custom-html-t3 #registration .form-control[disabled],

#custom-html-t3 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t3 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t3 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t3 .upgrade .product-to-be-upgraded h4,

#custom-html-t3 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t3 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t3 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t3 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t3 .upgrade .products .product .current,

#custom-html-t3 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t3 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t3 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-t3 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-t3 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t3 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t3 .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t3 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t3 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t3 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t3 .upgrade .products .far,

#custom-html-t3 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t3 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t3 .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-t3 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t3 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t3 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t3 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t3 .intl-tel-input {

  width: 100%;

}

#custom-html-t3 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t3 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .bootstrap-switch input[type=checkbox],

#custom-html-t3 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t3 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t3 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t3 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t3 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t3 .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-t3 .md-editor .md-footer,

#custom-html-t3 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t3 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t3 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t3 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t3 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t3 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t3 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t3 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t3 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t3 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t3 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t3 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t3 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t3 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t3 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t3 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t3 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t3 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t3 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t3 table.dataTable td,

#custom-html-t3 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t3 table.dataTable td.dataTables_empty,

#custom-html-t3 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t3 table.dataTable.nowrap td,

#custom-html-t3 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t3 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t3 table.dataTable thead > tr > td.sorting,

#custom-html-t3 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t3 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t3 table.dataTable thead > tr > th.sorting,

#custom-html-t3 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t3 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t3 table.dataTable thead > tr > td:active,

#custom-html-t3 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t3 table.dataTable thead .sorting,

#custom-html-t3 table.dataTable thead .sorting_asc,

#custom-html-t3 table.dataTable thead .sorting_asc_disabled,

#custom-html-t3 table.dataTable thead .sorting_desc,

#custom-html-t3 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t3 table.dataTable thead .sorting:after,

#custom-html-t3 table.dataTable thead .sorting_asc:after,

#custom-html-t3 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t3 table.dataTable thead .sorting_desc:after,

#custom-html-t3 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t3 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t3 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t3 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t3 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t3 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t3 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t3 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t3 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t3 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t3 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t3 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t3 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t3 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-t3 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t3 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t3 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t3 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-t3 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t3 table.dataTable.table-condensed .sorting:after,

#custom-html-t3 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t3 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t3 table.table-bordered.dataTable td,

#custom-html-t3 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t3 table.table-bordered.dataTable td:last-child,

#custom-html-t3 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t3 table.table-bordered.dataTable tbody td,

#custom-html-t3 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t3 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t3 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t3 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t3 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t3 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t3 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t3 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t3 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t3 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t3 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t3 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t3 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t3 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t3 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t3 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t3 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t3 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t3 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t3 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t3 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t3 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t3 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t3 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t3 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t3 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t3 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-t3 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t3 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t3 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t3 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t3 .multiselect-container > li {

  padding: 0;

}

#custom-html-t3 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t3 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t3 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t3 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t3 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t3 .multiselect-container > li > a > label.checkbox,

#custom-html-t3 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t3 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t3 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t3 .form-inline .multiselect-container label.checkbox,

#custom-html-t3 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t3 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t3 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7yQdLtLP {

  padding-top: 60px;

  padding-bottom: 30px;

  background-image: url("../../../assets/images/mbr-6-1920x1280.jpg");

}

.cid-sl7yQdLtLP P {

  color: #767676;

}

.cid-sl7yQdLtLP H1 {

  color: #ffffff;

}

.cid-sl7yQdLtLP .mbr-text,

.cid-sl7yQdLtLP .mbr-section-btn {

  color: #ffffff;

}

.cid-sl7yQdLtLP h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3xD1tT2g .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3xD1tT2g .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3xD1tT2g .divider-top::before,

.cid-sF3xD1tT2g .divider-bottom::before,

.cid-sF3xD1tT2g .divider-top::after,

.cid-sF3xD1tT2g .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3xD1tT2g .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3xD1tT2g .divider-triangles::before {

  top: -50px;

}

.cid-sF3xD1tT2g .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3xD1tT2g .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3xD1tT2g .divider-multitriangles::before,

.cid-sF3xD1tT2g .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3xD1tT2g .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-rFxwos91d4 {

  padding-top: 90px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-rFxwos91d4 h1 {

  color: #616161;

}

.cid-rFxwos91d4 h2,

.cid-rFxwos91d4 h3,

.cid-rFxwos91d4 p {

  color: #767676;

}

.cid-rFxwos91d4 .mbr-section-subtitle {

  font-style: italic;

}

.cid-rFxwos91d4 H1 {

  color: #000000;

  text-align: center;

}

.cid-rFxwos91d4 .mbr-text,

.cid-rFxwos91d4 .mbr-section-btn {

  color: #000000;

}

.cid-rFxwos91d4 H3 {

  color: #ffffff;

}

.cid-sF3xMAKZIn .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3xMAKZIn .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3xMAKZIn .divider-top::before,

.cid-sF3xMAKZIn .divider-bottom::before,

.cid-sF3xMAKZIn .divider-top::after,

.cid-sF3xMAKZIn .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3xMAKZIn .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3xMAKZIn .divider-triangles::before {

  top: -50px;

}

.cid-sF3xMAKZIn .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3xMAKZIn .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3xMAKZIn .divider-multitriangles::before,

.cid-sF3xMAKZIn .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3xMAKZIn .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-s88a9jWk0U {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s88a9jWk0U h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s88a9jWk0U p {

  color: #767676;

  text-align: left;

}

.cid-s88a9jWk0U .card-box {

  padding-top: 2rem;

}

.cid-s88a9jWk0U .card-wrapper {

  height: 100%;

}

.cid-svDBgyRE33 {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDBgyRE33 .content {

    text-align: center;

  }

  .cid-svDBgyRE33 .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDBgyRE33 .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDBgyRE33 .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDBgyRE33 .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDBgyRE33 .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDBgyRE33 .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDBgyRE33 .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDBgyRE33 .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDBgyRE33 .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDBgyRE33 .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDBgyRE33 .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDBgyRE33 .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDBgyRE33 .copyright > p {

  text-align: left;

}

.cid-svDBgyRE33 H5 {

  color: #000000;

}

.cid-svGHbUffiD .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGHbUffiD .my-float {

  margin-top: 16px;

}

.cid-svGHbUffiD P {

  color: #232323;

}

.cid-svGHbUffiD DIV {

  color: #ffffff;

}

.cid-svGHbUffiD H10 {

  color: #767676;

}

.cid-svGHbUffiD .hidden {

  display: none;

}

#custom-html-sv {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-sv html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sv body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-sv article,

#custom-html-sv aside,

#custom-html-sv details,

#custom-html-sv figcaption,

#custom-html-sv figure,

#custom-html-sv footer,

#custom-html-sv header,

#custom-html-sv hgroup,

#custom-html-sv main,

#custom-html-sv menu,

#custom-html-sv nav,

#custom-html-sv section,

#custom-html-sv summary {

  display: block;

}

#custom-html-sv audio,

#custom-html-sv canvas,

#custom-html-sv progress,

#custom-html-sv video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sv audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sv [hidden],

#custom-html-sv template {

  display: none;

}

#custom-html-sv a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-sv a:active,

#custom-html-sv a:hover {

  outline: 0;

}

#custom-html-sv abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sv b,

#custom-html-sv strong {

  font-weight: 700;

}

#custom-html-sv dfn {

  font-style: italic;

}

#custom-html-sv h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sv mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sv small {

  font-size: 80%;

}

#custom-html-sv sub,

#custom-html-sv sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sv sup {

  top: -0.5em;

}

#custom-html-sv sub {

  bottom: -0.25em;

}

#custom-html-sv img {

  border: 0;

  vertical-align: middle;

}

#custom-html-sv svg:not(:root) {

  overflow: hidden;

}

#custom-html-sv figure {

  margin: 0;

}

#custom-html-sv hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sv pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sv code,

#custom-html-sv kbd,

#custom-html-sv pre,

#custom-html-sv samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-sv button,

#custom-html-sv input,

#custom-html-sv optgroup,

#custom-html-sv select,

#custom-html-sv textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sv button {

  overflow: visible;

}

#custom-html-sv button,

#custom-html-sv select {

  text-transform: none;

}

#custom-html-sv button,

#custom-html-sv html input[type=button],

#custom-html-sv input[type=reset],

#custom-html-sv input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sv button[disabled],

#custom-html-sv html input[disabled] {

  cursor: default;

}

#custom-html-sv button::-moz-focus-inner,

#custom-html-sv input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sv input {

  line-height: normal;

}

#custom-html-sv input[type=checkbox],

#custom-html-sv input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sv input[type=number]::-webkit-inner-spin-button,

#custom-html-sv input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sv input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-sv input[type=search]::-webkit-search-cancel-button,

#custom-html-sv input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sv fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-sv legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sv textarea {

  overflow: auto;

}

#custom-html-sv optgroup {

  font-weight: 700;

}

#custom-html-sv table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-sv td,

#custom-html-sv th {

  padding: 0;

}

@media print {

  #custom-html-sv *,

  #custom-html-sv :after,

  #custom-html-sv :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sv a,

  #custom-html-sv a:visited {

    text-decoration: underline;

  }

  #custom-html-sv a[href]:after {

    content: "" !important;

  }

  #custom-html-sv abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sv a[href^="#"]:after,

  #custom-html-sv a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sv blockquote,

  #custom-html-sv pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sv thead {

    display: table-header-group;

  }

  #custom-html-sv img,

  #custom-html-sv tr {

    page-break-inside: avoid;

  }

  #custom-html-sv img {

    max-width: 100% !important;

  }

  #custom-html-sv h2,

  #custom-html-sv h3,

  #custom-html-sv p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sv h2,

  #custom-html-sv h3 {

    page-break-after: avoid;

  }

  #custom-html-sv .navbar {

    display: none;

  }

  #custom-html-sv .btn > .caret,

  #custom-html-sv .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sv .label {

    border: 1px solid #000000;

  }

  #custom-html-sv .table {

    border-collapse: collapse !important;

  }

  #custom-html-sv .table td,

  #custom-html-sv .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sv .table-bordered td,

  #custom-html-sv .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-sv .visible-print {

    display: block !important;

  }

  #custom-html-sv table.visible-print {

    display: table !important;

  }

  #custom-html-sv tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sv td.visible-print,

  #custom-html-sv th.visible-print {

    display: table-cell !important;

  }

  #custom-html-sv .visible-print-block {

    display: block !important;

  }

  #custom-html-sv .visible-print-inline {

    display: inline !important;

  }

  #custom-html-sv .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-sv .hidden-print {

    display: none !important;

  }

  #custom-html-sv #main-menu,

  #custom-html-sv #top-nav,

  #custom-html-sv .header-lined,

  #custom-html-sv .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sv .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sv .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sv .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sv .glyphicon-eur:before,

#custom-html-sv .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sv .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sv .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sv .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sv .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sv .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sv .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sv .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sv .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sv .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sv .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sv .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sv .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sv .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sv .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sv .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sv .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sv .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sv .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sv .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sv .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sv .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sv .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sv .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sv .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sv .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sv .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sv .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sv .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sv .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sv .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sv .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sv .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sv .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sv .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sv .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sv .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sv .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sv .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sv .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sv .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sv .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sv .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sv .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sv .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sv .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sv .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sv .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sv .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sv .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sv .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sv .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sv .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sv .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sv .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sv .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sv .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sv .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sv .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sv .glyphicon-list:before {

  content: "\e056";

}

#custom-html-sv .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sv .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sv .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sv .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sv .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sv .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sv .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sv .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sv .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sv .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sv .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sv .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sv .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sv .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sv .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sv .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sv .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sv .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sv .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sv .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sv .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sv .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sv .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sv .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sv .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-sv .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sv .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sv .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sv .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sv .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sv .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sv .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sv .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sv .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sv .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sv .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sv .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sv .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sv .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sv .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sv .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sv .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sv .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sv .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sv .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sv .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sv .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sv .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sv .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sv .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sv .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sv .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sv .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sv .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sv .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sv .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sv .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sv .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sv .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sv .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sv .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sv .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sv .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sv .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sv .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sv .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sv .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sv .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sv .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sv .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sv .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sv .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sv .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sv .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sv .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sv .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sv .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sv .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sv .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sv .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sv .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sv .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sv .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sv .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sv .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sv .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sv .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sv .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sv .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sv .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sv .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sv .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sv .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sv .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sv .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sv .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sv .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sv .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sv .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-sv .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sv .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sv .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sv .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sv .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sv .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sv .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sv .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sv .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sv .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sv .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sv .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sv .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sv .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sv .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sv .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sv .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sv .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sv .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sv .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sv .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sv .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sv .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sv .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sv .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sv .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sv .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sv .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sv .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sv .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sv .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sv .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sv .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sv .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sv .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sv .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sv .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sv .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sv .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sv .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sv .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sv .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sv .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sv .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sv .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sv .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sv .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sv .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sv .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sv .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sv .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sv .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sv .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sv .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sv .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sv .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sv .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sv .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sv .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sv .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sv .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sv .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sv .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sv .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sv .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sv .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sv .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sv .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sv .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sv .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sv .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sv .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sv .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sv .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sv .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sv .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sv .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sv .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sv .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sv .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sv .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sv .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sv .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sv .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sv .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sv .glyphicon-object-align-bottom:before {


  content: "\e245";

}

#custom-html-sv .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sv .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sv .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sv .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sv .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sv .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sv .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sv .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sv .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sv .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sv .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sv .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sv .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sv .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sv .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sv * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sv :after,

#custom-html-sv :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sv button,

#custom-html-sv input,

#custom-html-sv select,

#custom-html-sv textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sv a:focus,

#custom-html-sv a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sv a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sv .carousel-inner > .item > a > img,

#custom-html-sv .carousel-inner > .item > img,

#custom-html-sv .img-responsive,

#custom-html-sv .thumbnail a > img,

#custom-html-sv .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sv .img-rounded {

  border-radius: 6px;

}

#custom-html-sv .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sv .img-circle {

  border-radius: 50%;

}

#custom-html-sv .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sv .sr-only-focusable:active,

#custom-html-sv .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sv [role=button] {

  cursor: pointer;

}

#custom-html-sv .h1,

#custom-html-sv .h2,

#custom-html-sv .h3,

#custom-html-sv .h4,

#custom-html-sv .h5,

#custom-html-sv .h6,

#custom-html-sv h1,

#custom-html-sv h2,

#custom-html-sv h3,

#custom-html-sv h4,

#custom-html-sv h5,

#custom-html-sv h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sv .h1 .small,

#custom-html-sv .h1 small,

#custom-html-sv .h2 .small,

#custom-html-sv .h2 small,

#custom-html-sv .h3 .small,

#custom-html-sv .h3 small,

#custom-html-sv .h4 .small,

#custom-html-sv .h4 small,

#custom-html-sv .h5 .small,

#custom-html-sv .h5 small,

#custom-html-sv .h6 .small,

#custom-html-sv .h6 small,

#custom-html-sv h1 .small,

#custom-html-sv h1 small,

#custom-html-sv h2 .small,

#custom-html-sv h2 small,

#custom-html-sv h3 .small,

#custom-html-sv h3 small,

#custom-html-sv h4 .small,

#custom-html-sv h4 small,

#custom-html-sv h5 .small,

#custom-html-sv h5 small,

#custom-html-sv h6 .small,

#custom-html-sv h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sv .h1,

#custom-html-sv .h2,

#custom-html-sv .h3,

#custom-html-sv h1,

#custom-html-sv h2,

#custom-html-sv h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sv .h1 .small,

#custom-html-sv .h1 small,

#custom-html-sv .h2 .small,

#custom-html-sv .h2 small,

#custom-html-sv .h3 .small,

#custom-html-sv .h3 small,

#custom-html-sv h1 .small,

#custom-html-sv h1 small,

#custom-html-sv h2 .small,

#custom-html-sv h2 small,

#custom-html-sv h3 .small,

#custom-html-sv h3 small {

  font-size: 65%;

}

#custom-html-sv .h4,

#custom-html-sv .h5,

#custom-html-sv .h6,

#custom-html-sv h4,

#custom-html-sv h5,

#custom-html-sv h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sv .h4 .small,

#custom-html-sv .h4 small,

#custom-html-sv .h5 .small,

#custom-html-sv .h5 small,

#custom-html-sv .h6 .small,

#custom-html-sv .h6 small,

#custom-html-sv h4 .small,

#custom-html-sv h4 small,

#custom-html-sv h5 .small,

#custom-html-sv h5 small,

#custom-html-sv h6 .small,

#custom-html-sv h6 small {

  font-size: 75%;

}

#custom-html-sv .h1,

#custom-html-sv h1 {

  font-size: 36px;

}

#custom-html-sv .h2,

#custom-html-sv h2 {

  font-size: 30px;

}

#custom-html-sv .h3,

#custom-html-sv h3 {

  font-size: 24px;

}

#custom-html-sv .h4,

#custom-html-sv h4 {

  font-size: 18px;

}

#custom-html-sv .h5,

#custom-html-sv h5 {

  font-size: 14px;

}

#custom-html-sv .h6,

#custom-html-sv h6 {

  font-size: 12px;

}

#custom-html-sv p {

  margin: 0 0 10px;

}

#custom-html-sv .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sv .lead {

    font-size: 21px;

  }

  #custom-html-sv .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sv .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-sv .container {

    width: 750px;

  }

  #custom-html-sv .col-sm-1,

  #custom-html-sv .col-sm-10,

  #custom-html-sv .col-sm-11,

  #custom-html-sv .col-sm-12,

  #custom-html-sv .col-sm-2,

  #custom-html-sv .col-sm-3,

  #custom-html-sv .col-sm-4,

  #custom-html-sv .col-sm-5,

  #custom-html-sv .col-sm-6,

  #custom-html-sv .col-sm-7,

  #custom-html-sv .col-sm-8,

  #custom-html-sv .col-sm-9 {

    float: left;

  }

  #custom-html-sv .col-sm-12 {

    width: 100%;

  }

  #custom-html-sv .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sv .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sv .col-sm-9 {

    width: 75%;

  }

  #custom-html-sv .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sv .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sv .col-sm-6 {

    width: 50%;

  }

  #custom-html-sv .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sv .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sv .col-sm-3 {

    width: 25%;

  }

  #custom-html-sv .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sv .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sv .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sv .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sv .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sv .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sv .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sv .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sv .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sv .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sv .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sv .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sv .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sv .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sv .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sv .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sv .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sv .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sv .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sv .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sv .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sv .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sv .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sv .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sv .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sv .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sv .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sv .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sv .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sv .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sv .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sv .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sv .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sv .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sv .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sv .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sv .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sv .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sv .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sv .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sv .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-sv .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sv .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sv .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sv .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sv .form-inline .input-group .form-control,

  #custom-html-sv .form-inline .input-group .input-group-addon,

  #custom-html-sv .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sv .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sv .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sv .form-inline .checkbox,

  #custom-html-sv .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sv .form-inline .checkbox label,

  #custom-html-sv .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sv .form-inline .checkbox input[type=checkbox],

  #custom-html-sv .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sv .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sv .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-sv .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-sv .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-sv .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sv .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-sv .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sv .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sv .nav-tabs.nav-justified > .active > a,

  #custom-html-sv .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sv .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sv .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sv .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-sv .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sv .nav-tabs-justified > .active > a,

  #custom-html-sv .nav-tabs-justified > .active > a:focus,

  #custom-html-sv .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sv .navbar {

    border-radius: 4px;

  }

  #custom-html-sv .navbar-header {

    float: left;

  }

  #custom-html-sv .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sv .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sv .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sv .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sv .navbar-fixed-top .navbar-collapse,

  #custom-html-sv .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-sv .container-fluid > .navbar-collapse,

  #custom-html-sv .container-fluid > .navbar-header,

  #custom-html-sv .container > .navbar-collapse,

  #custom-html-sv .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-sv .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-sv .navbar-fixed-bottom,

  #custom-html-sv .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-sv .navbar > .container .navbar-brand,

  #custom-html-sv .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-sv .navbar-toggle {

    display: none;

  }

  #custom-html-sv .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sv .navbar-nav > li {


    float: left;

  }

  #custom-html-sv .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-sv .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sv .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sv .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sv .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sv .navbar-form .input-group .form-control,

  #custom-html-sv .navbar-form .input-group .input-group-addon,

  #custom-html-sv .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sv .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sv .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sv .navbar-form .checkbox,

  #custom-html-sv .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sv .navbar-form .checkbox label,

  #custom-html-sv .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sv .navbar-form .checkbox input[type=checkbox],

  #custom-html-sv .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sv .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sv .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sv .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-sv .navbar-left {

    float: left !important;

  }

  #custom-html-sv .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sv .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-sv .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sv .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sv .modal-sm {

    width: 300px;

  }

  #custom-html-sv .pull-sm-left {

    float: left;

  }

  #custom-html-sv .pull-sm-right {

    float: right;

  }

  #custom-html-sv .text-right-sm {

    text-align: right;

  }

  #custom-html-sv .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sv .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-sv .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sv .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sv .email-verification .button {

    float: right;

  }

  #custom-html-sv .email-verification .far,

  #custom-html-sv .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-sv .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sv .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-sv .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sv .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sv .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sv .small,

#custom-html-sv small {

  font-size: 85%;

}

#custom-html-sv .mark,

#custom-html-sv mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sv .text-left {

  text-align: left;

}

#custom-html-sv .text-right {

  text-align: right;

}

#custom-html-sv .text-center {

  text-align: center;

}

#custom-html-sv .text-justify {

  text-align: justify;

}

#custom-html-sv .text-nowrap {

  white-space: nowrap;

}

#custom-html-sv .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sv .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sv .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sv .text-muted {

  color: #777777;

}

#custom-html-sv .text-primary {

  color: #000000;

}

#custom-html-sv a.text-primary:focus,

#custom-html-sv a.text-primary:hover {

  color: #000000;

}

#custom-html-sv .text-success {

  color: #3c763d;

}

#custom-html-sv a.text-success:focus,

#custom-html-sv a.text-success:hover {

  color: #2b542c;

}

#custom-html-sv .text-info {

  color: #31708f;

}

#custom-html-sv a.text-info:focus,

#custom-html-sv a.text-info:hover {

  color: #000000;

}

#custom-html-sv .text-warning {

  color: #8a6d3b;

}

#custom-html-sv a.text-warning:focus,

#custom-html-sv a.text-warning:hover {

  color: #66512c;

}

#custom-html-sv .text-danger {

  color: #a94442;

}

#custom-html-sv a.text-danger:focus,

#custom-html-sv a.text-danger:hover {

  color: #843534;

}

#custom-html-sv .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-sv a.bg-primary:focus,

#custom-html-sv a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sv .bg-success {

  background-color: #dff0d8;

}

#custom-html-sv a.bg-success:focus,

#custom-html-sv a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sv .bg-info {

  background-color: #d9edf7;

}

#custom-html-sv a.bg-info:focus,

#custom-html-sv a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sv .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sv a.bg-warning:focus,

#custom-html-sv a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sv .bg-danger {

  background-color: #f2dede;

}

#custom-html-sv a.bg-danger:focus,

#custom-html-sv a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sv .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sv ol,

#custom-html-sv ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sv ol ol,

#custom-html-sv ol ul,

#custom-html-sv ul ol,

#custom-html-sv ul ul {

  margin-bottom: 0;

}

#custom-html-sv .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sv .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sv .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sv dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sv dd,

#custom-html-sv dt {

  line-height: 1.42857143;

}

#custom-html-sv dt {

  font-weight: 700;

}

#custom-html-sv dd {

  margin-left: 0;

}

#custom-html-sv abbr[data-original-title],

#custom-html-sv abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sv .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sv blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sv blockquote ol:last-child,

#custom-html-sv blockquote p:last-child,

#custom-html-sv blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sv blockquote .small,

#custom-html-sv blockquote footer,

#custom-html-sv blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sv blockquote .small:before,

#custom-html-sv blockquote footer:before,

#custom-html-sv blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sv .blockquote-reverse,

#custom-html-sv blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sv .blockquote-reverse .small:before,

#custom-html-sv .blockquote-reverse footer:before,

#custom-html-sv .blockquote-reverse small:before,

#custom-html-sv blockquote.pull-right .small:before,

#custom-html-sv blockquote.pull-right footer:before,

#custom-html-sv blockquote.pull-right small:before {

  content: '';

}

#custom-html-sv .blockquote-reverse .small:after,

#custom-html-sv .blockquote-reverse footer:after,

#custom-html-sv .blockquote-reverse small:after,

#custom-html-sv blockquote.pull-right .small:after,

#custom-html-sv blockquote.pull-right footer:after,

#custom-html-sv blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sv address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sv code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sv kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sv kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sv pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sv .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sv .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-sv .container {

    width: 970px;

  }

  #custom-html-sv .col-md-1,

  #custom-html-sv .col-md-10,

  #custom-html-sv .col-md-11,

  #custom-html-sv .col-md-12,

  #custom-html-sv .col-md-2,

  #custom-html-sv .col-md-3,

  #custom-html-sv .col-md-4,

  #custom-html-sv .col-md-5,

  #custom-html-sv .col-md-6,

  #custom-html-sv .col-md-7,

  #custom-html-sv .col-md-8,

  #custom-html-sv .col-md-9 {

    float: left;

  }

  #custom-html-sv .col-md-12 {

    width: 100%;

  }

  #custom-html-sv .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sv .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sv .col-md-9 {

    width: 75%;

  }

  #custom-html-sv .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sv .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sv .col-md-6 {

    width: 50%;

  }

  #custom-html-sv .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sv .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sv .col-md-3 {

    width: 25%;

  }

  #custom-html-sv .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sv .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sv .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sv .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sv .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sv .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sv .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sv .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sv .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sv .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sv .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sv .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sv .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sv .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sv .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sv .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sv .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sv .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sv .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sv .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sv .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sv .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sv .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sv .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sv .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sv .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sv .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sv .col-md-push-0 {

    left: auto;

  }

  #custom-html-sv .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sv .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sv .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sv .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sv .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sv .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sv .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sv .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sv .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sv .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sv .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sv .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sv .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-sv .modal-lg {

    width: 900px;

  }

  #custom-html-sv .pull-md-left {

    float: left;

  }

  #custom-html-sv .pull-md-right {

    float: right;

  }

  #custom-html-sv h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sv .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sv .container {

    width: 1170px;

  }

  #custom-html-sv .col-lg-1,

  #custom-html-sv .col-lg-10,

  #custom-html-sv .col-lg-11,

  #custom-html-sv .col-lg-12,

  #custom-html-sv .col-lg-2,

  #custom-html-sv .col-lg-3,

  #custom-html-sv .col-lg-4,

  #custom-html-sv .col-lg-5,

  #custom-html-sv .col-lg-6,

  #custom-html-sv .col-lg-7,

  #custom-html-sv .col-lg-8,

  #custom-html-sv .col-lg-9 {

    float: left;

  }

  #custom-html-sv .col-lg-12 {

    width: 100%;

  }

  #custom-html-sv .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sv .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sv .col-lg-9 {

    width: 75%;

  }

  #custom-html-sv .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sv .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sv .col-lg-6 {

    width: 50%;

  }

  #custom-html-sv .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sv .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sv .col-lg-3 {

    width: 25%;

  }

  #custom-html-sv .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sv .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sv .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sv .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sv .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sv .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sv .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sv .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sv .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sv .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sv .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sv .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sv .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sv .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sv .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sv .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sv .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sv .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sv .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sv .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sv .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sv .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sv .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sv .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sv .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sv .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sv .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sv .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sv .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sv .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sv .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sv .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sv .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sv .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sv .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sv .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sv .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sv .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sv .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sv .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sv .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-sv .visible-lg {

    display: block !important;

  }

  #custom-html-sv table.visible-lg {

    display: table !important;

  }

  #custom-html-sv tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sv td.visible-lg,

  #custom-html-sv th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-sv .visible-lg-block {

    display: block !important;

  }

  #custom-html-sv .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-sv .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-sv .hidden-lg {

    display: none !important;

  }

  #custom-html-sv .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sv .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sv .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sv .col-lg-1,

#custom-html-sv .col-lg-10,

#custom-html-sv .col-lg-11,

#custom-html-sv .col-lg-12,

#custom-html-sv .col-lg-2,

#custom-html-sv .col-lg-3,

#custom-html-sv .col-lg-4,

#custom-html-sv .col-lg-5,

#custom-html-sv .col-lg-6,

#custom-html-sv .col-lg-7,

#custom-html-sv .col-lg-8,

#custom-html-sv .col-lg-9,

#custom-html-sv .col-md-1,

#custom-html-sv .col-md-10,

#custom-html-sv .col-md-11,

#custom-html-sv .col-md-12,

#custom-html-sv .col-md-2,

#custom-html-sv .col-md-3,

#custom-html-sv .col-md-4,

#custom-html-sv .col-md-5,

#custom-html-sv .col-md-6,

#custom-html-sv .col-md-7,

#custom-html-sv .col-md-8,

#custom-html-sv .col-md-9,

#custom-html-sv .col-sm-1,

#custom-html-sv .col-sm-10,

#custom-html-sv .col-sm-11,

#custom-html-sv .col-sm-12,

#custom-html-sv .col-sm-2,

#custom-html-sv .col-sm-3,

#custom-html-sv .col-sm-4,

#custom-html-sv .col-sm-5,

#custom-html-sv .col-sm-6,

#custom-html-sv .col-sm-7,

#custom-html-sv .col-sm-8,

#custom-html-sv .col-sm-9,

#custom-html-sv .col-xs-1,

#custom-html-sv .col-xs-10,

#custom-html-sv .col-xs-11,

#custom-html-sv .col-xs-12,

#custom-html-sv .col-xs-2,

#custom-html-sv .col-xs-3,

#custom-html-sv .col-xs-4,

#custom-html-sv .col-xs-5,

#custom-html-sv .col-xs-6,

#custom-html-sv .col-xs-7,

#custom-html-sv .col-xs-8,

#custom-html-sv .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sv .col-xs-1,

#custom-html-sv .col-xs-10,

#custom-html-sv .col-xs-11,

#custom-html-sv .col-xs-12,

#custom-html-sv .col-xs-2,

#custom-html-sv .col-xs-3,

#custom-html-sv .col-xs-4,

#custom-html-sv .col-xs-5,

#custom-html-sv .col-xs-6,

#custom-html-sv .col-xs-7,

#custom-html-sv .col-xs-8,

#custom-html-sv .col-xs-9 {

  float: left;

}

#custom-html-sv .col-xs-12 {

  width: 100%;

}

#custom-html-sv .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sv .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sv .col-xs-9 {

  width: 75%;

}

#custom-html-sv .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sv .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sv .col-xs-6 {

  width: 50%;

}

#custom-html-sv .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sv .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sv .col-xs-3 {

  width: 25%;

}

#custom-html-sv .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sv .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sv .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sv .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sv .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sv .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sv .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sv .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sv .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sv .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sv .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sv .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sv .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sv .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sv .col-xs-pull-0 {

  right: auto;

}

#custom-html-sv .col-xs-push-12 {

  left: 100%;

}

#custom-html-sv .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sv .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sv .col-xs-push-9 {

  left: 75%;

}

#custom-html-sv .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sv .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sv .col-xs-push-6 {

  left: 50%;

}

#custom-html-sv .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sv .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sv .col-xs-push-3 {

  left: 25%;

}

#custom-html-sv .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sv .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sv .col-xs-push-0 {

  left: auto;

}

#custom-html-sv .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sv .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sv .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sv .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sv .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sv .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sv .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sv .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sv .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sv .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sv .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sv .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-sv .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-sv caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sv th {

  text-align: left;

}

#custom-html-sv .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sv .table > tbody > tr > td,

#custom-html-sv .table > tbody > tr > th,

#custom-html-sv .table > tfoot > tr > td,

#custom-html-sv .table > tfoot > tr > th,

#custom-html-sv .table > thead > tr > td,

#custom-html-sv .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sv .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sv .table > caption + thead > tr:first-child > td,

#custom-html-sv .table > caption + thead > tr:first-child > th,

#custom-html-sv .table > colgroup + thead > tr:first-child > td,

#custom-html-sv .table > colgroup + thead > tr:first-child > th,

#custom-html-sv .table > thead:first-child > tr:first-child > td,

#custom-html-sv .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sv .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sv .table .table {

  background-color: #ffffff;

}

#custom-html-sv .table-condensed > tbody > tr > td,

#custom-html-sv .table-condensed > tbody > tr > th,

#custom-html-sv .table-condensed > tfoot > tr > td,

#custom-html-sv .table-condensed > tfoot > tr > th,

#custom-html-sv .table-condensed > thead > tr > td,

#custom-html-sv .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sv .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sv .table-bordered > tbody > tr > td,

#custom-html-sv .table-bordered > tbody > tr > th,

#custom-html-sv .table-bordered > tfoot > tr > td,

#custom-html-sv .table-bordered > tfoot > tr > th,

#custom-html-sv .table-bordered > thead > tr > td,

#custom-html-sv .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sv .table-bordered > thead > tr > td,

#custom-html-sv .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sv .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sv .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sv table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sv table td[class*=col-],

#custom-html-sv table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-sv .table > tbody > tr.active > td,

#custom-html-sv .table > tbody > tr.active > th,

#custom-html-sv .table > tbody > tr > td.active,

#custom-html-sv .table > tbody > tr > th.active,

#custom-html-sv .table > tfoot > tr.active > td,

#custom-html-sv .table > tfoot > tr.active > th,

#custom-html-sv .table > tfoot > tr > td.active,

#custom-html-sv .table > tfoot > tr > th.active,

#custom-html-sv .table > thead > tr.active > td,

#custom-html-sv .table > thead > tr.active > th,

#custom-html-sv .table > thead > tr > td.active,

#custom-html-sv .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sv .table-hover > tbody > tr.active:hover > td,

#custom-html-sv .table-hover > tbody > tr.active:hover > th,

#custom-html-sv .table-hover > tbody > tr:hover > .active,

#custom-html-sv .table-hover > tbody > tr > td.active:hover,

#custom-html-sv .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sv .table > tbody > tr.success > td,

#custom-html-sv .table > tbody > tr.success > th,

#custom-html-sv .table > tbody > tr > td.success,

#custom-html-sv .table > tbody > tr > th.success,

#custom-html-sv .table > tfoot > tr.success > td,

#custom-html-sv .table > tfoot > tr.success > th,

#custom-html-sv .table > tfoot > tr > td.success,

#custom-html-sv .table > tfoot > tr > th.success,

#custom-html-sv .table > thead > tr.success > td,

#custom-html-sv .table > thead > tr.success > th,

#custom-html-sv .table > thead > tr > td.success,

#custom-html-sv .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sv .table-hover > tbody > tr.success:hover > td,

#custom-html-sv .table-hover > tbody > tr.success:hover > th,

#custom-html-sv .table-hover > tbody > tr:hover > .success,

#custom-html-sv .table-hover > tbody > tr > td.success:hover,

#custom-html-sv .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sv .table > tbody > tr.info > td,

#custom-html-sv .table > tbody > tr.info > th,

#custom-html-sv .table > tbody > tr > td.info,

#custom-html-sv .table > tbody > tr > th.info,

#custom-html-sv .table > tfoot > tr.info > td,

#custom-html-sv .table > tfoot > tr.info > th,

#custom-html-sv .table > tfoot > tr > td.info,

#custom-html-sv .table > tfoot > tr > th.info,

#custom-html-sv .table > thead > tr.info > td,

#custom-html-sv .table > thead > tr.info > th,

#custom-html-sv .table > thead > tr > td.info,

#custom-html-sv .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sv .table-hover > tbody > tr.info:hover > td,

#custom-html-sv .table-hover > tbody > tr.info:hover > th,

#custom-html-sv .table-hover > tbody > tr:hover > .info,

#custom-html-sv .table-hover > tbody > tr > td.info:hover,

#custom-html-sv .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sv .table > tbody > tr.warning > td,

#custom-html-sv .table > tbody > tr.warning > th,

#custom-html-sv .table > tbody > tr > td.warning,

#custom-html-sv .table > tbody > tr > th.warning,

#custom-html-sv .table > tfoot > tr.warning > td,

#custom-html-sv .table > tfoot > tr.warning > th,

#custom-html-sv .table > tfoot > tr > td.warning,

#custom-html-sv .table > tfoot > tr > th.warning,

#custom-html-sv .table > thead > tr.warning > td,

#custom-html-sv .table > thead > tr.warning > th,

#custom-html-sv .table > thead > tr > td.warning,

#custom-html-sv .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sv .table-hover > tbody > tr.warning:hover > td,

#custom-html-sv .table-hover > tbody > tr.warning:hover > th,

#custom-html-sv .table-hover > tbody > tr:hover > .warning,

#custom-html-sv .table-hover > tbody > tr > td.warning:hover,

#custom-html-sv .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sv .table > tbody > tr.danger > td,

#custom-html-sv .table > tbody > tr.danger > th,

#custom-html-sv .table > tbody > tr > td.danger,

#custom-html-sv .table > tbody > tr > th.danger,

#custom-html-sv .table > tfoot > tr.danger > td,

#custom-html-sv .table > tfoot > tr.danger > th,

#custom-html-sv .table > tfoot > tr > td.danger,

#custom-html-sv .table > tfoot > tr > th.danger,

#custom-html-sv .table > thead > tr.danger > td,

#custom-html-sv .table > thead > tr.danger > th,

#custom-html-sv .table > thead > tr > td.danger,

#custom-html-sv .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sv .table-hover > tbody > tr.danger:hover > td,

#custom-html-sv .table-hover > tbody > tr.danger:hover > th,

#custom-html-sv .table-hover > tbody > tr:hover > .danger,

#custom-html-sv .table-hover > tbody > tr > td.danger:hover,

#custom-html-sv .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sv .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sv .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sv .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sv .table-responsive > .table > tbody > tr > td,

  #custom-html-sv .table-responsive > .table > tbody > tr > th,

  #custom-html-sv .table-responsive > .table > tfoot > tr > td,

  #custom-html-sv .table-responsive > .table > tfoot > tr > th,

  #custom-html-sv .table-responsive > .table > thead > tr > td,

  #custom-html-sv .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sv .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sv .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sv .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sv .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sv .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sv .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sv .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sv .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sv .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sv .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sv .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sv .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sv .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sv .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sv .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sv .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sv .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-sv div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sv div.dataTables_wrapper div.dataTables_info,

  #custom-html-sv div.dataTables_wrapper div.dataTables_length,

  #custom-html-sv div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-sv div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sv label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sv input[type=file] {

  display: block;

}

#custom-html-sv input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sv select[multiple],

#custom-html-sv select[size] {

  height: auto;

}

#custom-html-sv input[type=checkbox]:focus,

#custom-html-sv input[type=file]:focus,

#custom-html-sv input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sv output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sv .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sv .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sv .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sv .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sv .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sv .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sv .form-control[disabled],

#custom-html-sv .form-control[readonly],

#custom-html-sv fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sv .form-control[disabled],

#custom-html-sv fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sv textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sv input[type=date].form-control,

  #custom-html-sv input[type=datetime-local].form-control,

  #custom-html-sv input[type=month].form-control,

  #custom-html-sv input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sv .input-group-sm input[type=date],

  #custom-html-sv .input-group-sm input[type=datetime-local],

  #custom-html-sv .input-group-sm input[type=month],

  #custom-html-sv .input-group-sm input[type=time],

  #custom-html-sv input[type=date].input-sm,

  #custom-html-sv input[type=datetime-local].input-sm,

  #custom-html-sv input[type=month].input-sm,

  #custom-html-sv input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sv .input-group-lg input[type=date],

  #custom-html-sv .input-group-lg input[type=datetime-local],

  #custom-html-sv .input-group-lg input[type=month],

  #custom-html-sv .input-group-lg input[type=time],

  #custom-html-sv input[type=date].input-lg,

  #custom-html-sv input[type=datetime-local].input-lg,

  #custom-html-sv input[type=month].input-lg,

  #custom-html-sv input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sv .form-group {

  margin-bottom: 15px;

}

#custom-html-sv .checkbox,

#custom-html-sv .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sv .checkbox label,

#custom-html-sv .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sv .checkbox input[type=checkbox],

#custom-html-sv .checkbox-inline input[type=checkbox],

#custom-html-sv .radio input[type=radio],

#custom-html-sv .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sv .checkbox + .checkbox,

#custom-html-sv .radio + .radio {

  margin-top: -5px;

}

#custom-html-sv .checkbox-inline,

#custom-html-sv .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sv .checkbox-inline + .checkbox-inline,

#custom-html-sv .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sv fieldset[disabled] input[type=checkbox],

#custom-html-sv fieldset[disabled] input[type=radio],

#custom-html-sv input[type=checkbox].disabled,

#custom-html-sv input[type=checkbox][disabled],

#custom-html-sv input[type=radio].disabled,

#custom-html-sv input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sv .checkbox-inline.disabled,

#custom-html-sv .radio-inline.disabled,

#custom-html-sv fieldset[disabled] .checkbox-inline,

#custom-html-sv fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sv .checkbox.disabled label,

#custom-html-sv .radio.disabled label,

#custom-html-sv fieldset[disabled] .checkbox label,

#custom-html-sv fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sv .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sv .form-control-static.input-lg,

#custom-html-sv .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sv .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sv select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sv select[multiple].input-sm,

#custom-html-sv textarea.input-sm {

  height: auto;

}

#custom-html-sv .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sv .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sv .form-group-sm select[multiple].form-control,

#custom-html-sv .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sv .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sv .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sv select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sv select[multiple].input-lg,

#custom-html-sv textarea.input-lg {

  height: auto;

}

#custom-html-sv .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sv .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sv .form-group-lg select[multiple].form-control,

#custom-html-sv .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sv .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sv .has-feedback {

  position: relative;

}

#custom-html-sv .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sv .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sv .form-group-lg .form-control + .form-control-feedback,

#custom-html-sv .input-group-lg + .form-control-feedback,

#custom-html-sv .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sv .form-group-sm .form-control + .form-control-feedback,

#custom-html-sv .input-group-sm + .form-control-feedback,

#custom-html-sv .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sv .has-success .checkbox,

#custom-html-sv .has-success .checkbox-inline,

#custom-html-sv .has-success .control-label,

#custom-html-sv .has-success .help-block,

#custom-html-sv .has-success .radio,

#custom-html-sv .has-success .radio-inline,

#custom-html-sv .has-success.checkbox label,

#custom-html-sv .has-success.checkbox-inline label,

#custom-html-sv .has-success.radio label,

#custom-html-sv .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sv .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sv .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sv .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sv .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sv .has-warning .checkbox,

#custom-html-sv .has-warning .checkbox-inline,

#custom-html-sv .has-warning .control-label,

#custom-html-sv .has-warning .help-block,

#custom-html-sv .has-warning .radio,

#custom-html-sv .has-warning .radio-inline,

#custom-html-sv .has-warning.checkbox label,

#custom-html-sv .has-warning.checkbox-inline label,

#custom-html-sv .has-warning.radio label,

#custom-html-sv .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sv .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sv .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sv .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sv .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sv .has-error .checkbox,

#custom-html-sv .has-error .checkbox-inline,

#custom-html-sv .has-error .control-label,

#custom-html-sv .has-error .help-block,

#custom-html-sv .has-error .radio,

#custom-html-sv .has-error .radio-inline,

#custom-html-sv .has-error.checkbox label,

#custom-html-sv .has-error.checkbox-inline label,

#custom-html-sv .has-error.radio label,

#custom-html-sv .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sv .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sv .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sv .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sv .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sv .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sv .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sv .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-sv .form-horizontal .checkbox,

#custom-html-sv .form-horizontal .checkbox-inline,

#custom-html-sv .form-horizontal .radio,

#custom-html-sv .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sv .form-horizontal .checkbox,

#custom-html-sv .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sv .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sv .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-sv .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-sv .btn.active.focus,

#custom-html-sv .btn.active:focus,

#custom-html-sv .btn.focus,

#custom-html-sv .btn:active.focus,

#custom-html-sv .btn:active:focus,

#custom-html-sv .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sv .btn.focus,

#custom-html-sv .btn:focus,

#custom-html-sv .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sv .btn.active,

#custom-html-sv .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sv .btn.disabled,

#custom-html-sv .btn[disabled],

#custom-html-sv fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sv a.btn.disabled,

#custom-html-sv fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sv .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sv .btn-default.focus,

#custom-html-sv .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sv .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sv .btn-default.active,

#custom-html-sv .btn-default:active,

#custom-html-sv .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-sv .btn-default.active.focus,

#custom-html-sv .btn-default.active:focus,

#custom-html-sv .btn-default.active:hover,

#custom-html-sv .btn-default:active.focus,

#custom-html-sv .btn-default:active:focus,

#custom-html-sv .btn-default:active:hover,

#custom-html-sv .open > .dropdown-toggle.btn-default.focus,

#custom-html-sv .open > .dropdown-toggle.btn-default:focus,

#custom-html-sv .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sv .btn-default.disabled.focus,

#custom-html-sv .btn-default.disabled:focus,

#custom-html-sv .btn-default.disabled:hover,

#custom-html-sv .btn-default[disabled].focus,

#custom-html-sv .btn-default[disabled]:focus,

#custom-html-sv .btn-default[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-default.focus,

#custom-html-sv fieldset[disabled] .btn-default:focus,

#custom-html-sv fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sv .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sv .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sv .btn-primary.focus,

#custom-html-sv .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sv .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sv .btn-primary.active,

#custom-html-sv .btn-primary:active,

#custom-html-sv .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-sv .btn-primary.active.focus,

#custom-html-sv .btn-primary.active:focus,

#custom-html-sv .btn-primary.active:hover,

#custom-html-sv .btn-primary:active.focus,

#custom-html-sv .btn-primary:active:focus,

#custom-html-sv .btn-primary:active:hover,

#custom-html-sv .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sv .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sv .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sv .btn-primary.disabled.focus,

#custom-html-sv .btn-primary.disabled:focus,

#custom-html-sv .btn-primary.disabled:hover,

#custom-html-sv .btn-primary[disabled].focus,

#custom-html-sv .btn-primary[disabled]:focus,

#custom-html-sv .btn-primary[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-primary.focus,

#custom-html-sv fieldset[disabled] .btn-primary:focus,

#custom-html-sv fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sv .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sv .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sv .btn-success.focus,

#custom-html-sv .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sv .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sv .btn-success.active,

#custom-html-sv .btn-success:active,

#custom-html-sv .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-sv .btn-success.active.focus,

#custom-html-sv .btn-success.active:focus,

#custom-html-sv .btn-success.active:hover,

#custom-html-sv .btn-success:active.focus,

#custom-html-sv .btn-success:active:focus,

#custom-html-sv .btn-success:active:hover,

#custom-html-sv .open > .dropdown-toggle.btn-success.focus,

#custom-html-sv .open > .dropdown-toggle.btn-success:focus,

#custom-html-sv .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sv .btn-success.disabled.focus,

#custom-html-sv .btn-success.disabled:focus,

#custom-html-sv .btn-success.disabled:hover,

#custom-html-sv .btn-success[disabled].focus,

#custom-html-sv .btn-success[disabled]:focus,

#custom-html-sv .btn-success[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-success.focus,

#custom-html-sv fieldset[disabled] .btn-success:focus,

#custom-html-sv fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sv .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sv .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sv .btn-info.focus,

#custom-html-sv .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sv .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sv .btn-info.active,

#custom-html-sv .btn-info:active,

#custom-html-sv .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-sv .btn-info.active.focus,

#custom-html-sv .btn-info.active:focus,

#custom-html-sv .btn-info.active:hover,

#custom-html-sv .btn-info:active.focus,

#custom-html-sv .btn-info:active:focus,

#custom-html-sv .btn-info:active:hover,

#custom-html-sv .open > .dropdown-toggle.btn-info.focus,

#custom-html-sv .open > .dropdown-toggle.btn-info:focus,

#custom-html-sv .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sv .btn-info.disabled.focus,

#custom-html-sv .btn-info.disabled:focus,

#custom-html-sv .btn-info.disabled:hover,

#custom-html-sv .btn-info[disabled].focus,

#custom-html-sv .btn-info[disabled]:focus,

#custom-html-sv .btn-info[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-info.focus,

#custom-html-sv fieldset[disabled] .btn-info:focus,

#custom-html-sv fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sv .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sv .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sv .btn-warning.focus,

#custom-html-sv .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sv .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sv .btn-warning.active,

#custom-html-sv .btn-warning:active,

#custom-html-sv .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-sv .btn-warning.active.focus,

#custom-html-sv .btn-warning.active:focus,

#custom-html-sv .btn-warning.active:hover,

#custom-html-sv .btn-warning:active.focus,

#custom-html-sv .btn-warning:active:focus,

#custom-html-sv .btn-warning:active:hover,

#custom-html-sv .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sv .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sv .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sv .btn-warning.disabled.focus,

#custom-html-sv .btn-warning.disabled:focus,

#custom-html-sv .btn-warning.disabled:hover,

#custom-html-sv .btn-warning[disabled].focus,

#custom-html-sv .btn-warning[disabled]:focus,

#custom-html-sv .btn-warning[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-warning.focus,

#custom-html-sv fieldset[disabled] .btn-warning:focus,

#custom-html-sv fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sv .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sv .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sv .btn-danger.focus,

#custom-html-sv .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sv .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sv .btn-danger.active,

#custom-html-sv .btn-danger:active,


#custom-html-sv .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-sv .btn-danger.active.focus,

#custom-html-sv .btn-danger.active:focus,

#custom-html-sv .btn-danger.active:hover,

#custom-html-sv .btn-danger:active.focus,

#custom-html-sv .btn-danger:active:focus,

#custom-html-sv .btn-danger:active:hover,

#custom-html-sv .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sv .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sv .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sv .btn-danger.disabled.focus,

#custom-html-sv .btn-danger.disabled:focus,

#custom-html-sv .btn-danger.disabled:hover,

#custom-html-sv .btn-danger[disabled].focus,

#custom-html-sv .btn-danger[disabled]:focus,

#custom-html-sv .btn-danger[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-danger.focus,

#custom-html-sv fieldset[disabled] .btn-danger:focus,

#custom-html-sv fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sv .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sv .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sv .btn-link,

#custom-html-sv .btn-link.active,

#custom-html-sv .btn-link:active,

#custom-html-sv .btn-link[disabled],

#custom-html-sv fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sv .btn-link,

#custom-html-sv .btn-link:active,

#custom-html-sv .btn-link:focus,

#custom-html-sv .btn-link:hover {

  border-color: transparent;

}

#custom-html-sv .btn-link:focus,

#custom-html-sv .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sv .btn-link[disabled]:focus,

#custom-html-sv .btn-link[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-link:focus,

#custom-html-sv fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sv .btn-group-lg > .btn,

#custom-html-sv .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sv .btn-group-sm > .btn,

#custom-html-sv .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sv .btn-group-xs > .btn,

#custom-html-sv .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sv .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sv .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sv input[type=button].btn-block,

#custom-html-sv input[type=reset].btn-block,

#custom-html-sv input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sv .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sv .fade.in {

  opacity: 1;

}

#custom-html-sv .collapse {

  display: none;

}

#custom-html-sv .collapse.in {

  display: block;

}

#custom-html-sv tr.collapse.in {

  display: table-row;

}

#custom-html-sv tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sv .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-sv .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sv .dropdown,

#custom-html-sv .dropup {

  position: relative;

}

#custom-html-sv .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sv .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sv .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sv .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sv .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sv .dropdown-menu > li > a:focus,

#custom-html-sv .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sv .dropdown-menu > .active > a,

#custom-html-sv .dropdown-menu > .active > a:focus,

#custom-html-sv .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sv .dropdown-menu > .disabled > a,

#custom-html-sv .dropdown-menu > .disabled > a:focus,

#custom-html-sv .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sv .dropdown-menu > .disabled > a:focus,

#custom-html-sv .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sv .open > .dropdown-menu {

  display: block;

}

#custom-html-sv .open > a {

  outline: 0;

}

#custom-html-sv .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sv .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sv .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sv .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sv .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sv .dropup .caret,

#custom-html-sv .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sv .dropup .dropdown-menu,

#custom-html-sv .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-sv .btn-group,

#custom-html-sv .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sv .btn-group-vertical > .btn,

#custom-html-sv .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sv .btn-group-vertical > .btn.active,

#custom-html-sv .btn-group-vertical > .btn:active,

#custom-html-sv .btn-group-vertical > .btn:focus,

#custom-html-sv .btn-group-vertical > .btn:hover,

#custom-html-sv .btn-group > .btn.active,

#custom-html-sv .btn-group > .btn:active,

#custom-html-sv .btn-group > .btn:focus,

#custom-html-sv .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sv .btn-group .btn + .btn,

#custom-html-sv .btn-group .btn + .btn-group,

#custom-html-sv .btn-group .btn-group + .btn,


#custom-html-sv .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sv .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sv .btn-toolbar .btn,

#custom-html-sv .btn-toolbar .btn-group,

#custom-html-sv .btn-toolbar .input-group {

  float: left;

}

#custom-html-sv .btn-toolbar > .btn,

#custom-html-sv .btn-toolbar > .btn-group,

#custom-html-sv .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sv .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sv .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sv .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sv .btn-group > .btn:last-child:not(:first-child),

#custom-html-sv .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sv .btn-group > .btn-group {

  float: left;

}

#custom-html-sv .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sv .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sv .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sv .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sv .btn-group .dropdown-toggle:active,

#custom-html-sv .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sv .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sv .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sv .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sv .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sv .btn .caret {

  margin-left: 0;

}

#custom-html-sv .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sv .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sv .btn-group-vertical > .btn,

#custom-html-sv .btn-group-vertical > .btn-group,

#custom-html-sv .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sv .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sv .btn-group-vertical > .btn + .btn,

#custom-html-sv .btn-group-vertical > .btn + .btn-group,

#custom-html-sv .btn-group-vertical > .btn-group + .btn,

#custom-html-sv .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sv .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sv .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sv .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sv .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sv .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sv .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sv .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sv .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sv .btn-group-justified > .btn,

#custom-html-sv .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sv .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sv .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sv [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sv [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sv [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sv [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sv .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sv .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sv .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sv .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sv .input-group-lg > .form-control,

#custom-html-sv .input-group-lg > .input-group-addon,

#custom-html-sv .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sv select.input-group-lg > .form-control,

#custom-html-sv select.input-group-lg > .input-group-addon,

#custom-html-sv select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sv select[multiple].input-group-lg > .form-control,

#custom-html-sv select[multiple].input-group-lg > .input-group-addon,

#custom-html-sv select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sv textarea.input-group-lg > .form-control,

#custom-html-sv textarea.input-group-lg > .input-group-addon,

#custom-html-sv textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sv .input-group-sm > .form-control,

#custom-html-sv .input-group-sm > .input-group-addon,

#custom-html-sv .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sv select.input-group-sm > .form-control,

#custom-html-sv select.input-group-sm > .input-group-addon,

#custom-html-sv select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sv select[multiple].input-group-sm > .form-control,

#custom-html-sv select[multiple].input-group-sm > .input-group-addon,

#custom-html-sv select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sv textarea.input-group-sm > .form-control,

#custom-html-sv textarea.input-group-sm > .input-group-addon,

#custom-html-sv textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sv .input-group .form-control,

#custom-html-sv .input-group-addon,

#custom-html-sv .input-group-btn {

  display: table-cell;

}

#custom-html-sv .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sv .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sv .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sv .input-group-addon,

#custom-html-sv .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sv .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sv .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sv .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sv .input-group-addon input[type=checkbox],

#custom-html-sv .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sv .input-group .form-control:first-child,

#custom-html-sv .input-group-addon:first-child,

#custom-html-sv .input-group-btn:first-child > .btn,

#custom-html-sv .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sv .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sv .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sv .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sv .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sv .input-group .form-control:last-child,

#custom-html-sv .input-group-addon:last-child,

#custom-html-sv .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sv .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sv .input-group-btn:last-child > .btn,

#custom-html-sv .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sv .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sv .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sv .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sv .input-group-btn > .btn {

  position: relative;

}

#custom-html-sv .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sv .input-group-btn > .btn:active,

#custom-html-sv .input-group-btn > .btn:focus,

#custom-html-sv .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sv .input-group-btn:first-child > .btn,

#custom-html-sv .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sv .input-group-btn:last-child > .btn,

#custom-html-sv .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sv .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sv .nav > li {

  position: relative;

  display: block;

}

#custom-html-sv .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sv .nav > li > a:focus,

#custom-html-sv .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sv .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sv .nav > li.disabled > a:focus,

#custom-html-sv .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sv .nav .open > a,

#custom-html-sv .nav .open > a:focus,

#custom-html-sv .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sv .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sv .nav > li > a > img {

  max-width: none;

}

#custom-html-sv .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sv .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sv .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sv .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sv .nav-tabs > li.active > a,

#custom-html-sv .nav-tabs > li.active > a:focus,

#custom-html-sv .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sv .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sv .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sv .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sv .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sv .nav-tabs.nav-justified > .active > a,

#custom-html-sv .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sv .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sv .nav-pills > li {

  float: left;

}

#custom-html-sv .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sv .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sv .nav-pills > li.active > a,

#custom-html-sv .nav-pills > li.active > a:focus,

#custom-html-sv .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sv .nav-stacked > li {

  float: none;

}

#custom-html-sv .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sv .nav-justified {

  width: 100%;

}

#custom-html-sv .nav-justified > li {

  float: none;

}

#custom-html-sv .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sv .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sv .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sv .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sv .nav-tabs-justified > .active > a,

#custom-html-sv .nav-tabs-justified > .active > a:focus,

#custom-html-sv .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sv .tab-content > .tab-pane {

  display: none;

}

#custom-html-sv .tab-content > .active {

  display: block;

}

#custom-html-sv .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sv .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-sv .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sv .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-sv .navbar-fixed-bottom .navbar-collapse,

#custom-html-sv .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sv .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sv .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sv .container-fluid > .navbar-collapse,

#custom-html-sv .container-fluid > .navbar-header,

#custom-html-sv .container > .navbar-collapse,

#custom-html-sv .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sv .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-sv .navbar-fixed-bottom,

#custom-html-sv .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-sv .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sv .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sv .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sv .navbar-brand:focus,

#custom-html-sv .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sv .navbar-brand > img {

  display: block;

}

#custom-html-sv .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sv .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sv .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sv .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-sv .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sv .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sv .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sv .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sv .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sv .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sv .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sv .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-sv .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sv .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-sv .visible-xs {

    display: block !important;

  }

  #custom-html-sv table.visible-xs {

    display: table !important;

  }

  #custom-html-sv tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sv td.visible-xs,

  #custom-html-sv th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-sv .visible-xs-block {

    display: block !important;

  }

  #custom-html-sv .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-sv .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-sv .hidden-xs {

    display: none !important;

  }

  #custom-html-sv .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sv .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-sv section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-sv .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sv .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sv .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sv .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-sv .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sv .tiles .tile:nth-child(1),

  #custom-html-sv .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-sv ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sv ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sv ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-sv .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sv .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sv .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-sv .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-sv .promo-banner form {

    text-align: center;

  }

}

#custom-html-sv .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sv .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sv .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sv .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sv .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sv .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sv .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sv .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sv .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sv .navbar-default .navbar-brand:focus,

#custom-html-sv .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sv .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sv .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sv .navbar-default .navbar-nav > li > a:focus,

#custom-html-sv .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sv .navbar-default .navbar-nav > .active > a,

#custom-html-sv .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sv .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sv .navbar-default .navbar-nav > .disabled > a,

#custom-html-sv .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sv .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sv .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sv .navbar-default .navbar-toggle:focus,

#custom-html-sv .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sv .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sv .navbar-default .navbar-collapse,

#custom-html-sv .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sv .navbar-default .navbar-nav > .open > a,

#custom-html-sv .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sv .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sv .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sv .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sv .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sv .navbar-default .btn-link:focus,

#custom-html-sv .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sv .navbar-default .btn-link[disabled]:focus,

#custom-html-sv .navbar-default .btn-link[disabled]:hover,

#custom-html-sv fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sv fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sv .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sv .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sv .navbar-inverse .navbar-brand:focus,

#custom-html-sv .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sv .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sv .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sv .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sv .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sv .navbar-inverse .navbar-nav > .active > a,

#custom-html-sv .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sv .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sv .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sv .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sv .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sv .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sv .navbar-inverse .navbar-toggle:focus,

#custom-html-sv .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sv .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sv .navbar-inverse .navbar-collapse,

#custom-html-sv .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sv .navbar-inverse .navbar-nav > .open > a,

#custom-html-sv .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sv .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sv .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sv .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sv .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sv .navbar-inverse .btn-link:focus,

#custom-html-sv .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sv .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sv .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sv fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sv fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sv .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sv .breadcrumb > li {

  display: inline-block;

}

#custom-html-sv .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sv .breadcrumb > .active {

  color: #777777;

}

#custom-html-sv .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-sv .pagination > li {

  display: inline;

}

#custom-html-sv .pagination > li > a,

#custom-html-sv .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sv .pagination > li:first-child > a,

#custom-html-sv .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sv .pagination > li:last-child > a,

#custom-html-sv .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sv .pagination > li > a:focus,

#custom-html-sv .pagination > li > a:hover,

#custom-html-sv .pagination > li > span:focus,

#custom-html-sv .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sv .pagination > .active > a,

#custom-html-sv .pagination > .active > a:focus,

#custom-html-sv .pagination > .active > a:hover,

#custom-html-sv .pagination > .active > span,

#custom-html-sv .pagination > .active > span:focus,

#custom-html-sv .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sv .pagination > .disabled > a,

#custom-html-sv .pagination > .disabled > a:focus,

#custom-html-sv .pagination > .disabled > a:hover,

#custom-html-sv .pagination > .disabled > span,

#custom-html-sv .pagination > .disabled > span:focus,

#custom-html-sv .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sv .pagination-lg > li > a,

#custom-html-sv .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sv .pagination-lg > li:first-child > a,

#custom-html-sv .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sv .pagination-lg > li:last-child > a,

#custom-html-sv .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sv .pagination-sm > li > a,

#custom-html-sv .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sv .pagination-sm > li:first-child > a,

#custom-html-sv .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sv .pagination-sm > li:last-child > a,

#custom-html-sv .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sv .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sv .pager li {

  display: inline;

}

#custom-html-sv .pager li > a,

#custom-html-sv .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sv .pager li > a:focus,

#custom-html-sv .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sv .pager .next > a,

#custom-html-sv .pager .next > span {

  float: right;

}

#custom-html-sv .pager .previous > a,

#custom-html-sv .pager .previous > span {

  float: left;

}

#custom-html-sv .pager .disabled > a,

#custom-html-sv .pager .disabled > a:focus,

#custom-html-sv .pager .disabled > a:hover,

#custom-html-sv .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sv .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-sv a.label:focus,

#custom-html-sv a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sv .label:empty {

  display: none;

}

#custom-html-sv .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sv .label-default {

  background-color: #777777;

}

#custom-html-sv .label-default[href]:focus,

#custom-html-sv .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sv .label-primary {

  background-color: #337ab7;

}

#custom-html-sv .label-primary[href]:focus,

#custom-html-sv .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sv .label-success {

  background-color: #5cb85c;

}

#custom-html-sv .label-success[href]:focus,

#custom-html-sv .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sv .label-info {

  background-color: #5bc0de;

}

#custom-html-sv .label-info[href]:focus,

#custom-html-sv .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sv .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sv .label-warning[href]:focus,

#custom-html-sv .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sv .label-danger {

  background-color: #d9534f;

}

#custom-html-sv .label-danger[href]:focus,

#custom-html-sv .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sv .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sv .badge:empty {

  display: none;

}

#custom-html-sv .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sv .btn-group-xs > .btn .badge,

#custom-html-sv .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sv a.badge:focus,

#custom-html-sv a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sv .list-group-item.active > .badge,

#custom-html-sv .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sv .list-group-item > .badge {

  float: right;

}

#custom-html-sv .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sv .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sv .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sv .jumbotron .h1,

#custom-html-sv .jumbotron h1 {

  color: inherit;

}

#custom-html-sv .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sv .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sv .container .jumbotron,

#custom-html-sv .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sv .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sv .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sv .container .jumbotron,

  #custom-html-sv .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sv .jumbotron .h1,

  #custom-html-sv .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-sv .carousel-control .glyphicon-chevron-left,

  #custom-html-sv .carousel-control .glyphicon-chevron-right,

  #custom-html-sv .carousel-control .icon-next,

  #custom-html-sv .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sv .carousel-control .glyphicon-chevron-left,

  #custom-html-sv .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sv .carousel-control .glyphicon-chevron-right,

  #custom-html-sv .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sv .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sv .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sv .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sv .thumbnail a > img,

#custom-html-sv .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sv a.thumbnail.active,

#custom-html-sv a.thumbnail:focus,

#custom-html-sv a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sv .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sv .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sv .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sv .alert .alert-link {

  font-weight: 700;

}

#custom-html-sv .alert > p,

#custom-html-sv .alert > ul {

  margin-bottom: 0;

}

#custom-html-sv .alert > p + p {

  margin-top: 5px;

}

#custom-html-sv .alert-dismissable,

#custom-html-sv .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sv .alert-dismissable .close,

#custom-html-sv .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sv .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sv .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sv .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sv .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sv .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sv .alert-info .alert-link {

  color: #000000;

}

#custom-html-sv .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sv .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sv .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sv .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sv .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sv .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sv .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sv .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sv .progress-bar-striped,

#custom-html-sv .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sv .progress-bar.active,

#custom-html-sv .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sv .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sv .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sv .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sv .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sv .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sv .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sv .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sv .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sv .media {

  margin-top: 15px;

}

#custom-html-sv .media:first-child {

  margin-top: 0;

}

#custom-html-sv .media,

#custom-html-sv .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sv .media-body {

  width: 10000px;

}

#custom-html-sv .media-object {

  display: block;

}

#custom-html-sv .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sv .media-right,

#custom-html-sv .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sv .media-left,

#custom-html-sv .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sv .media-body,

#custom-html-sv .media-left,

#custom-html-sv .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sv .media-middle {

  vertical-align: middle;

}

#custom-html-sv .media-bottom {

  vertical-align: bottom;

}

#custom-html-sv .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sv .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sv .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-sv .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-sv .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sv .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sv a.list-group-item,

#custom-html-sv button.list-group-item {

  color: #555555;

}

#custom-html-sv a.list-group-item .list-group-item-heading,

#custom-html-sv button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sv a.list-group-item:focus,

#custom-html-sv a.list-group-item:hover,

#custom-html-sv button.list-group-item:focus,

#custom-html-sv button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sv button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sv .list-group-item.disabled,

#custom-html-sv .list-group-item.disabled:focus,

#custom-html-sv .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sv .list-group-item.disabled .list-group-item-heading,

#custom-html-sv .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sv .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sv .list-group-item.disabled .list-group-item-text,


#custom-html-sv .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sv .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sv .list-group-item.active,

#custom-html-sv .list-group-item.active:focus,

#custom-html-sv .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sv .list-group-item.active .list-group-item-heading,

#custom-html-sv .list-group-item.active .list-group-item-heading > .small,

#custom-html-sv .list-group-item.active .list-group-item-heading > small,

#custom-html-sv .list-group-item.active:focus .list-group-item-heading,

#custom-html-sv .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sv .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sv .list-group-item.active:hover .list-group-item-heading,

#custom-html-sv .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sv .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sv .list-group-item.active .list-group-item-text,

#custom-html-sv .list-group-item.active:focus .list-group-item-text,

#custom-html-sv .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sv .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sv a.list-group-item-success,

#custom-html-sv button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sv a.list-group-item-success .list-group-item-heading,

#custom-html-sv button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sv a.list-group-item-success:focus,

#custom-html-sv a.list-group-item-success:hover,

#custom-html-sv button.list-group-item-success:focus,

#custom-html-sv button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sv a.list-group-item-success.active,

#custom-html-sv a.list-group-item-success.active:focus,

#custom-html-sv a.list-group-item-success.active:hover,

#custom-html-sv button.list-group-item-success.active,

#custom-html-sv button.list-group-item-success.active:focus,

#custom-html-sv button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sv .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sv a.list-group-item-info,

#custom-html-sv button.list-group-item-info {

  color: #31708f;

}

#custom-html-sv a.list-group-item-info .list-group-item-heading,

#custom-html-sv button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sv a.list-group-item-info:focus,

#custom-html-sv a.list-group-item-info:hover,

#custom-html-sv button.list-group-item-info:focus,

#custom-html-sv button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sv a.list-group-item-info.active,

#custom-html-sv a.list-group-item-info.active:focus,

#custom-html-sv a.list-group-item-info.active:hover,

#custom-html-sv button.list-group-item-info.active,

#custom-html-sv button.list-group-item-info.active:focus,

#custom-html-sv button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sv .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sv a.list-group-item-warning,

#custom-html-sv button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sv a.list-group-item-warning .list-group-item-heading,

#custom-html-sv button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sv a.list-group-item-warning:focus,

#custom-html-sv a.list-group-item-warning:hover,

#custom-html-sv button.list-group-item-warning:focus,

#custom-html-sv button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sv a.list-group-item-warning.active,

#custom-html-sv a.list-group-item-warning.active:focus,

#custom-html-sv a.list-group-item-warning.active:hover,

#custom-html-sv button.list-group-item-warning.active,

#custom-html-sv button.list-group-item-warning.active:focus,

#custom-html-sv button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sv .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sv a.list-group-item-danger,

#custom-html-sv button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sv a.list-group-item-danger .list-group-item-heading,

#custom-html-sv button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sv a.list-group-item-danger:focus,

#custom-html-sv a.list-group-item-danger:hover,

#custom-html-sv button.list-group-item-danger:focus,

#custom-html-sv button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sv a.list-group-item-danger.active,

#custom-html-sv a.list-group-item-danger.active:focus,

#custom-html-sv a.list-group-item-danger.active:hover,

#custom-html-sv button.list-group-item-danger.active,

#custom-html-sv button.list-group-item-danger.active:focus,

#custom-html-sv button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sv .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sv .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sv .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-sv .panel-body {

  padding: 10px 15px;

}

#custom-html-sv .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sv .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sv .panel-title > .small,

#custom-html-sv .panel-title > .small > a,

#custom-html-sv .panel-title > a,

#custom-html-sv .panel-title > small,

#custom-html-sv .panel-title > small > a {

  color: inherit;

}

#custom-html-sv .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sv .panel > .list-group,

#custom-html-sv .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sv .panel > .list-group .list-group-item,

#custom-html-sv .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sv .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sv .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sv .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sv .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sv .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sv .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sv .panel > .panel-collapse > .table,

#custom-html-sv .panel > .table,

#custom-html-sv .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sv .panel > .panel-collapse > .table caption,

#custom-html-sv .panel > .table caption,

#custom-html-sv .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sv .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sv .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sv .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sv .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sv .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sv .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sv .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sv .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sv .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sv .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sv .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sv .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sv .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sv .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sv .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sv .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sv .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sv .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sv .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sv .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sv .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sv .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sv .panel > .panel-body + .table,

#custom-html-sv .panel > .panel-body + .table-responsive,

#custom-html-sv .panel > .table + .panel-body,

#custom-html-sv .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sv .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sv .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sv .panel > .table-bordered,

#custom-html-sv .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sv .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sv .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sv .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sv .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sv .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sv .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sv .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sv .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sv .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sv .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sv .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sv .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sv .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sv .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sv .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sv .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sv .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sv .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sv .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sv .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sv .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sv .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sv .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sv .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sv .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sv .panel-group {

  margin-bottom: 20px;

}

#custom-html-sv .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sv .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sv .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sv .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sv .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sv .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sv .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sv .panel-default {

  border-color: #dddddd;

}

#custom-html-sv .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sv .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sv .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sv .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sv .panel-primary {

  border-color: #337ab7;

}

#custom-html-sv .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sv .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sv .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sv .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sv .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sv .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sv .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sv .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sv .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sv .panel-info {

  border-color: #bce8f1;

}

#custom-html-sv .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sv .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sv .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sv .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sv .panel-warning {

  border-color: #faebcc;

}

#custom-html-sv .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sv .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sv .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sv .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-sv .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sv .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sv .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sv .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sv .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sv .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sv .embed-responsive .embed-responsive-item,

#custom-html-sv .embed-responsive embed,

#custom-html-sv .embed-responsive iframe,

#custom-html-sv .embed-responsive object,

#custom-html-sv .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sv .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sv .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sv .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sv .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sv .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sv .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sv .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sv .close:focus,

#custom-html-sv .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sv button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sv .modal-open {

  overflow: hidden;

}

#custom-html-sv .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sv .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sv .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sv .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sv .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sv .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sv .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sv .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sv .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sv .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sv .modal-header .close {

  margin-top: -2px;

}

#custom-html-sv .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sv .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sv .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sv .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sv .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sv .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sv .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-sv .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sv .tooltip.in {

  opacity: 0.9;

}

#custom-html-sv .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sv .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sv .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sv .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sv .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sv .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sv .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sv .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sv .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sv .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sv .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sv .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sv .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sv .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sv .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sv .popover.top {

  margin-top: -10px;

}

#custom-html-sv .popover.right {

  margin-left: 10px;

}

#custom-html-sv .popover.bottom {

  margin-top: 10px;

}

#custom-html-sv .popover.left {

  margin-left: -10px;

}

#custom-html-sv .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sv .popover-content {

  padding: 9px 14px;

}

#custom-html-sv .popover > .arrow,

#custom-html-sv .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sv .popover > .arrow {

  border-width: 11px;

}

#custom-html-sv .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sv .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sv .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sv .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sv .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sv .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sv .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sv .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sv .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sv .carousel {

  position: relative;

}

#custom-html-sv .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sv .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sv .carousel-inner > .item > a > img,

#custom-html-sv .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sv .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sv .carousel-inner > .item.active.right,

  #custom-html-sv .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sv .carousel-inner > .item.active.left,

  #custom-html-sv .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sv .carousel-inner > .item.active,

  #custom-html-sv .carousel-inner > .item.next.left,

  #custom-html-sv .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sv .carousel-inner > .active,

#custom-html-sv .carousel-inner > .next,

#custom-html-sv .carousel-inner > .prev {

  display: block;

}

#custom-html-sv .carousel-inner > .active {

  left: 0;

}

#custom-html-sv .carousel-inner > .next,

#custom-html-sv .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sv .carousel-inner > .next {

  left: 100%;

}

#custom-html-sv .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sv .carousel-inner > .next.left,


#custom-html-sv .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sv .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sv .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sv .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sv .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sv .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sv .carousel-control:focus,

#custom-html-sv .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sv .carousel-control .glyphicon-chevron-left,

#custom-html-sv .carousel-control .glyphicon-chevron-right,

#custom-html-sv .carousel-control .icon-next,

#custom-html-sv .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sv .carousel-control .glyphicon-chevron-left,

#custom-html-sv .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sv .carousel-control .glyphicon-chevron-right,

#custom-html-sv .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sv .carousel-control .icon-next,

#custom-html-sv .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sv .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sv .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sv .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sv .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-sv .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sv .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sv .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-sv .btn-group-vertical > .btn-group:after,

#custom-html-sv .btn-group-vertical > .btn-group:before,

#custom-html-sv .btn-toolbar:after,

#custom-html-sv .btn-toolbar:before,

#custom-html-sv .clearfix:after,

#custom-html-sv .clearfix:before,

#custom-html-sv .container-fluid:after,

#custom-html-sv .container-fluid:before,

#custom-html-sv .container:after,

#custom-html-sv .container:before,

#custom-html-sv .dl-horizontal dd:after,

#custom-html-sv .dl-horizontal dd:before,

#custom-html-sv .form-horizontal .form-group:after,

#custom-html-sv .form-horizontal .form-group:before,

#custom-html-sv .modal-footer:after,

#custom-html-sv .modal-footer:before,

#custom-html-sv .modal-header:after,

#custom-html-sv .modal-header:before,

#custom-html-sv .nav:after,

#custom-html-sv .nav:before,

#custom-html-sv .navbar-collapse:after,

#custom-html-sv .navbar-collapse:before,

#custom-html-sv .navbar-header:after,

#custom-html-sv .navbar-header:before,

#custom-html-sv .navbar:after,

#custom-html-sv .navbar:before,

#custom-html-sv .pager:after,

#custom-html-sv .pager:before,

#custom-html-sv .panel-body:after,

#custom-html-sv .panel-body:before,

#custom-html-sv .row:after,

#custom-html-sv .row:before {

  display: table;

  content: " ";

}

#custom-html-sv .btn-group-vertical > .btn-group:after,

#custom-html-sv .btn-toolbar:after,

#custom-html-sv .clearfix:after,

#custom-html-sv .container-fluid:after,

#custom-html-sv .container:after,

#custom-html-sv .dl-horizontal dd:after,

#custom-html-sv .form-horizontal .form-group:after,

#custom-html-sv .modal-footer:after,

#custom-html-sv .modal-header:after,

#custom-html-sv .nav:after,

#custom-html-sv .navbar-collapse:after,

#custom-html-sv .navbar-header:after,

#custom-html-sv .navbar:after,

#custom-html-sv .pager:after,

#custom-html-sv .panel-body:after,

#custom-html-sv .row:after {

  clear: both;

}

#custom-html-sv .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sv .pull-right {

  float: right !important;

}

#custom-html-sv .pull-left {

  float: left !important;

}

#custom-html-sv .hide {

  display: none !important;

}

#custom-html-sv .show {

  display: block !important;

}

#custom-html-sv .invisible {

  visibility: hidden;

}

#custom-html-sv .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sv .hidden {

  display: none !important;

}

#custom-html-sv .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sv .visible-lg,

#custom-html-sv .visible-md,

#custom-html-sv .visible-sm,

#custom-html-sv .visible-xs {

  display: none !important;

}

#custom-html-sv .visible-lg-block,

#custom-html-sv .visible-lg-inline,

#custom-html-sv .visible-lg-inline-block,

#custom-html-sv .visible-md-block,

#custom-html-sv .visible-md-inline,

#custom-html-sv .visible-md-inline-block,

#custom-html-sv .visible-sm-block,

#custom-html-sv .visible-sm-inline,

#custom-html-sv .visible-sm-inline-block,

#custom-html-sv .visible-xs-block,

#custom-html-sv .visible-xs-inline,

#custom-html-sv .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sv .visible-sm {

    display: block !important;

  }

  #custom-html-sv table.visible-sm {

    display: table !important;

  }

  #custom-html-sv tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sv td.visible-sm,

  #custom-html-sv th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-sv .visible-sm-block {

    display: block !important;

  }

  #custom-html-sv .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-sv .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-sv .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sv .visible-md {

    display: block !important;

  }

  #custom-html-sv table.visible-md {

    display: table !important;

  }

  #custom-html-sv tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sv td.visible-md,

  #custom-html-sv th.visible-md {

    display: table-cell !important;

  }

  #custom-html-sv .visible-md-block {

    display: block !important;

  }

  #custom-html-sv .visible-md-inline {

    display: inline !important;

  }

  #custom-html-sv .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-sv .hidden-md {

    display: none !important;

  }

}

#custom-html-sv .visible-print {

  display: none !important;

}

#custom-html-sv .visible-print-block {

  display: none !important;

}

#custom-html-sv .visible-print-inline {

  display: none !important;

}

#custom-html-sv .visible-print-inline-block {

  display: none !important;

}

#custom-html-sv .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-sv .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sv .intl-tel-input .hide {

  display: none;

}

#custom-html-sv .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sv .intl-tel-input input,

#custom-html-sv .intl-tel-input input[type=tel],

#custom-html-sv .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sv .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sv .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sv .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sv .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sv .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sv .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sv .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sv .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sv .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-sv .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sv .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sv .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sv .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sv .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sv .intl-tel-input .country-list .country-name,

#custom-html-sv .intl-tel-input .country-list .dial-code,

#custom-html-sv .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sv .intl-tel-input .country-list .country-name,

#custom-html-sv .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sv .intl-tel-input.allow-dropdown input,

#custom-html-sv .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sv .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sv .intl-tel-input.separate-dial-code input,

#custom-html-sv .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sv .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sv .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sv .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sv .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sv .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sv .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sv .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sv .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sv .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sv .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sv .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sv .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sv .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sv .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sv .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sv .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sv .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sv .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-sv .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sv .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sv .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sv .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sv .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-sv .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sv .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sv .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sv .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-sv .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sv .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sv .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sv .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sv .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sv .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sv .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sv .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sv .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sv .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sv .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sv .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sv .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sv .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sv .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sv .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sv .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sv .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sv .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sv .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sv .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sv .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sv .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sv .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sv .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sv .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sv .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sv .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sv .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sv .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sv .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sv .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sv .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sv .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sv .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sv .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sv .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sv .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sv .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sv .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sv .iti-flag.ci {


  height: 14px;

  background-position: -961px 0;

}

#custom-html-sv .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sv .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sv .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sv .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sv .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sv .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sv .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sv .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sv .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sv .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sv .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sv .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sv .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sv .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sv .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sv .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sv .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sv .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-sv .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sv .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sv .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sv .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sv .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sv .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sv .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sv .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sv .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sv .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sv .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sv .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sv .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sv .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sv .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sv .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sv .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sv .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sv .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sv .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sv .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sv .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sv .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sv .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sv .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sv .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sv .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sv .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sv .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sv .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sv .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sv .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sv .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sv .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sv .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sv .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sv .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sv .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sv .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sv .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sv .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sv .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sv .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sv .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sv .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sv .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sv .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sv .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sv .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sv .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sv .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sv .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sv .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-sv .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sv .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sv .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sv .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sv .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sv .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sv .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sv .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sv .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sv .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sv .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sv .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sv .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sv .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sv .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sv .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sv .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sv .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sv .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sv .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sv .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sv .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sv .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sv .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sv .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sv .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sv .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sv .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sv .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sv .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sv .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sv .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sv .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sv .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sv .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sv .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sv .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sv .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sv .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sv .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sv .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sv .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sv .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sv .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sv .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sv .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sv .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sv .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sv .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sv .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sv .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sv .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sv .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sv .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sv .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sv .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sv .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sv .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sv .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sv .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sv .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sv .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sv .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sv .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sv .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sv .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sv .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sv .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sv .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sv .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sv .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sv .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sv .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sv .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sv .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sv .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sv .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sv .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sv .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sv .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sv .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sv .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sv .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sv .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sv .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sv .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sv .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sv .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sv .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sv .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sv .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sv .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sv .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sv .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sv .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sv .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sv .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sv .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sv .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sv .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sv .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sv .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sv .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sv .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sv .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sv .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sv .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sv .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sv .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sv .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sv .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sv .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sv .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sv .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sv .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sv .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sv .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sv .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sv .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sv .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sv .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sv .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sv .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sv .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sv .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sv .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sv .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sv .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sv .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sv .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sv .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sv .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sv .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sv .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sv .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sv .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sv .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sv body,

#custom-html-sv button,

#custom-html-sv input,

#custom-html-sv select,

#custom-html-sv textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sv h1,

#custom-html-sv h2,

#custom-html-sv h3,

#custom-html-sv h4,

#custom-html-sv h5,

#custom-html-sv h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-sv .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sv .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sv .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sv .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sv .navbar-main .navbar-nav > .active > a,

#custom-html-sv .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sv .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sv .navbar-main .navbar-nav > .open > a,

#custom-html-sv .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sv .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sv .navbar-main .navbar-nav > li > a:focus,

#custom-html-sv .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sv #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sv .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-sv .navbar-header {

    float: none;

  }

  #custom-html-sv .navbar-left,

  #custom-html-sv .navbar-right {

    float: none !important;

  }

  #custom-html-sv .navbar-toggle {

    display: block;

  }

  #custom-html-sv .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sv .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sv .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sv .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sv .navbar-nav > li {

    float: none;

  }

  #custom-html-sv .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sv .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-sv .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sv .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sv .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-sv ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sv ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sv ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-sv .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-sv .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sv .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sv .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sv .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sv .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-sv #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sv #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-sv .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sv a.list-group-item.active,

#custom-html-sv a.list-group-item.active:focus,

#custom-html-sv a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sv .dropdown-menu > li > a:focus,

#custom-html-sv .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sv input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sv .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sv body,

#custom-html-sv html {

  height: 100%;

}

#custom-html-sv section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sv section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sv section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sv section#header .search {

  margin: 20px 0;

}

#custom-html-sv section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sv section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sv section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sv section#main-content {

  margin-bottom: 60px;

}

#custom-html-sv .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sv section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sv section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sv section#footer {

    line-height: 32px;

  }

}

#custom-html-sv section#footer .back-to-top {

  float: right;

}

#custom-html-sv section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sv .adminreturndiv {

  display: none !important;

}

#custom-html-sv .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sv .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sv .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sv .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sv .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sv .navbar-main .navbar-toggle:focus,

#custom-html-sv .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sv .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sv .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-sv div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sv div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sv div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sv div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sv div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sv .h1,

  #custom-html-sv h1 {

    font-size: 26px;

  }

  #custom-html-sv .h2,

  #custom-html-sv h2 {

    font-size: 20px;

  }

  #custom-html-sv .h3,

  #custom-html-sv h3 {

    font-size: 16px;

  }

  #custom-html-sv .h4,

  #custom-html-sv h4 {

    font-size: 14px;

  }

  #custom-html-sv .h5,

  #custom-html-sv h5 {

    font-size: 12px;

  }

  #custom-html-sv .h6,

  #custom-html-sv h6 {

    font-size: 11px;

  }

  #custom-html-sv div.header-lined small {

    display: none;

  }

  #custom-html-sv .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-sv .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sv .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sv .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sv .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-sv div.credit-card {

    max-width: 250px;

  }

  #custom-html-sv div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sv div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sv div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sv div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sv div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-sv .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sv .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sv .margin-10 {

  margin: 10px;

}

#custom-html-sv .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sv .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sv .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sv .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sv .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sv .input-inline {

  display: inline-block;

}

#custom-html-sv .input-inline-100 {

  width: 100px;

}

#custom-html-sv .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-sv .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sv .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sv .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-sv i.icon-rss {

  color: #ff6600;

}

#custom-html-sv section#main-menu {

  background-color: #000000;

}

#custom-html-sv section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sv section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sv section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sv section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sv section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sv section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sv section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sv section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sv section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sv section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sv section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sv section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-sv .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-sv .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-sv .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sv .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sv .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-sv #stepResults {

    font-size: 14px;

  }

  #custom-html-sv #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sv div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-sv .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sv .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sv .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sv .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sv .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sv .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sv .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sv .home-shortcuts li span {

  display: none;

}

#custom-html-sv .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sv .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-sv .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sv .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sv .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sv .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sv .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sv .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sv .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sv .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sv .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sv .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sv .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sv .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sv .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sv .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sv .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sv .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sv .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sv .tiles .tile a {

  text-decoration: none;

}

#custom-html-sv .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sv .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sv .tiles .tile:last-child {

  border: 0;

}

#custom-html-sv .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sv .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sv .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sv .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sv .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sv .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sv .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sv .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sv .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sv .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sv .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sv .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sv .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sv .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sv .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sv .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sv .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sv .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sv .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sv .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sv .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sv .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sv .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sv .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sv .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sv .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sv .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sv .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sv .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sv .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sv .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sv .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sv .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sv .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sv .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sv .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sv .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sv .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sv .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sv .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sv .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sv ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sv ul.top-nav > li,

#custom-html-sv ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sv ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sv ul.top-nav > li:active > a,

#custom-html-sv ul.top-nav > li:focus > a,

#custom-html-sv ul.top-nav > li:hover > a,

#custom-html-sv ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sv ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sv ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sv ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sv ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-sv div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sv div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sv div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sv div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sv div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sv div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sv .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sv .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-sv .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sv .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-sv .domain-check-availability {

  width: 100px;

}

#custom-html-sv .domain-step-options {

  min-height: 300px;

}

#custom-html-sv .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sv .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sv .domain-checker-invalid,

#custom-html-sv .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sv div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sv .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sv .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sv .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sv a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sv .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sv .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sv .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-sv .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sv .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sv .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sv .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sv .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sv .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sv .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-sv .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sv .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sv .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sv .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sv .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sv .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sv .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sv .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sv .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sv .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sv .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sv .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sv .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sv .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sv div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sv div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sv div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sv .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sv .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sv .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sv .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sv div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sv div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-sv .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sv .product-status-pending {

  background-color: #f89406;

}

#custom-html-sv .product-status-active {

  background-color: #46a546;

}

#custom-html-sv .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sv .product-status-cancelled,

#custom-html-sv .product-status-terminated {

  background-color: #666666;

}

#custom-html-sv .product-status-fraud {

  background-color: #000000;

}

#custom-html-sv .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sv div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sv .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sv .ssl-inactive {

  cursor: pointer;

}

#custom-html-sv .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sv .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sv .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sv .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sv .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sv .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sv .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sv .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sv .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-sv .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sv .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sv .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sv .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sv .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sv .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sv table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sv .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sv table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sv .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-sv table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sv .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sv .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sv .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sv table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sv table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sv table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sv .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sv .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sv .status-pending {

  color: #d9534f;

}

#custom-html-sv .status-pending.transfer {

  color: #a68500;

}

#custom-html-sv .status-active,

#custom-html-sv .status-completed,

#custom-html-sv .status-open {

  color: #3fad46;

}

#custom-html-sv .status-suspended {

  color: #f0ad4e;

}

#custom-html-sv .status-customer-reply {

  color: #ff6600;

}

#custom-html-sv .status-answered,

#custom-html-sv .status-fraud {

  color: #000000;

}

#custom-html-sv .status-expired,

#custom-html-sv .status-transferred.away {

  color: #004258;

}

#custom-html-sv .status-cancelled {

  color: #87939f;

}

#custom-html-sv .status-terminated {

  color: #666666;

}

#custom-html-sv .status-onhold {

  color: #224488;

}

#custom-html-sv .status-inprogress {

  color: #cc0000;

}

#custom-html-sv .status-closed {

  color: #888888;

}

#custom-html-sv .status-paid {

  color: #498302;

}

#custom-html-sv .status-unpaid {

  color: #ed3e48;

}

#custom-html-sv .status-collections {

  color: #9a141e;

}

#custom-html-sv .status-refunded {

  color: #319fc3;

}

#custom-html-sv .status-delivered {

  color: #224488;

}

#custom-html-sv .status-accepted {

  color: #498302;

}

#custom-html-sv .status-dead,

#custom-html-sv .status-lost {

  color: #000000;

}

#custom-html-sv .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sv .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sv .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sv .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sv .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sv .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sv .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-sv .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-sv .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sv .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sv .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sv .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sv .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sv .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sv .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sv .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sv .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sv .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sv .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sv .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sv .ticket-reply .rating,

#custom-html-sv .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sv .ticket-reply .rating span.star,

#custom-html-sv .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sv .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sv .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sv .ticket-reply .rating span.star:before,

#custom-html-sv .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sv .ticket-reply .rating span.star:hover:before,

#custom-html-sv .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sv .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sv .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sv .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sv .ticket-reply .clear {

  clear: both;

}

#custom-html-sv .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sv .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sv .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sv .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sv .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sv .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sv .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sv .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sv .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sv .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sv .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sv .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sv .popover-user-notifications ul li i.far,

#custom-html-sv .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sv .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sv .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sv .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sv .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sv .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sv .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sv .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sv .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sv .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sv div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sv div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sv div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sv div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sv div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sv div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sv div.credit-card div.end {

  clear: both;

}

#custom-html-sv .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sv .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sv .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sv .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sv .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sv .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sv div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sv div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sv div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sv div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sv div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sv div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sv .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-sv div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sv div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sv div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sv #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sv .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sv .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sv .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sv .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sv .kb-category a small {

  color: #888888;

}

#custom-html-sv .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sv .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sv .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sv .kbarticles a.admin-inline-edit,

#custom-html-sv .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sv h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sv .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sv .kb-article-title h2 {

  margin: 0;

}

#custom-html-sv .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sv .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sv .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sv .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sv .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sv .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sv .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sv .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sv #stepResults {

  font-size: 20px;

}

#custom-html-sv #stepResults .label {

  font-size: 20px;

}

#custom-html-sv h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sv h3.with-badge i,

#custom-html-sv h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sv h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-sv .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sv .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sv a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sv a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sv .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sv .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sv .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sv .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sv .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sv .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sv .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sv .login-popover {

  font-size: 12px;

}

#custom-html-sv .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sv .login-popover hr {

  margin: 5px 0;

}

#custom-html-sv tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sv tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sv .error-container {

  text-align: center;

}

#custom-html-sv .error-container h1 {

  margin-top: 40px;

}

#custom-html-sv .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sv .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sv .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sv .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sv .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sv #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sv #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sv #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sv .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-sv #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sv #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sv #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sv #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sv .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sv .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sv .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sv .email-verification .btn:active,

#custom-html-sv .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sv .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sv .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sv .email-verification .far,

#custom-html-sv .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-sv .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sv .email-verification.success .far,

#custom-html-sv .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sv .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sv .email-verification.failed .far,

#custom-html-sv .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sv .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-sv .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sv .md-editor > .md-preview,

#custom-html-sv .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sv div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sv .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sv .small-font {

  font-size: 0.9em;

}

#custom-html-sv .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sv .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sv .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sv .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sv .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sv .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sv .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sv .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sv .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sv .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sv .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sv .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sv .panel-heading i.fab,

#custom-html-sv .panel-heading i.fal,

#custom-html-sv .panel-heading i.far,

#custom-html-sv .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sv .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sv .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sv .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sv .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sv .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sv .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sv .panel-sidebar .list-group-item.disabled,

#custom-html-sv .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sv .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sv .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sv .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sv .panel-sidebar a.list-group-item.active,

#custom-html-sv .panel-sidebar a.list-group-item.active:focus,

#custom-html-sv .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sv .panel-sidebar a.list-group-item.active i,

#custom-html-sv .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sv .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sv .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sv .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sv .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sv .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sv .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sv .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sv .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sv .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sv .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sv .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sv .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sv .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sv .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sv .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-sv .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sv .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sv .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sv .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sv .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sv .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sv .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sv .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sv .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sv .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sv .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sv .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sv .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-sv .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sv .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sv .promo-banner p {

  margin: 5px 0;

}

#custom-html-sv .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sv .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-sv .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sv .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sv .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sv .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sv .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sv .promo-banner-slim {

  padding: 10px;

}

#custom-html-sv .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sv .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sv .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sv .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sv .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sv .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sv .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sv .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sv .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sv .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sv .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sv .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sv .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sv .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sv .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sv .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sv .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sv .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sv .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sv .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sv .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sv .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sv .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sv .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sv .panel-mc-sso .btn,

#custom-html-sv .panel-mc-sso .form-control,

#custom-html-sv .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sv .panel-mc-sso small {

  display: block;

}

#custom-html-sv .social-signin-btns {

  text-align: center;

}

#custom-html-sv .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sv .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sv .btn-social i.far,

#custom-html-sv .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-facebook.active,

#custom-html-sv .btn-facebook:active,

#custom-html-sv .btn-facebook:focus,

#custom-html-sv .btn-facebook:hover,

#custom-html-sv .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-facebook.active,

#custom-html-sv .btn-facebook:active,

#custom-html-sv .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sv .btn-facebook.disabled,

#custom-html-sv .btn-facebook.disabled.active,

#custom-html-sv .btn-facebook.disabled:active,

#custom-html-sv .btn-facebook.disabled:focus,

#custom-html-sv .btn-facebook.disabled:hover,

#custom-html-sv .btn-facebook[disabled],

#custom-html-sv .btn-facebook[disabled].active,

#custom-html-sv .btn-facebook[disabled]:active,

#custom-html-sv .btn-facebook[disabled]:focus,

#custom-html-sv .btn-facebook[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-facebook,

#custom-html-sv fieldset[disabled] .btn-facebook.active,

#custom-html-sv fieldset[disabled] .btn-facebook:active,

#custom-html-sv fieldset[disabled] .btn-facebook:focus,

#custom-html-sv fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-google.active,

#custom-html-sv .btn-google:active,

#custom-html-sv .btn-google:focus,

#custom-html-sv .btn-google:hover,

#custom-html-sv .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-google.active,

#custom-html-sv .btn-google:active,

#custom-html-sv .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sv .btn-google-plus.disabled.active,

#custom-html-sv .btn-google-plus.disabled:active,

#custom-html-sv .btn-google-plus.disabled:focus,

#custom-html-sv .btn-google-plus[disabled].active,

#custom-html-sv .btn-google-plus[disabled]:active,

#custom-html-sv .btn-google-plus[disabled]:focus,

#custom-html-sv .btn-google-plus[disabled]:hover,

#custom-html-sv .btn-google.disabled,

#custom-html-sv .btn-google.disabled:hover,

#custom-html-sv .btn-google[disabled],

#custom-html-sv fieldset[disabled] .btn-google,

#custom-html-sv fieldset[disabled] .btn-google-plus.active,

#custom-html-sv fieldset[disabled] .btn-google-plus:active,

#custom-html-sv fieldset[disabled] .btn-google-plus:focus,

#custom-html-sv fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-twitter.active,

#custom-html-sv .btn-twitter:active,

#custom-html-sv .btn-twitter:focus,

#custom-html-sv .btn-twitter:hover,

#custom-html-sv .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-twitter.active,

#custom-html-sv .btn-twitter:active,

#custom-html-sv .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sv .btn-twitter.disabled,

#custom-html-sv .btn-twitter.disabled.active,

#custom-html-sv .btn-twitter.disabled:active,

#custom-html-sv .btn-twitter.disabled:focus,

#custom-html-sv .btn-twitter.disabled:hover,

#custom-html-sv .btn-twitter[disabled],

#custom-html-sv .btn-twitter[disabled].active,

#custom-html-sv .btn-twitter[disabled]:active,

#custom-html-sv .btn-twitter[disabled]:focus,

#custom-html-sv .btn-twitter[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-twitter,

#custom-html-sv fieldset[disabled] .btn-twitter.active,

#custom-html-sv fieldset[disabled] .btn-twitter:active,

#custom-html-sv fieldset[disabled] .btn-twitter:focus,

#custom-html-sv fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .providerPreLinking {

  min-height: 52px;

}

#custom-html-sv .providerLinkingFeedback {

  display: none;

}

#custom-html-sv #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sv #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sv #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sv #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sv .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sv #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sv #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sv #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sv #registration .field,

#custom-html-sv #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sv #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sv #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sv #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sv #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sv #registration textarea.field {

  height: auto;

}

#custom-html-sv #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sv #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sv #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sv #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sv #registration .field[disabled],

#custom-html-sv #registration .field[readonly],

#custom-html-sv #registration .form-control[disabled],

#custom-html-sv #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sv #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-sv .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sv .upgrade .product-to-be-upgraded h4,

#custom-html-sv .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sv .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sv .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sv .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sv .upgrade .products .product .current,

#custom-html-sv .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sv .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sv .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sv .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-sv .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sv .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sv .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sv .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sv .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sv .upgrade .products .far,

#custom-html-sv .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sv .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sv .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sv .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sv .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sv .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sv .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .bootstrap-switch input[type=checkbox],

#custom-html-sv .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sv .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sv .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sv .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sv .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sv .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sv .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sv .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sv .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sv .md-editor .md-footer,

#custom-html-sv .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sv .md-editor > .md-header {

  margin: 0;

}

#custom-html-sv .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sv .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sv .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sv .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sv .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sv .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sv .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sv .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-input,

#custom-html-sv .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sv .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sv .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sv .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sv .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sv .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sv .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sv .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sv .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sv .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sv table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sv table.dataTable td,

#custom-html-sv table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sv table.dataTable td.dataTables_empty,

#custom-html-sv table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sv table.dataTable.nowrap td,

#custom-html-sv table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sv table.dataTable thead > tr > td.sorting,

#custom-html-sv table.dataTable thead > tr > td.sorting_asc,

#custom-html-sv table.dataTable thead > tr > td.sorting_desc,

#custom-html-sv table.dataTable thead > tr > th.sorting,

#custom-html-sv table.dataTable thead > tr > th.sorting_asc,

#custom-html-sv table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sv table.dataTable thead > tr > td:active,

#custom-html-sv table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sv table.dataTable thead .sorting,

#custom-html-sv table.dataTable thead .sorting_asc,

#custom-html-sv table.dataTable thead .sorting_asc_disabled,

#custom-html-sv table.dataTable thead .sorting_desc,

#custom-html-sv table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sv table.dataTable thead .sorting:after,

#custom-html-sv table.dataTable thead .sorting_asc:after,

#custom-html-sv table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sv table.dataTable thead .sorting_desc:after,

#custom-html-sv table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sv table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sv table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sv table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sv table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sv table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sv div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sv div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sv div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sv div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sv div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sv div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sv div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sv div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-sv table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sv table.dataTable.table-condensed .sorting:after,

#custom-html-sv table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sv table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sv table.table-bordered.dataTable td,

#custom-html-sv table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sv table.table-bordered.dataTable td:last-child,

#custom-html-sv table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sv table.table-bordered.dataTable tbody td,

#custom-html-sv table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sv div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sv div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sv div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-sv div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sv table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sv table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sv table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sv table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sv table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sv table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sv table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sv table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sv table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sv table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sv table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sv table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sv table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sv table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sv table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sv div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sv div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sv div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sv div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sv div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sv div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-sv div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sv .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sv .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sv .multiselect-container > li {

  padding: 0;

}

#custom-html-sv .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sv .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sv .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sv .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sv .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sv .multiselect-container > li > a > label.checkbox,

#custom-html-sv .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sv .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sv .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sv .form-inline .multiselect-container label.checkbox,

#custom-html-sv .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sv .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sv .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-sv html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-sv body {

  margin: 0;

}

#custom-html-sv article,

#custom-html-sv aside,

#custom-html-sv details,

#custom-html-sv figcaption,

#custom-html-sv figure,

#custom-html-sv footer,

#custom-html-sv header,

#custom-html-sv hgroup,

#custom-html-sv main,

#custom-html-sv menu,

#custom-html-sv nav,

#custom-html-sv section,

#custom-html-sv summary {

  display: block;

}

#custom-html-sv audio,

#custom-html-sv canvas,

#custom-html-sv progress,

#custom-html-sv video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sv audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sv [hidden],

#custom-html-sv template {

  display: none;

}

#custom-html-sv a {

  background-color: transparent;

}

#custom-html-sv a:active,

#custom-html-sv a:hover {

  outline: 0;

}

#custom-html-sv abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sv b,

#custom-html-sv strong {

  font-weight: 700;

}

#custom-html-sv dfn {

  font-style: italic;

}

#custom-html-sv h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sv mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sv small {

  font-size: 80%;

}

#custom-html-sv sub,

#custom-html-sv sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sv sup {

  top: -0.5em;

}

#custom-html-sv sub {

  bottom: -0.25em;

}

#custom-html-sv img {

  border: 0;

}

#custom-html-sv svg:not(:root) {

  overflow: hidden;

}

#custom-html-sv figure {

  margin: 1em 40px;

}

#custom-html-sv hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sv pre {

  overflow: auto;

}

#custom-html-sv code,

#custom-html-sv kbd,

#custom-html-sv pre,

#custom-html-sv samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-sv button,

#custom-html-sv input,

#custom-html-sv optgroup,

#custom-html-sv select,

#custom-html-sv textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sv button {

  overflow: visible;

}

#custom-html-sv button,

#custom-html-sv select {

  text-transform: none;

}

#custom-html-sv button,

#custom-html-sv html input[type=button],

#custom-html-sv input[type=reset],

#custom-html-sv input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sv button[disabled],

#custom-html-sv html input[disabled] {

  cursor: default;

}

#custom-html-sv button::-moz-focus-inner,

#custom-html-sv input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sv input {

  line-height: normal;

}

#custom-html-sv input[type=checkbox],

#custom-html-sv input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-sv input[type=number]::-webkit-inner-spin-button,

#custom-html-sv input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sv input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-sv input[type=search]::-webkit-search-cancel-button,

#custom-html-sv input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sv fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-sv legend {

  padding: 0;

  border: 0;

}

#custom-html-sv textarea {

  overflow: auto;

}

#custom-html-sv optgroup {

  font-weight: 700;

}

#custom-html-sv table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-sv td,

#custom-html-sv th {

  padding: 0;

}

@media print {

  #custom-html-sv *,

  #custom-html-sv :after,

  #custom-html-sv :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sv a,

  #custom-html-sv a:visited {

    text-decoration: underline;

  }

  #custom-html-sv a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-sv abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sv a[href^="#"]:after,

  #custom-html-sv a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sv blockquote,

  #custom-html-sv pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sv thead {

    display: table-header-group;

  }

  #custom-html-sv img,

  #custom-html-sv tr {

    page-break-inside: avoid;

  }

  #custom-html-sv img {

    max-width: 100% !important;

  }

  #custom-html-sv h2,

  #custom-html-sv h3,

  #custom-html-sv p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sv h2,

  #custom-html-sv h3 {

    page-break-after: avoid;

  }

  #custom-html-sv .navbar {

    display: none;

  }

  #custom-html-sv .btn > .caret,

  #custom-html-sv .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sv .label {

    border: 1px solid #000000;

  }

  #custom-html-sv .table {

    border-collapse: collapse !important;

  }

  #custom-html-sv .table td,

  #custom-html-sv .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sv .table-bordered td,

  #custom-html-sv .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sv .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sv .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sv .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sv .glyphicon-eur:before,

#custom-html-sv .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sv .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sv .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sv .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sv .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sv .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sv .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sv .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sv .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sv .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sv .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sv .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sv .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sv .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sv .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sv .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sv .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sv .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sv .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sv .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sv .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sv .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sv .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sv .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sv .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sv .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sv .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sv .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sv .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sv .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sv .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sv .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sv .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sv .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sv .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sv .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sv .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sv .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sv .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sv .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sv .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sv .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sv .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sv .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sv .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sv .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sv .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sv .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sv .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sv .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sv .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sv .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sv .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sv .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sv .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sv .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sv .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sv .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sv .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sv .glyphicon-list:before {

  content: "\e056";

}

#custom-html-sv .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sv .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sv .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sv .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sv .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sv .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sv .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sv .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sv .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sv .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sv .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sv .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sv .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sv .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sv .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sv .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sv .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sv .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sv .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sv .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sv .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sv .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sv .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sv .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sv .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-sv .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sv .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sv .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sv .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sv .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sv .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sv .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sv .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sv .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sv .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sv .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sv .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sv .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sv .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sv .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sv .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sv .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sv .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sv .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sv .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sv .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sv .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sv .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sv .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sv .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sv .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sv .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sv .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sv .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sv .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sv .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sv .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sv .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sv .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sv .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sv .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sv .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sv .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sv .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sv .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sv .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sv .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sv .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sv .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sv .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sv .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sv .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sv .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sv .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sv .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sv .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sv .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sv .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sv .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sv .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sv .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sv .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sv .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sv .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sv .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sv .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sv .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sv .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sv .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sv .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sv .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sv .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sv .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sv .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sv .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sv .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sv .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sv .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sv .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-sv .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sv .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sv .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sv .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sv .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sv .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sv .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sv .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sv .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sv .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sv .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sv .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sv .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sv .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sv .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sv .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sv .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sv .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sv .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sv .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sv .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sv .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sv .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sv .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sv .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sv .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sv .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sv .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sv .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sv .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sv .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sv .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sv .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sv .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sv .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sv .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sv .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sv .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sv .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sv .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sv .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sv .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sv .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sv .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sv .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sv .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sv .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sv .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sv .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sv .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sv .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sv .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sv .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sv .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sv .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sv .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sv .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sv .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sv .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sv .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sv .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sv .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sv .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sv .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sv .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sv .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sv .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sv .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sv .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sv .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sv .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sv .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sv .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sv .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sv .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sv .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sv .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sv .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sv .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sv .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sv .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sv .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sv .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sv .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sv .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sv .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-sv .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sv .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sv .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sv .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sv .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sv .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sv .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sv .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sv .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sv .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sv .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sv .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sv .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sv .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sv .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sv * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sv :after,

#custom-html-sv :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sv html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sv body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-sv button,

#custom-html-sv input,

#custom-html-sv select,

#custom-html-sv textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sv a {

  color: #000;

  text-decoration: none;

}

#custom-html-sv a:focus,

#custom-html-sv a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sv a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sv figure {

  margin: 0;

}

#custom-html-sv img {

  vertical-align: middle;

}

#custom-html-sv .carousel-inner > .item > a > img,

#custom-html-sv .carousel-inner > .item > img,

#custom-html-sv .img-responsive,

#custom-html-sv .thumbnail a > img,

#custom-html-sv .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sv .img-rounded {

  border-radius: 6px;

}

#custom-html-sv .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sv .img-circle {

  border-radius: 50%;

}

#custom-html-sv hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sv .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sv .sr-only-focusable:active,

#custom-html-sv .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sv [role=button] {

  cursor: pointer;

}

#custom-html-sv .h1,

#custom-html-sv .h2,

#custom-html-sv .h3,

#custom-html-sv .h4,

#custom-html-sv .h5,

#custom-html-sv .h6,

#custom-html-sv h1,

#custom-html-sv h2,

#custom-html-sv h3,

#custom-html-sv h4,

#custom-html-sv h5,

#custom-html-sv h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sv .h1 .small,

#custom-html-sv .h1 small,

#custom-html-sv .h2 .small,

#custom-html-sv .h2 small,

#custom-html-sv .h3 .small,

#custom-html-sv .h3 small,

#custom-html-sv .h4 .small,

#custom-html-sv .h4 small,

#custom-html-sv .h5 .small,

#custom-html-sv .h5 small,

#custom-html-sv .h6 .small,

#custom-html-sv .h6 small,

#custom-html-sv h1 .small,

#custom-html-sv h1 small,

#custom-html-sv h2 .small,

#custom-html-sv h2 small,

#custom-html-sv h3 .small,

#custom-html-sv h3 small,

#custom-html-sv h4 .small,

#custom-html-sv h4 small,

#custom-html-sv h5 .small,

#custom-html-sv h5 small,

#custom-html-sv h6 .small,

#custom-html-sv h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sv .h1,

#custom-html-sv .h2,

#custom-html-sv .h3,

#custom-html-sv h1,

#custom-html-sv h2,

#custom-html-sv h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sv .h1 .small,

#custom-html-sv .h1 small,

#custom-html-sv .h2 .small,

#custom-html-sv .h2 small,

#custom-html-sv .h3 .small,

#custom-html-sv .h3 small,

#custom-html-sv h1 .small,

#custom-html-sv h1 small,

#custom-html-sv h2 .small,

#custom-html-sv h2 small,

#custom-html-sv h3 .small,

#custom-html-sv h3 small {

  font-size: 65%;

}

#custom-html-sv .h4,

#custom-html-sv .h5,

#custom-html-sv .h6,

#custom-html-sv h4,

#custom-html-sv h5,

#custom-html-sv h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sv .h4 .small,

#custom-html-sv .h4 small,

#custom-html-sv .h5 .small,

#custom-html-sv .h5 small,

#custom-html-sv .h6 .small,

#custom-html-sv .h6 small,

#custom-html-sv h4 .small,

#custom-html-sv h4 small,

#custom-html-sv h5 .small,

#custom-html-sv h5 small,

#custom-html-sv h6 .small,

#custom-html-sv h6 small {

  font-size: 75%;

}

#custom-html-sv .h1,

#custom-html-sv h1 {

  font-size: 36px;

}

#custom-html-sv .h2,

#custom-html-sv h2 {

  font-size: 30px;

}

#custom-html-sv .h3,

#custom-html-sv h3 {

  font-size: 24px;

}

#custom-html-sv .h4,

#custom-html-sv h4 {

  font-size: 18px;

}

#custom-html-sv .h5,

#custom-html-sv h5 {

  font-size: 14px;

}

#custom-html-sv .h6,

#custom-html-sv h6 {

  font-size: 12px;

}

#custom-html-sv p {

  margin: 0 0 10px;

}

#custom-html-sv .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sv .lead {

    font-size: 21px;

  }

}

#custom-html-sv .small,

#custom-html-sv small {

  font-size: 85%;

}

#custom-html-sv .mark,

#custom-html-sv mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sv .text-left {

  text-align: left;

}

#custom-html-sv .text-right {

  text-align: right;

}

#custom-html-sv .text-center {

  text-align: center;

}

#custom-html-sv .text-justify {

  text-align: justify;

}

#custom-html-sv .text-nowrap {

  white-space: nowrap;

}

#custom-html-sv .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sv .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sv .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sv .text-muted {

  color: #777777;

}

#custom-html-sv .text-primary {

  color: #000000;

}

#custom-html-sv a.text-primary:focus,

#custom-html-sv a.text-primary:hover {

  color: #000000;

}

#custom-html-sv .text-success {

  color: #3c763d;

}

#custom-html-sv a.text-success:focus,

#custom-html-sv a.text-success:hover {

  color: #2b542c;

}

#custom-html-sv .text-info {

  color: #31708f;

}

#custom-html-sv a.text-info:focus,

#custom-html-sv a.text-info:hover {

  color: #000000;

}

#custom-html-sv .text-warning {

  color: #8a6d3b;

}

#custom-html-sv a.text-warning:focus,

#custom-html-sv a.text-warning:hover {

  color: #66512c;

}

#custom-html-sv .text-danger {

  color: #a94442;

}

#custom-html-sv a.text-danger:focus,

#custom-html-sv a.text-danger:hover {

  color: #843534;

}

#custom-html-sv .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-sv a.bg-primary:focus,

#custom-html-sv a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sv .bg-success {

  background-color: #dff0d8;

}

#custom-html-sv a.bg-success:focus,

#custom-html-sv a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sv .bg-info {

  background-color: #d9edf7;

}

#custom-html-sv a.bg-info:focus,

#custom-html-sv a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sv .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sv a.bg-warning:focus,

#custom-html-sv a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sv .bg-danger {

  background-color: #f2dede;

}

#custom-html-sv a.bg-danger:focus,

#custom-html-sv a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sv .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sv ol,

#custom-html-sv ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sv ol ol,

#custom-html-sv ol ul,

#custom-html-sv ul ol,

#custom-html-sv ul ul {

  margin-bottom: 0;

}

#custom-html-sv .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sv .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sv .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sv dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sv dd,

#custom-html-sv dt {

  line-height: 1.42857143;

}

#custom-html-sv dt {

  font-weight: 700;

}

#custom-html-sv dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sv .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sv .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-sv abbr[data-original-title],

#custom-html-sv abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sv .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sv blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sv blockquote ol:last-child,

#custom-html-sv blockquote p:last-child,

#custom-html-sv blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sv blockquote .small,

#custom-html-sv blockquote footer,

#custom-html-sv blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sv blockquote .small:before,

#custom-html-sv blockquote footer:before,

#custom-html-sv blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sv .blockquote-reverse,

#custom-html-sv blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sv .blockquote-reverse .small:before,

#custom-html-sv .blockquote-reverse footer:before,

#custom-html-sv .blockquote-reverse small:before,

#custom-html-sv blockquote.pull-right .small:before,

#custom-html-sv blockquote.pull-right footer:before,

#custom-html-sv blockquote.pull-right small:before {

  content: '';

}

#custom-html-sv .blockquote-reverse .small:after,

#custom-html-sv .blockquote-reverse footer:after,

#custom-html-sv .blockquote-reverse small:after,

#custom-html-sv blockquote.pull-right .small:after,

#custom-html-sv blockquote.pull-right footer:after,

#custom-html-sv blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sv address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sv code,

#custom-html-sv kbd,

#custom-html-sv pre,

#custom-html-sv samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-sv code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sv kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sv kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sv pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sv pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sv .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sv .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-sv .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-sv .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sv .container {

    width: 1170px;

  }

}

#custom-html-sv .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sv .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sv .col-lg-1,

#custom-html-sv .col-lg-10,

#custom-html-sv .col-lg-11,

#custom-html-sv .col-lg-12,

#custom-html-sv .col-lg-2,

#custom-html-sv .col-lg-3,

#custom-html-sv .col-lg-4,

#custom-html-sv .col-lg-5,

#custom-html-sv .col-lg-6,

#custom-html-sv .col-lg-7,

#custom-html-sv .col-lg-8,

#custom-html-sv .col-lg-9,

#custom-html-sv .col-md-1,

#custom-html-sv .col-md-10,

#custom-html-sv .col-md-11,

#custom-html-sv .col-md-12,

#custom-html-sv .col-md-2,

#custom-html-sv .col-md-3,

#custom-html-sv .col-md-4,

#custom-html-sv .col-md-5,

#custom-html-sv .col-md-6,

#custom-html-sv .col-md-7,

#custom-html-sv .col-md-8,

#custom-html-sv .col-md-9,

#custom-html-sv .col-sm-1,

#custom-html-sv .col-sm-10,

#custom-html-sv .col-sm-11,

#custom-html-sv .col-sm-12,

#custom-html-sv .col-sm-2,

#custom-html-sv .col-sm-3,

#custom-html-sv .col-sm-4,

#custom-html-sv .col-sm-5,

#custom-html-sv .col-sm-6,

#custom-html-sv .col-sm-7,

#custom-html-sv .col-sm-8,

#custom-html-sv .col-sm-9,

#custom-html-sv .col-xs-1,

#custom-html-sv .col-xs-10,

#custom-html-sv .col-xs-11,

#custom-html-sv .col-xs-12,

#custom-html-sv .col-xs-2,

#custom-html-sv .col-xs-3,

#custom-html-sv .col-xs-4,

#custom-html-sv .col-xs-5,

#custom-html-sv .col-xs-6,

#custom-html-sv .col-xs-7,

#custom-html-sv .col-xs-8,

#custom-html-sv .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sv .col-xs-1,

#custom-html-sv .col-xs-10,

#custom-html-sv .col-xs-11,

#custom-html-sv .col-xs-12,

#custom-html-sv .col-xs-2,

#custom-html-sv .col-xs-3,

#custom-html-sv .col-xs-4,

#custom-html-sv .col-xs-5,

#custom-html-sv .col-xs-6,

#custom-html-sv .col-xs-7,

#custom-html-sv .col-xs-8,

#custom-html-sv .col-xs-9 {

  float: left;

}

#custom-html-sv .col-xs-12 {

  width: 100%;

}

#custom-html-sv .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sv .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sv .col-xs-9 {

  width: 75%;

}

#custom-html-sv .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sv .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sv .col-xs-6 {

  width: 50%;

}

#custom-html-sv .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sv .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sv .col-xs-3 {

  width: 25%;

}

#custom-html-sv .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sv .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sv .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sv .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sv .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sv .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sv .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sv .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sv .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sv .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sv .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sv .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sv .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sv .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sv .col-xs-pull-0 {

  right: auto;

}

#custom-html-sv .col-xs-push-12 {

  left: 100%;

}

#custom-html-sv .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sv .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sv .col-xs-push-9 {

  left: 75%;

}

#custom-html-sv .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sv .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sv .col-xs-push-6 {

  left: 50%;

}

#custom-html-sv .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sv .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sv .col-xs-push-3 {

  left: 25%;

}

#custom-html-sv .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sv .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sv .col-xs-push-0 {

  left: auto;

}

#custom-html-sv .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sv .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sv .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sv .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sv .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sv .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sv .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sv .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sv .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sv .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sv .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sv .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-sv .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sv .col-sm-1,

  #custom-html-sv .col-sm-10,

  #custom-html-sv .col-sm-11,

  #custom-html-sv .col-sm-12,

  #custom-html-sv .col-sm-2,

  #custom-html-sv .col-sm-3,

  #custom-html-sv .col-sm-4,

  #custom-html-sv .col-sm-5,

  #custom-html-sv .col-sm-6,

  #custom-html-sv .col-sm-7,

  #custom-html-sv .col-sm-8,

  #custom-html-sv .col-sm-9 {

    float: left;

  }

  #custom-html-sv .col-sm-12 {

    width: 100%;

  }

  #custom-html-sv .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sv .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sv .col-sm-9 {

    width: 75%;

  }

  #custom-html-sv .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sv .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sv .col-sm-6 {

    width: 50%;

  }

  #custom-html-sv .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sv .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sv .col-sm-3 {

    width: 25%;

  }

  #custom-html-sv .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sv .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sv .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sv .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sv .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sv .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sv .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sv .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sv .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sv .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sv .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sv .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sv .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sv .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sv .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sv .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sv .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sv .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sv .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sv .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sv .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sv .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sv .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sv .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sv .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sv .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sv .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sv .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sv .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sv .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sv .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sv .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sv .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sv .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sv .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sv .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sv .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sv .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sv .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sv .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sv .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-sv .col-md-1,

  #custom-html-sv .col-md-10,

  #custom-html-sv .col-md-11,

  #custom-html-sv .col-md-12,

  #custom-html-sv .col-md-2,

  #custom-html-sv .col-md-3,

  #custom-html-sv .col-md-4,

  #custom-html-sv .col-md-5,

  #custom-html-sv .col-md-6,

  #custom-html-sv .col-md-7,

  #custom-html-sv .col-md-8,

  #custom-html-sv .col-md-9 {

    float: left;

  }

  #custom-html-sv .col-md-12 {

    width: 100%;

  }

  #custom-html-sv .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sv .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sv .col-md-9 {

    width: 75%;

  }

  #custom-html-sv .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sv .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sv .col-md-6 {

    width: 50%;

  }

  #custom-html-sv .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sv .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sv .col-md-3 {

    width: 25%;

  }

  #custom-html-sv .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sv .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sv .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sv .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sv .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sv .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sv .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sv .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sv .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sv .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sv .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sv .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sv .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sv .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sv .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sv .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sv .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sv .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sv .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sv .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sv .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sv .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sv .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sv .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sv .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sv .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sv .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sv .col-md-push-0 {

    left: auto;

  }

  #custom-html-sv .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sv .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sv .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sv .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sv .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sv .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sv .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sv .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sv .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sv .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sv .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sv .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sv .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-sv .col-lg-1,

  #custom-html-sv .col-lg-10,

  #custom-html-sv .col-lg-11,

  #custom-html-sv .col-lg-12,

  #custom-html-sv .col-lg-2,

  #custom-html-sv .col-lg-3,

  #custom-html-sv .col-lg-4,

  #custom-html-sv .col-lg-5,

  #custom-html-sv .col-lg-6,

  #custom-html-sv .col-lg-7,

  #custom-html-sv .col-lg-8,

  #custom-html-sv .col-lg-9 {

    float: left;

  }

  #custom-html-sv .col-lg-12 {

    width: 100%;

  }

  #custom-html-sv .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sv .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sv .col-lg-9 {

    width: 75%;

  }

  #custom-html-sv .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sv .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sv .col-lg-6 {

    width: 50%;

  }

  #custom-html-sv .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sv .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sv .col-lg-3 {

    width: 25%;

  }

  #custom-html-sv .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sv .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sv .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sv .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sv .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sv .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sv .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sv .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sv .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sv .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sv .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sv .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sv .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sv .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sv .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sv .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sv .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sv .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sv .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sv .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sv .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sv .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sv .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sv .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sv .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sv .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sv .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sv .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sv .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sv .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sv .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sv .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sv .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sv .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sv .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sv .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sv .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sv .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sv .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sv .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sv .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-sv table {

  background-color: transparent;

}

#custom-html-sv caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sv th {

  text-align: left;

}

#custom-html-sv .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sv .table > tbody > tr > td,

#custom-html-sv .table > tbody > tr > th,

#custom-html-sv .table > tfoot > tr > td,

#custom-html-sv .table > tfoot > tr > th,

#custom-html-sv .table > thead > tr > td,

#custom-html-sv .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sv .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sv .table > caption + thead > tr:first-child > td,

#custom-html-sv .table > caption + thead > tr:first-child > th,

#custom-html-sv .table > colgroup + thead > tr:first-child > td,

#custom-html-sv .table > colgroup + thead > tr:first-child > th,

#custom-html-sv .table > thead:first-child > tr:first-child > td,

#custom-html-sv .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sv .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sv .table .table {

  background-color: #ffffff;

}

#custom-html-sv .table-condensed > tbody > tr > td,

#custom-html-sv .table-condensed > tbody > tr > th,

#custom-html-sv .table-condensed > tfoot > tr > td,

#custom-html-sv .table-condensed > tfoot > tr > th,

#custom-html-sv .table-condensed > thead > tr > td,

#custom-html-sv .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sv .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sv .table-bordered > tbody > tr > td,

#custom-html-sv .table-bordered > tbody > tr > th,

#custom-html-sv .table-bordered > tfoot > tr > td,

#custom-html-sv .table-bordered > tfoot > tr > th,

#custom-html-sv .table-bordered > thead > tr > td,

#custom-html-sv .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sv .table-bordered > thead > tr > td,

#custom-html-sv .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sv .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sv .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sv table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sv table td[class*=col-],

#custom-html-sv table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-sv .table > tbody > tr.active > td,

#custom-html-sv .table > tbody > tr.active > th,

#custom-html-sv .table > tbody > tr > td.active,

#custom-html-sv .table > tbody > tr > th.active,

#custom-html-sv .table > tfoot > tr.active > td,

#custom-html-sv .table > tfoot > tr.active > th,

#custom-html-sv .table > tfoot > tr > td.active,

#custom-html-sv .table > tfoot > tr > th.active,

#custom-html-sv .table > thead > tr.active > td,

#custom-html-sv .table > thead > tr.active > th,

#custom-html-sv .table > thead > tr > td.active,

#custom-html-sv .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sv .table-hover > tbody > tr.active:hover > td,

#custom-html-sv .table-hover > tbody > tr.active:hover > th,

#custom-html-sv .table-hover > tbody > tr:hover > .active,

#custom-html-sv .table-hover > tbody > tr > td.active:hover,

#custom-html-sv .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sv .table > tbody > tr.success > td,

#custom-html-sv .table > tbody > tr.success > th,

#custom-html-sv .table > tbody > tr > td.success,

#custom-html-sv .table > tbody > tr > th.success,

#custom-html-sv .table > tfoot > tr.success > td,

#custom-html-sv .table > tfoot > tr.success > th,

#custom-html-sv .table > tfoot > tr > td.success,

#custom-html-sv .table > tfoot > tr > th.success,

#custom-html-sv .table > thead > tr.success > td,

#custom-html-sv .table > thead > tr.success > th,

#custom-html-sv .table > thead > tr > td.success,

#custom-html-sv .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sv .table-hover > tbody > tr.success:hover > td,

#custom-html-sv .table-hover > tbody > tr.success:hover > th,

#custom-html-sv .table-hover > tbody > tr:hover > .success,

#custom-html-sv .table-hover > tbody > tr > td.success:hover,

#custom-html-sv .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sv .table > tbody > tr.info > td,

#custom-html-sv .table > tbody > tr.info > th,

#custom-html-sv .table > tbody > tr > td.info,

#custom-html-sv .table > tbody > tr > th.info,

#custom-html-sv .table > tfoot > tr.info > td,

#custom-html-sv .table > tfoot > tr.info > th,

#custom-html-sv .table > tfoot > tr > td.info,

#custom-html-sv .table > tfoot > tr > th.info,

#custom-html-sv .table > thead > tr.info > td,

#custom-html-sv .table > thead > tr.info > th,

#custom-html-sv .table > thead > tr > td.info,

#custom-html-sv .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sv .table-hover > tbody > tr.info:hover > td,

#custom-html-sv .table-hover > tbody > tr.info:hover > th,

#custom-html-sv .table-hover > tbody > tr:hover > .info,

#custom-html-sv .table-hover > tbody > tr > td.info:hover,

#custom-html-sv .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sv .table > tbody > tr.warning > td,

#custom-html-sv .table > tbody > tr.warning > th,

#custom-html-sv .table > tbody > tr > td.warning,

#custom-html-sv .table > tbody > tr > th.warning,

#custom-html-sv .table > tfoot > tr.warning > td,

#custom-html-sv .table > tfoot > tr.warning > th,

#custom-html-sv .table > tfoot > tr > td.warning,

#custom-html-sv .table > tfoot > tr > th.warning,

#custom-html-sv .table > thead > tr.warning > td,

#custom-html-sv .table > thead > tr.warning > th,

#custom-html-sv .table > thead > tr > td.warning,

#custom-html-sv .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sv .table-hover > tbody > tr.warning:hover > td,

#custom-html-sv .table-hover > tbody > tr.warning:hover > th,

#custom-html-sv .table-hover > tbody > tr:hover > .warning,

#custom-html-sv .table-hover > tbody > tr > td.warning:hover,

#custom-html-sv .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sv .table > tbody > tr.danger > td,

#custom-html-sv .table > tbody > tr.danger > th,

#custom-html-sv .table > tbody > tr > td.danger,

#custom-html-sv .table > tbody > tr > th.danger,

#custom-html-sv .table > tfoot > tr.danger > td,

#custom-html-sv .table > tfoot > tr.danger > th,

#custom-html-sv .table > tfoot > tr > td.danger,

#custom-html-sv .table > tfoot > tr > th.danger,

#custom-html-sv .table > thead > tr.danger > td,

#custom-html-sv .table > thead > tr.danger > th,

#custom-html-sv .table > thead > tr > td.danger,

#custom-html-sv .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sv .table-hover > tbody > tr.danger:hover > td,

#custom-html-sv .table-hover > tbody > tr.danger:hover > th,

#custom-html-sv .table-hover > tbody > tr:hover > .danger,

#custom-html-sv .table-hover > tbody > tr > td.danger:hover,

#custom-html-sv .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sv .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sv .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sv .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sv .table-responsive > .table > tbody > tr > td,

  #custom-html-sv .table-responsive > .table > tbody > tr > th,

  #custom-html-sv .table-responsive > .table > tfoot > tr > td,

  #custom-html-sv .table-responsive > .table > tfoot > tr > th,

  #custom-html-sv .table-responsive > .table > thead > tr > td,

  #custom-html-sv .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sv .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sv .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sv .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sv .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sv .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sv .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sv .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sv .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sv .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sv .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sv .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sv .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sv .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sv .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sv .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sv .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sv .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-sv fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-sv legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sv label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sv input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sv input[type=checkbox],

#custom-html-sv input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sv input[type=file] {

  display: block;

}

#custom-html-sv input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sv select[multiple],

#custom-html-sv select[size] {

  height: auto;

}

#custom-html-sv input[type=checkbox]:focus,

#custom-html-sv input[type=file]:focus,

#custom-html-sv input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sv output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sv .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sv .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sv .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sv .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sv .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sv .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sv .form-control[disabled],

#custom-html-sv .form-control[readonly],

#custom-html-sv fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sv .form-control[disabled],

#custom-html-sv fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sv textarea.form-control {

  height: auto;

}

#custom-html-sv input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sv input[type=date].form-control,

  #custom-html-sv input[type=datetime-local].form-control,

  #custom-html-sv input[type=month].form-control,

  #custom-html-sv input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sv .input-group-sm input[type=date],

  #custom-html-sv .input-group-sm input[type=datetime-local],

  #custom-html-sv .input-group-sm input[type=month],

  #custom-html-sv .input-group-sm input[type=time],

  #custom-html-sv input[type=date].input-sm,

  #custom-html-sv input[type=datetime-local].input-sm,

  #custom-html-sv input[type=month].input-sm,

  #custom-html-sv input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sv .input-group-lg input[type=date],

  #custom-html-sv .input-group-lg input[type=datetime-local],

  #custom-html-sv .input-group-lg input[type=month],

  #custom-html-sv .input-group-lg input[type=time],

  #custom-html-sv input[type=date].input-lg,

  #custom-html-sv input[type=datetime-local].input-lg,

  #custom-html-sv input[type=month].input-lg,

  #custom-html-sv input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sv .form-group {

  margin-bottom: 15px;

}

#custom-html-sv .checkbox,

#custom-html-sv .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sv .checkbox label,

#custom-html-sv .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sv .checkbox input[type=checkbox],

#custom-html-sv .checkbox-inline input[type=checkbox],

#custom-html-sv .radio input[type=radio],

#custom-html-sv .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sv .checkbox + .checkbox,

#custom-html-sv .radio + .radio {

  margin-top: -5px;

}

#custom-html-sv .checkbox-inline,

#custom-html-sv .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sv .checkbox-inline + .checkbox-inline,

#custom-html-sv .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sv fieldset[disabled] input[type=checkbox],

#custom-html-sv fieldset[disabled] input[type=radio],

#custom-html-sv input[type=checkbox].disabled,

#custom-html-sv input[type=checkbox][disabled],

#custom-html-sv input[type=radio].disabled,

#custom-html-sv input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sv .checkbox-inline.disabled,

#custom-html-sv .radio-inline.disabled,

#custom-html-sv fieldset[disabled] .checkbox-inline,

#custom-html-sv fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sv .checkbox.disabled label,

#custom-html-sv .radio.disabled label,

#custom-html-sv fieldset[disabled] .checkbox label,

#custom-html-sv fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sv .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sv .form-control-static.input-lg,

#custom-html-sv .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sv .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sv select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sv select[multiple].input-sm,

#custom-html-sv textarea.input-sm {

  height: auto;

}

#custom-html-sv .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sv .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sv .form-group-sm select[multiple].form-control,

#custom-html-sv .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sv .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sv .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sv select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sv select[multiple].input-lg,

#custom-html-sv textarea.input-lg {

  height: auto;

}

#custom-html-sv .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sv .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sv .form-group-lg select[multiple].form-control,

#custom-html-sv .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sv .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sv .has-feedback {

  position: relative;

}

#custom-html-sv .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sv .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sv .form-group-lg .form-control + .form-control-feedback,

#custom-html-sv .input-group-lg + .form-control-feedback,

#custom-html-sv .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sv .form-group-sm .form-control + .form-control-feedback,

#custom-html-sv .input-group-sm + .form-control-feedback,

#custom-html-sv .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sv .has-success .checkbox,

#custom-html-sv .has-success .checkbox-inline,

#custom-html-sv .has-success .control-label,

#custom-html-sv .has-success .help-block,

#custom-html-sv .has-success .radio,

#custom-html-sv .has-success .radio-inline,

#custom-html-sv .has-success.checkbox label,

#custom-html-sv .has-success.checkbox-inline label,

#custom-html-sv .has-success.radio label,

#custom-html-sv .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sv .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sv .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sv .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sv .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sv .has-warning .checkbox,

#custom-html-sv .has-warning .checkbox-inline,

#custom-html-sv .has-warning .control-label,

#custom-html-sv .has-warning .help-block,

#custom-html-sv .has-warning .radio,

#custom-html-sv .has-warning .radio-inline,

#custom-html-sv .has-warning.checkbox label,

#custom-html-sv .has-warning.checkbox-inline label,

#custom-html-sv .has-warning.radio label,

#custom-html-sv .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sv .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sv .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sv .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sv .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sv .has-error .checkbox,

#custom-html-sv .has-error .checkbox-inline,

#custom-html-sv .has-error .control-label,

#custom-html-sv .has-error .help-block,

#custom-html-sv .has-error .radio,

#custom-html-sv .has-error .radio-inline,

#custom-html-sv .has-error.checkbox label,

#custom-html-sv .has-error.checkbox-inline label,

#custom-html-sv .has-error.radio label,

#custom-html-sv .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sv .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sv .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sv .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sv .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sv .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-sv .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sv .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-sv .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sv .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sv .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sv .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sv .form-inline .input-group .form-control,

  #custom-html-sv .form-inline .input-group .input-group-addon,

  #custom-html-sv .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sv .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sv .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sv .form-inline .checkbox,

  #custom-html-sv .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sv .form-inline .checkbox label,

  #custom-html-sv .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sv .form-inline .checkbox input[type=checkbox],

  #custom-html-sv .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sv .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-sv .form-horizontal .checkbox,

#custom-html-sv .form-horizontal .checkbox-inline,

#custom-html-sv .form-horizontal .radio,

#custom-html-sv .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sv .form-horizontal .checkbox,

#custom-html-sv .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sv .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sv .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-sv .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-sv .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-sv .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-sv .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sv .btn.active.focus,

#custom-html-sv .btn.active:focus,

#custom-html-sv .btn.focus,

#custom-html-sv .btn:active.focus,

#custom-html-sv .btn:active:focus,

#custom-html-sv .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sv .btn.focus,

#custom-html-sv .btn:focus,

#custom-html-sv .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sv .btn.active,

#custom-html-sv .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sv .btn.disabled,

#custom-html-sv .btn[disabled],

#custom-html-sv fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sv a.btn.disabled,

#custom-html-sv fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sv .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sv .btn-default.focus,

#custom-html-sv .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sv .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sv .btn-default.active,

#custom-html-sv .btn-default:active,

#custom-html-sv .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sv .btn-default.active.focus,

#custom-html-sv .btn-default.active:focus,

#custom-html-sv .btn-default.active:hover,

#custom-html-sv .btn-default:active.focus,

#custom-html-sv .btn-default:active:focus,

#custom-html-sv .btn-default:active:hover,

#custom-html-sv .open > .dropdown-toggle.btn-default.focus,

#custom-html-sv .open > .dropdown-toggle.btn-default:focus,

#custom-html-sv .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sv .btn-default.active,

#custom-html-sv .btn-default:active,

#custom-html-sv .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-sv .btn-default.disabled.focus,

#custom-html-sv .btn-default.disabled:focus,

#custom-html-sv .btn-default.disabled:hover,

#custom-html-sv .btn-default[disabled].focus,

#custom-html-sv .btn-default[disabled]:focus,

#custom-html-sv .btn-default[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-default.focus,

#custom-html-sv fieldset[disabled] .btn-default:focus,

#custom-html-sv fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sv .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sv .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sv .btn-primary.focus,

#custom-html-sv .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sv .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sv .btn-primary.active,

#custom-html-sv .btn-primary:active,

#custom-html-sv .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sv .btn-primary.active.focus,

#custom-html-sv .btn-primary.active:focus,

#custom-html-sv .btn-primary.active:hover,

#custom-html-sv .btn-primary:active.focus,

#custom-html-sv .btn-primary:active:focus,

#custom-html-sv .btn-primary:active:hover,

#custom-html-sv .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sv .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sv .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sv .btn-primary.active,

#custom-html-sv .btn-primary:active,

#custom-html-sv .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-sv .btn-primary.disabled.focus,

#custom-html-sv .btn-primary.disabled:focus,

#custom-html-sv .btn-primary.disabled:hover,

#custom-html-sv .btn-primary[disabled].focus,

#custom-html-sv .btn-primary[disabled]:focus,

#custom-html-sv .btn-primary[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-primary.focus,

#custom-html-sv fieldset[disabled] .btn-primary:focus,

#custom-html-sv fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sv .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sv .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sv .btn-success.focus,

#custom-html-sv .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sv .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sv .btn-success.active,

#custom-html-sv .btn-success:active,

#custom-html-sv .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sv .btn-success.active.focus,

#custom-html-sv .btn-success.active:focus,

#custom-html-sv .btn-success.active:hover,

#custom-html-sv .btn-success:active.focus,

#custom-html-sv .btn-success:active:focus,

#custom-html-sv .btn-success:active:hover,

#custom-html-sv .open > .dropdown-toggle.btn-success.focus,

#custom-html-sv .open > .dropdown-toggle.btn-success:focus,

#custom-html-sv .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sv .btn-success.active,

#custom-html-sv .btn-success:active,

#custom-html-sv .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-sv .btn-success.disabled.focus,

#custom-html-sv .btn-success.disabled:focus,

#custom-html-sv .btn-success.disabled:hover,

#custom-html-sv .btn-success[disabled].focus,

#custom-html-sv .btn-success[disabled]:focus,

#custom-html-sv .btn-success[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-success.focus,

#custom-html-sv fieldset[disabled] .btn-success:focus,

#custom-html-sv fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sv .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sv .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sv .btn-info.focus,

#custom-html-sv .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sv .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sv .btn-info.active,

#custom-html-sv .btn-info:active,

#custom-html-sv .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sv .btn-info.active.focus,

#custom-html-sv .btn-info.active:focus,

#custom-html-sv .btn-info.active:hover,

#custom-html-sv .btn-info:active.focus,

#custom-html-sv .btn-info:active:focus,

#custom-html-sv .btn-info:active:hover,

#custom-html-sv .open > .dropdown-toggle.btn-info.focus,

#custom-html-sv .open > .dropdown-toggle.btn-info:focus,

#custom-html-sv .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sv .btn-info.active,

#custom-html-sv .btn-info:active,

#custom-html-sv .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-sv .btn-info.disabled.focus,

#custom-html-sv .btn-info.disabled:focus,

#custom-html-sv .btn-info.disabled:hover,

#custom-html-sv .btn-info[disabled].focus,

#custom-html-sv .btn-info[disabled]:focus,

#custom-html-sv .btn-info[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-info.focus,

#custom-html-sv fieldset[disabled] .btn-info:focus,

#custom-html-sv fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sv .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sv .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sv .btn-warning.focus,

#custom-html-sv .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sv .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sv .btn-warning.active,

#custom-html-sv .btn-warning:active,

#custom-html-sv .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sv .btn-warning.active.focus,

#custom-html-sv .btn-warning.active:focus,

#custom-html-sv .btn-warning.active:hover,

#custom-html-sv .btn-warning:active.focus,

#custom-html-sv .btn-warning:active:focus,

#custom-html-sv .btn-warning:active:hover,

#custom-html-sv .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sv .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sv .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sv .btn-warning.active,

#custom-html-sv .btn-warning:active,

#custom-html-sv .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-sv .btn-warning.disabled.focus,

#custom-html-sv .btn-warning.disabled:focus,

#custom-html-sv .btn-warning.disabled:hover,

#custom-html-sv .btn-warning[disabled].focus,

#custom-html-sv .btn-warning[disabled]:focus,

#custom-html-sv .btn-warning[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-warning.focus,

#custom-html-sv fieldset[disabled] .btn-warning:focus,

#custom-html-sv fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sv .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sv .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sv .btn-danger.focus,

#custom-html-sv .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sv .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sv .btn-danger.active,

#custom-html-sv .btn-danger:active,

#custom-html-sv .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sv .btn-danger.active.focus,

#custom-html-sv .btn-danger.active:focus,

#custom-html-sv .btn-danger.active:hover,

#custom-html-sv .btn-danger:active.focus,

#custom-html-sv .btn-danger:active:focus,

#custom-html-sv .btn-danger:active:hover,

#custom-html-sv .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sv .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sv .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sv .btn-danger.active,

#custom-html-sv .btn-danger:active,

#custom-html-sv .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-sv .btn-danger.disabled.focus,

#custom-html-sv .btn-danger.disabled:focus,

#custom-html-sv .btn-danger.disabled:hover,

#custom-html-sv .btn-danger[disabled].focus,

#custom-html-sv .btn-danger[disabled]:focus,

#custom-html-sv .btn-danger[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-danger.focus,

#custom-html-sv fieldset[disabled] .btn-danger:focus,

#custom-html-sv fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sv .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sv .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sv .btn-link,

#custom-html-sv .btn-link.active,

#custom-html-sv .btn-link:active,

#custom-html-sv .btn-link[disabled],

#custom-html-sv fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sv .btn-link,

#custom-html-sv .btn-link:active,

#custom-html-sv .btn-link:focus,

#custom-html-sv .btn-link:hover {

  border-color: transparent;

}

#custom-html-sv .btn-link:focus,

#custom-html-sv .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sv .btn-link[disabled]:focus,

#custom-html-sv .btn-link[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-link:focus,

#custom-html-sv fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sv .btn-group-lg > .btn,

#custom-html-sv .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sv .btn-group-sm > .btn,

#custom-html-sv .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sv .btn-group-xs > .btn,

#custom-html-sv .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sv .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sv .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sv input[type=button].btn-block,

#custom-html-sv input[type=reset].btn-block,

#custom-html-sv input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sv .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sv .fade.in {

  opacity: 1;

}

#custom-html-sv .collapse {

  display: none;

}

#custom-html-sv .collapse.in {

  display: block;

}

#custom-html-sv tr.collapse.in {

  display: table-row;

}

#custom-html-sv tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sv .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-sv .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sv .dropdown,

#custom-html-sv .dropup {

  position: relative;

}

#custom-html-sv .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sv .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sv .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sv .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sv .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sv .dropdown-menu > li > a:focus,

#custom-html-sv .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sv .dropdown-menu > .active > a,

#custom-html-sv .dropdown-menu > .active > a:focus,

#custom-html-sv .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sv .dropdown-menu > .disabled > a,

#custom-html-sv .dropdown-menu > .disabled > a:focus,

#custom-html-sv .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sv .dropdown-menu > .disabled > a:focus,

#custom-html-sv .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sv .open > .dropdown-menu {

  display: block;

}

#custom-html-sv .open > a {

  outline: 0;

}

#custom-html-sv .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sv .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sv .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sv .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sv .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sv .dropup .caret,

#custom-html-sv .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sv .dropup .dropdown-menu,

#custom-html-sv .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-sv .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sv .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-sv .btn-group,

#custom-html-sv .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sv .btn-group-vertical > .btn,

#custom-html-sv .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sv .btn-group-vertical > .btn.active,

#custom-html-sv .btn-group-vertical > .btn:active,

#custom-html-sv .btn-group-vertical > .btn:focus,

#custom-html-sv .btn-group-vertical > .btn:hover,

#custom-html-sv .btn-group > .btn.active,

#custom-html-sv .btn-group > .btn:active,

#custom-html-sv .btn-group > .btn:focus,

#custom-html-sv .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sv .btn-group .btn + .btn,

#custom-html-sv .btn-group .btn + .btn-group,

#custom-html-sv .btn-group .btn-group + .btn,

#custom-html-sv .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sv .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sv .btn-toolbar .btn,

#custom-html-sv .btn-toolbar .btn-group,

#custom-html-sv .btn-toolbar .input-group {

  float: left;

}

#custom-html-sv .btn-toolbar > .btn,

#custom-html-sv .btn-toolbar > .btn-group,

#custom-html-sv .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sv .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sv .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sv .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sv .btn-group > .btn:last-child:not(:first-child),

#custom-html-sv .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sv .btn-group > .btn-group {

  float: left;

}

#custom-html-sv .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sv .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sv .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sv .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sv .btn-group .dropdown-toggle:active,

#custom-html-sv .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sv .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sv .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sv .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sv .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sv .btn .caret {

  margin-left: 0;

}

#custom-html-sv .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sv .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sv .btn-group-vertical > .btn,

#custom-html-sv .btn-group-vertical > .btn-group,

#custom-html-sv .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sv .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sv .btn-group-vertical > .btn + .btn,

#custom-html-sv .btn-group-vertical > .btn + .btn-group,

#custom-html-sv .btn-group-vertical > .btn-group + .btn,

#custom-html-sv .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sv .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sv .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sv .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sv .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sv .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sv .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sv .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sv .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sv .btn-group-justified > .btn,

#custom-html-sv .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sv .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sv .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sv [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sv [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sv [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sv [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sv .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sv .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sv .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sv .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sv .input-group-lg > .form-control,

#custom-html-sv .input-group-lg > .input-group-addon,

#custom-html-sv .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sv select.input-group-lg > .form-control,

#custom-html-sv select.input-group-lg > .input-group-addon,

#custom-html-sv select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sv select[multiple].input-group-lg > .form-control,

#custom-html-sv select[multiple].input-group-lg > .input-group-addon,

#custom-html-sv select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sv textarea.input-group-lg > .form-control,

#custom-html-sv textarea.input-group-lg > .input-group-addon,

#custom-html-sv textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sv .input-group-sm > .form-control,

#custom-html-sv .input-group-sm > .input-group-addon,

#custom-html-sv .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sv select.input-group-sm > .form-control,

#custom-html-sv select.input-group-sm > .input-group-addon,

#custom-html-sv select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sv select[multiple].input-group-sm > .form-control,

#custom-html-sv select[multiple].input-group-sm > .input-group-addon,

#custom-html-sv select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sv textarea.input-group-sm > .form-control,

#custom-html-sv textarea.input-group-sm > .input-group-addon,

#custom-html-sv textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sv .input-group .form-control,

#custom-html-sv .input-group-addon,

#custom-html-sv .input-group-btn {

  display: table-cell;

}

#custom-html-sv .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sv .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sv .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sv .input-group-addon,

#custom-html-sv .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sv .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sv .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sv .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sv .input-group-addon input[type=checkbox],

#custom-html-sv .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sv .input-group .form-control:first-child,

#custom-html-sv .input-group-addon:first-child,

#custom-html-sv .input-group-btn:first-child > .btn,

#custom-html-sv .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sv .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sv .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sv .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sv .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sv .input-group .form-control:last-child,

#custom-html-sv .input-group-addon:last-child,

#custom-html-sv .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sv .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sv .input-group-btn:last-child > .btn,

#custom-html-sv .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sv .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sv .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sv .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sv .input-group-btn > .btn {

  position: relative;

}

#custom-html-sv .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sv .input-group-btn > .btn:active,

#custom-html-sv .input-group-btn > .btn:focus,

#custom-html-sv .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sv .input-group-btn:first-child > .btn,

#custom-html-sv .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sv .input-group-btn:last-child > .btn,

#custom-html-sv .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sv .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sv .nav > li {

  position: relative;

  display: block;

}

#custom-html-sv .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sv .nav > li > a:focus,

#custom-html-sv .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sv .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sv .nav > li.disabled > a:focus,

#custom-html-sv .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sv .nav .open > a,

#custom-html-sv .nav .open > a:focus,

#custom-html-sv .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sv .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sv .nav > li > a > img {

  max-width: none;

}

#custom-html-sv .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sv .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sv .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sv .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sv .nav-tabs > li.active > a,

#custom-html-sv .nav-tabs > li.active > a:focus,

#custom-html-sv .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sv .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sv .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sv .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sv .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sv .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sv .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sv .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sv .nav-tabs.nav-justified > .active > a,

#custom-html-sv .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sv .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sv .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sv .nav-tabs.nav-justified > .active > a,

  #custom-html-sv .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sv .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sv .nav-pills > li {

  float: left;

}

#custom-html-sv .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sv .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sv .nav-pills > li.active > a,

#custom-html-sv .nav-pills > li.active > a:focus,

#custom-html-sv .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sv .nav-stacked > li {

  float: none;

}

#custom-html-sv .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sv .nav-justified {

  width: 100%;

}

#custom-html-sv .nav-justified > li {

  float: none;

}

#custom-html-sv .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sv .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sv .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sv .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sv .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sv .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sv .nav-tabs-justified > .active > a,

#custom-html-sv .nav-tabs-justified > .active > a:focus,

#custom-html-sv .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sv .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sv .nav-tabs-justified > .active > a,

  #custom-html-sv .nav-tabs-justified > .active > a:focus,

  #custom-html-sv .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sv .tab-content > .tab-pane {

  display: none;

}

#custom-html-sv .tab-content > .active {

  display: block;

}

#custom-html-sv .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sv .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-sv .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-sv .navbar-header {

    float: left;

  }

}

#custom-html-sv .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sv .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-sv .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sv .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sv .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sv .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sv .navbar-fixed-top .navbar-collapse,

  #custom-html-sv .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-sv .navbar-fixed-bottom .navbar-collapse,

#custom-html-sv .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sv .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sv .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sv .container-fluid > .navbar-collapse,

#custom-html-sv .container-fluid > .navbar-header,

#custom-html-sv .container > .navbar-collapse,

#custom-html-sv .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sv .container-fluid > .navbar-collapse,

  #custom-html-sv .container-fluid > .navbar-header,

  #custom-html-sv .container > .navbar-collapse,

  #custom-html-sv .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-sv .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-sv .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-sv .navbar-fixed-bottom,

#custom-html-sv .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-sv .navbar-fixed-bottom,

  #custom-html-sv .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-sv .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sv .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sv .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sv .navbar-brand:focus,

#custom-html-sv .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sv .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-sv .navbar > .container .navbar-brand,

  #custom-html-sv .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-sv .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sv .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sv .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sv .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-sv .navbar-toggle {

    display: none;

  }

}

#custom-html-sv .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sv .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sv .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sv .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sv .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sv .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sv .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sv .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-sv .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sv .navbar-nav > li {

    float: left;

  }

  #custom-html-sv .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-sv .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-sv .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sv .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sv .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sv .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sv .navbar-form .input-group .form-control,

  #custom-html-sv .navbar-form .input-group .input-group-addon,

  #custom-html-sv .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sv .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sv .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sv .navbar-form .checkbox,

  #custom-html-sv .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sv .navbar-form .checkbox label,

  #custom-html-sv .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sv .navbar-form .checkbox input[type=checkbox],

  #custom-html-sv .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sv .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-sv .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sv .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-sv .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-sv .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sv .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sv .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sv .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sv .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sv .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-sv .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-sv .navbar-left {

    float: left !important;

  }

  #custom-html-sv .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sv .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-sv .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sv .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sv .navbar-default .navbar-brand:focus,

#custom-html-sv .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sv .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sv .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sv .navbar-default .navbar-nav > li > a:focus,

#custom-html-sv .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sv .navbar-default .navbar-nav > .active > a,

#custom-html-sv .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sv .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sv .navbar-default .navbar-nav > .disabled > a,

#custom-html-sv .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sv .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sv .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sv .navbar-default .navbar-toggle:focus,

#custom-html-sv .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sv .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sv .navbar-default .navbar-collapse,

#custom-html-sv .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sv .navbar-default .navbar-nav > .open > a,

#custom-html-sv .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sv .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sv .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-sv .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sv .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sv .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sv .navbar-default .btn-link:focus,

#custom-html-sv .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sv .navbar-default .btn-link[disabled]:focus,

#custom-html-sv .navbar-default .btn-link[disabled]:hover,

#custom-html-sv fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sv fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sv .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sv .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sv .navbar-inverse .navbar-brand:focus,

#custom-html-sv .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sv .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sv .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sv .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sv .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sv .navbar-inverse .navbar-nav > .active > a,

#custom-html-sv .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sv .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sv .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sv .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sv .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sv .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sv .navbar-inverse .navbar-toggle:focus,

#custom-html-sv .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sv .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sv .navbar-inverse .navbar-collapse,

#custom-html-sv .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sv .navbar-inverse .navbar-nav > .open > a,

#custom-html-sv .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sv .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sv .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-sv .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sv .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sv .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sv .navbar-inverse .btn-link:focus,

#custom-html-sv .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sv .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sv .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sv fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sv fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sv .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sv .breadcrumb > li {

  display: inline-block;

}

#custom-html-sv .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sv .breadcrumb > .active {

  color: #777777;

}

#custom-html-sv .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-sv .pagination > li {

  display: inline;

}

#custom-html-sv .pagination > li > a,

#custom-html-sv .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sv .pagination > li:first-child > a,

#custom-html-sv .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sv .pagination > li:last-child > a,

#custom-html-sv .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sv .pagination > li > a:focus,

#custom-html-sv .pagination > li > a:hover,

#custom-html-sv .pagination > li > span:focus,

#custom-html-sv .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sv .pagination > .active > a,

#custom-html-sv .pagination > .active > a:focus,

#custom-html-sv .pagination > .active > a:hover,

#custom-html-sv .pagination > .active > span,

#custom-html-sv .pagination > .active > span:focus,

#custom-html-sv .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-sv .pagination > .disabled > a,

#custom-html-sv .pagination > .disabled > a:focus,

#custom-html-sv .pagination > .disabled > a:hover,

#custom-html-sv .pagination > .disabled > span,

#custom-html-sv .pagination > .disabled > span:focus,

#custom-html-sv .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sv .pagination-lg > li > a,

#custom-html-sv .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sv .pagination-lg > li:first-child > a,

#custom-html-sv .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sv .pagination-lg > li:last-child > a,

#custom-html-sv .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sv .pagination-sm > li > a,

#custom-html-sv .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sv .pagination-sm > li:first-child > a,

#custom-html-sv .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sv .pagination-sm > li:last-child > a,

#custom-html-sv .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sv .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sv .pager li {

  display: inline;

}

#custom-html-sv .pager li > a,

#custom-html-sv .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sv .pager li > a:focus,

#custom-html-sv .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sv .pager .next > a,

#custom-html-sv .pager .next > span {

  float: right;

}

#custom-html-sv .pager .previous > a,

#custom-html-sv .pager .previous > span {

  float: left;

}

#custom-html-sv .pager .disabled > a,

#custom-html-sv .pager .disabled > a:focus,

#custom-html-sv .pager .disabled > a:hover,

#custom-html-sv .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sv .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-sv a.label:focus,

#custom-html-sv a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sv .label:empty {

  display: none;

}

#custom-html-sv .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sv .label-default {

  background-color: #777777;

}

#custom-html-sv .label-default[href]:focus,

#custom-html-sv .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sv .label-primary {

  background-color: #337ab7;

}

#custom-html-sv .label-primary[href]:focus,

#custom-html-sv .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sv .label-success {

  background-color: #5cb85c;

}

#custom-html-sv .label-success[href]:focus,

#custom-html-sv .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sv .label-info {

  background-color: #5bc0de;

}

#custom-html-sv .label-info[href]:focus,

#custom-html-sv .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sv .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sv .label-warning[href]:focus,

#custom-html-sv .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sv .label-danger {

  background-color: #d9534f;

}

#custom-html-sv .label-danger[href]:focus,

#custom-html-sv .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sv .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sv .badge:empty {

  display: none;

}

#custom-html-sv .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sv .btn-group-xs > .btn .badge,

#custom-html-sv .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sv a.badge:focus,

#custom-html-sv a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sv .list-group-item.active > .badge,

#custom-html-sv .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sv .list-group-item > .badge {

  float: right;

}

#custom-html-sv .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sv .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sv .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sv .jumbotron .h1,

#custom-html-sv .jumbotron h1 {

  color: inherit;

}

#custom-html-sv .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sv .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sv .container .jumbotron,

#custom-html-sv .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sv .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sv .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sv .container .jumbotron,

  #custom-html-sv .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sv .jumbotron .h1,

  #custom-html-sv .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-sv .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sv .thumbnail a > img,

#custom-html-sv .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sv a.thumbnail.active,

#custom-html-sv a.thumbnail:focus,

#custom-html-sv a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sv .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sv .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sv .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sv .alert .alert-link {

  font-weight: 700;

}

#custom-html-sv .alert > p,

#custom-html-sv .alert > ul {

  margin-bottom: 0;

}

#custom-html-sv .alert > p + p {

  margin-top: 5px;

}

#custom-html-sv .alert-dismissable,

#custom-html-sv .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sv .alert-dismissable .close,

#custom-html-sv .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sv .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sv .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sv .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sv .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sv .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sv .alert-info .alert-link {

  color: #000000;

}

#custom-html-sv .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sv .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sv .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sv .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sv .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sv .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sv .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sv .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sv .progress-bar-striped,

#custom-html-sv .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sv .progress-bar.active,

#custom-html-sv .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sv .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sv .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sv .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sv .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sv .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sv .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sv .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sv .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sv .media {

  margin-top: 15px;

}

#custom-html-sv .media:first-child {

  margin-top: 0;

}

#custom-html-sv .media,

#custom-html-sv .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sv .media-body {

  width: 10000px;

}

#custom-html-sv .media-object {

  display: block;

}

#custom-html-sv .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sv .media-right,

#custom-html-sv .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sv .media-left,

#custom-html-sv .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sv .media-body,

#custom-html-sv .media-left,

#custom-html-sv .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sv .media-middle {

  vertical-align: middle;

}

#custom-html-sv .media-bottom {

  vertical-align: bottom;

}

#custom-html-sv .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sv .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sv .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-sv .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sv .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sv .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sv a.list-group-item,

#custom-html-sv button.list-group-item {

  color: #555555;

}

#custom-html-sv a.list-group-item .list-group-item-heading,

#custom-html-sv button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sv a.list-group-item:focus,

#custom-html-sv a.list-group-item:hover,

#custom-html-sv button.list-group-item:focus,

#custom-html-sv button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sv button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sv .list-group-item.disabled,

#custom-html-sv .list-group-item.disabled:focus,

#custom-html-sv .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sv .list-group-item.disabled .list-group-item-heading,

#custom-html-sv .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sv .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sv .list-group-item.disabled .list-group-item-text,

#custom-html-sv .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sv .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sv .list-group-item.active,

#custom-html-sv .list-group-item.active:focus,

#custom-html-sv .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sv .list-group-item.active .list-group-item-heading,

#custom-html-sv .list-group-item.active .list-group-item-heading > .small,

#custom-html-sv .list-group-item.active .list-group-item-heading > small,

#custom-html-sv .list-group-item.active:focus .list-group-item-heading,

#custom-html-sv .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sv .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sv .list-group-item.active:hover .list-group-item-heading,

#custom-html-sv .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sv .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sv .list-group-item.active .list-group-item-text,

#custom-html-sv .list-group-item.active:focus .list-group-item-text,

#custom-html-sv .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sv .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sv a.list-group-item-success,

#custom-html-sv button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sv a.list-group-item-success .list-group-item-heading,

#custom-html-sv button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sv a.list-group-item-success:focus,

#custom-html-sv a.list-group-item-success:hover,

#custom-html-sv button.list-group-item-success:focus,

#custom-html-sv button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sv a.list-group-item-success.active,

#custom-html-sv a.list-group-item-success.active:focus,

#custom-html-sv a.list-group-item-success.active:hover,

#custom-html-sv button.list-group-item-success.active,

#custom-html-sv button.list-group-item-success.active:focus,

#custom-html-sv button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sv .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sv a.list-group-item-info,

#custom-html-sv button.list-group-item-info {

  color: #31708f;

}

#custom-html-sv a.list-group-item-info .list-group-item-heading,

#custom-html-sv button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sv a.list-group-item-info:focus,

#custom-html-sv a.list-group-item-info:hover,

#custom-html-sv button.list-group-item-info:focus,

#custom-html-sv button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sv a.list-group-item-info.active,

#custom-html-sv a.list-group-item-info.active:focus,

#custom-html-sv a.list-group-item-info.active:hover,

#custom-html-sv button.list-group-item-info.active,

#custom-html-sv button.list-group-item-info.active:focus,

#custom-html-sv button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sv .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sv a.list-group-item-warning,

#custom-html-sv button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sv a.list-group-item-warning .list-group-item-heading,

#custom-html-sv button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sv a.list-group-item-warning:focus,

#custom-html-sv a.list-group-item-warning:hover,

#custom-html-sv button.list-group-item-warning:focus,

#custom-html-sv button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sv a.list-group-item-warning.active,

#custom-html-sv a.list-group-item-warning.active:focus,

#custom-html-sv a.list-group-item-warning.active:hover,

#custom-html-sv button.list-group-item-warning.active,

#custom-html-sv button.list-group-item-warning.active:focus,

#custom-html-sv button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sv .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sv a.list-group-item-danger,

#custom-html-sv button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sv a.list-group-item-danger .list-group-item-heading,

#custom-html-sv button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sv a.list-group-item-danger:focus,

#custom-html-sv a.list-group-item-danger:hover,

#custom-html-sv button.list-group-item-danger:focus,

#custom-html-sv button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sv a.list-group-item-danger.active,

#custom-html-sv a.list-group-item-danger.active:focus,

#custom-html-sv a.list-group-item-danger.active:hover,

#custom-html-sv button.list-group-item-danger.active,

#custom-html-sv button.list-group-item-danger.active:focus,

#custom-html-sv button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sv .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sv .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sv .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sv .panel-body {

  padding: 15px;

}

#custom-html-sv .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sv .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sv .panel-title > .small,

#custom-html-sv .panel-title > .small > a,

#custom-html-sv .panel-title > a,

#custom-html-sv .panel-title > small,

#custom-html-sv .panel-title > small > a {

  color: inherit;

}

#custom-html-sv .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sv .panel > .list-group,

#custom-html-sv .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sv .panel > .list-group .list-group-item,

#custom-html-sv .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sv .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sv .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sv .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sv .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sv .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sv .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sv .panel > .panel-collapse > .table,

#custom-html-sv .panel > .table,

#custom-html-sv .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sv .panel > .panel-collapse > .table caption,

#custom-html-sv .panel > .table caption,

#custom-html-sv .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sv .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sv .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sv .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sv .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sv .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sv .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sv .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sv .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sv .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sv .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sv .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sv .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sv .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sv .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sv .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sv .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sv .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sv .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sv .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sv .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sv .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sv .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sv .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sv .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sv .panel > .panel-body + .table,

#custom-html-sv .panel > .panel-body + .table-responsive,

#custom-html-sv .panel > .table + .panel-body,

#custom-html-sv .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sv .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sv .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sv .panel > .table-bordered,

#custom-html-sv .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sv .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sv .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sv .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sv .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sv .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sv .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sv .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sv .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sv .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sv .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sv .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sv .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sv .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sv .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sv .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sv .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sv .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sv .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sv .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sv .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sv .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sv .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sv .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sv .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sv .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sv .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sv .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sv .panel-group {

  margin-bottom: 20px;

}

#custom-html-sv .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sv .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sv .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sv .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sv .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sv .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sv .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sv .panel-default {

  border-color: #dddddd;

}

#custom-html-sv .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sv .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sv .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sv .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sv .panel-primary {

  border-color: #337ab7;

}

#custom-html-sv .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sv .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sv .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sv .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sv .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sv .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sv .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sv .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sv .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sv .panel-info {

  border-color: #bce8f1;

}

#custom-html-sv .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sv .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sv .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sv .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sv .panel-warning {

  border-color: #faebcc;

}

#custom-html-sv .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sv .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sv .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sv .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-sv .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sv .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sv .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sv .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sv .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sv .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sv .embed-responsive .embed-responsive-item,

#custom-html-sv .embed-responsive embed,

#custom-html-sv .embed-responsive iframe,

#custom-html-sv .embed-responsive object,

#custom-html-sv .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sv .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sv .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sv .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);


}

#custom-html-sv .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sv .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sv .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sv .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sv .close:focus,

#custom-html-sv .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sv button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sv .modal-open {

  overflow: hidden;

}

#custom-html-sv .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sv .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sv .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sv .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sv .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sv .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sv .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sv .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sv .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sv .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sv .modal-header .close {

  margin-top: -2px;

}

#custom-html-sv .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sv .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sv .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sv .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sv .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sv .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sv .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-sv .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sv .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sv .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-sv .modal-lg {

    width: 900px;

  }

}

#custom-html-sv .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sv .tooltip.in {

  opacity: 0.9;

}

#custom-html-sv .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sv .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sv .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sv .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sv .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sv .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sv .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sv .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sv .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sv .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sv .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sv .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sv .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sv .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sv .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sv .popover.top {

  margin-top: -10px;

}

#custom-html-sv .popover.right {

  margin-left: 10px;

}

#custom-html-sv .popover.bottom {

  margin-top: 10px;

}

#custom-html-sv .popover.left {

  margin-left: -10px;

}

#custom-html-sv .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sv .popover-content {

  padding: 9px 14px;

}

#custom-html-sv .popover > .arrow,

#custom-html-sv .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sv .popover > .arrow {

  border-width: 11px;

}

#custom-html-sv .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sv .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sv .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sv .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sv .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sv .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sv .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sv .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sv .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sv .carousel {

  position: relative;

}

#custom-html-sv .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sv .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sv .carousel-inner > .item > a > img,

#custom-html-sv .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sv .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sv .carousel-inner > .item.active.right,

  #custom-html-sv .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sv .carousel-inner > .item.active.left,

  #custom-html-sv .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sv .carousel-inner > .item.active,

  #custom-html-sv .carousel-inner > .item.next.left,

  #custom-html-sv .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sv .carousel-inner > .active,

#custom-html-sv .carousel-inner > .next,

#custom-html-sv .carousel-inner > .prev {

  display: block;

}

#custom-html-sv .carousel-inner > .active {

  left: 0;

}

#custom-html-sv .carousel-inner > .next,

#custom-html-sv .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sv .carousel-inner > .next {

  left: 100%;

}

#custom-html-sv .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sv .carousel-inner > .next.left,

#custom-html-sv .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sv .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sv .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sv .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sv .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sv .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sv .carousel-control:focus,

#custom-html-sv .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sv .carousel-control .glyphicon-chevron-left,

#custom-html-sv .carousel-control .glyphicon-chevron-right,

#custom-html-sv .carousel-control .icon-next,

#custom-html-sv .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sv .carousel-control .glyphicon-chevron-left,

#custom-html-sv .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sv .carousel-control .glyphicon-chevron-right,

#custom-html-sv .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sv .carousel-control .icon-next,

#custom-html-sv .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sv .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sv .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sv .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sv .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-sv .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sv .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sv .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-sv .carousel-control .glyphicon-chevron-left,

  #custom-html-sv .carousel-control .glyphicon-chevron-right,

  #custom-html-sv .carousel-control .icon-next,

  #custom-html-sv .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sv .carousel-control .glyphicon-chevron-left,

  #custom-html-sv .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sv .carousel-control .glyphicon-chevron-right,

  #custom-html-sv .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sv .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sv .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sv .btn-group-vertical > .btn-group:after,

#custom-html-sv .btn-group-vertical > .btn-group:before,

#custom-html-sv .btn-toolbar:after,

#custom-html-sv .btn-toolbar:before,

#custom-html-sv .clearfix:after,

#custom-html-sv .clearfix:before,

#custom-html-sv .container-fluid:after,

#custom-html-sv .container-fluid:before,

#custom-html-sv .container:after,

#custom-html-sv .container:before,

#custom-html-sv .dl-horizontal dd:after,

#custom-html-sv .dl-horizontal dd:before,

#custom-html-sv .form-horizontal .form-group:after,

#custom-html-sv .form-horizontal .form-group:before,

#custom-html-sv .modal-footer:after,

#custom-html-sv .modal-footer:before,

#custom-html-sv .modal-header:after,

#custom-html-sv .modal-header:before,

#custom-html-sv .nav:after,

#custom-html-sv .nav:before,

#custom-html-sv .navbar-collapse:after,

#custom-html-sv .navbar-collapse:before,

#custom-html-sv .navbar-header:after,

#custom-html-sv .navbar-header:before,

#custom-html-sv .navbar:after,

#custom-html-sv .navbar:before,

#custom-html-sv .pager:after,

#custom-html-sv .pager:before,

#custom-html-sv .panel-body:after,

#custom-html-sv .panel-body:before,

#custom-html-sv .row:after,

#custom-html-sv .row:before {

  display: table;

  content: " ";

}

#custom-html-sv .btn-group-vertical > .btn-group:after,

#custom-html-sv .btn-toolbar:after,

#custom-html-sv .clearfix:after,

#custom-html-sv .container-fluid:after,

#custom-html-sv .container:after,

#custom-html-sv .dl-horizontal dd:after,

#custom-html-sv .form-horizontal .form-group:after,

#custom-html-sv .modal-footer:after,

#custom-html-sv .modal-header:after,

#custom-html-sv .nav:after,

#custom-html-sv .navbar-collapse:after,

#custom-html-sv .navbar-header:after,

#custom-html-sv .navbar:after,

#custom-html-sv .pager:after,

#custom-html-sv .panel-body:after,

#custom-html-sv .row:after {

  clear: both;

}

#custom-html-sv .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sv .pull-right {

  float: right !important;

}

#custom-html-sv .pull-left {

  float: left !important;

}

#custom-html-sv .hide {

  display: none !important;

}

#custom-html-sv .show {

  display: block !important;

}

#custom-html-sv .invisible {

  visibility: hidden;

}

#custom-html-sv .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sv .hidden {

  display: none !important;

}

#custom-html-sv .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sv .visible-lg,

#custom-html-sv .visible-md,

#custom-html-sv .visible-sm,

#custom-html-sv .visible-xs {

  display: none !important;

}

#custom-html-sv .visible-lg-block,

#custom-html-sv .visible-lg-inline,

#custom-html-sv .visible-lg-inline-block,

#custom-html-sv .visible-md-block,

#custom-html-sv .visible-md-inline,

#custom-html-sv .visible-md-inline-block,

#custom-html-sv .visible-sm-block,

#custom-html-sv .visible-sm-inline,

#custom-html-sv .visible-sm-inline-block,

#custom-html-sv .visible-xs-block,

#custom-html-sv .visible-xs-inline,

#custom-html-sv .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-sv .visible-xs {

    display: block !important;

  }

  #custom-html-sv table.visible-xs {

    display: table !important;

  }

  #custom-html-sv tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sv td.visible-xs,

  #custom-html-sv th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sv .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sv .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sv .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sv .visible-sm {

    display: block !important;

  }

  #custom-html-sv table.visible-sm {

    display: table !important;

  }

  #custom-html-sv tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sv td.visible-sm,

  #custom-html-sv th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sv .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sv .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sv .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sv .visible-md {

    display: block !important;

  }

  #custom-html-sv table.visible-md {

    display: table !important;

  }

  #custom-html-sv tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sv td.visible-md,

  #custom-html-sv th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sv .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sv .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sv .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sv .visible-lg {

    display: block !important;

  }

  #custom-html-sv table.visible-lg {

    display: table !important;

  }

  #custom-html-sv tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sv td.visible-lg,

  #custom-html-sv th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sv .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sv .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sv .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sv .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sv .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sv .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sv .hidden-lg {

    display: none !important;

  }

}

#custom-html-sv .visible-print {

  display: none !important;

}

@media print {

  #custom-html-sv .visible-print {

    display: block !important;

  }

  #custom-html-sv table.visible-print {

    display: table !important;

  }

  #custom-html-sv tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sv td.visible-print,

  #custom-html-sv th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-sv .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-sv .visible-print-block {

    display: block !important;

  }

}

#custom-html-sv .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-sv .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-sv .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-sv .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-sv .hidden-print {

    display: none !important;

  }

}

#custom-html-sv .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-sv .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sv .intl-tel-input .hide {

  display: none;

}

#custom-html-sv .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sv .intl-tel-input input,

#custom-html-sv .intl-tel-input input[type=tel],

#custom-html-sv .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sv .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sv .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sv .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sv .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sv .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sv .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sv .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sv .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sv .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-sv .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sv .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sv .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sv .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sv .intl-tel-input .country-list .country-name,

#custom-html-sv .intl-tel-input .country-list .dial-code,

#custom-html-sv .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sv .intl-tel-input .country-list .country-name,

#custom-html-sv .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sv .intl-tel-input.allow-dropdown input,

#custom-html-sv .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sv .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sv .intl-tel-input.separate-dial-code input,

#custom-html-sv .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sv .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sv .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sv .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sv .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sv .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sv .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sv .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sv .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sv .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sv .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sv .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sv .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sv .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sv .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sv .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sv .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sv .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sv .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sv .iti-flag {

  width: 20px;

}

#custom-html-sv .iti-flag.be {

  width: 18px;

}

#custom-html-sv .iti-flag.ch {

  width: 15px;

}

#custom-html-sv .iti-flag.mc {

  width: 19px;

}

#custom-html-sv .iti-flag.ne {

  width: 18px;

}

#custom-html-sv .iti-flag.np {

  width: 13px;

}

#custom-html-sv .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sv .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-sv .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sv .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-sv .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sv .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sv .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sv .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sv .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sv .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sv .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sv .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sv .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sv .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sv .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sv .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sv .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sv .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sv .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sv .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sv .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sv .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sv .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sv .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sv .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sv .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sv .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sv .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sv .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sv .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sv .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sv .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sv .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sv .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sv .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sv .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sv .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sv .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sv .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sv .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sv .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sv .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sv .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sv .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sv .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sv .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sv .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-sv .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sv .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sv .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sv .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sv .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sv .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sv .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sv .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sv .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sv .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sv .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sv .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sv .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sv .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sv .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sv .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sv .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sv .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-sv .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sv .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sv .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sv .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sv .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sv .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sv .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sv .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sv .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sv .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sv .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sv .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sv .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sv .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sv .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sv .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sv .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sv .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sv .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sv .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sv .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sv .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sv .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sv .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sv .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sv .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sv .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sv .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sv .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sv .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sv .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sv .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sv .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sv .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sv .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sv .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sv .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sv .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sv .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sv .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sv .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sv .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sv .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sv .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sv .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sv .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sv .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sv .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sv .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sv .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sv .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sv .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sv .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-sv .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sv .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sv .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sv .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sv .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sv .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sv .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sv .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sv .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sv .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sv .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sv .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sv .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sv .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sv .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sv .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sv .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sv .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sv .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sv .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sv .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sv .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sv .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sv .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sv .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sv .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sv .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sv .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sv .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sv .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sv .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sv .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sv .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sv .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sv .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sv .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sv .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sv .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sv .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sv .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sv .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sv .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sv .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sv .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sv .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sv .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sv .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sv .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sv .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sv .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sv .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sv .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sv .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sv .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sv .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sv .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sv .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sv .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-sv .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sv .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sv .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sv .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sv .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sv .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sv .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sv .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sv .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sv .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sv .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sv .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sv .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sv .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sv .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sv .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sv .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sv .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sv .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sv .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sv .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sv .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sv .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sv .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sv .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sv .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sv .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sv .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sv .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sv .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sv .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sv .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sv .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sv .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sv .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sv .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sv .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sv .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sv .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sv .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sv .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sv .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sv .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sv .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sv .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sv .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sv .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sv .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sv .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sv .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sv .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sv .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sv .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sv .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sv .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sv .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sv .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sv .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sv .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sv .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sv .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sv .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sv .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sv .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sv .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sv .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sv .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sv .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sv .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-sv .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sv .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sv .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sv .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sv .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sv .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sv .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sv .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sv .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sv .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sv .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sv .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sv .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sv .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sv .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sv .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sv .iti-flag.np {

  background-color: transparent;

}

#custom-html-sv body,

#custom-html-sv button,

#custom-html-sv input,

#custom-html-sv select,

#custom-html-sv textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sv h1,

#custom-html-sv h2,

#custom-html-sv h3,

#custom-html-sv h4,

#custom-html-sv h5,

#custom-html-sv h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-sv .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sv .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sv .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sv .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-sv .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sv .navbar-main .navbar-nav > .active > a,

#custom-html-sv .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sv .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sv .navbar-main .navbar-nav > .open > a,

#custom-html-sv .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sv .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sv .navbar-main .navbar-nav > li > a:focus,

#custom-html-sv .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sv #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sv .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sv .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-sv .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sv .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-sv .navbar-header {

    float: none;

  }

  #custom-html-sv .navbar-left,

  #custom-html-sv .navbar-right {

    float: none !important;

  }

  #custom-html-sv .navbar-toggle {

    display: block;

  }

  #custom-html-sv .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sv .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sv .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sv .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sv .navbar-nav > li {

    float: none;

  }

  #custom-html-sv .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sv .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-sv .panel {

  font-size: 0.9em;

}

#custom-html-sv .list-group {

  font-size: 0.9em;

}

#custom-html-sv .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-sv .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sv a.list-group-item.active,

#custom-html-sv a.list-group-item.active:focus,

#custom-html-sv a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sv .pagination {

  font-size: 0.8em;

}

#custom-html-sv .pagination > .active > a,

#custom-html-sv .pagination > .active > a:focus,

#custom-html-sv .pagination > .active > a:hover,

#custom-html-sv .pagination > .active > span,

#custom-html-sv .pagination > .active > span:focus,

#custom-html-sv .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sv .dropdown-menu > li > a:focus,

#custom-html-sv .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sv .label {

  border-radius: 0;

}

#custom-html-sv input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sv .list-group-item {

  padding: 7px 15px;

}

#custom-html-sv .panel-body {

  padding: 10px 15px;

}

#custom-html-sv .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sv .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sv .btn {

  overflow: hidden;

}

#custom-html-sv body,

#custom-html-sv html {

  height: 100%;

}

#custom-html-sv body {

  background-color: #f8f8f8;

}

#custom-html-sv h1,

#custom-html-sv h2,

#custom-html-sv h3,

#custom-html-sv h4,

#custom-html-sv h5,

#custom-html-sv h6 {

  font-weight: 400;

}

#custom-html-sv a {

  color: #005588;

}

#custom-html-sv section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sv section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sv section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sv section#header .search {

  margin: 20px 0;

}

#custom-html-sv section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sv section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sv section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sv section#main-content {

  margin-bottom: 60px;

}

#custom-html-sv .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sv section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sv section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sv section#footer {

    line-height: 32px;

  }

}

#custom-html-sv section#footer .back-to-top {

  float: right;

}

#custom-html-sv section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sv .adminreturndiv {

  display: none !important;

}

#custom-html-sv .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sv .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sv .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sv .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sv .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sv .navbar-main .navbar-toggle:focus,

#custom-html-sv .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sv .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sv .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-sv .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sv .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sv .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-sv div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sv div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sv div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sv div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sv div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sv .h1,

  #custom-html-sv h1 {

    font-size: 26px;

  }

  #custom-html-sv .h2,

  #custom-html-sv h2 {

    font-size: 20px;

  }

  #custom-html-sv .h3,

  #custom-html-sv h3 {

    font-size: 16px;

  }

  #custom-html-sv .h4,

  #custom-html-sv h4 {

    font-size: 14px;

  }

  #custom-html-sv .h5,

  #custom-html-sv h5 {

    font-size: 12px;

  }

  #custom-html-sv .h6,

  #custom-html-sv h6 {

    font-size: 11px;

  }

  #custom-html-sv div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-sv .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sv .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sv .margin-10 {

  margin: 10px;

}

#custom-html-sv .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sv .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sv .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sv .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sv .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sv .input-inline {

  display: inline-block;

}

#custom-html-sv .input-inline-100 {

  width: 100px;

}

#custom-html-sv .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-sv .pull-md-left {

    float: left;

  }

  #custom-html-sv .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-sv .pull-sm-left {

    float: left;

  }

  #custom-html-sv .pull-sm-right {

    float: right;

  }

  #custom-html-sv .text-right-sm {

    text-align: right;

  }

}

#custom-html-sv .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sv .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sv .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-sv .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-sv .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-sv .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sv .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sv i.icon-rss {

  color: #ff6600;

}

#custom-html-sv section#main-menu {

  background-color: #000000;

}

#custom-html-sv section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sv section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sv section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sv section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sv section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sv section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sv section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sv section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sv section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sv section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sv section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sv section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-sv section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-sv .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sv .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sv .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sv .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sv .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sv .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sv .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sv .home-shortcuts li span {

  display: none;

}

#custom-html-sv .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sv .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-sv .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-sv .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sv .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sv .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sv .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-sv .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sv .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sv .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sv .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sv .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sv .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sv .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sv .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sv .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sv .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sv .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sv .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sv .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sv .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sv .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sv .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sv .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sv .tiles .tile a {

  text-decoration: none;

}

#custom-html-sv .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sv .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sv .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-sv .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sv .tiles .tile:nth-child(1),

  #custom-html-sv .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-sv .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sv .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sv .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sv .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sv .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sv .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sv .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sv .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sv .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sv .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sv .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sv .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sv .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sv .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sv .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sv .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sv .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sv .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sv .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sv .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sv .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sv .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sv .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sv .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sv .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sv .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sv .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sv .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sv .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sv .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sv .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sv .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sv .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sv .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sv .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sv .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sv .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sv .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sv .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sv .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sv .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sv ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sv ul.top-nav > li,

#custom-html-sv ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sv ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sv ul.top-nav > li:active > a,

#custom-html-sv ul.top-nav > li:focus > a,

#custom-html-sv ul.top-nav > li:hover > a,

#custom-html-sv ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sv ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sv ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sv ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sv ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-sv ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sv ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sv ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-sv ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sv ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sv ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-sv div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sv div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sv div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sv div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sv div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sv div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sv .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sv .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-sv .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-sv .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sv .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-sv .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sv .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sv .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-sv .domain-check-availability {

  width: 100px;

}

#custom-html-sv .domain-step-options {

  min-height: 300px;

}

#custom-html-sv .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sv .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sv .domain-checker-invalid,

#custom-html-sv .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sv div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sv .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sv .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sv .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sv a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sv .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sv .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sv .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sv .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-sv .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sv .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sv .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sv .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sv .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sv .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sv .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sv .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-sv .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sv .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sv .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sv .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sv .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sv .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sv .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sv .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sv .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sv .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sv .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sv .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sv .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sv .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sv div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sv div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sv div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sv .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sv .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sv .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sv .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sv div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sv div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-sv .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sv .product-status-pending {

  background-color: #f89406;

}

#custom-html-sv .product-status-active {

  background-color: #46a546;

}

#custom-html-sv .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sv .product-status-cancelled,

#custom-html-sv .product-status-terminated {

  background-color: #666666;

}

#custom-html-sv .product-status-fraud {

  background-color: #000000;

}

#custom-html-sv .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sv div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sv .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sv .ssl-inactive {

  cursor: pointer;

}

#custom-html-sv .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-sv .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sv .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sv .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sv .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sv .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sv .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sv .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sv .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-sv .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sv .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sv .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sv .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-sv .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sv .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sv .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sv .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sv .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sv .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sv .pagination > li > a,

#custom-html-sv .pagination > li > span {

  color: #444444;

}

#custom-html-sv .pagination > .active > a,

#custom-html-sv .pagination > .active > a:focus,

#custom-html-sv .pagination > .active > a:hover,

#custom-html-sv .pagination > .active > span,

#custom-html-sv .pagination > .active > span:focus,

#custom-html-sv .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sv table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sv .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sv table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sv .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-sv table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sv .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sv .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sv .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sv table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sv table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sv table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sv .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sv .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sv .status-pending {

  color: #d9534f;

}

#custom-html-sv .status-pending.transfer {

  color: #a68500;

}

#custom-html-sv .status-active,

#custom-html-sv .status-completed,

#custom-html-sv .status-open {

  color: #3fad46;

}

#custom-html-sv .status-suspended {

  color: #f0ad4e;

}

#custom-html-sv .status-customer-reply {

  color: #ff6600;

}

#custom-html-sv .status-answered,

#custom-html-sv .status-fraud {

  color: #000000;

}

#custom-html-sv .status-expired,

#custom-html-sv .status-transferred.away {

  color: #004258;

}

#custom-html-sv .status-cancelled {

  color: #9fa29a;

}

#custom-html-sv .status-terminated {

  color: #666666;

}

#custom-html-sv .status-onhold {

  color: #224488;

}

#custom-html-sv .status-inprogress {

  color: #cc0000;

}

#custom-html-sv .status-closed {

  color: #888888;

}

#custom-html-sv .status-paid {

  color: #498302;

}

#custom-html-sv .status-unpaid {

  color: #ed3e48;

}

#custom-html-sv .status-cancelled {

  color: #87939f;

}

#custom-html-sv .status-collections {

  color: #9a141e;

}

#custom-html-sv .status-refunded {

  color: #319fc3;

}

#custom-html-sv .status-customer-reply {

  color: #ff6600;

}

#custom-html-sv .status-delivered {

  color: #224488;

}

#custom-html-sv .status-accepted {

  color: #498302;

}

#custom-html-sv .status-dead,

#custom-html-sv .status-lost {

  color: #000000;

}

#custom-html-sv .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sv .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sv .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sv .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sv .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sv .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sv .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-sv .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-sv .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sv .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sv .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-sv .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sv .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sv .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sv .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sv .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sv .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sv .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sv .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sv .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sv .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sv .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sv .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sv .ticket-reply .rating,

#custom-html-sv .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sv .ticket-reply .rating span.star,

#custom-html-sv .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sv .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sv .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sv .ticket-reply .rating span.star:before,

#custom-html-sv .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sv .ticket-reply .rating span.star:hover:before,

#custom-html-sv .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sv .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sv .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sv .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sv .ticket-reply .clear {

  clear: both;

}

#custom-html-sv .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sv .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sv .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sv .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sv .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sv .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sv .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sv .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sv .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sv .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sv .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sv .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sv .popover-user-notifications ul li i.far,

#custom-html-sv .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sv .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sv .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sv .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sv .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sv .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sv .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sv .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sv .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sv .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sv div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sv div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sv div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sv div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sv div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sv div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sv div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-sv div.credit-card {

    max-width: 250px;

  }

  #custom-html-sv div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sv div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sv div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sv div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sv div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-sv .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sv .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sv .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sv .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sv .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sv .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sv div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sv div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sv div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sv div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sv div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sv div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sv .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-sv .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-sv .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sv .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sv .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sv .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sv .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-sv div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sv div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sv div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sv #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sv .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sv .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sv .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sv .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sv .kb-category a small {

  color: #888888;

}

#custom-html-sv .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sv .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sv .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sv .kbarticles a.admin-inline-edit,

#custom-html-sv .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sv h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sv .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sv .kb-article-title h2 {

  margin: 0;

}

#custom-html-sv .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sv .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sv .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sv .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sv .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sv .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sv .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sv .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sv #stepResults {

  font-size: 20px;

}

#custom-html-sv #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-sv #stepResults {

    font-size: 14px;

  }

  #custom-html-sv #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sv div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-sv #main-menu,

  #custom-html-sv #top-nav,

  #custom-html-sv .header-lined,

  #custom-html-sv .sidebar {

    display: none;

  }

  #custom-html-sv a[href]:after {

    content: "" !important;

  }

}

#custom-html-sv h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sv h3.with-badge i,

#custom-html-sv h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sv h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-sv h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sv .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-sv .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sv .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sv a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sv a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sv .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sv .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sv .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sv .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sv .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sv .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sv .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sv .login-popover {

  font-size: 12px;

}

#custom-html-sv .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sv .login-popover hr {

  margin: 5px 0;

}

#custom-html-sv tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sv tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sv .error-container {

  text-align: center;

}

#custom-html-sv .error-container h1 {

  margin-top: 40px;

}

#custom-html-sv .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sv .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sv .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sv .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sv .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sv #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sv #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sv #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sv .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-sv #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sv #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-sv #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sv #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sv #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sv #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sv .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sv .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sv .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sv .email-verification .btn:active,

#custom-html-sv .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sv .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sv .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sv .email-verification .far,

#custom-html-sv .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-sv .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sv .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sv .email-verification .button {

    float: right;

  }

  #custom-html-sv .email-verification .far,

  #custom-html-sv .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-sv .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sv .email-verification.success .far,

#custom-html-sv .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sv .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sv .email-verification.failed .far,

#custom-html-sv .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sv .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-sv .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sv .md-editor > .md-preview,

#custom-html-sv .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sv div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sv .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sv .small-font {

  font-size: 0.9em;

}

#custom-html-sv .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sv .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sv .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sv .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sv .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sv .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sv .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sv .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sv .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sv .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sv .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sv .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sv .panel-heading i.fab,

#custom-html-sv .panel-heading i.fal,

#custom-html-sv .panel-heading i.far,

#custom-html-sv .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sv .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sv .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sv .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sv .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sv .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sv .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sv .panel-sidebar .list-group-item.disabled,

#custom-html-sv .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sv .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sv .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sv .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sv .panel-sidebar a.list-group-item.active,

#custom-html-sv .panel-sidebar a.list-group-item.active:focus,

#custom-html-sv .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sv .panel-sidebar a.list-group-item.active i,

#custom-html-sv .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sv .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sv .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sv .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sv .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sv .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sv .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sv .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sv .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sv .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sv .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sv .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sv .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sv .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sv .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sv .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-sv .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sv .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-sv .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sv .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sv .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sv .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sv .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sv .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sv .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sv .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sv .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sv .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sv .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sv .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sv .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sv .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-sv .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sv .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sv .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sv .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sv .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sv .promo-banner p {

  margin: 5px 0;

}

#custom-html-sv .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sv .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-sv .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sv .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sv .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sv .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sv .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sv .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sv .promo-banner-slim {

  padding: 10px;

}

#custom-html-sv .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sv .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sv .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sv .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sv .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sv .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sv .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sv .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sv .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sv .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sv .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sv .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sv .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sv .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sv .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sv .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sv .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sv .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sv .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sv .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sv .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sv .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sv .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sv .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sv .panel-mc-sso .btn,

#custom-html-sv .panel-mc-sso .form-control,

#custom-html-sv .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sv .panel-mc-sso small {

  display: block;

}

#custom-html-sv .social-signin-btns {

  text-align: center;

}

#custom-html-sv .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sv .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sv .btn-social i.far,

#custom-html-sv .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-facebook.active,

#custom-html-sv .btn-facebook:active,

#custom-html-sv .btn-facebook:focus,

#custom-html-sv .btn-facebook:hover,

#custom-html-sv .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-facebook.active,

#custom-html-sv .btn-facebook:active,

#custom-html-sv .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sv .btn-facebook.disabled,

#custom-html-sv .btn-facebook.disabled.active,

#custom-html-sv .btn-facebook.disabled:active,

#custom-html-sv .btn-facebook.disabled:focus,

#custom-html-sv .btn-facebook.disabled:hover,

#custom-html-sv .btn-facebook[disabled],

#custom-html-sv .btn-facebook[disabled].active,

#custom-html-sv .btn-facebook[disabled]:active,

#custom-html-sv .btn-facebook[disabled]:focus,

#custom-html-sv .btn-facebook[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-facebook,

#custom-html-sv fieldset[disabled] .btn-facebook.active,

#custom-html-sv fieldset[disabled] .btn-facebook:active,

#custom-html-sv fieldset[disabled] .btn-facebook:focus,

#custom-html-sv fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-google.active,

#custom-html-sv .btn-google:active,

#custom-html-sv .btn-google:focus,

#custom-html-sv .btn-google:hover,

#custom-html-sv .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-google.active,

#custom-html-sv .btn-google:active,

#custom-html-sv .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sv .btn-google-plus.disabled.active,

#custom-html-sv .btn-google-plus.disabled:active,

#custom-html-sv .btn-google-plus.disabled:focus,

#custom-html-sv .btn-google-plus[disabled].active,

#custom-html-sv .btn-google-plus[disabled]:active,

#custom-html-sv .btn-google-plus[disabled]:focus,

#custom-html-sv .btn-google-plus[disabled]:hover,

#custom-html-sv .btn-google.disabled,

#custom-html-sv .btn-google.disabled:hover,

#custom-html-sv .btn-google[disabled],

#custom-html-sv fieldset[disabled] .btn-google,

#custom-html-sv fieldset[disabled] .btn-google-plus.active,

#custom-html-sv fieldset[disabled] .btn-google-plus:active,

#custom-html-sv fieldset[disabled] .btn-google-plus:focus,

#custom-html-sv fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-twitter.active,

#custom-html-sv .btn-twitter:active,

#custom-html-sv .btn-twitter:focus,

#custom-html-sv .btn-twitter:hover,

#custom-html-sv .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .btn-twitter.active,

#custom-html-sv .btn-twitter:active,

#custom-html-sv .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sv .btn-twitter.disabled,

#custom-html-sv .btn-twitter.disabled.active,

#custom-html-sv .btn-twitter.disabled:active,

#custom-html-sv .btn-twitter.disabled:focus,

#custom-html-sv .btn-twitter.disabled:hover,

#custom-html-sv .btn-twitter[disabled],

#custom-html-sv .btn-twitter[disabled].active,

#custom-html-sv .btn-twitter[disabled]:active,

#custom-html-sv .btn-twitter[disabled]:focus,

#custom-html-sv .btn-twitter[disabled]:hover,

#custom-html-sv fieldset[disabled] .btn-twitter,

#custom-html-sv fieldset[disabled] .btn-twitter.active,

#custom-html-sv fieldset[disabled] .btn-twitter:active,

#custom-html-sv fieldset[disabled] .btn-twitter:focus,

#custom-html-sv fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sv .providerPreLinking {

  min-height: 52px;

}

#custom-html-sv .providerLinkingFeedback {

  display: none;

}

#custom-html-sv #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sv #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sv #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sv #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sv .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sv #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sv #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sv #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sv #registration .field,

#custom-html-sv #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sv #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sv #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sv #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sv #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sv #registration textarea.field {

  height: auto;

}

#custom-html-sv #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sv #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sv #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sv #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sv #registration .field[disabled],

#custom-html-sv #registration .field[readonly],

#custom-html-sv #registration .form-control[disabled],

#custom-html-sv #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sv #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-sv .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sv .upgrade .product-to-be-upgraded h4,

#custom-html-sv .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sv .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sv .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sv .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sv .upgrade .products .product .current,

#custom-html-sv .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sv .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sv .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-sv .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-sv .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sv .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sv .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sv .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sv .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sv .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sv .upgrade .products .far,

#custom-html-sv .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sv .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sv .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-sv .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sv .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sv .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sv .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sv .intl-tel-input {

  width: 100%;

}

#custom-html-sv .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sv .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .bootstrap-switch input[type=checkbox],

#custom-html-sv .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sv .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sv .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sv .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sv .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sv .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sv .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sv .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sv .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sv .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sv .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sv .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sv .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-sv .md-editor .md-footer,

#custom-html-sv .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sv .md-editor > .md-header {

  margin: 0;

}

#custom-html-sv .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sv .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sv .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sv .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sv .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sv .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sv .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sv .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-input,

#custom-html-sv .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sv .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sv .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sv .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sv .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sv .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sv .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sv .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sv .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sv .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sv .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sv table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sv table.dataTable td,

#custom-html-sv table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sv table.dataTable td.dataTables_empty,

#custom-html-sv table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sv table.dataTable.nowrap td,

#custom-html-sv table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sv div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sv table.dataTable thead > tr > td.sorting,

#custom-html-sv table.dataTable thead > tr > td.sorting_asc,

#custom-html-sv table.dataTable thead > tr > td.sorting_desc,

#custom-html-sv table.dataTable thead > tr > th.sorting,

#custom-html-sv table.dataTable thead > tr > th.sorting_asc,

#custom-html-sv table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sv table.dataTable thead > tr > td:active,

#custom-html-sv table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sv table.dataTable thead .sorting,

#custom-html-sv table.dataTable thead .sorting_asc,

#custom-html-sv table.dataTable thead .sorting_asc_disabled,

#custom-html-sv table.dataTable thead .sorting_desc,

#custom-html-sv table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sv table.dataTable thead .sorting:after,

#custom-html-sv table.dataTable thead .sorting_asc:after,

#custom-html-sv table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sv table.dataTable thead .sorting_desc:after,

#custom-html-sv table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sv table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sv table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sv table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sv table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sv table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sv div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sv div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sv div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sv div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sv div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sv div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sv div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sv div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-sv div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sv div.dataTables_wrapper div.dataTables_info,

  #custom-html-sv div.dataTables_wrapper div.dataTables_length,

  #custom-html-sv div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-sv table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sv table.dataTable.table-condensed .sorting:after,

#custom-html-sv table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sv table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sv table.table-bordered.dataTable td,

#custom-html-sv table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sv table.table-bordered.dataTable td:last-child,

#custom-html-sv table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sv table.table-bordered.dataTable tbody td,

#custom-html-sv table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sv div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sv div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sv div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;


}

#custom-html-sv div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sv table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sv table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sv table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sv table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sv table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sv table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sv table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sv table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sv table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sv table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sv table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sv table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sv table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sv table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sv table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sv table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sv div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sv div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sv div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sv div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sv div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sv div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-sv div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sv div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sv .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sv .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sv .multiselect-container > li {

  padding: 0;

}

#custom-html-sv .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sv .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sv .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sv .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sv .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sv .multiselect-container > li > a > label.checkbox,

#custom-html-sv .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sv .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sv .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sv .form-inline .multiselect-container label.checkbox,

#custom-html-sv .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sv .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sv .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7x6bJomo {

  padding-top: 45px;

  padding-bottom: 30px;

  background-image: url("../../../assets/images/mbr-1920x1439.jpg");

}

.cid-sl7x6bJomo P {

  color: #767676;

}

.cid-sl7x6bJomo H1 {

  color: #ffffff;

}

.cid-sl7x6bJomo .mbr-text,

.cid-sl7x6bJomo .mbr-section-btn {

  color: #ffffff;

}

.cid-sl7x6bJomo h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3dvghZDM .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3dvghZDM .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3dvghZDM .divider-top::before,

.cid-sF3dvghZDM .divider-bottom::before,

.cid-sF3dvghZDM .divider-top::after,

.cid-sF3dvghZDM .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3dvghZDM .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3dvghZDM .divider-triangles::before {

  top: -50px;

}

.cid-sF3dvghZDM .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3dvghZDM .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3dvghZDM .divider-multitriangles::before,

.cid-sF3dvghZDM .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3dvghZDM .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-sl80xa4XrT {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-sl80xa4XrT P {

  color: #767676;

}

.cid-sl80xa4XrT H1 {

  color: #000000;

}

.cid-sl80xa4XrT .mbr-text,

.cid-sl80xa4XrT .mbr-section-btn {

  color: #000000;

  text-align: left;

}

.cid-sF3dG9Opqr .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3dG9Opqr .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3dG9Opqr .divider-top::before,

.cid-sF3dG9Opqr .divider-bottom::before,

.cid-sF3dG9Opqr .divider-top::after,

.cid-sF3dG9Opqr .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3dG9Opqr .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3dG9Opqr .divider-triangles::before {

  top: -50px;

}

.cid-sF3dG9Opqr .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3dG9Opqr .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3dG9Opqr .divider-multitriangles::before,

.cid-sF3dG9Opqr .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3dG9Opqr .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-MlS2GF4uFF {

  background-color: #efefef;

  padding-top: 0px;

  padding-bottom: 0px;

}

@media (max-width: 768px) {

  .cid-MlS2GF4uFF video {

    width: 100% !important;

  }

}

.cid-MlS2GF4uFF video {

  margin: auto;

  display: block;

}

.cid-sF3dN6MzCR .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3dN6MzCR .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3dN6MzCR .divider-top::before,

.cid-sF3dN6MzCR .divider-bottom::before,

.cid-sF3dN6MzCR .divider-top::after,

.cid-sF3dN6MzCR .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3dN6MzCR .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3dN6MzCR .divider-triangles::before {

  top: -50px;

}

.cid-sF3dN6MzCR .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3dN6MzCR .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3dN6MzCR .divider-multitriangles::before,

.cid-sF3dN6MzCR .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3dN6MzCR .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-rR5P2KNGkB {

  padding-top: 15px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-rR5P2KNGkB .mbr-figure {

  margin: 0 auto;

  width: 100%;

  display: -webkit-flex;

  justify-content: center;

  -webkit-justify-content: center;

}

.cid-rR5P2KNGkB .mbr-figure img {

  height: 100%;

  margin: 0 auto;

}

@media (max-width: 991px) {

  .cid-rR5P2KNGkB .mbr-figure img {

    width: 100% !important;

  }

}

.cid-rR5P2KNGkB H1 {

  color: #000000;

}

.cid-rR5P2KNGkB .mbr-text,

.cid-rR5P2KNGkB .mbr-section-btn {

  color: #000000;

}

.cid-sF3e6u3HOt .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3e6u3HOt .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3e6u3HOt .divider-top::before,

.cid-sF3e6u3HOt .divider-bottom::before,

.cid-sF3e6u3HOt .divider-top::after,

.cid-sF3e6u3HOt .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3e6u3HOt .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3e6u3HOt .divider-triangles::before {

  top: -50px;

}

.cid-sF3e6u3HOt .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3e6u3HOt .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3e6u3HOt .divider-multitriangles::before,

.cid-sF3e6u3HOt .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3e6u3HOt .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-rR5Q0vecbY {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #efefef;

}

.cid-rR5Q0vecbY .mbr-figure {

  margin: 0 auto;

  width: 100%;

  display: -webkit-flex;

  justify-content: center;

  -webkit-justify-content: center;

}

.cid-rR5Q0vecbY .mbr-figure img {

  height: 100%;

  margin: 0 auto;

}

@media (max-width: 991px) {

  .cid-rR5Q0vecbY .mbr-figure img {

    width: 100% !important;

  }

}

.cid-rR5Q0vecbY H1 {

  color: #000000;

}

.cid-rR5Q0vecbY .mbr-text,

.cid-rR5Q0vecbY .mbr-section-btn {

  color: #000000;

}

.cid-sF3evWkjn8 .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3evWkjn8 .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3evWkjn8 .divider-top::before,

.cid-sF3evWkjn8 .divider-bottom::before,

.cid-sF3evWkjn8 .divider-top::after,

.cid-sF3evWkjn8 .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3evWkjn8 .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3evWkjn8 .divider-triangles::before {

  top: -50px;

}

.cid-sF3evWkjn8 .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3evWkjn8 .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3evWkjn8 .divider-multitriangles::before,

.cid-sF3evWkjn8 .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3evWkjn8 .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-rR5QHDWtud {

  padding-top: 0px;

  padding-bottom: 15px;

  background-color: #ffffff;

}

.cid-rR5QHDWtud .mbr-figure {

  margin: 0 auto;

  width: 100%;

  display: -webkit-flex;

  justify-content: center;

  -webkit-justify-content: center;

}

.cid-rR5QHDWtud .mbr-figure img {

  height: 100%;

  margin: 0 auto;

}

@media (max-width: 991px) {

  .cid-rR5QHDWtud .mbr-figure img {

    width: 100% !important;

  }

}

.cid-rR5QHDWtud H1 {

  color: #000000;

}

.cid-rR5QHDWtud .mbr-text,

.cid-rR5QHDWtud .mbr-section-btn {

  color: #000000;

}

.cid-sF3fwPMdgX .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3fwPMdgX .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3fwPMdgX .divider-top::before,

.cid-sF3fwPMdgX .divider-bottom::before,

.cid-sF3fwPMdgX .divider-top::after,

.cid-sF3fwPMdgX .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3fwPMdgX .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3fwPMdgX .divider-triangles::before {

  top: -50px;

}

.cid-sF3fwPMdgX .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3fwPMdgX .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3fwPMdgX .divider-multitriangles::before,

.cid-sF3fwPMdgX .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3fwPMdgX .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-rR9wL82UGW {

  padding-top: 0px;

  padding-bottom: 90px;

  background-color: #efefef;

}

.cid-rR9wL82UGW .mbr-figure {

  margin: 0 auto;

  width: 100%;

  display: -webkit-flex;

  justify-content: center;

  -webkit-justify-content: center;

}

.cid-rR9wL82UGW .mbr-figure img {

  height: 100%;

  margin: 0 auto;

}

@media (max-width: 991px) {

  .cid-rR9wL82UGW .mbr-figure img {

    width: 100% !important;

  }

}

.cid-rR9wL82UGW H1 {

  color: #000000;

}

.cid-rR9wL82UGW .mbr-text,

.cid-rR9wL82UGW .mbr-section-btn {

  color: #000000;

}

.cid-sF3fNQbfV8 .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3fNQbfV8 .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3fNQbfV8 .divider-top::before,

.cid-sF3fNQbfV8 .divider-bottom::before,

.cid-sF3fNQbfV8 .divider-top::after,

.cid-sF3fNQbfV8 .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3fNQbfV8 .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3fNQbfV8 .divider-triangles::before {

  top: -50px;

}

.cid-sF3fNQbfV8 .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3fNQbfV8 .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3fNQbfV8 .divider-multitriangles::before,

.cid-sF3fNQbfV8 .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3fNQbfV8 .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-sF3eIDU0vs {

  padding-top: 90px;

  padding-bottom: 90px;

  background-color: #ffffff;

}

.cid-sF3eIDU0vs .mbr-figure {

  margin: 0 auto;

  width: 100%;

  display: -webkit-flex;

  justify-content: center;

  -webkit-justify-content: center;

}

.cid-sF3eIDU0vs .mbr-figure img {

  height: 100%;

  margin: 0 auto;

}

@media (max-width: 991px) {

  .cid-sF3eIDU0vs .mbr-figure img {

    width: 100% !important;

  }

}

.cid-sF3eIDU0vs H1 {

  color: #000000;

}

.cid-sF3eIDU0vs .mbr-text,

.cid-sF3eIDU0vs .mbr-section-btn {

  color: #000000;

}

.cid-sGAK3ls2Nd .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sGAK3ls2Nd .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sGAK3ls2Nd .divider-top::before,

.cid-sGAK3ls2Nd .divider-bottom::before,

.cid-sGAK3ls2Nd .divider-top::after,

.cid-sGAK3ls2Nd .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sGAK3ls2Nd .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sGAK3ls2Nd .divider-triangles::before {

  top: -50px;

}

.cid-sGAK3ls2Nd .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sGAK3ls2Nd .divider-halfcircle::before {

  top: -50px;

}

.cid-sGAK3ls2Nd .divider-multitriangles::before,

.cid-sGAK3ls2Nd .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sGAK3ls2Nd .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-rSd4WIcErc {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-rSd4WIcErc P {

  color: #767676;

}

.cid-sF3fWhnZJY .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3fWhnZJY .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3fWhnZJY .divider-top::before,

.cid-sF3fWhnZJY .divider-bottom::before,

.cid-sF3fWhnZJY .divider-top::after,

.cid-sF3fWhnZJY .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3fWhnZJY .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3fWhnZJY .divider-triangles::before {

  top: -50px;

}

.cid-sF3fWhnZJY .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3fWhnZJY .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3fWhnZJY .divider-multitriangles::before,

.cid-sF3fWhnZJY .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3fWhnZJY .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-s889Cvrxut {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s889Cvrxut h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s889Cvrxut p {

  color: #767676;

  text-align: left;

}

.cid-s889Cvrxut .card-box {

  padding-top: 2rem;

}

.cid-s889Cvrxut .card-wrapper {

  height: 100%;

}

.cid-svDz9c5nid {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDz9c5nid .content {

    text-align: center;

  }

  .cid-svDz9c5nid .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDz9c5nid .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDz9c5nid .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDz9c5nid .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDz9c5nid .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDz9c5nid .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDz9c5nid .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDz9c5nid .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDz9c5nid .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDz9c5nid .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDz9c5nid .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDz9c5nid .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDz9c5nid .copyright > p {

  text-align: left;

}

.cid-svDz9c5nid H5 {

  color: #000000;

}

.cid-svGGyi75kz .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGGyi75kz .my-float {

  margin-top: 16px;

}

.cid-svGGyi75kz P {

  color: #232323;

}

.cid-svGGyi75kz DIV {

  color: #ffffff;

}

.cid-svGGyi75kz H10 {

  color: #767676;

}

.cid-svGGyi75kz .hidden {

  display: none;

}

#custom-html-sw {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-sw html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sw body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-sw article,

#custom-html-sw aside,

#custom-html-sw details,

#custom-html-sw figcaption,

#custom-html-sw figure,

#custom-html-sw footer,

#custom-html-sw header,

#custom-html-sw hgroup,

#custom-html-sw main,

#custom-html-sw menu,

#custom-html-sw nav,

#custom-html-sw section,

#custom-html-sw summary {

  display: block;

}

#custom-html-sw audio,

#custom-html-sw canvas,

#custom-html-sw progress,

#custom-html-sw video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sw audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sw [hidden],

#custom-html-sw template {

  display: none;

}

#custom-html-sw a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-sw a:active,

#custom-html-sw a:hover {

  outline: 0;

}

#custom-html-sw abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sw b,

#custom-html-sw strong {

  font-weight: 700;

}

#custom-html-sw dfn {

  font-style: italic;

}

#custom-html-sw h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sw mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sw small {

  font-size: 80%;

}

#custom-html-sw sub,

#custom-html-sw sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sw sup {

  top: -0.5em;

}

#custom-html-sw sub {

  bottom: -0.25em;

}

#custom-html-sw img {

  border: 0;

  vertical-align: middle;

}

#custom-html-sw svg:not(:root) {

  overflow: hidden;

}

#custom-html-sw figure {

  margin: 0;

}

#custom-html-sw hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sw pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sw code,

#custom-html-sw kbd,

#custom-html-sw pre,

#custom-html-sw samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-sw button,

#custom-html-sw input,

#custom-html-sw optgroup,

#custom-html-sw select,

#custom-html-sw textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sw button {

  overflow: visible;

}

#custom-html-sw button,

#custom-html-sw select {

  text-transform: none;

}

#custom-html-sw button,

#custom-html-sw html input[type=button],

#custom-html-sw input[type=reset],

#custom-html-sw input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sw button[disabled],

#custom-html-sw html input[disabled] {

  cursor: default;

}

#custom-html-sw button::-moz-focus-inner,

#custom-html-sw input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sw input {

  line-height: normal;

}

#custom-html-sw input[type=checkbox],

#custom-html-sw input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sw input[type=number]::-webkit-inner-spin-button,

#custom-html-sw input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sw input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-sw input[type=search]::-webkit-search-cancel-button,

#custom-html-sw input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sw fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-sw legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sw textarea {

  overflow: auto;

}

#custom-html-sw optgroup {

  font-weight: 700;

}

#custom-html-sw table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-sw td,

#custom-html-sw th {

  padding: 0;

}

@media print {

  #custom-html-sw *,

  #custom-html-sw :after,

  #custom-html-sw :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sw a,

  #custom-html-sw a:visited {

    text-decoration: underline;

  }

  #custom-html-sw a[href]:after {

    content: "" !important;

  }

  #custom-html-sw abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sw a[href^="#"]:after,

  #custom-html-sw a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sw blockquote,

  #custom-html-sw pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sw thead {

    display: table-header-group;

  }

  #custom-html-sw img,

  #custom-html-sw tr {

    page-break-inside: avoid;

  }

  #custom-html-sw img {

    max-width: 100% !important;

  }

  #custom-html-sw h2,

  #custom-html-sw h3,

  #custom-html-sw p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sw h2,

  #custom-html-sw h3 {

    page-break-after: avoid;

  }

  #custom-html-sw .navbar {

    display: none;

  }

  #custom-html-sw .btn > .caret,

  #custom-html-sw .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sw .label {

    border: 1px solid #000000;

  }

  #custom-html-sw .table {

    border-collapse: collapse !important;

  }

  #custom-html-sw .table td,

  #custom-html-sw .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sw .table-bordered td,

  #custom-html-sw .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-sw .visible-print {

    display: block !important;

  }

  #custom-html-sw table.visible-print {

    display: table !important;

  }

  #custom-html-sw tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sw td.visible-print,

  #custom-html-sw th.visible-print {

    display: table-cell !important;

  }

  #custom-html-sw .visible-print-block {

    display: block !important;

  }

  #custom-html-sw .visible-print-inline {

    display: inline !important;

  }

  #custom-html-sw .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-sw .hidden-print {

    display: none !important;

  }

  #custom-html-sw #main-menu,

  #custom-html-sw #top-nav,

  #custom-html-sw .header-lined,

  #custom-html-sw .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sw .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sw .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sw .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sw .glyphicon-eur:before,

#custom-html-sw .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sw .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sw .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sw .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sw .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sw .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sw .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sw .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sw .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sw .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sw .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sw .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sw .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sw .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sw .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sw .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sw .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sw .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sw .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sw .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sw .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sw .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sw .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sw .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sw .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sw .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sw .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sw .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sw .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sw .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sw .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sw .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sw .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sw .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sw .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sw .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sw .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sw .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sw .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sw .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sw .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sw .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sw .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sw .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sw .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sw .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sw .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sw .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sw .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sw .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sw .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sw .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sw .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sw .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sw .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sw .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sw .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sw .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sw .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sw .glyphicon-list:before {

  content: "\e056";

}

#custom-html-sw .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sw .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sw .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sw .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sw .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sw .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sw .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sw .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sw .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sw .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sw .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sw .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sw .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sw .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sw .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sw .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sw .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sw .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sw .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sw .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sw .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sw .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sw .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sw .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sw .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-sw .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sw .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sw .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sw .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sw .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sw .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sw .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sw .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sw .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sw .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sw .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sw .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sw .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sw .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sw .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sw .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sw .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sw .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sw .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sw .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sw .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sw .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sw .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sw .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sw .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sw .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sw .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sw .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sw .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sw .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sw .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sw .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sw .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sw .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sw .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sw .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sw .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sw .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sw .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sw .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sw .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sw .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sw .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sw .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sw .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sw .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sw .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sw .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sw .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sw .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sw .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sw .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sw .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sw .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sw .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sw .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sw .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sw .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sw .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sw .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sw .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sw .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sw .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sw .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sw .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sw .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sw .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sw .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sw .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sw .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sw .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sw .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sw .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sw .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-sw .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sw .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sw .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sw .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sw .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sw .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sw .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sw .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sw .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sw .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sw .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sw .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sw .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sw .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sw .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sw .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sw .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sw .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sw .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sw .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sw .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sw .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sw .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sw .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sw .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sw .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sw .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sw .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sw .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sw .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sw .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sw .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sw .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sw .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sw .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sw .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sw .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sw .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sw .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sw .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sw .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sw .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sw .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sw .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sw .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sw .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sw .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sw .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sw .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sw .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sw .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sw .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sw .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sw .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sw .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sw .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sw .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sw .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sw .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sw .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sw .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sw .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sw .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sw .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sw .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sw .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sw .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sw .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sw .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sw .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sw .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sw .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sw .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sw .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sw .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sw .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sw .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sw .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sw .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sw .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sw .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sw .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sw .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sw .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sw .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sw .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-sw .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sw .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sw .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sw .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sw .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sw .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sw .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sw .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sw .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sw .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sw .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sw .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sw .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sw .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sw .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sw * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sw :after,

#custom-html-sw :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sw button,

#custom-html-sw input,

#custom-html-sw select,

#custom-html-sw textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sw a:focus,

#custom-html-sw a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sw a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sw .carousel-inner > .item > a > img,

#custom-html-sw .carousel-inner > .item > img,

#custom-html-sw .img-responsive,

#custom-html-sw .thumbnail a > img,

#custom-html-sw .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sw .img-rounded {

  border-radius: 6px;

}

#custom-html-sw .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sw .img-circle {

  border-radius: 50%;

}

#custom-html-sw .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sw .sr-only-focusable:active,

#custom-html-sw .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sw [role=button] {

  cursor: pointer;

}

#custom-html-sw .h1,

#custom-html-sw .h2,

#custom-html-sw .h3,

#custom-html-sw .h4,

#custom-html-sw .h5,

#custom-html-sw .h6,

#custom-html-sw h1,

#custom-html-sw h2,

#custom-html-sw h3,

#custom-html-sw h4,

#custom-html-sw h5,

#custom-html-sw h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sw .h1 .small,

#custom-html-sw .h1 small,

#custom-html-sw .h2 .small,

#custom-html-sw .h2 small,

#custom-html-sw .h3 .small,

#custom-html-sw .h3 small,

#custom-html-sw .h4 .small,

#custom-html-sw .h4 small,

#custom-html-sw .h5 .small,

#custom-html-sw .h5 small,

#custom-html-sw .h6 .small,

#custom-html-sw .h6 small,

#custom-html-sw h1 .small,

#custom-html-sw h1 small,

#custom-html-sw h2 .small,

#custom-html-sw h2 small,

#custom-html-sw h3 .small,

#custom-html-sw h3 small,

#custom-html-sw h4 .small,

#custom-html-sw h4 small,

#custom-html-sw h5 .small,

#custom-html-sw h5 small,

#custom-html-sw h6 .small,

#custom-html-sw h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sw .h1,

#custom-html-sw .h2,

#custom-html-sw .h3,

#custom-html-sw h1,

#custom-html-sw h2,

#custom-html-sw h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sw .h1 .small,

#custom-html-sw .h1 small,

#custom-html-sw .h2 .small,

#custom-html-sw .h2 small,

#custom-html-sw .h3 .small,

#custom-html-sw .h3 small,

#custom-html-sw h1 .small,

#custom-html-sw h1 small,

#custom-html-sw h2 .small,

#custom-html-sw h2 small,

#custom-html-sw h3 .small,

#custom-html-sw h3 small {

  font-size: 65%;

}

#custom-html-sw .h4,

#custom-html-sw .h5,

#custom-html-sw .h6,

#custom-html-sw h4,

#custom-html-sw h5,

#custom-html-sw h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sw .h4 .small,

#custom-html-sw .h4 small,

#custom-html-sw .h5 .small,

#custom-html-sw .h5 small,

#custom-html-sw .h6 .small,

#custom-html-sw .h6 small,

#custom-html-sw h4 .small,

#custom-html-sw h4 small,

#custom-html-sw h5 .small,

#custom-html-sw h5 small,

#custom-html-sw h6 .small,

#custom-html-sw h6 small {

  font-size: 75%;

}

#custom-html-sw .h1,

#custom-html-sw h1 {

  font-size: 36px;

}

#custom-html-sw .h2,

#custom-html-sw h2 {

  font-size: 30px;

}

#custom-html-sw .h3,

#custom-html-sw h3 {

  font-size: 24px;

}

#custom-html-sw .h4,

#custom-html-sw h4 {

  font-size: 18px;

}

#custom-html-sw .h5,

#custom-html-sw h5 {

  font-size: 14px;

}

#custom-html-sw .h6,

#custom-html-sw h6 {

  font-size: 12px;

}

#custom-html-sw p {

  margin: 0 0 10px;

}

#custom-html-sw .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sw .lead {

    font-size: 21px;

  }

  #custom-html-sw .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sw .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-sw .container {

    width: 750px;

  }

  #custom-html-sw .col-sm-1,

  #custom-html-sw .col-sm-10,

  #custom-html-sw .col-sm-11,

  #custom-html-sw .col-sm-12,

  #custom-html-sw .col-sm-2,

  #custom-html-sw .col-sm-3,

  #custom-html-sw .col-sm-4,

  #custom-html-sw .col-sm-5,

  #custom-html-sw .col-sm-6,

  #custom-html-sw .col-sm-7,

  #custom-html-sw .col-sm-8,

  #custom-html-sw .col-sm-9 {

    float: left;

  }

  #custom-html-sw .col-sm-12 {

    width: 100%;

  }

  #custom-html-sw .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sw .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sw .col-sm-9 {

    width: 75%;

  }

  #custom-html-sw .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sw .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sw .col-sm-6 {

    width: 50%;

  }

  #custom-html-sw .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sw .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sw .col-sm-3 {

    width: 25%;

  }

  #custom-html-sw .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sw .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sw .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sw .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sw .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sw .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sw .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sw .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sw .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sw .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sw .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sw .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sw .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sw .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sw .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sw .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sw .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sw .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sw .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sw .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sw .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sw .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sw .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sw .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sw .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sw .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sw .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sw .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sw .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sw .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sw .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sw .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sw .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sw .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sw .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sw .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sw .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sw .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sw .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sw .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sw .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-sw .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sw .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sw .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sw .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sw .form-inline .input-group .form-control,

  #custom-html-sw .form-inline .input-group .input-group-addon,

  #custom-html-sw .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sw .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sw .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sw .form-inline .checkbox,

  #custom-html-sw .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sw .form-inline .checkbox label,

  #custom-html-sw .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sw .form-inline .checkbox input[type=checkbox],

  #custom-html-sw .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sw .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sw .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-sw .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-sw .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-sw .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sw .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-sw .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sw .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sw .nav-tabs.nav-justified > .active > a,

  #custom-html-sw .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sw .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sw .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sw .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-sw .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sw .nav-tabs-justified > .active > a,

  #custom-html-sw .nav-tabs-justified > .active > a:focus,

  #custom-html-sw .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sw .navbar {

    border-radius: 4px;

  }

  #custom-html-sw .navbar-header {

    float: left;

  }

  #custom-html-sw .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sw .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sw .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sw .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sw .navbar-fixed-top .navbar-collapse,

  #custom-html-sw .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-sw .container-fluid > .navbar-collapse,

  #custom-html-sw .container-fluid > .navbar-header,

  #custom-html-sw .container > .navbar-collapse,

  #custom-html-sw .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-sw .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-sw .navbar-fixed-bottom,

  #custom-html-sw .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-sw .navbar > .container .navbar-brand,

  #custom-html-sw .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-sw .navbar-toggle {

    display: none;

  }

  #custom-html-sw .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sw .navbar-nav > li {

    float: left;

  }

  #custom-html-sw .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-sw .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sw .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sw .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sw .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sw .navbar-form .input-group .form-control,

  #custom-html-sw .navbar-form .input-group .input-group-addon,

  #custom-html-sw .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sw .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sw .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sw .navbar-form .checkbox,

  #custom-html-sw .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sw .navbar-form .checkbox label,

  #custom-html-sw .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sw .navbar-form .checkbox input[type=checkbox],

  #custom-html-sw .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sw .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sw .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sw .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-sw .navbar-left {

    float: left !important;

  }

  #custom-html-sw .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sw .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-sw .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sw .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sw .modal-sm {

    width: 300px;

  }

  #custom-html-sw .pull-sm-left {

    float: left;

  }

  #custom-html-sw .pull-sm-right {

    float: right;

  }

  #custom-html-sw .text-right-sm {

    text-align: right;

  }

  #custom-html-sw .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sw .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-sw .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sw .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sw .email-verification .button {

    float: right;

  }

  #custom-html-sw .email-verification .far,

  #custom-html-sw .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-sw .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sw .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-sw .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sw .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sw .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sw .small,

#custom-html-sw small {

  font-size: 85%;

}

#custom-html-sw .mark,

#custom-html-sw mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sw .text-left {

  text-align: left;

}

#custom-html-sw .text-right {

  text-align: right;

}

#custom-html-sw .text-center {

  text-align: center;

}

#custom-html-sw .text-justify {

  text-align: justify;

}

#custom-html-sw .text-nowrap {

  white-space: nowrap;

}

#custom-html-sw .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sw .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sw .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sw .text-muted {

  color: #777777;

}

#custom-html-sw .text-primary {

  color: #000000;

}

#custom-html-sw a.text-primary:focus,

#custom-html-sw a.text-primary:hover {

  color: #000000;

}

#custom-html-sw .text-success {

  color: #3c763d;

}

#custom-html-sw a.text-success:focus,

#custom-html-sw a.text-success:hover {

  color: #2b542c;

}

#custom-html-sw .text-info {

  color: #31708f;

}

#custom-html-sw a.text-info:focus,

#custom-html-sw a.text-info:hover {

  color: #000000;

}

#custom-html-sw .text-warning {

  color: #8a6d3b;

}

#custom-html-sw a.text-warning:focus,

#custom-html-sw a.text-warning:hover {

  color: #66512c;

}

#custom-html-sw .text-danger {

  color: #a94442;

}

#custom-html-sw a.text-danger:focus,

#custom-html-sw a.text-danger:hover {

  color: #843534;

}

#custom-html-sw .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-sw a.bg-primary:focus,

#custom-html-sw a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sw .bg-success {

  background-color: #dff0d8;

}

#custom-html-sw a.bg-success:focus,

#custom-html-sw a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sw .bg-info {

  background-color: #d9edf7;

}

#custom-html-sw a.bg-info:focus,

#custom-html-sw a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sw .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sw a.bg-warning:focus,

#custom-html-sw a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sw .bg-danger {

  background-color: #f2dede;

}

#custom-html-sw a.bg-danger:focus,

#custom-html-sw a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sw .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sw ol,

#custom-html-sw ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sw ol ol,

#custom-html-sw ol ul,

#custom-html-sw ul ol,

#custom-html-sw ul ul {

  margin-bottom: 0;

}

#custom-html-sw .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sw .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sw .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sw dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sw dd,

#custom-html-sw dt {

  line-height: 1.42857143;

}

#custom-html-sw dt {

  font-weight: 700;

}

#custom-html-sw dd {

  margin-left: 0;

}

#custom-html-sw abbr[data-original-title],

#custom-html-sw abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sw .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sw blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sw blockquote ol:last-child,

#custom-html-sw blockquote p:last-child,

#custom-html-sw blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sw blockquote .small,

#custom-html-sw blockquote footer,

#custom-html-sw blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sw blockquote .small:before,

#custom-html-sw blockquote footer:before,

#custom-html-sw blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sw .blockquote-reverse,

#custom-html-sw blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sw .blockquote-reverse .small:before,

#custom-html-sw .blockquote-reverse footer:before,

#custom-html-sw .blockquote-reverse small:before,

#custom-html-sw blockquote.pull-right .small:before,

#custom-html-sw blockquote.pull-right footer:before,

#custom-html-sw blockquote.pull-right small:before {

  content: '';

}

#custom-html-sw .blockquote-reverse .small:after,

#custom-html-sw .blockquote-reverse footer:after,

#custom-html-sw .blockquote-reverse small:after,

#custom-html-sw blockquote.pull-right .small:after,

#custom-html-sw blockquote.pull-right footer:after,

#custom-html-sw blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sw address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sw code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sw kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sw kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sw pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sw .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sw .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-sw .container {

    width: 970px;

  }

  #custom-html-sw .col-md-1,

  #custom-html-sw .col-md-10,

  #custom-html-sw .col-md-11,

  #custom-html-sw .col-md-12,

  #custom-html-sw .col-md-2,

  #custom-html-sw .col-md-3,

  #custom-html-sw .col-md-4,

  #custom-html-sw .col-md-5,

  #custom-html-sw .col-md-6,

  #custom-html-sw .col-md-7,

  #custom-html-sw .col-md-8,

  #custom-html-sw .col-md-9 {

    float: left;

  }

  #custom-html-sw .col-md-12 {

    width: 100%;

  }

  #custom-html-sw .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sw .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sw .col-md-9 {

    width: 75%;

  }

  #custom-html-sw .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sw .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sw .col-md-6 {

    width: 50%;

  }

  #custom-html-sw .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sw .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sw .col-md-3 {

    width: 25%;

  }

  #custom-html-sw .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sw .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sw .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sw .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sw .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sw .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sw .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sw .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sw .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sw .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sw .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sw .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sw .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sw .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sw .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sw .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sw .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sw .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sw .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sw .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sw .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sw .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sw .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sw .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sw .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sw .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sw .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sw .col-md-push-0 {

    left: auto;

  }

  #custom-html-sw .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sw .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sw .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sw .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sw .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sw .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sw .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sw .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sw .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sw .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sw .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sw .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sw .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-sw .modal-lg {

    width: 900px;

  }

  #custom-html-sw .pull-md-left {

    float: left;

  }

  #custom-html-sw .pull-md-right {

    float: right;

  }

  #custom-html-sw h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sw .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sw .container {

    width: 1170px;

  }

  #custom-html-sw .col-lg-1,

  #custom-html-sw .col-lg-10,

  #custom-html-sw .col-lg-11,

  #custom-html-sw .col-lg-12,

  #custom-html-sw .col-lg-2,

  #custom-html-sw .col-lg-3,

  #custom-html-sw .col-lg-4,

  #custom-html-sw .col-lg-5,

  #custom-html-sw .col-lg-6,

  #custom-html-sw .col-lg-7,

  #custom-html-sw .col-lg-8,

  #custom-html-sw .col-lg-9 {

    float: left;

  }

  #custom-html-sw .col-lg-12 {

    width: 100%;

  }

  #custom-html-sw .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sw .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sw .col-lg-9 {

    width: 75%;

  }

  #custom-html-sw .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sw .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sw .col-lg-6 {

    width: 50%;

  }

  #custom-html-sw .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sw .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sw .col-lg-3 {

    width: 25%;

  }

  #custom-html-sw .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sw .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sw .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sw .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sw .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sw .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sw .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sw .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sw .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sw .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sw .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sw .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sw .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sw .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sw .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sw .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sw .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sw .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sw .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sw .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sw .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sw .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sw .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sw .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sw .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sw .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sw .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sw .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sw .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sw .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sw .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sw .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sw .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sw .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sw .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sw .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sw .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sw .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sw .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sw .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sw .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-sw .visible-lg {

    display: block !important;

  }

  #custom-html-sw table.visible-lg {

    display: table !important;

  }

  #custom-html-sw tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sw td.visible-lg,

  #custom-html-sw th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-sw .visible-lg-block {

    display: block !important;

  }

  #custom-html-sw .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-sw .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-sw .hidden-lg {

    display: none !important;

  }

  #custom-html-sw .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sw .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sw .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sw .col-lg-1,

#custom-html-sw .col-lg-10,

#custom-html-sw .col-lg-11,

#custom-html-sw .col-lg-12,

#custom-html-sw .col-lg-2,

#custom-html-sw .col-lg-3,

#custom-html-sw .col-lg-4,

#custom-html-sw .col-lg-5,

#custom-html-sw .col-lg-6,

#custom-html-sw .col-lg-7,

#custom-html-sw .col-lg-8,

#custom-html-sw .col-lg-9,

#custom-html-sw .col-md-1,

#custom-html-sw .col-md-10,

#custom-html-sw .col-md-11,

#custom-html-sw .col-md-12,

#custom-html-sw .col-md-2,

#custom-html-sw .col-md-3,

#custom-html-sw .col-md-4,

#custom-html-sw .col-md-5,

#custom-html-sw .col-md-6,

#custom-html-sw .col-md-7,

#custom-html-sw .col-md-8,

#custom-html-sw .col-md-9,

#custom-html-sw .col-sm-1,

#custom-html-sw .col-sm-10,

#custom-html-sw .col-sm-11,

#custom-html-sw .col-sm-12,

#custom-html-sw .col-sm-2,

#custom-html-sw .col-sm-3,

#custom-html-sw .col-sm-4,

#custom-html-sw .col-sm-5,

#custom-html-sw .col-sm-6,

#custom-html-sw .col-sm-7,

#custom-html-sw .col-sm-8,

#custom-html-sw .col-sm-9,

#custom-html-sw .col-xs-1,

#custom-html-sw .col-xs-10,

#custom-html-sw .col-xs-11,

#custom-html-sw .col-xs-12,

#custom-html-sw .col-xs-2,

#custom-html-sw .col-xs-3,

#custom-html-sw .col-xs-4,

#custom-html-sw .col-xs-5,

#custom-html-sw .col-xs-6,

#custom-html-sw .col-xs-7,

#custom-html-sw .col-xs-8,

#custom-html-sw .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sw .col-xs-1,

#custom-html-sw .col-xs-10,

#custom-html-sw .col-xs-11,

#custom-html-sw .col-xs-12,

#custom-html-sw .col-xs-2,

#custom-html-sw .col-xs-3,

#custom-html-sw .col-xs-4,

#custom-html-sw .col-xs-5,

#custom-html-sw .col-xs-6,

#custom-html-sw .col-xs-7,

#custom-html-sw .col-xs-8,

#custom-html-sw .col-xs-9 {

  float: left;

}

#custom-html-sw .col-xs-12 {

  width: 100%;

}

#custom-html-sw .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sw .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sw .col-xs-9 {

  width: 75%;

}

#custom-html-sw .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sw .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sw .col-xs-6 {

  width: 50%;

}

#custom-html-sw .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sw .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sw .col-xs-3 {

  width: 25%;

}

#custom-html-sw .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sw .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sw .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sw .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sw .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sw .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sw .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sw .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sw .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sw .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sw .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sw .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sw .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sw .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sw .col-xs-pull-0 {

  right: auto;

}

#custom-html-sw .col-xs-push-12 {

  left: 100%;

}

#custom-html-sw .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sw .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sw .col-xs-push-9 {

  left: 75%;

}

#custom-html-sw .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sw .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sw .col-xs-push-6 {

  left: 50%;

}

#custom-html-sw .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sw .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sw .col-xs-push-3 {

  left: 25%;

}

#custom-html-sw .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sw .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sw .col-xs-push-0 {

  left: auto;

}

#custom-html-sw .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sw .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sw .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sw .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sw .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sw .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sw .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sw .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sw .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sw .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sw .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sw .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-sw .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-sw caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sw th {

  text-align: left;

}

#custom-html-sw .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sw .table > tbody > tr > td,

#custom-html-sw .table > tbody > tr > th,

#custom-html-sw .table > tfoot > tr > td,

#custom-html-sw .table > tfoot > tr > th,

#custom-html-sw .table > thead > tr > td,

#custom-html-sw .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sw .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sw .table > caption + thead > tr:first-child > td,

#custom-html-sw .table > caption + thead > tr:first-child > th,

#custom-html-sw .table > colgroup + thead > tr:first-child > td,

#custom-html-sw .table > colgroup + thead > tr:first-child > th,

#custom-html-sw .table > thead:first-child > tr:first-child > td,

#custom-html-sw .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sw .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sw .table .table {

  background-color: #ffffff;

}

#custom-html-sw .table-condensed > tbody > tr > td,

#custom-html-sw .table-condensed > tbody > tr > th,

#custom-html-sw .table-condensed > tfoot > tr > td,

#custom-html-sw .table-condensed > tfoot > tr > th,

#custom-html-sw .table-condensed > thead > tr > td,

#custom-html-sw .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sw .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sw .table-bordered > tbody > tr > td,

#custom-html-sw .table-bordered > tbody > tr > th,

#custom-html-sw .table-bordered > tfoot > tr > td,

#custom-html-sw .table-bordered > tfoot > tr > th,

#custom-html-sw .table-bordered > thead > tr > td,

#custom-html-sw .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sw .table-bordered > thead > tr > td,

#custom-html-sw .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sw .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sw .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sw table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sw table td[class*=col-],

#custom-html-sw table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-sw .table > tbody > tr.active > td,

#custom-html-sw .table > tbody > tr.active > th,

#custom-html-sw .table > tbody > tr > td.active,

#custom-html-sw .table > tbody > tr > th.active,

#custom-html-sw .table > tfoot > tr.active > td,

#custom-html-sw .table > tfoot > tr.active > th,

#custom-html-sw .table > tfoot > tr > td.active,

#custom-html-sw .table > tfoot > tr > th.active,

#custom-html-sw .table > thead > tr.active > td,

#custom-html-sw .table > thead > tr.active > th,

#custom-html-sw .table > thead > tr > td.active,

#custom-html-sw .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sw .table-hover > tbody > tr.active:hover > td,

#custom-html-sw .table-hover > tbody > tr.active:hover > th,

#custom-html-sw .table-hover > tbody > tr:hover > .active,

#custom-html-sw .table-hover > tbody > tr > td.active:hover,

#custom-html-sw .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sw .table > tbody > tr.success > td,

#custom-html-sw .table > tbody > tr.success > th,

#custom-html-sw .table > tbody > tr > td.success,

#custom-html-sw .table > tbody > tr > th.success,

#custom-html-sw .table > tfoot > tr.success > td,

#custom-html-sw .table > tfoot > tr.success > th,

#custom-html-sw .table > tfoot > tr > td.success,

#custom-html-sw .table > tfoot > tr > th.success,

#custom-html-sw .table > thead > tr.success > td,

#custom-html-sw .table > thead > tr.success > th,

#custom-html-sw .table > thead > tr > td.success,

#custom-html-sw .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sw .table-hover > tbody > tr.success:hover > td,

#custom-html-sw .table-hover > tbody > tr.success:hover > th,

#custom-html-sw .table-hover > tbody > tr:hover > .success,

#custom-html-sw .table-hover > tbody > tr > td.success:hover,

#custom-html-sw .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sw .table > tbody > tr.info > td,

#custom-html-sw .table > tbody > tr.info > th,

#custom-html-sw .table > tbody > tr > td.info,

#custom-html-sw .table > tbody > tr > th.info,

#custom-html-sw .table > tfoot > tr.info > td,

#custom-html-sw .table > tfoot > tr.info > th,

#custom-html-sw .table > tfoot > tr > td.info,

#custom-html-sw .table > tfoot > tr > th.info,

#custom-html-sw .table > thead > tr.info > td,

#custom-html-sw .table > thead > tr.info > th,

#custom-html-sw .table > thead > tr > td.info,

#custom-html-sw .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sw .table-hover > tbody > tr.info:hover > td,

#custom-html-sw .table-hover > tbody > tr.info:hover > th,

#custom-html-sw .table-hover > tbody > tr:hover > .info,

#custom-html-sw .table-hover > tbody > tr > td.info:hover,

#custom-html-sw .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sw .table > tbody > tr.warning > td,

#custom-html-sw .table > tbody > tr.warning > th,

#custom-html-sw .table > tbody > tr > td.warning,

#custom-html-sw .table > tbody > tr > th.warning,

#custom-html-sw .table > tfoot > tr.warning > td,

#custom-html-sw .table > tfoot > tr.warning > th,

#custom-html-sw .table > tfoot > tr > td.warning,

#custom-html-sw .table > tfoot > tr > th.warning,

#custom-html-sw .table > thead > tr.warning > td,

#custom-html-sw .table > thead > tr.warning > th,

#custom-html-sw .table > thead > tr > td.warning,

#custom-html-sw .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sw .table-hover > tbody > tr.warning:hover > td,

#custom-html-sw .table-hover > tbody > tr.warning:hover > th,

#custom-html-sw .table-hover > tbody > tr:hover > .warning,

#custom-html-sw .table-hover > tbody > tr > td.warning:hover,

#custom-html-sw .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sw .table > tbody > tr.danger > td,

#custom-html-sw .table > tbody > tr.danger > th,

#custom-html-sw .table > tbody > tr > td.danger,

#custom-html-sw .table > tbody > tr > th.danger,

#custom-html-sw .table > tfoot > tr.danger > td,

#custom-html-sw .table > tfoot > tr.danger > th,

#custom-html-sw .table > tfoot > tr > td.danger,

#custom-html-sw .table > tfoot > tr > th.danger,

#custom-html-sw .table > thead > tr.danger > td,

#custom-html-sw .table > thead > tr.danger > th,

#custom-html-sw .table > thead > tr > td.danger,

#custom-html-sw .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sw .table-hover > tbody > tr.danger:hover > td,

#custom-html-sw .table-hover > tbody > tr.danger:hover > th,

#custom-html-sw .table-hover > tbody > tr:hover > .danger,

#custom-html-sw .table-hover > tbody > tr > td.danger:hover,

#custom-html-sw .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sw .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sw .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sw .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sw .table-responsive > .table > tbody > tr > td,

  #custom-html-sw .table-responsive > .table > tbody > tr > th,

  #custom-html-sw .table-responsive > .table > tfoot > tr > td,

  #custom-html-sw .table-responsive > .table > tfoot > tr > th,

  #custom-html-sw .table-responsive > .table > thead > tr > td,

  #custom-html-sw .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sw .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sw .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sw .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sw .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sw .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sw .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sw .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sw .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sw .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sw .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sw .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sw .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sw .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sw .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sw .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sw .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sw .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-sw div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sw div.dataTables_wrapper div.dataTables_info,

  #custom-html-sw div.dataTables_wrapper div.dataTables_length,

  #custom-html-sw div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-sw div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sw label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sw input[type=file] {

  display: block;

}

#custom-html-sw input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sw select[multiple],

#custom-html-sw select[size] {

  height: auto;

}

#custom-html-sw input[type=checkbox]:focus,

#custom-html-sw input[type=file]:focus,

#custom-html-sw input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sw output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sw .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sw .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sw .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sw .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sw .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sw .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sw .form-control[disabled],

#custom-html-sw .form-control[readonly],

#custom-html-sw fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sw .form-control[disabled],

#custom-html-sw fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sw textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sw input[type=date].form-control,

  #custom-html-sw input[type=datetime-local].form-control,

  #custom-html-sw input[type=month].form-control,

  #custom-html-sw input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sw .input-group-sm input[type=date],

  #custom-html-sw .input-group-sm input[type=datetime-local],

  #custom-html-sw .input-group-sm input[type=month],

  #custom-html-sw .input-group-sm input[type=time],

  #custom-html-sw input[type=date].input-sm,

  #custom-html-sw input[type=datetime-local].input-sm,

  #custom-html-sw input[type=month].input-sm,

  #custom-html-sw input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sw .input-group-lg input[type=date],

  #custom-html-sw .input-group-lg input[type=datetime-local],

  #custom-html-sw .input-group-lg input[type=month],

  #custom-html-sw .input-group-lg input[type=time],

  #custom-html-sw input[type=date].input-lg,

  #custom-html-sw input[type=datetime-local].input-lg,

  #custom-html-sw input[type=month].input-lg,

  #custom-html-sw input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sw .form-group {

  margin-bottom: 15px;

}

#custom-html-sw .checkbox,

#custom-html-sw .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sw .checkbox label,

#custom-html-sw .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sw .checkbox input[type=checkbox],

#custom-html-sw .checkbox-inline input[type=checkbox],

#custom-html-sw .radio input[type=radio],

#custom-html-sw .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sw .checkbox + .checkbox,

#custom-html-sw .radio + .radio {

  margin-top: -5px;

}

#custom-html-sw .checkbox-inline,

#custom-html-sw .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sw .checkbox-inline + .checkbox-inline,

#custom-html-sw .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sw fieldset[disabled] input[type=checkbox],

#custom-html-sw fieldset[disabled] input[type=radio],

#custom-html-sw input[type=checkbox].disabled,

#custom-html-sw input[type=checkbox][disabled],

#custom-html-sw input[type=radio].disabled,

#custom-html-sw input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sw .checkbox-inline.disabled,

#custom-html-sw .radio-inline.disabled,

#custom-html-sw fieldset[disabled] .checkbox-inline,

#custom-html-sw fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sw .checkbox.disabled label,

#custom-html-sw .radio.disabled label,

#custom-html-sw fieldset[disabled] .checkbox label,

#custom-html-sw fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sw .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sw .form-control-static.input-lg,

#custom-html-sw .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sw .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sw select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sw select[multiple].input-sm,

#custom-html-sw textarea.input-sm {

  height: auto;

}

#custom-html-sw .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sw .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sw .form-group-sm select[multiple].form-control,

#custom-html-sw .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sw .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sw .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sw select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sw select[multiple].input-lg,

#custom-html-sw textarea.input-lg {

  height: auto;

}

#custom-html-sw .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sw .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sw .form-group-lg select[multiple].form-control,

#custom-html-sw .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sw .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sw .has-feedback {

  position: relative;

}

#custom-html-sw .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sw .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sw .form-group-lg .form-control + .form-control-feedback,

#custom-html-sw .input-group-lg + .form-control-feedback,

#custom-html-sw .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sw .form-group-sm .form-control + .form-control-feedback,

#custom-html-sw .input-group-sm + .form-control-feedback,

#custom-html-sw .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sw .has-success .checkbox,

#custom-html-sw .has-success .checkbox-inline,

#custom-html-sw .has-success .control-label,

#custom-html-sw .has-success .help-block,

#custom-html-sw .has-success .radio,

#custom-html-sw .has-success .radio-inline,

#custom-html-sw .has-success.checkbox label,

#custom-html-sw .has-success.checkbox-inline label,

#custom-html-sw .has-success.radio label,

#custom-html-sw .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sw .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sw .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sw .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sw .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sw .has-warning .checkbox,

#custom-html-sw .has-warning .checkbox-inline,

#custom-html-sw .has-warning .control-label,

#custom-html-sw .has-warning .help-block,

#custom-html-sw .has-warning .radio,

#custom-html-sw .has-warning .radio-inline,

#custom-html-sw .has-warning.checkbox label,

#custom-html-sw .has-warning.checkbox-inline label,

#custom-html-sw .has-warning.radio label,

#custom-html-sw .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sw .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sw .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sw .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sw .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sw .has-error .checkbox,

#custom-html-sw .has-error .checkbox-inline,

#custom-html-sw .has-error .control-label,

#custom-html-sw .has-error .help-block,

#custom-html-sw .has-error .radio,

#custom-html-sw .has-error .radio-inline,

#custom-html-sw .has-error.checkbox label,

#custom-html-sw .has-error.checkbox-inline label,

#custom-html-sw .has-error.radio label,

#custom-html-sw .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sw .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sw .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sw .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sw .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sw .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sw .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sw .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-sw .form-horizontal .checkbox,

#custom-html-sw .form-horizontal .checkbox-inline,

#custom-html-sw .form-horizontal .radio,

#custom-html-sw .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sw .form-horizontal .checkbox,

#custom-html-sw .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sw .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sw .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-sw .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-sw .btn.active.focus,

#custom-html-sw .btn.active:focus,

#custom-html-sw .btn.focus,

#custom-html-sw .btn:active.focus,

#custom-html-sw .btn:active:focus,

#custom-html-sw .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sw .btn.focus,

#custom-html-sw .btn:focus,

#custom-html-sw .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sw .btn.active,

#custom-html-sw .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sw .btn.disabled,

#custom-html-sw .btn[disabled],

#custom-html-sw fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sw a.btn.disabled,

#custom-html-sw fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sw .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sw .btn-default.focus,

#custom-html-sw .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sw .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sw .btn-default.active,

#custom-html-sw .btn-default:active,

#custom-html-sw .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-sw .btn-default.active.focus,

#custom-html-sw .btn-default.active:focus,

#custom-html-sw .btn-default.active:hover,

#custom-html-sw .btn-default:active.focus,

#custom-html-sw .btn-default:active:focus,

#custom-html-sw .btn-default:active:hover,

#custom-html-sw .open > .dropdown-toggle.btn-default.focus,

#custom-html-sw .open > .dropdown-toggle.btn-default:focus,

#custom-html-sw .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sw .btn-default.disabled.focus,

#custom-html-sw .btn-default.disabled:focus,

#custom-html-sw .btn-default.disabled:hover,

#custom-html-sw .btn-default[disabled].focus,

#custom-html-sw .btn-default[disabled]:focus,

#custom-html-sw .btn-default[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-default.focus,

#custom-html-sw fieldset[disabled] .btn-default:focus,

#custom-html-sw fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sw .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sw .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sw .btn-primary.focus,

#custom-html-sw .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sw .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sw .btn-primary.active,

#custom-html-sw .btn-primary:active,

#custom-html-sw .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-sw .btn-primary.active.focus,

#custom-html-sw .btn-primary.active:focus,

#custom-html-sw .btn-primary.active:hover,

#custom-html-sw .btn-primary:active.focus,

#custom-html-sw .btn-primary:active:focus,

#custom-html-sw .btn-primary:active:hover,

#custom-html-sw .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sw .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sw .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sw .btn-primary.disabled.focus,

#custom-html-sw .btn-primary.disabled:focus,

#custom-html-sw .btn-primary.disabled:hover,

#custom-html-sw .btn-primary[disabled].focus,

#custom-html-sw .btn-primary[disabled]:focus,

#custom-html-sw .btn-primary[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-primary.focus,

#custom-html-sw fieldset[disabled] .btn-primary:focus,

#custom-html-sw fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sw .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sw .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sw .btn-success.focus,

#custom-html-sw .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sw .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sw .btn-success.active,

#custom-html-sw .btn-success:active,

#custom-html-sw .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-sw .btn-success.active.focus,

#custom-html-sw .btn-success.active:focus,

#custom-html-sw .btn-success.active:hover,

#custom-html-sw .btn-success:active.focus,

#custom-html-sw .btn-success:active:focus,

#custom-html-sw .btn-success:active:hover,

#custom-html-sw .open > .dropdown-toggle.btn-success.focus,

#custom-html-sw .open > .dropdown-toggle.btn-success:focus,

#custom-html-sw .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sw .btn-success.disabled.focus,

#custom-html-sw .btn-success.disabled:focus,

#custom-html-sw .btn-success.disabled:hover,

#custom-html-sw .btn-success[disabled].focus,

#custom-html-sw .btn-success[disabled]:focus,

#custom-html-sw .btn-success[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-success.focus,

#custom-html-sw fieldset[disabled] .btn-success:focus,

#custom-html-sw fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sw .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sw .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sw .btn-info.focus,

#custom-html-sw .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sw .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sw .btn-info.active,

#custom-html-sw .btn-info:active,

#custom-html-sw .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-sw .btn-info.active.focus,

#custom-html-sw .btn-info.active:focus,

#custom-html-sw .btn-info.active:hover,

#custom-html-sw .btn-info:active.focus,

#custom-html-sw .btn-info:active:focus,

#custom-html-sw .btn-info:active:hover,

#custom-html-sw .open > .dropdown-toggle.btn-info.focus,

#custom-html-sw .open > .dropdown-toggle.btn-info:focus,

#custom-html-sw .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sw .btn-info.disabled.focus,

#custom-html-sw .btn-info.disabled:focus,

#custom-html-sw .btn-info.disabled:hover,

#custom-html-sw .btn-info[disabled].focus,

#custom-html-sw .btn-info[disabled]:focus,

#custom-html-sw .btn-info[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-info.focus,

#custom-html-sw fieldset[disabled] .btn-info:focus,

#custom-html-sw fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sw .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sw .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sw .btn-warning.focus,

#custom-html-sw .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sw .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sw .btn-warning.active,

#custom-html-sw .btn-warning:active,

#custom-html-sw .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-sw .btn-warning.active.focus,

#custom-html-sw .btn-warning.active:focus,

#custom-html-sw .btn-warning.active:hover,

#custom-html-sw .btn-warning:active.focus,

#custom-html-sw .btn-warning:active:focus,

#custom-html-sw .btn-warning:active:hover,

#custom-html-sw .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sw .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sw .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sw .btn-warning.disabled.focus,

#custom-html-sw .btn-warning.disabled:focus,

#custom-html-sw .btn-warning.disabled:hover,

#custom-html-sw .btn-warning[disabled].focus,

#custom-html-sw .btn-warning[disabled]:focus,

#custom-html-sw .btn-warning[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-warning.focus,

#custom-html-sw fieldset[disabled] .btn-warning:focus,

#custom-html-sw fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sw .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sw .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sw .btn-danger.focus,

#custom-html-sw .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sw .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sw .btn-danger.active,

#custom-html-sw .btn-danger:active,

#custom-html-sw .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-sw .btn-danger.active.focus,

#custom-html-sw .btn-danger.active:focus,

#custom-html-sw .btn-danger.active:hover,

#custom-html-sw .btn-danger:active.focus,

#custom-html-sw .btn-danger:active:focus,

#custom-html-sw .btn-danger:active:hover,

#custom-html-sw .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sw .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sw .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sw .btn-danger.disabled.focus,

#custom-html-sw .btn-danger.disabled:focus,

#custom-html-sw .btn-danger.disabled:hover,

#custom-html-sw .btn-danger[disabled].focus,

#custom-html-sw .btn-danger[disabled]:focus,

#custom-html-sw .btn-danger[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-danger.focus,

#custom-html-sw fieldset[disabled] .btn-danger:focus,

#custom-html-sw fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sw .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sw .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sw .btn-link,

#custom-html-sw .btn-link.active,

#custom-html-sw .btn-link:active,

#custom-html-sw .btn-link[disabled],

#custom-html-sw fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sw .btn-link,

#custom-html-sw .btn-link:active,

#custom-html-sw .btn-link:focus,

#custom-html-sw .btn-link:hover {

  border-color: transparent;

}

#custom-html-sw .btn-link:focus,

#custom-html-sw .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sw .btn-link[disabled]:focus,

#custom-html-sw .btn-link[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-link:focus,

#custom-html-sw fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sw .btn-group-lg > .btn,

#custom-html-sw .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sw .btn-group-sm > .btn,

#custom-html-sw .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sw .btn-group-xs > .btn,

#custom-html-sw .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sw .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sw .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sw input[type=button].btn-block,

#custom-html-sw input[type=reset].btn-block,

#custom-html-sw input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sw .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sw .fade.in {

  opacity: 1;

}

#custom-html-sw .collapse {

  display: none;

}

#custom-html-sw .collapse.in {

  display: block;

}

#custom-html-sw tr.collapse.in {

  display: table-row;

}

#custom-html-sw tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sw .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-sw .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sw .dropdown,

#custom-html-sw .dropup {

  position: relative;

}

#custom-html-sw .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sw .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sw .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sw .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sw .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sw .dropdown-menu > li > a:focus,

#custom-html-sw .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sw .dropdown-menu > .active > a,

#custom-html-sw .dropdown-menu > .active > a:focus,

#custom-html-sw .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sw .dropdown-menu > .disabled > a,

#custom-html-sw .dropdown-menu > .disabled > a:focus,

#custom-html-sw .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sw .dropdown-menu > .disabled > a:focus,

#custom-html-sw .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sw .open > .dropdown-menu {

  display: block;

}

#custom-html-sw .open > a {

  outline: 0;

}

#custom-html-sw .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sw .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sw .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sw .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sw .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sw .dropup .caret,

#custom-html-sw .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sw .dropup .dropdown-menu,

#custom-html-sw .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-sw .btn-group,

#custom-html-sw .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sw .btn-group-vertical > .btn,

#custom-html-sw .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sw .btn-group-vertical > .btn.active,

#custom-html-sw .btn-group-vertical > .btn:active,

#custom-html-sw .btn-group-vertical > .btn:focus,

#custom-html-sw .btn-group-vertical > .btn:hover,

#custom-html-sw .btn-group > .btn.active,

#custom-html-sw .btn-group > .btn:active,

#custom-html-sw .btn-group > .btn:focus,

#custom-html-sw .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sw .btn-group .btn + .btn,

#custom-html-sw .btn-group .btn + .btn-group,

#custom-html-sw .btn-group .btn-group + .btn,

#custom-html-sw .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sw .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sw .btn-toolbar .btn,

#custom-html-sw .btn-toolbar .btn-group,

#custom-html-sw .btn-toolbar .input-group {

  float: left;

}

#custom-html-sw .btn-toolbar > .btn,

#custom-html-sw .btn-toolbar > .btn-group,

#custom-html-sw .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sw .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sw .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sw .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sw .btn-group > .btn:last-child:not(:first-child),

#custom-html-sw .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sw .btn-group > .btn-group {

  float: left;

}

#custom-html-sw .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sw .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sw .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sw .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sw .btn-group .dropdown-toggle:active,

#custom-html-sw .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sw .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sw .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sw .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sw .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sw .btn .caret {

  margin-left: 0;

}

#custom-html-sw .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sw .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sw .btn-group-vertical > .btn,

#custom-html-sw .btn-group-vertical > .btn-group,

#custom-html-sw .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sw .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sw .btn-group-vertical > .btn + .btn,

#custom-html-sw .btn-group-vertical > .btn + .btn-group,

#custom-html-sw .btn-group-vertical > .btn-group + .btn,

#custom-html-sw .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sw .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sw .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sw .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sw .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sw .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sw .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sw .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sw .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sw .btn-group-justified > .btn,

#custom-html-sw .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sw .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sw .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sw [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sw [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sw [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sw [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sw .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sw .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sw .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sw .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sw .input-group-lg > .form-control,

#custom-html-sw .input-group-lg > .input-group-addon,

#custom-html-sw .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sw select.input-group-lg > .form-control,

#custom-html-sw select.input-group-lg > .input-group-addon,

#custom-html-sw select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sw select[multiple].input-group-lg > .form-control,

#custom-html-sw select[multiple].input-group-lg > .input-group-addon,

#custom-html-sw select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sw textarea.input-group-lg > .form-control,

#custom-html-sw textarea.input-group-lg > .input-group-addon,

#custom-html-sw textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sw .input-group-sm > .form-control,

#custom-html-sw .input-group-sm > .input-group-addon,

#custom-html-sw .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sw select.input-group-sm > .form-control,

#custom-html-sw select.input-group-sm > .input-group-addon,

#custom-html-sw select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sw select[multiple].input-group-sm > .form-control,

#custom-html-sw select[multiple].input-group-sm > .input-group-addon,

#custom-html-sw select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sw textarea.input-group-sm > .form-control,

#custom-html-sw textarea.input-group-sm > .input-group-addon,

#custom-html-sw textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sw .input-group .form-control,

#custom-html-sw .input-group-addon,

#custom-html-sw .input-group-btn {

  display: table-cell;

}

#custom-html-sw .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sw .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sw .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sw .input-group-addon,

#custom-html-sw .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sw .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sw .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sw .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sw .input-group-addon input[type=checkbox],

#custom-html-sw .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sw .input-group .form-control:first-child,

#custom-html-sw .input-group-addon:first-child,

#custom-html-sw .input-group-btn:first-child > .btn,

#custom-html-sw .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sw .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sw .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sw .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sw .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sw .input-group .form-control:last-child,

#custom-html-sw .input-group-addon:last-child,

#custom-html-sw .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sw .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sw .input-group-btn:last-child > .btn,

#custom-html-sw .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sw .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sw .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sw .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sw .input-group-btn > .btn {

  position: relative;

}

#custom-html-sw .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sw .input-group-btn > .btn:active,

#custom-html-sw .input-group-btn > .btn:focus,

#custom-html-sw .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sw .input-group-btn:first-child > .btn,

#custom-html-sw .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sw .input-group-btn:last-child > .btn,

#custom-html-sw .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sw .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sw .nav > li {

  position: relative;

  display: block;

}

#custom-html-sw .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sw .nav > li > a:focus,

#custom-html-sw .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sw .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sw .nav > li.disabled > a:focus,

#custom-html-sw .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sw .nav .open > a,

#custom-html-sw .nav .open > a:focus,

#custom-html-sw .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sw .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sw .nav > li > a > img {

  max-width: none;

}

#custom-html-sw .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sw .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sw .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sw .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sw .nav-tabs > li.active > a,

#custom-html-sw .nav-tabs > li.active > a:focus,

#custom-html-sw .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sw .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sw .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sw .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sw .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sw .nav-tabs.nav-justified > .active > a,

#custom-html-sw .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sw .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sw .nav-pills > li {

  float: left;

}

#custom-html-sw .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sw .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sw .nav-pills > li.active > a,

#custom-html-sw .nav-pills > li.active > a:focus,

#custom-html-sw .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sw .nav-stacked > li {

  float: none;

}

#custom-html-sw .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sw .nav-justified {

  width: 100%;

}

#custom-html-sw .nav-justified > li {

  float: none;

}

#custom-html-sw .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sw .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sw .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sw .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sw .nav-tabs-justified > .active > a,

#custom-html-sw .nav-tabs-justified > .active > a:focus,

#custom-html-sw .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sw .tab-content > .tab-pane {

  display: none;

}

#custom-html-sw .tab-content > .active {

  display: block;

}

#custom-html-sw .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sw .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-sw .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sw .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-sw .navbar-fixed-bottom .navbar-collapse,

#custom-html-sw .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sw .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sw .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sw .container-fluid > .navbar-collapse,

#custom-html-sw .container-fluid > .navbar-header,

#custom-html-sw .container > .navbar-collapse,

#custom-html-sw .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sw .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-sw .navbar-fixed-bottom,

#custom-html-sw .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-sw .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sw .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sw .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sw .navbar-brand:focus,

#custom-html-sw .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sw .navbar-brand > img {

  display: block;

}

#custom-html-sw .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sw .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sw .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sw .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-sw .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sw .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sw .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sw .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sw .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sw .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sw .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sw .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-sw .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sw .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-sw .visible-xs {

    display: block !important;

  }

  #custom-html-sw table.visible-xs {

    display: table !important;

  }

  #custom-html-sw tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sw td.visible-xs,

  #custom-html-sw th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-sw .visible-xs-block {

    display: block !important;

  }

  #custom-html-sw .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-sw .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-sw .hidden-xs {

    display: none !important;

  }

  #custom-html-sw .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sw .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-sw section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-sw .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sw .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sw .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sw .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-sw .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sw .tiles .tile:nth-child(1),

  #custom-html-sw .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-sw ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sw ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sw ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-sw .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sw .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sw .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-sw .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-sw .promo-banner form {

    text-align: center;

  }

}

#custom-html-sw .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sw .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sw .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sw .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sw .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sw .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sw .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sw .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sw .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sw .navbar-default .navbar-brand:focus,

#custom-html-sw .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sw .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sw .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sw .navbar-default .navbar-nav > li > a:focus,

#custom-html-sw .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sw .navbar-default .navbar-nav > .active > a,

#custom-html-sw .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sw .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sw .navbar-default .navbar-nav > .disabled > a,

#custom-html-sw .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sw .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sw .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sw .navbar-default .navbar-toggle:focus,

#custom-html-sw .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sw .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sw .navbar-default .navbar-collapse,

#custom-html-sw .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sw .navbar-default .navbar-nav > .open > a,

#custom-html-sw .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sw .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sw .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sw .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sw .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sw .navbar-default .btn-link:focus,

#custom-html-sw .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sw .navbar-default .btn-link[disabled]:focus,

#custom-html-sw .navbar-default .btn-link[disabled]:hover,

#custom-html-sw fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sw fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sw .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sw .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sw .navbar-inverse .navbar-brand:focus,

#custom-html-sw .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sw .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sw .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sw .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sw .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sw .navbar-inverse .navbar-nav > .active > a,

#custom-html-sw .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sw .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sw .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sw .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sw .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sw .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sw .navbar-inverse .navbar-toggle:focus,

#custom-html-sw .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sw .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sw .navbar-inverse .navbar-collapse,

#custom-html-sw .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sw .navbar-inverse .navbar-nav > .open > a,

#custom-html-sw .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sw .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sw .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sw .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sw .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sw .navbar-inverse .btn-link:focus,

#custom-html-sw .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sw .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sw .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sw fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sw fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sw .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sw .breadcrumb > li {

  display: inline-block;

}

#custom-html-sw .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sw .breadcrumb > .active {

  color: #777777;

}

#custom-html-sw .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-sw .pagination > li {

  display: inline;

}

#custom-html-sw .pagination > li > a,

#custom-html-sw .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sw .pagination > li:first-child > a,

#custom-html-sw .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sw .pagination > li:last-child > a,

#custom-html-sw .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sw .pagination > li > a:focus,

#custom-html-sw .pagination > li > a:hover,

#custom-html-sw .pagination > li > span:focus,

#custom-html-sw .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sw .pagination > .active > a,

#custom-html-sw .pagination > .active > a:focus,

#custom-html-sw .pagination > .active > a:hover,

#custom-html-sw .pagination > .active > span,

#custom-html-sw .pagination > .active > span:focus,

#custom-html-sw .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sw .pagination > .disabled > a,

#custom-html-sw .pagination > .disabled > a:focus,

#custom-html-sw .pagination > .disabled > a:hover,

#custom-html-sw .pagination > .disabled > span,

#custom-html-sw .pagination > .disabled > span:focus,

#custom-html-sw .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sw .pagination-lg > li > a,

#custom-html-sw .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sw .pagination-lg > li:first-child > a,

#custom-html-sw .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sw .pagination-lg > li:last-child > a,

#custom-html-sw .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sw .pagination-sm > li > a,

#custom-html-sw .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sw .pagination-sm > li:first-child > a,

#custom-html-sw .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sw .pagination-sm > li:last-child > a,

#custom-html-sw .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sw .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sw .pager li {

  display: inline;

}

#custom-html-sw .pager li > a,

#custom-html-sw .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sw .pager li > a:focus,

#custom-html-sw .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sw .pager .next > a,

#custom-html-sw .pager .next > span {

  float: right;

}

#custom-html-sw .pager .previous > a,

#custom-html-sw .pager .previous > span {

  float: left;

}

#custom-html-sw .pager .disabled > a,

#custom-html-sw .pager .disabled > a:focus,

#custom-html-sw .pager .disabled > a:hover,

#custom-html-sw .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sw .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-sw a.label:focus,

#custom-html-sw a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sw .label:empty {

  display: none;

}

#custom-html-sw .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sw .label-default {

  background-color: #777777;

}

#custom-html-sw .label-default[href]:focus,

#custom-html-sw .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sw .label-primary {

  background-color: #337ab7;

}

#custom-html-sw .label-primary[href]:focus,

#custom-html-sw .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sw .label-success {

  background-color: #5cb85c;

}

#custom-html-sw .label-success[href]:focus,

#custom-html-sw .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sw .label-info {

  background-color: #5bc0de;

}

#custom-html-sw .label-info[href]:focus,

#custom-html-sw .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sw .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sw .label-warning[href]:focus,

#custom-html-sw .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sw .label-danger {

  background-color: #d9534f;

}

#custom-html-sw .label-danger[href]:focus,

#custom-html-sw .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sw .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sw .badge:empty {

  display: none;

}

#custom-html-sw .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sw .btn-group-xs > .btn .badge,

#custom-html-sw .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sw a.badge:focus,

#custom-html-sw a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sw .list-group-item.active > .badge,

#custom-html-sw .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sw .list-group-item > .badge {

  float: right;

}

#custom-html-sw .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sw .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sw .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sw .jumbotron .h1,

#custom-html-sw .jumbotron h1 {

  color: inherit;

}

#custom-html-sw .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sw .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sw .container .jumbotron,

#custom-html-sw .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sw .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sw .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sw .container .jumbotron,

  #custom-html-sw .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sw .jumbotron .h1,

  #custom-html-sw .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-sw .carousel-control .glyphicon-chevron-left,

  #custom-html-sw .carousel-control .glyphicon-chevron-right,

  #custom-html-sw .carousel-control .icon-next,

  #custom-html-sw .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sw .carousel-control .glyphicon-chevron-left,

  #custom-html-sw .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sw .carousel-control .glyphicon-chevron-right,

  #custom-html-sw .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sw .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sw .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sw .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sw .thumbnail a > img,

#custom-html-sw .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sw a.thumbnail.active,

#custom-html-sw a.thumbnail:focus,

#custom-html-sw a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sw .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sw .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sw .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sw .alert .alert-link {

  font-weight: 700;

}

#custom-html-sw .alert > p,

#custom-html-sw .alert > ul {

  margin-bottom: 0;

}

#custom-html-sw .alert > p + p {

  margin-top: 5px;

}

#custom-html-sw .alert-dismissable,

#custom-html-sw .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sw .alert-dismissable .close,

#custom-html-sw .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sw .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sw .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sw .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sw .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sw .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sw .alert-info .alert-link {

  color: #000000;

}

#custom-html-sw .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sw .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sw .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sw .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sw .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sw .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sw .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sw .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sw .progress-bar-striped,

#custom-html-sw .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sw .progress-bar.active,

#custom-html-sw .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sw .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sw .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sw .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sw .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sw .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sw .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sw .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sw .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sw .media {

  margin-top: 15px;

}

#custom-html-sw .media:first-child {

  margin-top: 0;

}

#custom-html-sw .media,

#custom-html-sw .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sw .media-body {

  width: 10000px;

}

#custom-html-sw .media-object {

  display: block;

}

#custom-html-sw .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sw .media-right,

#custom-html-sw .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sw .media-left,

#custom-html-sw .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sw .media-body,

#custom-html-sw .media-left,

#custom-html-sw .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sw .media-middle {

  vertical-align: middle;

}

#custom-html-sw .media-bottom {

  vertical-align: bottom;

}

#custom-html-sw .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sw .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sw .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-sw .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-sw .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sw .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sw a.list-group-item,

#custom-html-sw button.list-group-item {

  color: #555555;

}

#custom-html-sw a.list-group-item .list-group-item-heading,

#custom-html-sw button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sw a.list-group-item:focus,

#custom-html-sw a.list-group-item:hover,

#custom-html-sw button.list-group-item:focus,

#custom-html-sw button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sw button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sw .list-group-item.disabled,

#custom-html-sw .list-group-item.disabled:focus,

#custom-html-sw .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sw .list-group-item.disabled .list-group-item-heading,

#custom-html-sw .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sw .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sw .list-group-item.disabled .list-group-item-text,

#custom-html-sw .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sw .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sw .list-group-item.active,

#custom-html-sw .list-group-item.active:focus,

#custom-html-sw .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sw .list-group-item.active .list-group-item-heading,

#custom-html-sw .list-group-item.active .list-group-item-heading > .small,

#custom-html-sw .list-group-item.active .list-group-item-heading > small,

#custom-html-sw .list-group-item.active:focus .list-group-item-heading,

#custom-html-sw .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sw .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sw .list-group-item.active:hover .list-group-item-heading,

#custom-html-sw .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sw .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sw .list-group-item.active .list-group-item-text,

#custom-html-sw .list-group-item.active:focus .list-group-item-text,

#custom-html-sw .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sw .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sw a.list-group-item-success,

#custom-html-sw button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sw a.list-group-item-success .list-group-item-heading,

#custom-html-sw button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sw a.list-group-item-success:focus,

#custom-html-sw a.list-group-item-success:hover,

#custom-html-sw button.list-group-item-success:focus,

#custom-html-sw button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sw a.list-group-item-success.active,

#custom-html-sw a.list-group-item-success.active:focus,

#custom-html-sw a.list-group-item-success.active:hover,

#custom-html-sw button.list-group-item-success.active,

#custom-html-sw button.list-group-item-success.active:focus,

#custom-html-sw button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sw .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sw a.list-group-item-info,

#custom-html-sw button.list-group-item-info {

  color: #31708f;

}

#custom-html-sw a.list-group-item-info .list-group-item-heading,

#custom-html-sw button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sw a.list-group-item-info:focus,

#custom-html-sw a.list-group-item-info:hover,

#custom-html-sw button.list-group-item-info:focus,

#custom-html-sw button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sw a.list-group-item-info.active,

#custom-html-sw a.list-group-item-info.active:focus,

#custom-html-sw a.list-group-item-info.active:hover,

#custom-html-sw button.list-group-item-info.active,

#custom-html-sw button.list-group-item-info.active:focus,

#custom-html-sw button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sw .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sw a.list-group-item-warning,

#custom-html-sw button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sw a.list-group-item-warning .list-group-item-heading,

#custom-html-sw button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sw a.list-group-item-warning:focus,

#custom-html-sw a.list-group-item-warning:hover,

#custom-html-sw button.list-group-item-warning:focus,

#custom-html-sw button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sw a.list-group-item-warning.active,

#custom-html-sw a.list-group-item-warning.active:focus,

#custom-html-sw a.list-group-item-warning.active:hover,

#custom-html-sw button.list-group-item-warning.active,

#custom-html-sw button.list-group-item-warning.active:focus,

#custom-html-sw button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sw .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sw a.list-group-item-danger,

#custom-html-sw button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sw a.list-group-item-danger .list-group-item-heading,

#custom-html-sw button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sw a.list-group-item-danger:focus,

#custom-html-sw a.list-group-item-danger:hover,

#custom-html-sw button.list-group-item-danger:focus,

#custom-html-sw button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sw a.list-group-item-danger.active,

#custom-html-sw a.list-group-item-danger.active:focus,

#custom-html-sw a.list-group-item-danger.active:hover,

#custom-html-sw button.list-group-item-danger.active,

#custom-html-sw button.list-group-item-danger.active:focus,

#custom-html-sw button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sw .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sw .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sw .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-sw .panel-body {

  padding: 10px 15px;

}

#custom-html-sw .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sw .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sw .panel-title > .small,

#custom-html-sw .panel-title > .small > a,

#custom-html-sw .panel-title > a,

#custom-html-sw .panel-title > small,

#custom-html-sw .panel-title > small > a {

  color: inherit;

}

#custom-html-sw .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sw .panel > .list-group,

#custom-html-sw .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sw .panel > .list-group .list-group-item,

#custom-html-sw .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sw .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sw .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sw .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sw .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sw .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sw .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sw .panel > .panel-collapse > .table,

#custom-html-sw .panel > .table,

#custom-html-sw .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sw .panel > .panel-collapse > .table caption,

#custom-html-sw .panel > .table caption,

#custom-html-sw .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sw .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sw .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sw .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sw .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sw .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sw .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sw .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sw .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sw .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sw .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sw .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sw .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sw .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sw .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sw .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sw .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sw .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sw .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sw .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sw .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sw .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sw .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sw .panel > .panel-body + .table,

#custom-html-sw .panel > .panel-body + .table-responsive,

#custom-html-sw .panel > .table + .panel-body,

#custom-html-sw .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sw .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sw .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sw .panel > .table-bordered,

#custom-html-sw .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sw .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sw .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sw .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sw .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sw .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sw .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sw .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sw .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sw .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sw .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sw .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sw .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sw .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sw .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sw .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sw .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sw .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sw .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sw .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sw .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sw .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sw .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sw .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sw .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sw .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sw .panel-group {

  margin-bottom: 20px;

}

#custom-html-sw .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sw .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sw .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sw .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sw .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sw .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sw .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sw .panel-default {

  border-color: #dddddd;

}

#custom-html-sw .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sw .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sw .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sw .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sw .panel-primary {

  border-color: #337ab7;

}

#custom-html-sw .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sw .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sw .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sw .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sw .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sw .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sw .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sw .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sw .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sw .panel-info {

  border-color: #bce8f1;

}

#custom-html-sw .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sw .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sw .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sw .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sw .panel-warning {

  border-color: #faebcc;

}

#custom-html-sw .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sw .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sw .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sw .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-sw .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sw .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sw .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sw .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sw .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sw .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sw .embed-responsive .embed-responsive-item,

#custom-html-sw .embed-responsive embed,

#custom-html-sw .embed-responsive iframe,

#custom-html-sw .embed-responsive object,

#custom-html-sw .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sw .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sw .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sw .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sw .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sw .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sw .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sw .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sw .close:focus,

#custom-html-sw .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sw button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sw .modal-open {

  overflow: hidden;

}

#custom-html-sw .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sw .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sw .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sw .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sw .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sw .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sw .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sw .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sw .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sw .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sw .modal-header .close {

  margin-top: -2px;

}

#custom-html-sw .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sw .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sw .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sw .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sw .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sw .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sw .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-sw .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sw .tooltip.in {

  opacity: 0.9;

}

#custom-html-sw .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sw .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sw .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sw .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sw .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sw .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sw .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sw .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sw .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sw .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sw .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sw .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sw .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sw .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sw .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sw .popover.top {

  margin-top: -10px;

}

#custom-html-sw .popover.right {

  margin-left: 10px;

}

#custom-html-sw .popover.bottom {

  margin-top: 10px;

}

#custom-html-sw .popover.left {

  margin-left: -10px;

}

#custom-html-sw .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sw .popover-content {

  padding: 9px 14px;

}

#custom-html-sw .popover > .arrow,

#custom-html-sw .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sw .popover > .arrow {

  border-width: 11px;

}

#custom-html-sw .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sw .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sw .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sw .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sw .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sw .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sw .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sw .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sw .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sw .carousel {

  position: relative;

}

#custom-html-sw .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sw .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sw .carousel-inner > .item > a > img,

#custom-html-sw .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sw .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sw .carousel-inner > .item.active.right,

  #custom-html-sw .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sw .carousel-inner > .item.active.left,

  #custom-html-sw .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sw .carousel-inner > .item.active,

  #custom-html-sw .carousel-inner > .item.next.left,

  #custom-html-sw .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sw .carousel-inner > .active,

#custom-html-sw .carousel-inner > .next,

#custom-html-sw .carousel-inner > .prev {

  display: block;

}

#custom-html-sw .carousel-inner > .active {

  left: 0;

}

#custom-html-sw .carousel-inner > .next,

#custom-html-sw .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sw .carousel-inner > .next {

  left: 100%;

}

#custom-html-sw .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sw .carousel-inner > .next.left,

#custom-html-sw .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sw .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sw .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sw .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sw .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sw .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sw .carousel-control:focus,

#custom-html-sw .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sw .carousel-control .glyphicon-chevron-left,

#custom-html-sw .carousel-control .glyphicon-chevron-right,

#custom-html-sw .carousel-control .icon-next,

#custom-html-sw .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sw .carousel-control .glyphicon-chevron-left,

#custom-html-sw .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sw .carousel-control .glyphicon-chevron-right,

#custom-html-sw .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sw .carousel-control .icon-next,

#custom-html-sw .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sw .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sw .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sw .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sw .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-sw .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sw .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sw .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-sw .btn-group-vertical > .btn-group:after,

#custom-html-sw .btn-group-vertical > .btn-group:before,

#custom-html-sw .btn-toolbar:after,

#custom-html-sw .btn-toolbar:before,

#custom-html-sw .clearfix:after,

#custom-html-sw .clearfix:before,

#custom-html-sw .container-fluid:after,

#custom-html-sw .container-fluid:before,

#custom-html-sw .container:after,

#custom-html-sw .container:before,

#custom-html-sw .dl-horizontal dd:after,

#custom-html-sw .dl-horizontal dd:before,

#custom-html-sw .form-horizontal .form-group:after,

#custom-html-sw .form-horizontal .form-group:before,

#custom-html-sw .modal-footer:after,

#custom-html-sw .modal-footer:before,

#custom-html-sw .modal-header:after,

#custom-html-sw .modal-header:before,

#custom-html-sw .nav:after,

#custom-html-sw .nav:before,

#custom-html-sw .navbar-collapse:after,

#custom-html-sw .navbar-collapse:before,

#custom-html-sw .navbar-header:after,

#custom-html-sw .navbar-header:before,

#custom-html-sw .navbar:after,

#custom-html-sw .navbar:before,

#custom-html-sw .pager:after,

#custom-html-sw .pager:before,

#custom-html-sw .panel-body:after,

#custom-html-sw .panel-body:before,

#custom-html-sw .row:after,

#custom-html-sw .row:before {

  display: table;

  content: " ";

}

#custom-html-sw .btn-group-vertical > .btn-group:after,

#custom-html-sw .btn-toolbar:after,

#custom-html-sw .clearfix:after,

#custom-html-sw .container-fluid:after,

#custom-html-sw .container:after,

#custom-html-sw .dl-horizontal dd:after,

#custom-html-sw .form-horizontal .form-group:after,

#custom-html-sw .modal-footer:after,

#custom-html-sw .modal-header:after,

#custom-html-sw .nav:after,

#custom-html-sw .navbar-collapse:after,

#custom-html-sw .navbar-header:after,

#custom-html-sw .navbar:after,

#custom-html-sw .pager:after,

#custom-html-sw .panel-body:after,

#custom-html-sw .row:after {

  clear: both;

}

#custom-html-sw .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sw .pull-right {

  float: right !important;

}

#custom-html-sw .pull-left {

  float: left !important;

}

#custom-html-sw .hide {

  display: none !important;

}

#custom-html-sw .show {

  display: block !important;

}

#custom-html-sw .invisible {

  visibility: hidden;

}

#custom-html-sw .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sw .hidden {

  display: none !important;

}

#custom-html-sw .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sw .visible-lg,

#custom-html-sw .visible-md,

#custom-html-sw .visible-sm,

#custom-html-sw .visible-xs {

  display: none !important;

}

#custom-html-sw .visible-lg-block,

#custom-html-sw .visible-lg-inline,

#custom-html-sw .visible-lg-inline-block,

#custom-html-sw .visible-md-block,

#custom-html-sw .visible-md-inline,

#custom-html-sw .visible-md-inline-block,

#custom-html-sw .visible-sm-block,

#custom-html-sw .visible-sm-inline,

#custom-html-sw .visible-sm-inline-block,

#custom-html-sw .visible-xs-block,

#custom-html-sw .visible-xs-inline,

#custom-html-sw .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sw .visible-sm {

    display: block !important;

  }

  #custom-html-sw table.visible-sm {

    display: table !important;

  }

  #custom-html-sw tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sw td.visible-sm,

  #custom-html-sw th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-sw .visible-sm-block {

    display: block !important;

  }

  #custom-html-sw .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-sw .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-sw .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sw .visible-md {

    display: block !important;

  }

  #custom-html-sw table.visible-md {

    display: table !important;

  }

  #custom-html-sw tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sw td.visible-md,

  #custom-html-sw th.visible-md {

    display: table-cell !important;

  }

  #custom-html-sw .visible-md-block {

    display: block !important;

  }

  #custom-html-sw .visible-md-inline {

    display: inline !important;

  }

  #custom-html-sw .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-sw .hidden-md {

    display: none !important;

  }

}

#custom-html-sw .visible-print {

  display: none !important;

}

#custom-html-sw .visible-print-block {

  display: none !important;

}

#custom-html-sw .visible-print-inline {

  display: none !important;

}

#custom-html-sw .visible-print-inline-block {

  display: none !important;

}

#custom-html-sw .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-sw .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sw .intl-tel-input .hide {

  display: none;

}

#custom-html-sw .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sw .intl-tel-input input,

#custom-html-sw .intl-tel-input input[type=tel],

#custom-html-sw .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sw .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sw .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sw .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sw .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sw .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sw .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sw .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sw .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sw .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-sw .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sw .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sw .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sw .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sw .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sw .intl-tel-input .country-list .country-name,

#custom-html-sw .intl-tel-input .country-list .dial-code,

#custom-html-sw .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sw .intl-tel-input .country-list .country-name,

#custom-html-sw .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sw .intl-tel-input.allow-dropdown input,

#custom-html-sw .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sw .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sw .intl-tel-input.separate-dial-code input,

#custom-html-sw .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sw .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sw .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sw .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sw .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sw .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sw .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sw .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sw .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sw .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sw .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sw .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sw .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sw .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sw .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sw .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sw .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sw .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sw .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-sw .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sw .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sw .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sw .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sw .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-sw .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sw .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sw .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sw .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-sw .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sw .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sw .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sw .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sw .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sw .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sw .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sw .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sw .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sw .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sw .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sw .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sw .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sw .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sw .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sw .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sw .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sw .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sw .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sw .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sw .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sw .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sw .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sw .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sw .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sw .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sw .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sw .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sw .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sw .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sw .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sw .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sw .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sw .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sw .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sw .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sw .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sw .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sw .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sw .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sw .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-sw .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sw .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sw .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sw .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sw .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sw .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sw .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sw .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sw .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sw .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sw .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sw .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sw .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sw .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sw .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sw .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sw .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sw .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-sw .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sw .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sw .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sw .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sw .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sw .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sw .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sw .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sw .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sw .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sw .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sw .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sw .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sw .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sw .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sw .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sw .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sw .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sw .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sw .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sw .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sw .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sw .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sw .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sw .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sw .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sw .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sw .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sw .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sw .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sw .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sw .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sw .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sw .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sw .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sw .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sw .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sw .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sw .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sw .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sw .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sw .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sw .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sw .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sw .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sw .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sw .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sw .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sw .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sw .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sw .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sw .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sw .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-sw .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sw .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sw .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sw .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sw .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sw .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sw .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sw .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sw .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sw .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sw .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sw .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sw .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sw .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sw .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sw .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sw .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sw .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sw .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sw .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sw .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sw .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sw .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sw .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sw .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sw .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sw .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sw .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sw .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sw .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sw .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sw .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sw .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sw .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sw .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sw .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sw .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sw .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sw .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sw .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sw .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sw .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sw .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sw .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sw .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sw .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sw .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sw .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sw .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sw .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sw .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sw .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sw .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sw .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sw .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sw .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sw .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sw .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sw .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sw .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sw .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sw .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sw .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sw .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sw .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sw .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sw .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sw .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sw .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sw .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sw .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sw .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sw .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sw .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sw .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sw .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sw .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sw .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sw .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sw .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sw .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sw .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sw .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sw .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sw .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sw .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sw .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sw .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sw .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sw .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sw .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sw .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sw .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sw .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sw .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sw .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sw .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sw .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sw .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sw .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sw .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sw .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sw .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sw .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sw .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sw .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sw .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sw .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sw .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sw .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sw .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sw .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sw .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sw .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sw .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sw .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sw .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sw .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sw .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sw .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sw .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sw .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sw .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sw .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sw .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sw .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sw .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sw .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sw .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sw .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sw .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sw .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sw .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sw .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sw .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sw .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sw .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sw body,

#custom-html-sw button,

#custom-html-sw input,

#custom-html-sw select,

#custom-html-sw textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sw h1,

#custom-html-sw h2,

#custom-html-sw h3,

#custom-html-sw h4,

#custom-html-sw h5,

#custom-html-sw h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-sw .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sw .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sw .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sw .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sw .navbar-main .navbar-nav > .active > a,

#custom-html-sw .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sw .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sw .navbar-main .navbar-nav > .open > a,

#custom-html-sw .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sw .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sw .navbar-main .navbar-nav > li > a:focus,

#custom-html-sw .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sw #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sw .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-sw .navbar-header {

    float: none;

  }

  #custom-html-sw .navbar-left,

  #custom-html-sw .navbar-right {

    float: none !important;

  }

  #custom-html-sw .navbar-toggle {

    display: block;

  }

  #custom-html-sw .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sw .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sw .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sw .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sw .navbar-nav > li {

    float: none;

  }

  #custom-html-sw .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sw .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-sw .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sw .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sw .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-sw ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sw ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sw ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-sw .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-sw .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sw .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sw .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sw .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sw .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-sw #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sw #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-sw .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sw a.list-group-item.active,

#custom-html-sw a.list-group-item.active:focus,

#custom-html-sw a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sw .dropdown-menu > li > a:focus,

#custom-html-sw .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sw input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sw .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sw body,

#custom-html-sw html {

  height: 100%;

}

#custom-html-sw section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sw section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sw section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sw section#header .search {

  margin: 20px 0;

}

#custom-html-sw section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sw section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sw section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sw section#main-content {

  margin-bottom: 60px;

}

#custom-html-sw .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sw section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sw section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sw section#footer {

    line-height: 32px;

  }

}

#custom-html-sw section#footer .back-to-top {

  float: right;

}

#custom-html-sw section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sw .adminreturndiv {

  display: none !important;

}

#custom-html-sw .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sw .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sw .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sw .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sw .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sw .navbar-main .navbar-toggle:focus,

#custom-html-sw .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sw .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sw .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-sw div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sw div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sw div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sw div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sw div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sw .h1,

  #custom-html-sw h1 {

    font-size: 26px;

  }

  #custom-html-sw .h2,

  #custom-html-sw h2 {

    font-size: 20px;

  }

  #custom-html-sw .h3,

  #custom-html-sw h3 {

    font-size: 16px;

  }

  #custom-html-sw .h4,

  #custom-html-sw h4 {

    font-size: 14px;

  }

  #custom-html-sw .h5,

  #custom-html-sw h5 {

    font-size: 12px;

  }

  #custom-html-sw .h6,

  #custom-html-sw h6 {

    font-size: 11px;

  }

  #custom-html-sw div.header-lined small {

    display: none;

  }

  #custom-html-sw .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-sw .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sw .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sw .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sw .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-sw div.credit-card {

    max-width: 250px;

  }

  #custom-html-sw div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sw div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sw div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sw div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sw div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-sw .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sw .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sw .margin-10 {

  margin: 10px;

}

#custom-html-sw .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sw .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sw .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sw .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sw .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sw .input-inline {

  display: inline-block;

}

#custom-html-sw .input-inline-100 {

  width: 100px;

}

#custom-html-sw .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-sw .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sw .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sw .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-sw i.icon-rss {

  color: #ff6600;

}

#custom-html-sw section#main-menu {

  background-color: #000000;

}

#custom-html-sw section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sw section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sw section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sw section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sw section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sw section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sw section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sw section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sw section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sw section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sw section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sw section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-sw .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-sw .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-sw .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sw .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sw .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-sw #stepResults {

    font-size: 14px;

  }

  #custom-html-sw #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sw div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-sw .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sw .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sw .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sw .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sw .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sw .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sw .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sw .home-shortcuts li span {

  display: none;

}

#custom-html-sw .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sw .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-sw .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sw .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sw .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sw .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sw .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sw .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sw .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sw .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sw .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sw .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sw .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sw .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sw .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sw .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sw .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sw .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sw .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sw .tiles .tile a {

  text-decoration: none;

}

#custom-html-sw .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sw .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sw .tiles .tile:last-child {

  border: 0;

}

#custom-html-sw .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sw .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sw .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sw .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sw .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sw .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sw .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sw .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sw .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sw .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sw .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sw .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sw .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sw .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sw .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sw .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sw .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sw .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sw .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sw .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sw .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sw .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sw .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sw .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sw .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sw .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sw .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sw .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sw .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sw .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sw .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sw .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sw .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sw .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sw .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sw .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sw .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sw .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sw .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sw .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sw .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sw ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sw ul.top-nav > li,

#custom-html-sw ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sw ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sw ul.top-nav > li:active > a,

#custom-html-sw ul.top-nav > li:focus > a,

#custom-html-sw ul.top-nav > li:hover > a,

#custom-html-sw ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sw ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sw ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sw ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sw ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-sw div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sw div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sw div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sw div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sw div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sw div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sw .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sw .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-sw .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sw .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-sw .domain-check-availability {

  width: 100px;

}

#custom-html-sw .domain-step-options {

  min-height: 300px;

}

#custom-html-sw .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sw .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sw .domain-checker-invalid,

#custom-html-sw .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sw div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sw .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sw .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sw .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sw a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sw .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sw .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sw .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-sw .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sw .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sw .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sw .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sw .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;


  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sw .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sw .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-sw .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sw .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sw .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sw .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sw .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sw .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sw .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sw .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sw .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sw .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sw .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sw .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sw .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sw .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sw div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sw div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sw div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sw .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sw .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sw .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sw .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sw div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sw div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-sw .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sw .product-status-pending {

  background-color: #f89406;

}

#custom-html-sw .product-status-active {

  background-color: #46a546;

}

#custom-html-sw .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sw .product-status-cancelled,

#custom-html-sw .product-status-terminated {

  background-color: #666666;

}

#custom-html-sw .product-status-fraud {

  background-color: #000000;

}

#custom-html-sw .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sw div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sw .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sw .ssl-inactive {

  cursor: pointer;

}

#custom-html-sw .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sw .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sw .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sw .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sw .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sw .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sw .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sw .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sw .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-sw .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sw .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sw .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sw .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sw .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sw .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sw table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sw .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sw table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sw .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-sw table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sw .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sw .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sw .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sw table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sw table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sw table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sw .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sw .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sw .status-pending {

  color: #d9534f;

}

#custom-html-sw .status-pending.transfer {

  color: #a68500;

}

#custom-html-sw .status-active,

#custom-html-sw .status-completed,

#custom-html-sw .status-open {

  color: #3fad46;

}

#custom-html-sw .status-suspended {

  color: #f0ad4e;

}

#custom-html-sw .status-customer-reply {

  color: #ff6600;

}

#custom-html-sw .status-answered,

#custom-html-sw .status-fraud {

  color: #000000;

}

#custom-html-sw .status-expired,

#custom-html-sw .status-transferred.away {

  color: #004258;

}

#custom-html-sw .status-cancelled {

  color: #87939f;

}

#custom-html-sw .status-terminated {

  color: #666666;

}

#custom-html-sw .status-onhold {

  color: #224488;

}

#custom-html-sw .status-inprogress {

  color: #cc0000;

}

#custom-html-sw .status-closed {

  color: #888888;

}

#custom-html-sw .status-paid {

  color: #498302;

}

#custom-html-sw .status-unpaid {

  color: #ed3e48;

}

#custom-html-sw .status-collections {

  color: #9a141e;

}

#custom-html-sw .status-refunded {

  color: #319fc3;

}

#custom-html-sw .status-delivered {

  color: #224488;

}

#custom-html-sw .status-accepted {

  color: #498302;

}

#custom-html-sw .status-dead,

#custom-html-sw .status-lost {

  color: #000000;

}

#custom-html-sw .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sw .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sw .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sw .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sw .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sw .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sw .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-sw .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-sw .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sw .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sw .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sw .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sw .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sw .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sw .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sw .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sw .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sw .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sw .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sw .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sw .ticket-reply .rating,

#custom-html-sw .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sw .ticket-reply .rating span.star,

#custom-html-sw .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sw .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sw .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sw .ticket-reply .rating span.star:before,

#custom-html-sw .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sw .ticket-reply .rating span.star:hover:before,

#custom-html-sw .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sw .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sw .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sw .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sw .ticket-reply .clear {

  clear: both;

}

#custom-html-sw .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sw .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sw .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sw .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sw .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sw .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sw .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sw .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sw .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sw .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sw .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sw .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sw .popover-user-notifications ul li i.far,

#custom-html-sw .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sw .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sw .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sw .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sw .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sw .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sw .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sw .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sw .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sw .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sw div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sw div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sw div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sw div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sw div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sw div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sw div.credit-card div.end {

  clear: both;

}

#custom-html-sw .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sw .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sw .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sw .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sw .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sw .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sw div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sw div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sw div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sw div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sw div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sw div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sw .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-sw div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sw div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sw div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sw #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sw .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sw .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sw .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sw .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sw .kb-category a small {

  color: #888888;

}

#custom-html-sw .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sw .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sw .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sw .kbarticles a.admin-inline-edit,

#custom-html-sw .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sw h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sw .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sw .kb-article-title h2 {

  margin: 0;

}

#custom-html-sw .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sw .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sw .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sw .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sw .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sw .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sw .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sw .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sw #stepResults {

  font-size: 20px;

}

#custom-html-sw #stepResults .label {

  font-size: 20px;

}

#custom-html-sw h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sw h3.with-badge i,

#custom-html-sw h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sw h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-sw .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sw .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sw a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sw a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sw .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sw .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sw .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sw .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sw .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sw .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sw .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sw .login-popover {

  font-size: 12px;

}

#custom-html-sw .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sw .login-popover hr {

  margin: 5px 0;

}

#custom-html-sw tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sw tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sw .error-container {

  text-align: center;

}

#custom-html-sw .error-container h1 {

  margin-top: 40px;

}

#custom-html-sw .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sw .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sw .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sw .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sw .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sw #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sw #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sw #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sw .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-sw #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sw #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sw #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sw #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sw .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sw .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sw .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sw .email-verification .btn:active,

#custom-html-sw .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sw .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sw .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sw .email-verification .far,

#custom-html-sw .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-sw .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sw .email-verification.success .far,

#custom-html-sw .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sw .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sw .email-verification.failed .far,

#custom-html-sw .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sw .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-sw .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sw .md-editor > .md-preview,

#custom-html-sw .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sw div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sw .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sw .small-font {

  font-size: 0.9em;

}

#custom-html-sw .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sw .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sw .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sw .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sw .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sw .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sw .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sw .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sw .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sw .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sw .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sw .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sw .panel-heading i.fab,

#custom-html-sw .panel-heading i.fal,

#custom-html-sw .panel-heading i.far,

#custom-html-sw .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sw .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sw .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sw .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sw .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sw .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sw .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sw .panel-sidebar .list-group-item.disabled,

#custom-html-sw .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sw .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sw .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sw .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sw .panel-sidebar a.list-group-item.active,

#custom-html-sw .panel-sidebar a.list-group-item.active:focus,

#custom-html-sw .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sw .panel-sidebar a.list-group-item.active i,

#custom-html-sw .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sw .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sw .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sw .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sw .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sw .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sw .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sw .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sw .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sw .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sw .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sw .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sw .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sw .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sw .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sw .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-sw .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sw .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sw .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sw .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sw .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sw .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sw .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sw .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sw .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sw .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sw .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sw .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sw .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-sw .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sw .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sw .promo-banner p {

  margin: 5px 0;

}

#custom-html-sw .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sw .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-sw .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sw .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sw .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sw .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sw .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sw .promo-banner-slim {

  padding: 10px;

}

#custom-html-sw .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sw .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sw .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sw .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sw .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sw .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sw .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sw .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sw .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sw .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sw .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sw .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sw .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sw .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sw .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sw .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sw .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sw .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sw .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sw .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sw .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sw .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sw .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sw .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sw .panel-mc-sso .btn,

#custom-html-sw .panel-mc-sso .form-control,

#custom-html-sw .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sw .panel-mc-sso small {

  display: block;

}

#custom-html-sw .social-signin-btns {

  text-align: center;

}

#custom-html-sw .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sw .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sw .btn-social i.far,

#custom-html-sw .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-facebook.active,

#custom-html-sw .btn-facebook:active,

#custom-html-sw .btn-facebook:focus,

#custom-html-sw .btn-facebook:hover,

#custom-html-sw .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-facebook.active,

#custom-html-sw .btn-facebook:active,

#custom-html-sw .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sw .btn-facebook.disabled,

#custom-html-sw .btn-facebook.disabled.active,

#custom-html-sw .btn-facebook.disabled:active,

#custom-html-sw .btn-facebook.disabled:focus,

#custom-html-sw .btn-facebook.disabled:hover,

#custom-html-sw .btn-facebook[disabled],

#custom-html-sw .btn-facebook[disabled].active,

#custom-html-sw .btn-facebook[disabled]:active,

#custom-html-sw .btn-facebook[disabled]:focus,

#custom-html-sw .btn-facebook[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-facebook,

#custom-html-sw fieldset[disabled] .btn-facebook.active,

#custom-html-sw fieldset[disabled] .btn-facebook:active,

#custom-html-sw fieldset[disabled] .btn-facebook:focus,

#custom-html-sw fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-google.active,

#custom-html-sw .btn-google:active,

#custom-html-sw .btn-google:focus,

#custom-html-sw .btn-google:hover,

#custom-html-sw .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-google.active,

#custom-html-sw .btn-google:active,

#custom-html-sw .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sw .btn-google-plus.disabled.active,

#custom-html-sw .btn-google-plus.disabled:active,

#custom-html-sw .btn-google-plus.disabled:focus,

#custom-html-sw .btn-google-plus[disabled].active,

#custom-html-sw .btn-google-plus[disabled]:active,

#custom-html-sw .btn-google-plus[disabled]:focus,

#custom-html-sw .btn-google-plus[disabled]:hover,

#custom-html-sw .btn-google.disabled,

#custom-html-sw .btn-google.disabled:hover,

#custom-html-sw .btn-google[disabled],

#custom-html-sw fieldset[disabled] .btn-google,

#custom-html-sw fieldset[disabled] .btn-google-plus.active,

#custom-html-sw fieldset[disabled] .btn-google-plus:active,

#custom-html-sw fieldset[disabled] .btn-google-plus:focus,

#custom-html-sw fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-twitter.active,

#custom-html-sw .btn-twitter:active,

#custom-html-sw .btn-twitter:focus,

#custom-html-sw .btn-twitter:hover,

#custom-html-sw .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-twitter.active,

#custom-html-sw .btn-twitter:active,

#custom-html-sw .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sw .btn-twitter.disabled,

#custom-html-sw .btn-twitter.disabled.active,

#custom-html-sw .btn-twitter.disabled:active,

#custom-html-sw .btn-twitter.disabled:focus,

#custom-html-sw .btn-twitter.disabled:hover,

#custom-html-sw .btn-twitter[disabled],

#custom-html-sw .btn-twitter[disabled].active,

#custom-html-sw .btn-twitter[disabled]:active,

#custom-html-sw .btn-twitter[disabled]:focus,

#custom-html-sw .btn-twitter[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-twitter,

#custom-html-sw fieldset[disabled] .btn-twitter.active,

#custom-html-sw fieldset[disabled] .btn-twitter:active,

#custom-html-sw fieldset[disabled] .btn-twitter:focus,

#custom-html-sw fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .providerPreLinking {

  min-height: 52px;

}

#custom-html-sw .providerLinkingFeedback {

  display: none;

}

#custom-html-sw #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sw #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sw #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sw #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sw .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sw #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sw #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sw #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sw #registration .field,

#custom-html-sw #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sw #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sw #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sw #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sw #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sw #registration textarea.field {

  height: auto;

}

#custom-html-sw #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sw #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sw #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sw #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sw #registration .field[disabled],

#custom-html-sw #registration .field[readonly],

#custom-html-sw #registration .form-control[disabled],

#custom-html-sw #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sw #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-sw .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sw .upgrade .product-to-be-upgraded h4,

#custom-html-sw .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sw .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sw .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sw .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sw .upgrade .products .product .current,

#custom-html-sw .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sw .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sw .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sw .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-sw .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sw .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sw .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sw .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sw .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sw .upgrade .products .far,

#custom-html-sw .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sw .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sw .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sw .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sw .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sw .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sw .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .bootstrap-switch input[type=checkbox],

#custom-html-sw .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sw .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sw .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sw .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sw .bootstrap-switch.bootstrap-switch-readonly {


  cursor: default !important;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sw .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sw .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sw .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sw .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sw .md-editor .md-footer,

#custom-html-sw .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sw .md-editor > .md-header {

  margin: 0;

}

#custom-html-sw .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sw .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sw .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sw .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sw .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sw .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sw .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sw .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-input,

#custom-html-sw .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sw .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sw .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sw .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sw .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sw .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sw .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sw .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sw .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sw .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sw table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sw table.dataTable td,

#custom-html-sw table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sw table.dataTable td.dataTables_empty,

#custom-html-sw table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sw table.dataTable.nowrap td,

#custom-html-sw table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sw table.dataTable thead > tr > td.sorting,

#custom-html-sw table.dataTable thead > tr > td.sorting_asc,

#custom-html-sw table.dataTable thead > tr > td.sorting_desc,

#custom-html-sw table.dataTable thead > tr > th.sorting,

#custom-html-sw table.dataTable thead > tr > th.sorting_asc,

#custom-html-sw table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sw table.dataTable thead > tr > td:active,

#custom-html-sw table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sw table.dataTable thead .sorting,

#custom-html-sw table.dataTable thead .sorting_asc,

#custom-html-sw table.dataTable thead .sorting_asc_disabled,

#custom-html-sw table.dataTable thead .sorting_desc,

#custom-html-sw table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sw table.dataTable thead .sorting:after,

#custom-html-sw table.dataTable thead .sorting_asc:after,

#custom-html-sw table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sw table.dataTable thead .sorting_desc:after,

#custom-html-sw table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sw table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sw table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sw table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sw table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sw table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sw div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sw div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sw div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sw div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sw div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sw div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sw div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sw div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-sw table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sw table.dataTable.table-condensed .sorting:after,

#custom-html-sw table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sw table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sw table.table-bordered.dataTable td,

#custom-html-sw table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sw table.table-bordered.dataTable td:last-child,

#custom-html-sw table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sw table.table-bordered.dataTable tbody td,

#custom-html-sw table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sw div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sw div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sw div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-sw div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sw table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sw table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sw table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sw table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sw table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sw table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sw table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sw table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sw table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sw table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sw table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sw table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sw table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sw table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sw table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sw div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sw div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sw div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sw div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sw div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sw div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-sw div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sw .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sw .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sw .multiselect-container > li {

  padding: 0;

}

#custom-html-sw .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sw .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sw .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sw .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sw .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sw .multiselect-container > li > a > label.checkbox,

#custom-html-sw .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sw .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sw .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sw .form-inline .multiselect-container label.checkbox,

#custom-html-sw .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sw .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sw .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-sw html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-sw body {

  margin: 0;

}

#custom-html-sw article,

#custom-html-sw aside,

#custom-html-sw details,

#custom-html-sw figcaption,

#custom-html-sw figure,

#custom-html-sw footer,

#custom-html-sw header,

#custom-html-sw hgroup,

#custom-html-sw main,

#custom-html-sw menu,

#custom-html-sw nav,

#custom-html-sw section,

#custom-html-sw summary {

  display: block;

}

#custom-html-sw audio,

#custom-html-sw canvas,

#custom-html-sw progress,

#custom-html-sw video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sw audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sw [hidden],

#custom-html-sw template {

  display: none;

}

#custom-html-sw a {

  background-color: transparent;

}

#custom-html-sw a:active,

#custom-html-sw a:hover {

  outline: 0;

}

#custom-html-sw abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sw b,

#custom-html-sw strong {

  font-weight: 700;

}

#custom-html-sw dfn {

  font-style: italic;

}

#custom-html-sw h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sw mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sw small {

  font-size: 80%;

}

#custom-html-sw sub,

#custom-html-sw sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sw sup {

  top: -0.5em;

}

#custom-html-sw sub {

  bottom: -0.25em;

}

#custom-html-sw img {

  border: 0;

}

#custom-html-sw svg:not(:root) {

  overflow: hidden;

}

#custom-html-sw figure {

  margin: 1em 40px;

}

#custom-html-sw hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sw pre {

  overflow: auto;

}

#custom-html-sw code,

#custom-html-sw kbd,

#custom-html-sw pre,

#custom-html-sw samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-sw button,

#custom-html-sw input,

#custom-html-sw optgroup,

#custom-html-sw select,

#custom-html-sw textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sw button {

  overflow: visible;

}

#custom-html-sw button,

#custom-html-sw select {

  text-transform: none;

}

#custom-html-sw button,

#custom-html-sw html input[type=button],

#custom-html-sw input[type=reset],

#custom-html-sw input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sw button[disabled],

#custom-html-sw html input[disabled] {

  cursor: default;

}

#custom-html-sw button::-moz-focus-inner,

#custom-html-sw input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sw input {

  line-height: normal;

}

#custom-html-sw input[type=checkbox],

#custom-html-sw input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-sw input[type=number]::-webkit-inner-spin-button,

#custom-html-sw input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sw input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-sw input[type=search]::-webkit-search-cancel-button,

#custom-html-sw input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sw fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-sw legend {

  padding: 0;

  border: 0;

}

#custom-html-sw textarea {

  overflow: auto;

}

#custom-html-sw optgroup {

  font-weight: 700;

}

#custom-html-sw table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-sw td,

#custom-html-sw th {

  padding: 0;

}

@media print {

  #custom-html-sw *,

  #custom-html-sw :after,

  #custom-html-sw :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sw a,

  #custom-html-sw a:visited {

    text-decoration: underline;

  }

  #custom-html-sw a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-sw abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sw a[href^="#"]:after,

  #custom-html-sw a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sw blockquote,

  #custom-html-sw pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sw thead {

    display: table-header-group;

  }

  #custom-html-sw img,

  #custom-html-sw tr {

    page-break-inside: avoid;

  }

  #custom-html-sw img {

    max-width: 100% !important;

  }

  #custom-html-sw h2,

  #custom-html-sw h3,

  #custom-html-sw p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sw h2,

  #custom-html-sw h3 {

    page-break-after: avoid;

  }

  #custom-html-sw .navbar {

    display: none;

  }

  #custom-html-sw .btn > .caret,

  #custom-html-sw .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sw .label {

    border: 1px solid #000000;

  }

  #custom-html-sw .table {

    border-collapse: collapse !important;

  }

  #custom-html-sw .table td,

  #custom-html-sw .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sw .table-bordered td,

  #custom-html-sw .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sw .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sw .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sw .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sw .glyphicon-eur:before,

#custom-html-sw .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sw .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sw .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sw .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sw .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sw .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sw .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sw .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sw .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sw .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sw .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sw .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sw .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sw .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sw .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sw .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sw .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sw .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sw .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sw .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sw .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sw .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sw .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sw .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sw .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sw .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sw .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sw .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sw .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sw .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sw .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sw .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sw .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sw .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sw .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sw .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sw .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sw .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sw .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sw .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sw .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sw .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sw .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sw .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sw .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sw .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sw .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sw .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sw .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sw .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sw .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sw .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sw .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sw .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sw .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sw .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sw .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sw .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sw .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sw .glyphicon-list:before {

  content: "\e056";

}

#custom-html-sw .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sw .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sw .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sw .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sw .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sw .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sw .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sw .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sw .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sw .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sw .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sw .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sw .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sw .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sw .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sw .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sw .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sw .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sw .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sw .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sw .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sw .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sw .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sw .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sw .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-sw .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sw .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sw .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sw .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sw .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sw .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sw .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sw .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sw .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sw .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sw .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sw .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sw .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sw .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sw .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sw .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sw .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sw .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sw .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sw .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sw .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sw .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sw .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sw .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sw .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sw .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sw .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sw .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sw .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sw .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sw .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sw .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sw .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sw .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sw .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sw .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sw .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sw .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sw .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sw .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sw .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sw .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sw .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sw .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sw .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sw .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sw .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sw .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sw .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sw .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sw .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sw .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sw .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sw .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sw .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sw .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sw .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sw .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sw .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sw .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sw .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sw .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sw .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sw .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sw .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sw .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sw .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sw .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sw .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sw .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sw .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sw .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sw .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sw .glyphicon-collapse-up:before {

  content: "\e160";


}

#custom-html-sw .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sw .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sw .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sw .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sw .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sw .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sw .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sw .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sw .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sw .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sw .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sw .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sw .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sw .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sw .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sw .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sw .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sw .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sw .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sw .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sw .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sw .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sw .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sw .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sw .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sw .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sw .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sw .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sw .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sw .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sw .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sw .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sw .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sw .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sw .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sw .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sw .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sw .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sw .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sw .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sw .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sw .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sw .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sw .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sw .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sw .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sw .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sw .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sw .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sw .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sw .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sw .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sw .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sw .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sw .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sw .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sw .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sw .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sw .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sw .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sw .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sw .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sw .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sw .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sw .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sw .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sw .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sw .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sw .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sw .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sw .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sw .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sw .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sw .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sw .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sw .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sw .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sw .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sw .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sw .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sw .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sw .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sw .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sw .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sw .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sw .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-sw .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sw .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sw .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sw .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sw .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sw .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sw .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sw .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sw .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sw .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sw .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sw .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sw .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sw .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sw .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sw * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sw :after,

#custom-html-sw :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sw html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sw body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-sw button,

#custom-html-sw input,

#custom-html-sw select,

#custom-html-sw textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sw a {

  color: #000;

  text-decoration: none;

}

#custom-html-sw a:focus,

#custom-html-sw a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sw a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sw figure {

  margin: 0;

}

#custom-html-sw img {

  vertical-align: middle;

}

#custom-html-sw .carousel-inner > .item > a > img,

#custom-html-sw .carousel-inner > .item > img,

#custom-html-sw .img-responsive,

#custom-html-sw .thumbnail a > img,

#custom-html-sw .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sw .img-rounded {

  border-radius: 6px;

}

#custom-html-sw .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sw .img-circle {

  border-radius: 50%;

}

#custom-html-sw hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sw .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sw .sr-only-focusable:active,

#custom-html-sw .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sw [role=button] {

  cursor: pointer;

}

#custom-html-sw .h1,

#custom-html-sw .h2,

#custom-html-sw .h3,

#custom-html-sw .h4,

#custom-html-sw .h5,

#custom-html-sw .h6,

#custom-html-sw h1,

#custom-html-sw h2,

#custom-html-sw h3,

#custom-html-sw h4,

#custom-html-sw h5,

#custom-html-sw h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sw .h1 .small,

#custom-html-sw .h1 small,

#custom-html-sw .h2 .small,

#custom-html-sw .h2 small,

#custom-html-sw .h3 .small,

#custom-html-sw .h3 small,

#custom-html-sw .h4 .small,

#custom-html-sw .h4 small,

#custom-html-sw .h5 .small,

#custom-html-sw .h5 small,

#custom-html-sw .h6 .small,

#custom-html-sw .h6 small,

#custom-html-sw h1 .small,

#custom-html-sw h1 small,

#custom-html-sw h2 .small,

#custom-html-sw h2 small,

#custom-html-sw h3 .small,

#custom-html-sw h3 small,

#custom-html-sw h4 .small,

#custom-html-sw h4 small,

#custom-html-sw h5 .small,

#custom-html-sw h5 small,

#custom-html-sw h6 .small,

#custom-html-sw h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sw .h1,

#custom-html-sw .h2,

#custom-html-sw .h3,

#custom-html-sw h1,

#custom-html-sw h2,

#custom-html-sw h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sw .h1 .small,

#custom-html-sw .h1 small,

#custom-html-sw .h2 .small,

#custom-html-sw .h2 small,

#custom-html-sw .h3 .small,

#custom-html-sw .h3 small,

#custom-html-sw h1 .small,

#custom-html-sw h1 small,

#custom-html-sw h2 .small,

#custom-html-sw h2 small,

#custom-html-sw h3 .small,

#custom-html-sw h3 small {

  font-size: 65%;

}

#custom-html-sw .h4,

#custom-html-sw .h5,

#custom-html-sw .h6,

#custom-html-sw h4,

#custom-html-sw h5,

#custom-html-sw h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sw .h4 .small,

#custom-html-sw .h4 small,

#custom-html-sw .h5 .small,

#custom-html-sw .h5 small,

#custom-html-sw .h6 .small,

#custom-html-sw .h6 small,

#custom-html-sw h4 .small,

#custom-html-sw h4 small,

#custom-html-sw h5 .small,

#custom-html-sw h5 small,

#custom-html-sw h6 .small,

#custom-html-sw h6 small {

  font-size: 75%;

}

#custom-html-sw .h1,

#custom-html-sw h1 {

  font-size: 36px;

}

#custom-html-sw .h2,

#custom-html-sw h2 {

  font-size: 30px;

}

#custom-html-sw .h3,

#custom-html-sw h3 {

  font-size: 24px;

}

#custom-html-sw .h4,

#custom-html-sw h4 {

  font-size: 18px;

}

#custom-html-sw .h5,

#custom-html-sw h5 {

  font-size: 14px;

}

#custom-html-sw .h6,

#custom-html-sw h6 {

  font-size: 12px;

}

#custom-html-sw p {

  margin: 0 0 10px;

}

#custom-html-sw .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sw .lead {

    font-size: 21px;

  }

}

#custom-html-sw .small,

#custom-html-sw small {

  font-size: 85%;

}

#custom-html-sw .mark,

#custom-html-sw mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sw .text-left {

  text-align: left;

}

#custom-html-sw .text-right {

  text-align: right;

}

#custom-html-sw .text-center {

  text-align: center;

}

#custom-html-sw .text-justify {

  text-align: justify;

}

#custom-html-sw .text-nowrap {

  white-space: nowrap;

}

#custom-html-sw .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sw .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sw .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sw .text-muted {

  color: #777777;

}

#custom-html-sw .text-primary {

  color: #000000;

}

#custom-html-sw a.text-primary:focus,

#custom-html-sw a.text-primary:hover {

  color: #000000;

}

#custom-html-sw .text-success {

  color: #3c763d;

}

#custom-html-sw a.text-success:focus,

#custom-html-sw a.text-success:hover {

  color: #2b542c;

}

#custom-html-sw .text-info {

  color: #31708f;

}

#custom-html-sw a.text-info:focus,

#custom-html-sw a.text-info:hover {

  color: #000000;

}

#custom-html-sw .text-warning {

  color: #8a6d3b;

}

#custom-html-sw a.text-warning:focus,

#custom-html-sw a.text-warning:hover {

  color: #66512c;

}

#custom-html-sw .text-danger {

  color: #a94442;

}

#custom-html-sw a.text-danger:focus,

#custom-html-sw a.text-danger:hover {

  color: #843534;

}

#custom-html-sw .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-sw a.bg-primary:focus,

#custom-html-sw a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sw .bg-success {

  background-color: #dff0d8;

}

#custom-html-sw a.bg-success:focus,

#custom-html-sw a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sw .bg-info {

  background-color: #d9edf7;

}

#custom-html-sw a.bg-info:focus,

#custom-html-sw a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sw .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sw a.bg-warning:focus,

#custom-html-sw a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sw .bg-danger {

  background-color: #f2dede;

}

#custom-html-sw a.bg-danger:focus,

#custom-html-sw a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sw .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sw ol,

#custom-html-sw ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sw ol ol,

#custom-html-sw ol ul,

#custom-html-sw ul ol,

#custom-html-sw ul ul {

  margin-bottom: 0;

}

#custom-html-sw .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sw .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sw .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sw dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sw dd,

#custom-html-sw dt {

  line-height: 1.42857143;

}

#custom-html-sw dt {

  font-weight: 700;

}

#custom-html-sw dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sw .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sw .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-sw abbr[data-original-title],

#custom-html-sw abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sw .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sw blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sw blockquote ol:last-child,

#custom-html-sw blockquote p:last-child,

#custom-html-sw blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sw blockquote .small,

#custom-html-sw blockquote footer,

#custom-html-sw blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sw blockquote .small:before,

#custom-html-sw blockquote footer:before,

#custom-html-sw blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sw .blockquote-reverse,

#custom-html-sw blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sw .blockquote-reverse .small:before,

#custom-html-sw .blockquote-reverse footer:before,

#custom-html-sw .blockquote-reverse small:before,

#custom-html-sw blockquote.pull-right .small:before,

#custom-html-sw blockquote.pull-right footer:before,

#custom-html-sw blockquote.pull-right small:before {

  content: '';

}

#custom-html-sw .blockquote-reverse .small:after,

#custom-html-sw .blockquote-reverse footer:after,

#custom-html-sw .blockquote-reverse small:after,

#custom-html-sw blockquote.pull-right .small:after,

#custom-html-sw blockquote.pull-right footer:after,

#custom-html-sw blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sw address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sw code,

#custom-html-sw kbd,

#custom-html-sw pre,

#custom-html-sw samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-sw code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sw kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sw kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sw pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sw pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sw .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sw .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-sw .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-sw .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sw .container {

    width: 1170px;

  }

}

#custom-html-sw .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sw .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sw .col-lg-1,

#custom-html-sw .col-lg-10,

#custom-html-sw .col-lg-11,

#custom-html-sw .col-lg-12,

#custom-html-sw .col-lg-2,

#custom-html-sw .col-lg-3,

#custom-html-sw .col-lg-4,

#custom-html-sw .col-lg-5,

#custom-html-sw .col-lg-6,

#custom-html-sw .col-lg-7,

#custom-html-sw .col-lg-8,

#custom-html-sw .col-lg-9,

#custom-html-sw .col-md-1,

#custom-html-sw .col-md-10,

#custom-html-sw .col-md-11,

#custom-html-sw .col-md-12,

#custom-html-sw .col-md-2,

#custom-html-sw .col-md-3,

#custom-html-sw .col-md-4,

#custom-html-sw .col-md-5,

#custom-html-sw .col-md-6,

#custom-html-sw .col-md-7,

#custom-html-sw .col-md-8,

#custom-html-sw .col-md-9,

#custom-html-sw .col-sm-1,

#custom-html-sw .col-sm-10,

#custom-html-sw .col-sm-11,

#custom-html-sw .col-sm-12,

#custom-html-sw .col-sm-2,

#custom-html-sw .col-sm-3,

#custom-html-sw .col-sm-4,

#custom-html-sw .col-sm-5,

#custom-html-sw .col-sm-6,

#custom-html-sw .col-sm-7,

#custom-html-sw .col-sm-8,

#custom-html-sw .col-sm-9,

#custom-html-sw .col-xs-1,

#custom-html-sw .col-xs-10,

#custom-html-sw .col-xs-11,

#custom-html-sw .col-xs-12,

#custom-html-sw .col-xs-2,

#custom-html-sw .col-xs-3,

#custom-html-sw .col-xs-4,

#custom-html-sw .col-xs-5,

#custom-html-sw .col-xs-6,

#custom-html-sw .col-xs-7,

#custom-html-sw .col-xs-8,

#custom-html-sw .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sw .col-xs-1,

#custom-html-sw .col-xs-10,

#custom-html-sw .col-xs-11,

#custom-html-sw .col-xs-12,

#custom-html-sw .col-xs-2,

#custom-html-sw .col-xs-3,

#custom-html-sw .col-xs-4,

#custom-html-sw .col-xs-5,

#custom-html-sw .col-xs-6,

#custom-html-sw .col-xs-7,

#custom-html-sw .col-xs-8,

#custom-html-sw .col-xs-9 {

  float: left;

}

#custom-html-sw .col-xs-12 {

  width: 100%;

}

#custom-html-sw .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sw .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sw .col-xs-9 {

  width: 75%;

}

#custom-html-sw .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sw .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sw .col-xs-6 {

  width: 50%;

}

#custom-html-sw .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sw .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sw .col-xs-3 {

  width: 25%;

}

#custom-html-sw .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sw .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sw .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sw .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sw .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sw .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sw .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sw .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sw .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sw .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sw .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sw .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sw .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sw .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sw .col-xs-pull-0 {

  right: auto;

}

#custom-html-sw .col-xs-push-12 {

  left: 100%;

}

#custom-html-sw .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sw .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sw .col-xs-push-9 {

  left: 75%;

}

#custom-html-sw .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sw .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sw .col-xs-push-6 {

  left: 50%;

}

#custom-html-sw .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sw .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sw .col-xs-push-3 {

  left: 25%;

}

#custom-html-sw .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sw .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sw .col-xs-push-0 {

  left: auto;

}

#custom-html-sw .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sw .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sw .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sw .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sw .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sw .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sw .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sw .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sw .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sw .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sw .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sw .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-sw .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sw .col-sm-1,

  #custom-html-sw .col-sm-10,

  #custom-html-sw .col-sm-11,

  #custom-html-sw .col-sm-12,

  #custom-html-sw .col-sm-2,

  #custom-html-sw .col-sm-3,

  #custom-html-sw .col-sm-4,

  #custom-html-sw .col-sm-5,

  #custom-html-sw .col-sm-6,

  #custom-html-sw .col-sm-7,

  #custom-html-sw .col-sm-8,

  #custom-html-sw .col-sm-9 {

    float: left;

  }

  #custom-html-sw .col-sm-12 {

    width: 100%;

  }

  #custom-html-sw .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sw .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sw .col-sm-9 {

    width: 75%;

  }

  #custom-html-sw .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sw .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sw .col-sm-6 {

    width: 50%;

  }

  #custom-html-sw .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sw .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sw .col-sm-3 {

    width: 25%;

  }

  #custom-html-sw .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sw .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sw .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sw .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sw .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sw .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sw .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sw .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sw .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sw .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sw .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sw .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sw .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sw .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sw .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sw .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sw .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sw .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sw .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sw .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sw .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sw .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sw .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sw .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sw .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sw .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sw .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sw .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sw .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sw .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sw .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sw .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sw .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sw .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sw .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sw .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sw .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sw .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sw .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sw .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sw .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-sw .col-md-1,

  #custom-html-sw .col-md-10,

  #custom-html-sw .col-md-11,

  #custom-html-sw .col-md-12,

  #custom-html-sw .col-md-2,

  #custom-html-sw .col-md-3,

  #custom-html-sw .col-md-4,

  #custom-html-sw .col-md-5,

  #custom-html-sw .col-md-6,

  #custom-html-sw .col-md-7,

  #custom-html-sw .col-md-8,

  #custom-html-sw .col-md-9 {

    float: left;

  }

  #custom-html-sw .col-md-12 {

    width: 100%;

  }

  #custom-html-sw .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sw .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sw .col-md-9 {

    width: 75%;

  }

  #custom-html-sw .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sw .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sw .col-md-6 {

    width: 50%;

  }

  #custom-html-sw .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sw .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sw .col-md-3 {

    width: 25%;

  }

  #custom-html-sw .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sw .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sw .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sw .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sw .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sw .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sw .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sw .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sw .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sw .col-md-pull-5 {


    right: 41.66666667%;

  }

  #custom-html-sw .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sw .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sw .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sw .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sw .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sw .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sw .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sw .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sw .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sw .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sw .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sw .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sw .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sw .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sw .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sw .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sw .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sw .col-md-push-0 {

    left: auto;

  }

  #custom-html-sw .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sw .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sw .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sw .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sw .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sw .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sw .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sw .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sw .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sw .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sw .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sw .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sw .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-sw .col-lg-1,

  #custom-html-sw .col-lg-10,

  #custom-html-sw .col-lg-11,

  #custom-html-sw .col-lg-12,

  #custom-html-sw .col-lg-2,

  #custom-html-sw .col-lg-3,

  #custom-html-sw .col-lg-4,

  #custom-html-sw .col-lg-5,

  #custom-html-sw .col-lg-6,

  #custom-html-sw .col-lg-7,

  #custom-html-sw .col-lg-8,

  #custom-html-sw .col-lg-9 {

    float: left;

  }

  #custom-html-sw .col-lg-12 {

    width: 100%;

  }

  #custom-html-sw .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sw .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sw .col-lg-9 {

    width: 75%;

  }

  #custom-html-sw .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sw .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sw .col-lg-6 {

    width: 50%;

  }

  #custom-html-sw .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sw .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sw .col-lg-3 {

    width: 25%;

  }

  #custom-html-sw .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sw .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sw .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sw .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sw .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sw .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sw .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sw .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sw .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sw .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sw .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sw .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sw .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sw .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sw .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sw .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sw .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sw .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sw .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sw .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sw .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sw .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sw .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sw .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sw .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sw .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sw .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sw .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sw .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sw .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sw .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sw .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sw .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sw .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sw .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sw .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sw .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sw .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sw .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sw .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sw .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-sw table {

  background-color: transparent;

}

#custom-html-sw caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sw th {

  text-align: left;

}

#custom-html-sw .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sw .table > tbody > tr > td,

#custom-html-sw .table > tbody > tr > th,

#custom-html-sw .table > tfoot > tr > td,

#custom-html-sw .table > tfoot > tr > th,

#custom-html-sw .table > thead > tr > td,

#custom-html-sw .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sw .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sw .table > caption + thead > tr:first-child > td,

#custom-html-sw .table > caption + thead > tr:first-child > th,

#custom-html-sw .table > colgroup + thead > tr:first-child > td,

#custom-html-sw .table > colgroup + thead > tr:first-child > th,

#custom-html-sw .table > thead:first-child > tr:first-child > td,

#custom-html-sw .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sw .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sw .table .table {

  background-color: #ffffff;

}

#custom-html-sw .table-condensed > tbody > tr > td,

#custom-html-sw .table-condensed > tbody > tr > th,

#custom-html-sw .table-condensed > tfoot > tr > td,

#custom-html-sw .table-condensed > tfoot > tr > th,

#custom-html-sw .table-condensed > thead > tr > td,

#custom-html-sw .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sw .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sw .table-bordered > tbody > tr > td,

#custom-html-sw .table-bordered > tbody > tr > th,

#custom-html-sw .table-bordered > tfoot > tr > td,

#custom-html-sw .table-bordered > tfoot > tr > th,

#custom-html-sw .table-bordered > thead > tr > td,

#custom-html-sw .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sw .table-bordered > thead > tr > td,

#custom-html-sw .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sw .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sw .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sw table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sw table td[class*=col-],

#custom-html-sw table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-sw .table > tbody > tr.active > td,

#custom-html-sw .table > tbody > tr.active > th,

#custom-html-sw .table > tbody > tr > td.active,

#custom-html-sw .table > tbody > tr > th.active,

#custom-html-sw .table > tfoot > tr.active > td,

#custom-html-sw .table > tfoot > tr.active > th,

#custom-html-sw .table > tfoot > tr > td.active,

#custom-html-sw .table > tfoot > tr > th.active,

#custom-html-sw .table > thead > tr.active > td,

#custom-html-sw .table > thead > tr.active > th,

#custom-html-sw .table > thead > tr > td.active,

#custom-html-sw .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sw .table-hover > tbody > tr.active:hover > td,

#custom-html-sw .table-hover > tbody > tr.active:hover > th,

#custom-html-sw .table-hover > tbody > tr:hover > .active,

#custom-html-sw .table-hover > tbody > tr > td.active:hover,

#custom-html-sw .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sw .table > tbody > tr.success > td,

#custom-html-sw .table > tbody > tr.success > th,

#custom-html-sw .table > tbody > tr > td.success,

#custom-html-sw .table > tbody > tr > th.success,

#custom-html-sw .table > tfoot > tr.success > td,

#custom-html-sw .table > tfoot > tr.success > th,

#custom-html-sw .table > tfoot > tr > td.success,

#custom-html-sw .table > tfoot > tr > th.success,

#custom-html-sw .table > thead > tr.success > td,

#custom-html-sw .table > thead > tr.success > th,

#custom-html-sw .table > thead > tr > td.success,

#custom-html-sw .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sw .table-hover > tbody > tr.success:hover > td,

#custom-html-sw .table-hover > tbody > tr.success:hover > th,

#custom-html-sw .table-hover > tbody > tr:hover > .success,

#custom-html-sw .table-hover > tbody > tr > td.success:hover,

#custom-html-sw .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sw .table > tbody > tr.info > td,

#custom-html-sw .table > tbody > tr.info > th,

#custom-html-sw .table > tbody > tr > td.info,

#custom-html-sw .table > tbody > tr > th.info,

#custom-html-sw .table > tfoot > tr.info > td,

#custom-html-sw .table > tfoot > tr.info > th,

#custom-html-sw .table > tfoot > tr > td.info,

#custom-html-sw .table > tfoot > tr > th.info,

#custom-html-sw .table > thead > tr.info > td,

#custom-html-sw .table > thead > tr.info > th,

#custom-html-sw .table > thead > tr > td.info,

#custom-html-sw .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sw .table-hover > tbody > tr.info:hover > td,

#custom-html-sw .table-hover > tbody > tr.info:hover > th,

#custom-html-sw .table-hover > tbody > tr:hover > .info,

#custom-html-sw .table-hover > tbody > tr > td.info:hover,

#custom-html-sw .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sw .table > tbody > tr.warning > td,

#custom-html-sw .table > tbody > tr.warning > th,

#custom-html-sw .table > tbody > tr > td.warning,

#custom-html-sw .table > tbody > tr > th.warning,

#custom-html-sw .table > tfoot > tr.warning > td,

#custom-html-sw .table > tfoot > tr.warning > th,

#custom-html-sw .table > tfoot > tr > td.warning,

#custom-html-sw .table > tfoot > tr > th.warning,

#custom-html-sw .table > thead > tr.warning > td,

#custom-html-sw .table > thead > tr.warning > th,

#custom-html-sw .table > thead > tr > td.warning,

#custom-html-sw .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sw .table-hover > tbody > tr.warning:hover > td,

#custom-html-sw .table-hover > tbody > tr.warning:hover > th,

#custom-html-sw .table-hover > tbody > tr:hover > .warning,

#custom-html-sw .table-hover > tbody > tr > td.warning:hover,

#custom-html-sw .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sw .table > tbody > tr.danger > td,

#custom-html-sw .table > tbody > tr.danger > th,

#custom-html-sw .table > tbody > tr > td.danger,

#custom-html-sw .table > tbody > tr > th.danger,

#custom-html-sw .table > tfoot > tr.danger > td,

#custom-html-sw .table > tfoot > tr.danger > th,

#custom-html-sw .table > tfoot > tr > td.danger,

#custom-html-sw .table > tfoot > tr > th.danger,

#custom-html-sw .table > thead > tr.danger > td,

#custom-html-sw .table > thead > tr.danger > th,

#custom-html-sw .table > thead > tr > td.danger,

#custom-html-sw .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sw .table-hover > tbody > tr.danger:hover > td,

#custom-html-sw .table-hover > tbody > tr.danger:hover > th,

#custom-html-sw .table-hover > tbody > tr:hover > .danger,

#custom-html-sw .table-hover > tbody > tr > td.danger:hover,

#custom-html-sw .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sw .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sw .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sw .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sw .table-responsive > .table > tbody > tr > td,

  #custom-html-sw .table-responsive > .table > tbody > tr > th,

  #custom-html-sw .table-responsive > .table > tfoot > tr > td,

  #custom-html-sw .table-responsive > .table > tfoot > tr > th,

  #custom-html-sw .table-responsive > .table > thead > tr > td,

  #custom-html-sw .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sw .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sw .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sw .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sw .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sw .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sw .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sw .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sw .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sw .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sw .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sw .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sw .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sw .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sw .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sw .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sw .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sw .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-sw fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-sw legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sw label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sw input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sw input[type=checkbox],

#custom-html-sw input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sw input[type=file] {

  display: block;

}

#custom-html-sw input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sw select[multiple],

#custom-html-sw select[size] {

  height: auto;

}

#custom-html-sw input[type=checkbox]:focus,

#custom-html-sw input[type=file]:focus,

#custom-html-sw input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sw output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sw .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sw .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sw .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sw .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sw .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sw .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sw .form-control[disabled],

#custom-html-sw .form-control[readonly],

#custom-html-sw fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sw .form-control[disabled],

#custom-html-sw fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sw textarea.form-control {

  height: auto;

}

#custom-html-sw input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sw input[type=date].form-control,

  #custom-html-sw input[type=datetime-local].form-control,

  #custom-html-sw input[type=month].form-control,

  #custom-html-sw input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sw .input-group-sm input[type=date],

  #custom-html-sw .input-group-sm input[type=datetime-local],

  #custom-html-sw .input-group-sm input[type=month],

  #custom-html-sw .input-group-sm input[type=time],

  #custom-html-sw input[type=date].input-sm,

  #custom-html-sw input[type=datetime-local].input-sm,

  #custom-html-sw input[type=month].input-sm,

  #custom-html-sw input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sw .input-group-lg input[type=date],

  #custom-html-sw .input-group-lg input[type=datetime-local],

  #custom-html-sw .input-group-lg input[type=month],

  #custom-html-sw .input-group-lg input[type=time],

  #custom-html-sw input[type=date].input-lg,

  #custom-html-sw input[type=datetime-local].input-lg,

  #custom-html-sw input[type=month].input-lg,

  #custom-html-sw input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sw .form-group {

  margin-bottom: 15px;

}

#custom-html-sw .checkbox,

#custom-html-sw .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sw .checkbox label,

#custom-html-sw .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sw .checkbox input[type=checkbox],

#custom-html-sw .checkbox-inline input[type=checkbox],

#custom-html-sw .radio input[type=radio],

#custom-html-sw .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sw .checkbox + .checkbox,

#custom-html-sw .radio + .radio {

  margin-top: -5px;

}

#custom-html-sw .checkbox-inline,

#custom-html-sw .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sw .checkbox-inline + .checkbox-inline,

#custom-html-sw .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sw fieldset[disabled] input[type=checkbox],

#custom-html-sw fieldset[disabled] input[type=radio],

#custom-html-sw input[type=checkbox].disabled,

#custom-html-sw input[type=checkbox][disabled],

#custom-html-sw input[type=radio].disabled,

#custom-html-sw input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sw .checkbox-inline.disabled,

#custom-html-sw .radio-inline.disabled,

#custom-html-sw fieldset[disabled] .checkbox-inline,

#custom-html-sw fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sw .checkbox.disabled label,

#custom-html-sw .radio.disabled label,

#custom-html-sw fieldset[disabled] .checkbox label,

#custom-html-sw fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sw .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sw .form-control-static.input-lg,

#custom-html-sw .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sw .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sw select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sw select[multiple].input-sm,

#custom-html-sw textarea.input-sm {

  height: auto;

}

#custom-html-sw .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sw .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sw .form-group-sm select[multiple].form-control,

#custom-html-sw .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sw .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sw .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sw select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sw select[multiple].input-lg,

#custom-html-sw textarea.input-lg {

  height: auto;

}

#custom-html-sw .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sw .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sw .form-group-lg select[multiple].form-control,

#custom-html-sw .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sw .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sw .has-feedback {

  position: relative;

}

#custom-html-sw .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sw .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sw .form-group-lg .form-control + .form-control-feedback,

#custom-html-sw .input-group-lg + .form-control-feedback,

#custom-html-sw .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sw .form-group-sm .form-control + .form-control-feedback,

#custom-html-sw .input-group-sm + .form-control-feedback,

#custom-html-sw .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sw .has-success .checkbox,

#custom-html-sw .has-success .checkbox-inline,

#custom-html-sw .has-success .control-label,

#custom-html-sw .has-success .help-block,

#custom-html-sw .has-success .radio,

#custom-html-sw .has-success .radio-inline,

#custom-html-sw .has-success.checkbox label,

#custom-html-sw .has-success.checkbox-inline label,

#custom-html-sw .has-success.radio label,

#custom-html-sw .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sw .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sw .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sw .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sw .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sw .has-warning .checkbox,

#custom-html-sw .has-warning .checkbox-inline,

#custom-html-sw .has-warning .control-label,

#custom-html-sw .has-warning .help-block,

#custom-html-sw .has-warning .radio,

#custom-html-sw .has-warning .radio-inline,

#custom-html-sw .has-warning.checkbox label,

#custom-html-sw .has-warning.checkbox-inline label,

#custom-html-sw .has-warning.radio label,

#custom-html-sw .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sw .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sw .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sw .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sw .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sw .has-error .checkbox,

#custom-html-sw .has-error .checkbox-inline,

#custom-html-sw .has-error .control-label,

#custom-html-sw .has-error .help-block,

#custom-html-sw .has-error .radio,

#custom-html-sw .has-error .radio-inline,

#custom-html-sw .has-error.checkbox label,

#custom-html-sw .has-error.checkbox-inline label,

#custom-html-sw .has-error.radio label,

#custom-html-sw .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sw .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sw .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sw .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sw .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sw .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-sw .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sw .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-sw .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sw .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sw .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sw .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sw .form-inline .input-group .form-control,

  #custom-html-sw .form-inline .input-group .input-group-addon,

  #custom-html-sw .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sw .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sw .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sw .form-inline .checkbox,

  #custom-html-sw .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sw .form-inline .checkbox label,

  #custom-html-sw .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sw .form-inline .checkbox input[type=checkbox],

  #custom-html-sw .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sw .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-sw .form-horizontal .checkbox,

#custom-html-sw .form-horizontal .checkbox-inline,

#custom-html-sw .form-horizontal .radio,

#custom-html-sw .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sw .form-horizontal .checkbox,

#custom-html-sw .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sw .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sw .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-sw .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-sw .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-sw .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-sw .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sw .btn.active.focus,

#custom-html-sw .btn.active:focus,

#custom-html-sw .btn.focus,

#custom-html-sw .btn:active.focus,

#custom-html-sw .btn:active:focus,

#custom-html-sw .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sw .btn.focus,

#custom-html-sw .btn:focus,

#custom-html-sw .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sw .btn.active,

#custom-html-sw .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sw .btn.disabled,

#custom-html-sw .btn[disabled],

#custom-html-sw fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sw a.btn.disabled,

#custom-html-sw fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sw .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sw .btn-default.focus,

#custom-html-sw .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sw .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sw .btn-default.active,

#custom-html-sw .btn-default:active,

#custom-html-sw .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sw .btn-default.active.focus,

#custom-html-sw .btn-default.active:focus,

#custom-html-sw .btn-default.active:hover,

#custom-html-sw .btn-default:active.focus,

#custom-html-sw .btn-default:active:focus,

#custom-html-sw .btn-default:active:hover,

#custom-html-sw .open > .dropdown-toggle.btn-default.focus,

#custom-html-sw .open > .dropdown-toggle.btn-default:focus,

#custom-html-sw .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sw .btn-default.active,

#custom-html-sw .btn-default:active,

#custom-html-sw .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-sw .btn-default.disabled.focus,

#custom-html-sw .btn-default.disabled:focus,

#custom-html-sw .btn-default.disabled:hover,

#custom-html-sw .btn-default[disabled].focus,

#custom-html-sw .btn-default[disabled]:focus,

#custom-html-sw .btn-default[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-default.focus,

#custom-html-sw fieldset[disabled] .btn-default:focus,

#custom-html-sw fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sw .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sw .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sw .btn-primary.focus,

#custom-html-sw .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sw .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sw .btn-primary.active,

#custom-html-sw .btn-primary:active,

#custom-html-sw .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sw .btn-primary.active.focus,

#custom-html-sw .btn-primary.active:focus,

#custom-html-sw .btn-primary.active:hover,

#custom-html-sw .btn-primary:active.focus,

#custom-html-sw .btn-primary:active:focus,

#custom-html-sw .btn-primary:active:hover,

#custom-html-sw .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sw .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sw .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sw .btn-primary.active,

#custom-html-sw .btn-primary:active,

#custom-html-sw .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-sw .btn-primary.disabled.focus,

#custom-html-sw .btn-primary.disabled:focus,

#custom-html-sw .btn-primary.disabled:hover,

#custom-html-sw .btn-primary[disabled].focus,

#custom-html-sw .btn-primary[disabled]:focus,

#custom-html-sw .btn-primary[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-primary.focus,

#custom-html-sw fieldset[disabled] .btn-primary:focus,

#custom-html-sw fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sw .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sw .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sw .btn-success.focus,

#custom-html-sw .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sw .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sw .btn-success.active,

#custom-html-sw .btn-success:active,

#custom-html-sw .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sw .btn-success.active.focus,

#custom-html-sw .btn-success.active:focus,

#custom-html-sw .btn-success.active:hover,

#custom-html-sw .btn-success:active.focus,

#custom-html-sw .btn-success:active:focus,

#custom-html-sw .btn-success:active:hover,

#custom-html-sw .open > .dropdown-toggle.btn-success.focus,

#custom-html-sw .open > .dropdown-toggle.btn-success:focus,

#custom-html-sw .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sw .btn-success.active,

#custom-html-sw .btn-success:active,

#custom-html-sw .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-sw .btn-success.disabled.focus,

#custom-html-sw .btn-success.disabled:focus,

#custom-html-sw .btn-success.disabled:hover,

#custom-html-sw .btn-success[disabled].focus,

#custom-html-sw .btn-success[disabled]:focus,

#custom-html-sw .btn-success[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-success.focus,

#custom-html-sw fieldset[disabled] .btn-success:focus,

#custom-html-sw fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sw .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sw .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sw .btn-info.focus,

#custom-html-sw .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sw .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sw .btn-info.active,

#custom-html-sw .btn-info:active,

#custom-html-sw .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sw .btn-info.active.focus,

#custom-html-sw .btn-info.active:focus,

#custom-html-sw .btn-info.active:hover,

#custom-html-sw .btn-info:active.focus,

#custom-html-sw .btn-info:active:focus,

#custom-html-sw .btn-info:active:hover,

#custom-html-sw .open > .dropdown-toggle.btn-info.focus,

#custom-html-sw .open > .dropdown-toggle.btn-info:focus,

#custom-html-sw .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sw .btn-info.active,

#custom-html-sw .btn-info:active,

#custom-html-sw .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-sw .btn-info.disabled.focus,

#custom-html-sw .btn-info.disabled:focus,

#custom-html-sw .btn-info.disabled:hover,

#custom-html-sw .btn-info[disabled].focus,

#custom-html-sw .btn-info[disabled]:focus,

#custom-html-sw .btn-info[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-info.focus,

#custom-html-sw fieldset[disabled] .btn-info:focus,

#custom-html-sw fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sw .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sw .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sw .btn-warning.focus,

#custom-html-sw .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sw .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sw .btn-warning.active,

#custom-html-sw .btn-warning:active,

#custom-html-sw .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sw .btn-warning.active.focus,

#custom-html-sw .btn-warning.active:focus,

#custom-html-sw .btn-warning.active:hover,

#custom-html-sw .btn-warning:active.focus,

#custom-html-sw .btn-warning:active:focus,

#custom-html-sw .btn-warning:active:hover,

#custom-html-sw .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sw .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sw .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sw .btn-warning.active,

#custom-html-sw .btn-warning:active,

#custom-html-sw .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-sw .btn-warning.disabled.focus,

#custom-html-sw .btn-warning.disabled:focus,

#custom-html-sw .btn-warning.disabled:hover,

#custom-html-sw .btn-warning[disabled].focus,

#custom-html-sw .btn-warning[disabled]:focus,

#custom-html-sw .btn-warning[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-warning.focus,

#custom-html-sw fieldset[disabled] .btn-warning:focus,

#custom-html-sw fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sw .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sw .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sw .btn-danger.focus,

#custom-html-sw .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sw .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sw .btn-danger.active,

#custom-html-sw .btn-danger:active,

#custom-html-sw .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sw .btn-danger.active.focus,

#custom-html-sw .btn-danger.active:focus,

#custom-html-sw .btn-danger.active:hover,

#custom-html-sw .btn-danger:active.focus,

#custom-html-sw .btn-danger:active:focus,

#custom-html-sw .btn-danger:active:hover,

#custom-html-sw .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sw .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sw .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sw .btn-danger.active,

#custom-html-sw .btn-danger:active,

#custom-html-sw .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-sw .btn-danger.disabled.focus,

#custom-html-sw .btn-danger.disabled:focus,

#custom-html-sw .btn-danger.disabled:hover,

#custom-html-sw .btn-danger[disabled].focus,

#custom-html-sw .btn-danger[disabled]:focus,

#custom-html-sw .btn-danger[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-danger.focus,

#custom-html-sw fieldset[disabled] .btn-danger:focus,

#custom-html-sw fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sw .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sw .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sw .btn-link,

#custom-html-sw .btn-link.active,

#custom-html-sw .btn-link:active,

#custom-html-sw .btn-link[disabled],

#custom-html-sw fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sw .btn-link,

#custom-html-sw .btn-link:active,

#custom-html-sw .btn-link:focus,

#custom-html-sw .btn-link:hover {

  border-color: transparent;

}

#custom-html-sw .btn-link:focus,

#custom-html-sw .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sw .btn-link[disabled]:focus,

#custom-html-sw .btn-link[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-link:focus,

#custom-html-sw fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sw .btn-group-lg > .btn,

#custom-html-sw .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sw .btn-group-sm > .btn,

#custom-html-sw .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sw .btn-group-xs > .btn,

#custom-html-sw .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sw .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sw .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sw input[type=button].btn-block,

#custom-html-sw input[type=reset].btn-block,

#custom-html-sw input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sw .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sw .fade.in {

  opacity: 1;

}

#custom-html-sw .collapse {

  display: none;

}

#custom-html-sw .collapse.in {

  display: block;

}

#custom-html-sw tr.collapse.in {

  display: table-row;

}

#custom-html-sw tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sw .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-sw .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sw .dropdown,

#custom-html-sw .dropup {

  position: relative;

}

#custom-html-sw .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sw .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sw .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sw .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sw .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sw .dropdown-menu > li > a:focus,

#custom-html-sw .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sw .dropdown-menu > .active > a,

#custom-html-sw .dropdown-menu > .active > a:focus,

#custom-html-sw .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sw .dropdown-menu > .disabled > a,

#custom-html-sw .dropdown-menu > .disabled > a:focus,

#custom-html-sw .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sw .dropdown-menu > .disabled > a:focus,

#custom-html-sw .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sw .open > .dropdown-menu {

  display: block;

}

#custom-html-sw .open > a {

  outline: 0;

}

#custom-html-sw .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sw .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sw .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sw .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sw .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sw .dropup .caret,

#custom-html-sw .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sw .dropup .dropdown-menu,

#custom-html-sw .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-sw .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sw .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-sw .btn-group,

#custom-html-sw .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sw .btn-group-vertical > .btn,

#custom-html-sw .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sw .btn-group-vertical > .btn.active,

#custom-html-sw .btn-group-vertical > .btn:active,

#custom-html-sw .btn-group-vertical > .btn:focus,

#custom-html-sw .btn-group-vertical > .btn:hover,

#custom-html-sw .btn-group > .btn.active,

#custom-html-sw .btn-group > .btn:active,

#custom-html-sw .btn-group > .btn:focus,

#custom-html-sw .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sw .btn-group .btn + .btn,

#custom-html-sw .btn-group .btn + .btn-group,

#custom-html-sw .btn-group .btn-group + .btn,

#custom-html-sw .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sw .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sw .btn-toolbar .btn,

#custom-html-sw .btn-toolbar .btn-group,

#custom-html-sw .btn-toolbar .input-group {

  float: left;

}

#custom-html-sw .btn-toolbar > .btn,

#custom-html-sw .btn-toolbar > .btn-group,

#custom-html-sw .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sw .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sw .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sw .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sw .btn-group > .btn:last-child:not(:first-child),

#custom-html-sw .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sw .btn-group > .btn-group {

  float: left;

}

#custom-html-sw .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sw .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sw .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sw .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sw .btn-group .dropdown-toggle:active,

#custom-html-sw .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sw .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sw .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sw .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sw .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sw .btn .caret {

  margin-left: 0;

}

#custom-html-sw .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sw .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sw .btn-group-vertical > .btn,

#custom-html-sw .btn-group-vertical > .btn-group,

#custom-html-sw .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sw .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sw .btn-group-vertical > .btn + .btn,

#custom-html-sw .btn-group-vertical > .btn + .btn-group,

#custom-html-sw .btn-group-vertical > .btn-group + .btn,

#custom-html-sw .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sw .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sw .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sw .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sw .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sw .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sw .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sw .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sw .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sw .btn-group-justified > .btn,

#custom-html-sw .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sw .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sw .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sw [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sw [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sw [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sw [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sw .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sw .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sw .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sw .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sw .input-group-lg > .form-control,

#custom-html-sw .input-group-lg > .input-group-addon,

#custom-html-sw .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sw select.input-group-lg > .form-control,

#custom-html-sw select.input-group-lg > .input-group-addon,

#custom-html-sw select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sw select[multiple].input-group-lg > .form-control,

#custom-html-sw select[multiple].input-group-lg > .input-group-addon,

#custom-html-sw select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sw textarea.input-group-lg > .form-control,

#custom-html-sw textarea.input-group-lg > .input-group-addon,

#custom-html-sw textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sw .input-group-sm > .form-control,

#custom-html-sw .input-group-sm > .input-group-addon,

#custom-html-sw .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sw select.input-group-sm > .form-control,

#custom-html-sw select.input-group-sm > .input-group-addon,

#custom-html-sw select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sw select[multiple].input-group-sm > .form-control,

#custom-html-sw select[multiple].input-group-sm > .input-group-addon,

#custom-html-sw select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sw textarea.input-group-sm > .form-control,

#custom-html-sw textarea.input-group-sm > .input-group-addon,

#custom-html-sw textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sw .input-group .form-control,

#custom-html-sw .input-group-addon,

#custom-html-sw .input-group-btn {

  display: table-cell;

}

#custom-html-sw .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sw .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sw .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sw .input-group-addon,

#custom-html-sw .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sw .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sw .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sw .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sw .input-group-addon input[type=checkbox],

#custom-html-sw .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sw .input-group .form-control:first-child,

#custom-html-sw .input-group-addon:first-child,

#custom-html-sw .input-group-btn:first-child > .btn,

#custom-html-sw .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sw .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sw .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sw .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sw .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sw .input-group .form-control:last-child,

#custom-html-sw .input-group-addon:last-child,

#custom-html-sw .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sw .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sw .input-group-btn:last-child > .btn,

#custom-html-sw .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sw .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sw .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sw .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sw .input-group-btn > .btn {

  position: relative;

}

#custom-html-sw .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sw .input-group-btn > .btn:active,

#custom-html-sw .input-group-btn > .btn:focus,

#custom-html-sw .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sw .input-group-btn:first-child > .btn,

#custom-html-sw .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sw .input-group-btn:last-child > .btn,

#custom-html-sw .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sw .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sw .nav > li {

  position: relative;

  display: block;

}

#custom-html-sw .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sw .nav > li > a:focus,

#custom-html-sw .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sw .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sw .nav > li.disabled > a:focus,

#custom-html-sw .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sw .nav .open > a,

#custom-html-sw .nav .open > a:focus,

#custom-html-sw .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sw .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sw .nav > li > a > img {

  max-width: none;

}

#custom-html-sw .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sw .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sw .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sw .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sw .nav-tabs > li.active > a,

#custom-html-sw .nav-tabs > li.active > a:focus,

#custom-html-sw .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sw .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sw .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sw .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sw .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sw .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sw .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sw .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sw .nav-tabs.nav-justified > .active > a,

#custom-html-sw .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sw .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sw .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sw .nav-tabs.nav-justified > .active > a,

  #custom-html-sw .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sw .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sw .nav-pills > li {

  float: left;

}

#custom-html-sw .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sw .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sw .nav-pills > li.active > a,

#custom-html-sw .nav-pills > li.active > a:focus,

#custom-html-sw .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sw .nav-stacked > li {

  float: none;

}

#custom-html-sw .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sw .nav-justified {

  width: 100%;

}

#custom-html-sw .nav-justified > li {

  float: none;

}

#custom-html-sw .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sw .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sw .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sw .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sw .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sw .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sw .nav-tabs-justified > .active > a,

#custom-html-sw .nav-tabs-justified > .active > a:focus,

#custom-html-sw .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sw .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sw .nav-tabs-justified > .active > a,

  #custom-html-sw .nav-tabs-justified > .active > a:focus,

  #custom-html-sw .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sw .tab-content > .tab-pane {

  display: none;

}

#custom-html-sw .tab-content > .active {

  display: block;

}

#custom-html-sw .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sw .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-sw .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-sw .navbar-header {

    float: left;

  }

}

#custom-html-sw .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sw .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-sw .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sw .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sw .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sw .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sw .navbar-fixed-top .navbar-collapse,

  #custom-html-sw .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-sw .navbar-fixed-bottom .navbar-collapse,

#custom-html-sw .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sw .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sw .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sw .container-fluid > .navbar-collapse,

#custom-html-sw .container-fluid > .navbar-header,

#custom-html-sw .container > .navbar-collapse,

#custom-html-sw .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sw .container-fluid > .navbar-collapse,

  #custom-html-sw .container-fluid > .navbar-header,

  #custom-html-sw .container > .navbar-collapse,

  #custom-html-sw .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-sw .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-sw .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-sw .navbar-fixed-bottom,

#custom-html-sw .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-sw .navbar-fixed-bottom,

  #custom-html-sw .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-sw .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sw .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sw .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sw .navbar-brand:focus,

#custom-html-sw .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sw .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-sw .navbar > .container .navbar-brand,

  #custom-html-sw .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-sw .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sw .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sw .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sw .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-sw .navbar-toggle {

    display: none;

  }

}

#custom-html-sw .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sw .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sw .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sw .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sw .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sw .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sw .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sw .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-sw .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sw .navbar-nav > li {

    float: left;

  }

  #custom-html-sw .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-sw .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-sw .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sw .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sw .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sw .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sw .navbar-form .input-group .form-control,

  #custom-html-sw .navbar-form .input-group .input-group-addon,

  #custom-html-sw .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sw .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sw .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sw .navbar-form .checkbox,

  #custom-html-sw .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sw .navbar-form .checkbox label,

  #custom-html-sw .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sw .navbar-form .checkbox input[type=checkbox],

  #custom-html-sw .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sw .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-sw .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sw .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-sw .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-sw .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sw .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sw .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sw .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sw .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sw .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-sw .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-sw .navbar-left {

    float: left !important;

  }

  #custom-html-sw .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sw .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-sw .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sw .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sw .navbar-default .navbar-brand:focus,

#custom-html-sw .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sw .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sw .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sw .navbar-default .navbar-nav > li > a:focus,

#custom-html-sw .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sw .navbar-default .navbar-nav > .active > a,

#custom-html-sw .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sw .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sw .navbar-default .navbar-nav > .disabled > a,

#custom-html-sw .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sw .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sw .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sw .navbar-default .navbar-toggle:focus,

#custom-html-sw .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sw .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sw .navbar-default .navbar-collapse,

#custom-html-sw .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sw .navbar-default .navbar-nav > .open > a,

#custom-html-sw .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sw .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sw .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-sw .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sw .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sw .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sw .navbar-default .btn-link:focus,

#custom-html-sw .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sw .navbar-default .btn-link[disabled]:focus,

#custom-html-sw .navbar-default .btn-link[disabled]:hover,

#custom-html-sw fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sw fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sw .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sw .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sw .navbar-inverse .navbar-brand:focus,

#custom-html-sw .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sw .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sw .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sw .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sw .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sw .navbar-inverse .navbar-nav > .active > a,

#custom-html-sw .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sw .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sw .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sw .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sw .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sw .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sw .navbar-inverse .navbar-toggle:focus,

#custom-html-sw .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sw .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sw .navbar-inverse .navbar-collapse,

#custom-html-sw .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sw .navbar-inverse .navbar-nav > .open > a,

#custom-html-sw .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sw .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sw .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-sw .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sw .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sw .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sw .navbar-inverse .btn-link:focus,

#custom-html-sw .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sw .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sw .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sw fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sw fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sw .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sw .breadcrumb > li {

  display: inline-block;

}

#custom-html-sw .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sw .breadcrumb > .active {

  color: #777777;

}

#custom-html-sw .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-sw .pagination > li {

  display: inline;

}

#custom-html-sw .pagination > li > a,

#custom-html-sw .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sw .pagination > li:first-child > a,

#custom-html-sw .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sw .pagination > li:last-child > a,

#custom-html-sw .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sw .pagination > li > a:focus,

#custom-html-sw .pagination > li > a:hover,

#custom-html-sw .pagination > li > span:focus,

#custom-html-sw .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sw .pagination > .active > a,

#custom-html-sw .pagination > .active > a:focus,

#custom-html-sw .pagination > .active > a:hover,

#custom-html-sw .pagination > .active > span,

#custom-html-sw .pagination > .active > span:focus,

#custom-html-sw .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-sw .pagination > .disabled > a,

#custom-html-sw .pagination > .disabled > a:focus,

#custom-html-sw .pagination > .disabled > a:hover,

#custom-html-sw .pagination > .disabled > span,

#custom-html-sw .pagination > .disabled > span:focus,

#custom-html-sw .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sw .pagination-lg > li > a,

#custom-html-sw .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sw .pagination-lg > li:first-child > a,

#custom-html-sw .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sw .pagination-lg > li:last-child > a,

#custom-html-sw .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sw .pagination-sm > li > a,

#custom-html-sw .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sw .pagination-sm > li:first-child > a,

#custom-html-sw .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sw .pagination-sm > li:last-child > a,

#custom-html-sw .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sw .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sw .pager li {

  display: inline;

}

#custom-html-sw .pager li > a,

#custom-html-sw .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sw .pager li > a:focus,

#custom-html-sw .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sw .pager .next > a,

#custom-html-sw .pager .next > span {

  float: right;

}

#custom-html-sw .pager .previous > a,

#custom-html-sw .pager .previous > span {

  float: left;

}

#custom-html-sw .pager .disabled > a,

#custom-html-sw .pager .disabled > a:focus,

#custom-html-sw .pager .disabled > a:hover,

#custom-html-sw .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sw .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-sw a.label:focus,

#custom-html-sw a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sw .label:empty {

  display: none;

}

#custom-html-sw .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sw .label-default {

  background-color: #777777;

}

#custom-html-sw .label-default[href]:focus,

#custom-html-sw .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sw .label-primary {

  background-color: #337ab7;

}

#custom-html-sw .label-primary[href]:focus,

#custom-html-sw .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sw .label-success {

  background-color: #5cb85c;

}

#custom-html-sw .label-success[href]:focus,

#custom-html-sw .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sw .label-info {

  background-color: #5bc0de;

}

#custom-html-sw .label-info[href]:focus,

#custom-html-sw .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sw .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sw .label-warning[href]:focus,

#custom-html-sw .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sw .label-danger {

  background-color: #d9534f;

}

#custom-html-sw .label-danger[href]:focus,

#custom-html-sw .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sw .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sw .badge:empty {

  display: none;

}

#custom-html-sw .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sw .btn-group-xs > .btn .badge,

#custom-html-sw .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sw a.badge:focus,

#custom-html-sw a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sw .list-group-item.active > .badge,

#custom-html-sw .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sw .list-group-item > .badge {

  float: right;

}

#custom-html-sw .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sw .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sw .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sw .jumbotron .h1,

#custom-html-sw .jumbotron h1 {

  color: inherit;

}

#custom-html-sw .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sw .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sw .container .jumbotron,

#custom-html-sw .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sw .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sw .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sw .container .jumbotron,

  #custom-html-sw .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sw .jumbotron .h1,

  #custom-html-sw .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-sw .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sw .thumbnail a > img,

#custom-html-sw .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sw a.thumbnail.active,

#custom-html-sw a.thumbnail:focus,

#custom-html-sw a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sw .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sw .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sw .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sw .alert .alert-link {

  font-weight: 700;

}

#custom-html-sw .alert > p,

#custom-html-sw .alert > ul {

  margin-bottom: 0;

}

#custom-html-sw .alert > p + p {

  margin-top: 5px;

}

#custom-html-sw .alert-dismissable,

#custom-html-sw .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sw .alert-dismissable .close,

#custom-html-sw .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sw .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sw .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sw .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sw .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sw .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sw .alert-info .alert-link {

  color: #000000;

}

#custom-html-sw .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sw .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sw .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sw .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sw .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sw .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sw .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sw .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sw .progress-bar-striped,

#custom-html-sw .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sw .progress-bar.active,

#custom-html-sw .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sw .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sw .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sw .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sw .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sw .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sw .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sw .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sw .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sw .media {

  margin-top: 15px;

}

#custom-html-sw .media:first-child {

  margin-top: 0;

}

#custom-html-sw .media,

#custom-html-sw .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sw .media-body {

  width: 10000px;

}

#custom-html-sw .media-object {

  display: block;

}

#custom-html-sw .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sw .media-right,

#custom-html-sw .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sw .media-left,

#custom-html-sw .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sw .media-body,

#custom-html-sw .media-left,

#custom-html-sw .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sw .media-middle {

  vertical-align: middle;

}

#custom-html-sw .media-bottom {

  vertical-align: bottom;

}

#custom-html-sw .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sw .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sw .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-sw .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sw .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sw .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sw a.list-group-item,

#custom-html-sw button.list-group-item {

  color: #555555;

}

#custom-html-sw a.list-group-item .list-group-item-heading,

#custom-html-sw button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sw a.list-group-item:focus,

#custom-html-sw a.list-group-item:hover,

#custom-html-sw button.list-group-item:focus,

#custom-html-sw button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sw button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sw .list-group-item.disabled,

#custom-html-sw .list-group-item.disabled:focus,

#custom-html-sw .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sw .list-group-item.disabled .list-group-item-heading,

#custom-html-sw .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sw .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sw .list-group-item.disabled .list-group-item-text,

#custom-html-sw .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sw .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sw .list-group-item.active,

#custom-html-sw .list-group-item.active:focus,

#custom-html-sw .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sw .list-group-item.active .list-group-item-heading,

#custom-html-sw .list-group-item.active .list-group-item-heading > .small,

#custom-html-sw .list-group-item.active .list-group-item-heading > small,

#custom-html-sw .list-group-item.active:focus .list-group-item-heading,

#custom-html-sw .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sw .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sw .list-group-item.active:hover .list-group-item-heading,

#custom-html-sw .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sw .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sw .list-group-item.active .list-group-item-text,

#custom-html-sw .list-group-item.active:focus .list-group-item-text,

#custom-html-sw .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sw .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sw a.list-group-item-success,

#custom-html-sw button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sw a.list-group-item-success .list-group-item-heading,

#custom-html-sw button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sw a.list-group-item-success:focus,

#custom-html-sw a.list-group-item-success:hover,

#custom-html-sw button.list-group-item-success:focus,

#custom-html-sw button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sw a.list-group-item-success.active,

#custom-html-sw a.list-group-item-success.active:focus,

#custom-html-sw a.list-group-item-success.active:hover,

#custom-html-sw button.list-group-item-success.active,

#custom-html-sw button.list-group-item-success.active:focus,

#custom-html-sw button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sw .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sw a.list-group-item-info,

#custom-html-sw button.list-group-item-info {

  color: #31708f;

}

#custom-html-sw a.list-group-item-info .list-group-item-heading,

#custom-html-sw button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sw a.list-group-item-info:focus,

#custom-html-sw a.list-group-item-info:hover,

#custom-html-sw button.list-group-item-info:focus,

#custom-html-sw button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sw a.list-group-item-info.active,

#custom-html-sw a.list-group-item-info.active:focus,

#custom-html-sw a.list-group-item-info.active:hover,

#custom-html-sw button.list-group-item-info.active,

#custom-html-sw button.list-group-item-info.active:focus,

#custom-html-sw button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sw .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sw a.list-group-item-warning,

#custom-html-sw button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sw a.list-group-item-warning .list-group-item-heading,

#custom-html-sw button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sw a.list-group-item-warning:focus,

#custom-html-sw a.list-group-item-warning:hover,

#custom-html-sw button.list-group-item-warning:focus,

#custom-html-sw button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sw a.list-group-item-warning.active,

#custom-html-sw a.list-group-item-warning.active:focus,

#custom-html-sw a.list-group-item-warning.active:hover,

#custom-html-sw button.list-group-item-warning.active,

#custom-html-sw button.list-group-item-warning.active:focus,

#custom-html-sw button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sw .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sw a.list-group-item-danger,

#custom-html-sw button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sw a.list-group-item-danger .list-group-item-heading,

#custom-html-sw button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sw a.list-group-item-danger:focus,

#custom-html-sw a.list-group-item-danger:hover,

#custom-html-sw button.list-group-item-danger:focus,

#custom-html-sw button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sw a.list-group-item-danger.active,

#custom-html-sw a.list-group-item-danger.active:focus,

#custom-html-sw a.list-group-item-danger.active:hover,

#custom-html-sw button.list-group-item-danger.active,

#custom-html-sw button.list-group-item-danger.active:focus,

#custom-html-sw button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sw .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sw .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sw .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sw .panel-body {

  padding: 15px;

}

#custom-html-sw .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sw .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sw .panel-title > .small,

#custom-html-sw .panel-title > .small > a,

#custom-html-sw .panel-title > a,

#custom-html-sw .panel-title > small,

#custom-html-sw .panel-title > small > a {

  color: inherit;

}

#custom-html-sw .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sw .panel > .list-group,

#custom-html-sw .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sw .panel > .list-group .list-group-item,

#custom-html-sw .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sw .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sw .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sw .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sw .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sw .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sw .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sw .panel > .panel-collapse > .table,

#custom-html-sw .panel > .table,

#custom-html-sw .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sw .panel > .panel-collapse > .table caption,

#custom-html-sw .panel > .table caption,

#custom-html-sw .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sw .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sw .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sw .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sw .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sw .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sw .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sw .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sw .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sw .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sw .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sw .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sw .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sw .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sw .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sw .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sw .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sw .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sw .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sw .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sw .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sw .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sw .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sw .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sw .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sw .panel > .panel-body + .table,

#custom-html-sw .panel > .panel-body + .table-responsive,

#custom-html-sw .panel > .table + .panel-body,

#custom-html-sw .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sw .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sw .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sw .panel > .table-bordered,

#custom-html-sw .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sw .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sw .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sw .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sw .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sw .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sw .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sw .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sw .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sw .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sw .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sw .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sw .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sw .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sw .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sw .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sw .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sw .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sw .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sw .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sw .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sw .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sw .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sw .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sw .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sw .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sw .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sw .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sw .panel-group {

  margin-bottom: 20px;

}

#custom-html-sw .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sw .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sw .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sw .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sw .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sw .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sw .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sw .panel-default {

  border-color: #dddddd;

}

#custom-html-sw .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sw .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sw .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sw .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sw .panel-primary {

  border-color: #337ab7;

}

#custom-html-sw .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sw .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sw .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sw .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sw .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sw .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sw .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sw .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sw .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sw .panel-info {

  border-color: #bce8f1;

}

#custom-html-sw .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sw .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sw .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sw .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sw .panel-warning {

  border-color: #faebcc;

}

#custom-html-sw .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sw .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sw .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sw .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-sw .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sw .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sw .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sw .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sw .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sw .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sw .embed-responsive .embed-responsive-item,

#custom-html-sw .embed-responsive embed,

#custom-html-sw .embed-responsive iframe,

#custom-html-sw .embed-responsive object,

#custom-html-sw .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sw .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sw .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sw .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sw .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sw .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sw .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sw .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sw .close:focus,

#custom-html-sw .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sw button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sw .modal-open {

  overflow: hidden;

}

#custom-html-sw .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sw .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sw .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sw .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sw .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sw .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sw .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sw .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sw .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sw .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sw .modal-header .close {

  margin-top: -2px;

}

#custom-html-sw .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sw .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sw .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sw .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sw .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sw .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sw .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-sw .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sw .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sw .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-sw .modal-lg {

    width: 900px;

  }

}

#custom-html-sw .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sw .tooltip.in {

  opacity: 0.9;

}

#custom-html-sw .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sw .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sw .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sw .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sw .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sw .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sw .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sw .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sw .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sw .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sw .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;


  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sw .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sw .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sw .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sw .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sw .popover.top {

  margin-top: -10px;

}

#custom-html-sw .popover.right {

  margin-left: 10px;

}

#custom-html-sw .popover.bottom {

  margin-top: 10px;

}

#custom-html-sw .popover.left {

  margin-left: -10px;

}

#custom-html-sw .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sw .popover-content {

  padding: 9px 14px;

}

#custom-html-sw .popover > .arrow,

#custom-html-sw .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sw .popover > .arrow {

  border-width: 11px;

}

#custom-html-sw .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sw .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sw .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sw .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sw .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sw .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sw .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sw .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sw .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sw .carousel {

  position: relative;

}

#custom-html-sw .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sw .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sw .carousel-inner > .item > a > img,

#custom-html-sw .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sw .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sw .carousel-inner > .item.active.right,

  #custom-html-sw .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sw .carousel-inner > .item.active.left,

  #custom-html-sw .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sw .carousel-inner > .item.active,

  #custom-html-sw .carousel-inner > .item.next.left,

  #custom-html-sw .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sw .carousel-inner > .active,

#custom-html-sw .carousel-inner > .next,

#custom-html-sw .carousel-inner > .prev {

  display: block;

}

#custom-html-sw .carousel-inner > .active {

  left: 0;

}

#custom-html-sw .carousel-inner > .next,

#custom-html-sw .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sw .carousel-inner > .next {

  left: 100%;

}

#custom-html-sw .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sw .carousel-inner > .next.left,

#custom-html-sw .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sw .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sw .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sw .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sw .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sw .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sw .carousel-control:focus,

#custom-html-sw .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sw .carousel-control .glyphicon-chevron-left,

#custom-html-sw .carousel-control .glyphicon-chevron-right,

#custom-html-sw .carousel-control .icon-next,

#custom-html-sw .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sw .carousel-control .glyphicon-chevron-left,

#custom-html-sw .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sw .carousel-control .glyphicon-chevron-right,

#custom-html-sw .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sw .carousel-control .icon-next,

#custom-html-sw .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sw .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sw .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sw .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sw .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-sw .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sw .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sw .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-sw .carousel-control .glyphicon-chevron-left,

  #custom-html-sw .carousel-control .glyphicon-chevron-right,

  #custom-html-sw .carousel-control .icon-next,

  #custom-html-sw .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sw .carousel-control .glyphicon-chevron-left,

  #custom-html-sw .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sw .carousel-control .glyphicon-chevron-right,

  #custom-html-sw .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sw .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sw .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sw .btn-group-vertical > .btn-group:after,

#custom-html-sw .btn-group-vertical > .btn-group:before,

#custom-html-sw .btn-toolbar:after,

#custom-html-sw .btn-toolbar:before,

#custom-html-sw .clearfix:after,

#custom-html-sw .clearfix:before,

#custom-html-sw .container-fluid:after,

#custom-html-sw .container-fluid:before,

#custom-html-sw .container:after,

#custom-html-sw .container:before,

#custom-html-sw .dl-horizontal dd:after,

#custom-html-sw .dl-horizontal dd:before,

#custom-html-sw .form-horizontal .form-group:after,

#custom-html-sw .form-horizontal .form-group:before,

#custom-html-sw .modal-footer:after,

#custom-html-sw .modal-footer:before,

#custom-html-sw .modal-header:after,

#custom-html-sw .modal-header:before,

#custom-html-sw .nav:after,

#custom-html-sw .nav:before,

#custom-html-sw .navbar-collapse:after,

#custom-html-sw .navbar-collapse:before,

#custom-html-sw .navbar-header:after,

#custom-html-sw .navbar-header:before,

#custom-html-sw .navbar:after,

#custom-html-sw .navbar:before,

#custom-html-sw .pager:after,

#custom-html-sw .pager:before,

#custom-html-sw .panel-body:after,

#custom-html-sw .panel-body:before,

#custom-html-sw .row:after,

#custom-html-sw .row:before {

  display: table;

  content: " ";

}

#custom-html-sw .btn-group-vertical > .btn-group:after,

#custom-html-sw .btn-toolbar:after,

#custom-html-sw .clearfix:after,

#custom-html-sw .container-fluid:after,

#custom-html-sw .container:after,

#custom-html-sw .dl-horizontal dd:after,

#custom-html-sw .form-horizontal .form-group:after,

#custom-html-sw .modal-footer:after,

#custom-html-sw .modal-header:after,

#custom-html-sw .nav:after,

#custom-html-sw .navbar-collapse:after,

#custom-html-sw .navbar-header:after,

#custom-html-sw .navbar:after,

#custom-html-sw .pager:after,

#custom-html-sw .panel-body:after,

#custom-html-sw .row:after {

  clear: both;

}

#custom-html-sw .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sw .pull-right {

  float: right !important;

}

#custom-html-sw .pull-left {

  float: left !important;

}

#custom-html-sw .hide {

  display: none !important;

}

#custom-html-sw .show {

  display: block !important;

}

#custom-html-sw .invisible {

  visibility: hidden;

}

#custom-html-sw .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sw .hidden {

  display: none !important;

}

#custom-html-sw .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sw .visible-lg,

#custom-html-sw .visible-md,

#custom-html-sw .visible-sm,

#custom-html-sw .visible-xs {

  display: none !important;

}

#custom-html-sw .visible-lg-block,

#custom-html-sw .visible-lg-inline,

#custom-html-sw .visible-lg-inline-block,

#custom-html-sw .visible-md-block,

#custom-html-sw .visible-md-inline,

#custom-html-sw .visible-md-inline-block,

#custom-html-sw .visible-sm-block,

#custom-html-sw .visible-sm-inline,

#custom-html-sw .visible-sm-inline-block,

#custom-html-sw .visible-xs-block,

#custom-html-sw .visible-xs-inline,

#custom-html-sw .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-sw .visible-xs {

    display: block !important;

  }

  #custom-html-sw table.visible-xs {

    display: table !important;

  }

  #custom-html-sw tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sw td.visible-xs,

  #custom-html-sw th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sw .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sw .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sw .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sw .visible-sm {

    display: block !important;

  }

  #custom-html-sw table.visible-sm {

    display: table !important;

  }

  #custom-html-sw tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sw td.visible-sm,

  #custom-html-sw th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sw .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sw .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sw .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sw .visible-md {

    display: block !important;

  }

  #custom-html-sw table.visible-md {

    display: table !important;

  }

  #custom-html-sw tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sw td.visible-md,

  #custom-html-sw th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sw .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sw .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sw .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sw .visible-lg {

    display: block !important;

  }

  #custom-html-sw table.visible-lg {

    display: table !important;

  }

  #custom-html-sw tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sw td.visible-lg,

  #custom-html-sw th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sw .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sw .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sw .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sw .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sw .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sw .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sw .hidden-lg {

    display: none !important;

  }

}

#custom-html-sw .visible-print {

  display: none !important;

}

@media print {

  #custom-html-sw .visible-print {

    display: block !important;

  }

  #custom-html-sw table.visible-print {

    display: table !important;

  }

  #custom-html-sw tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sw td.visible-print,

  #custom-html-sw th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-sw .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-sw .visible-print-block {

    display: block !important;

  }

}

#custom-html-sw .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-sw .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-sw .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-sw .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-sw .hidden-print {

    display: none !important;

  }

}

#custom-html-sw .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-sw .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sw .intl-tel-input .hide {

  display: none;

}

#custom-html-sw .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sw .intl-tel-input input,

#custom-html-sw .intl-tel-input input[type=tel],

#custom-html-sw .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sw .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sw .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sw .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sw .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sw .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sw .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sw .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sw .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sw .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-sw .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sw .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sw .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sw .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sw .intl-tel-input .country-list .country-name,

#custom-html-sw .intl-tel-input .country-list .dial-code,

#custom-html-sw .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sw .intl-tel-input .country-list .country-name,

#custom-html-sw .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sw .intl-tel-input.allow-dropdown input,

#custom-html-sw .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sw .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sw .intl-tel-input.separate-dial-code input,

#custom-html-sw .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sw .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sw .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sw .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sw .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sw .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sw .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sw .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sw .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sw .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sw .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sw .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sw .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sw .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sw .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sw .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sw .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sw .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sw .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sw .iti-flag {

  width: 20px;

}

#custom-html-sw .iti-flag.be {

  width: 18px;

}

#custom-html-sw .iti-flag.ch {

  width: 15px;

}

#custom-html-sw .iti-flag.mc {

  width: 19px;

}

#custom-html-sw .iti-flag.ne {

  width: 18px;

}

#custom-html-sw .iti-flag.np {

  width: 13px;

}

#custom-html-sw .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sw .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-sw .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sw .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-sw .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sw .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sw .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sw .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sw .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sw .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sw .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sw .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sw .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sw .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sw .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sw .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sw .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sw .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sw .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sw .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sw .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sw .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sw .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sw .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sw .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sw .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sw .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sw .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sw .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sw .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sw .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sw .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sw .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sw .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sw .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sw .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sw .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sw .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sw .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sw .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sw .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sw .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sw .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sw .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sw .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sw .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sw .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-sw .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sw .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sw .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sw .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sw .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sw .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sw .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sw .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sw .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sw .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sw .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sw .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sw .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sw .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sw .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sw .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sw .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sw .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-sw .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sw .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sw .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sw .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sw .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sw .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sw .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sw .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sw .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sw .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sw .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sw .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sw .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sw .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sw .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sw .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sw .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sw .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sw .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sw .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sw .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sw .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sw .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sw .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sw .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sw .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sw .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sw .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sw .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sw .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sw .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sw .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sw .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sw .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sw .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sw .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sw .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sw .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sw .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sw .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sw .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sw .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sw .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sw .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sw .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sw .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sw .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sw .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sw .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sw .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sw .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sw .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sw .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-sw .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sw .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sw .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sw .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sw .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sw .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sw .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sw .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sw .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sw .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sw .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sw .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sw .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sw .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sw .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sw .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sw .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sw .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sw .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sw .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sw .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sw .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sw .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sw .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sw .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sw .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sw .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sw .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sw .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sw .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sw .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sw .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sw .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sw .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sw .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sw .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sw .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sw .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sw .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sw .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sw .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sw .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sw .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sw .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sw .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sw .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sw .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sw .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sw .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sw .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sw .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sw .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sw .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sw .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sw .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sw .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sw .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sw .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-sw .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sw .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sw .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sw .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sw .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sw .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sw .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sw .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sw .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sw .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sw .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sw .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sw .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sw .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sw .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sw .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sw .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sw .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sw .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sw .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sw .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sw .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sw .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sw .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sw .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sw .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sw .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sw .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sw .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sw .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sw .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sw .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sw .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sw .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sw .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sw .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sw .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sw .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sw .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sw .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sw .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sw .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sw .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sw .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sw .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sw .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sw .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sw .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sw .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sw .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sw .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sw .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sw .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sw .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sw .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sw .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sw .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sw .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sw .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sw .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sw .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sw .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sw .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sw .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sw .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sw .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sw .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sw .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sw .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-sw .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sw .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sw .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sw .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sw .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sw .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sw .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sw .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sw .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sw .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sw .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sw .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sw .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sw .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sw .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sw .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sw .iti-flag.np {

  background-color: transparent;

}

#custom-html-sw body,

#custom-html-sw button,

#custom-html-sw input,

#custom-html-sw select,

#custom-html-sw textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sw h1,

#custom-html-sw h2,

#custom-html-sw h3,

#custom-html-sw h4,

#custom-html-sw h5,

#custom-html-sw h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-sw .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sw .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sw .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sw .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-sw .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sw .navbar-main .navbar-nav > .active > a,

#custom-html-sw .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sw .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sw .navbar-main .navbar-nav > .open > a,

#custom-html-sw .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sw .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sw .navbar-main .navbar-nav > li > a:focus,

#custom-html-sw .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sw #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sw .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sw .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-sw .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sw .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-sw .navbar-header {

    float: none;

  }

  #custom-html-sw .navbar-left,

  #custom-html-sw .navbar-right {

    float: none !important;

  }

  #custom-html-sw .navbar-toggle {

    display: block;

  }

  #custom-html-sw .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sw .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sw .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sw .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sw .navbar-nav > li {

    float: none;

  }

  #custom-html-sw .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sw .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-sw .panel {

  font-size: 0.9em;

}

#custom-html-sw .list-group {

  font-size: 0.9em;

}

#custom-html-sw .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-sw .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sw a.list-group-item.active,

#custom-html-sw a.list-group-item.active:focus,

#custom-html-sw a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sw .pagination {

  font-size: 0.8em;

}

#custom-html-sw .pagination > .active > a,

#custom-html-sw .pagination > .active > a:focus,

#custom-html-sw .pagination > .active > a:hover,

#custom-html-sw .pagination > .active > span,

#custom-html-sw .pagination > .active > span:focus,

#custom-html-sw .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sw .dropdown-menu > li > a:focus,

#custom-html-sw .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sw .label {

  border-radius: 0;

}

#custom-html-sw input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sw .list-group-item {

  padding: 7px 15px;

}

#custom-html-sw .panel-body {

  padding: 10px 15px;

}

#custom-html-sw .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sw .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sw .btn {

  overflow: hidden;

}

#custom-html-sw body,

#custom-html-sw html {

  height: 100%;

}

#custom-html-sw body {

  background-color: #f8f8f8;

}

#custom-html-sw h1,

#custom-html-sw h2,

#custom-html-sw h3,

#custom-html-sw h4,

#custom-html-sw h5,

#custom-html-sw h6 {

  font-weight: 400;

}

#custom-html-sw a {

  color: #005588;

}

#custom-html-sw section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sw section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sw section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sw section#header .search {

  margin: 20px 0;

}

#custom-html-sw section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sw section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sw section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sw section#main-content {

  margin-bottom: 60px;

}

#custom-html-sw .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sw section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sw section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sw section#footer {

    line-height: 32px;

  }

}

#custom-html-sw section#footer .back-to-top {

  float: right;

}

#custom-html-sw section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sw .adminreturndiv {

  display: none !important;

}

#custom-html-sw .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sw .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sw .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sw .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sw .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sw .navbar-main .navbar-toggle:focus,

#custom-html-sw .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sw .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sw .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-sw .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sw .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sw .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-sw div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sw div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sw div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sw div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sw div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sw .h1,

  #custom-html-sw h1 {

    font-size: 26px;

  }

  #custom-html-sw .h2,

  #custom-html-sw h2 {

    font-size: 20px;

  }

  #custom-html-sw .h3,

  #custom-html-sw h3 {

    font-size: 16px;

  }

  #custom-html-sw .h4,

  #custom-html-sw h4 {

    font-size: 14px;

  }

  #custom-html-sw .h5,

  #custom-html-sw h5 {

    font-size: 12px;

  }

  #custom-html-sw .h6,

  #custom-html-sw h6 {

    font-size: 11px;

  }

  #custom-html-sw div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-sw .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sw .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sw .margin-10 {

  margin: 10px;

}

#custom-html-sw .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sw .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sw .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sw .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sw .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sw .input-inline {

  display: inline-block;

}

#custom-html-sw .input-inline-100 {

  width: 100px;

}

#custom-html-sw .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-sw .pull-md-left {

    float: left;

  }

  #custom-html-sw .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-sw .pull-sm-left {

    float: left;

  }

  #custom-html-sw .pull-sm-right {

    float: right;

  }

  #custom-html-sw .text-right-sm {

    text-align: right;

  }

}

#custom-html-sw .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sw .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sw .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-sw .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-sw .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-sw .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sw .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sw i.icon-rss {

  color: #ff6600;

}

#custom-html-sw section#main-menu {

  background-color: #000000;

}

#custom-html-sw section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sw section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sw section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sw section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sw section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sw section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sw section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sw section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sw section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sw section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sw section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sw section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-sw section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-sw .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sw .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sw .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sw .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sw .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sw .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sw .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sw .home-shortcuts li span {

  display: none;

}

#custom-html-sw .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sw .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-sw .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-sw .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sw .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sw .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sw .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-sw .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sw .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sw .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sw .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sw .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sw .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sw .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sw .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sw .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sw .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sw .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sw .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sw .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sw .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sw .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sw .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sw .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sw .tiles .tile a {

  text-decoration: none;

}

#custom-html-sw .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sw .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sw .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-sw .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sw .tiles .tile:nth-child(1),

  #custom-html-sw .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-sw .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sw .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sw .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sw .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sw .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sw .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sw .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sw .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sw .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sw .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sw .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sw .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sw .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sw .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sw .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sw .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sw .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sw .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sw .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sw .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sw .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sw .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sw .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sw .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sw .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sw .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sw .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sw .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sw .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sw .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sw .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sw .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sw .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sw .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sw .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sw .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sw .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sw .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sw .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sw .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sw .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sw ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sw ul.top-nav > li,

#custom-html-sw ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sw ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sw ul.top-nav > li:active > a,

#custom-html-sw ul.top-nav > li:focus > a,

#custom-html-sw ul.top-nav > li:hover > a,

#custom-html-sw ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sw ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sw ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sw ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sw ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-sw ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sw ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sw ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-sw ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sw ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sw ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-sw div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sw div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sw div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sw div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sw div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sw div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sw .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sw .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-sw .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-sw .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sw .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-sw .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sw .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sw .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-sw .domain-check-availability {

  width: 100px;

}

#custom-html-sw .domain-step-options {

  min-height: 300px;

}

#custom-html-sw .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sw .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sw .domain-checker-invalid,

#custom-html-sw .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sw div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sw .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sw .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sw .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sw a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sw .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sw .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sw .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sw .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-sw .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sw .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sw .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sw .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sw .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sw .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sw .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sw .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;


}

#custom-html-sw .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sw .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sw .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sw .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sw .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sw .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sw .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sw .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sw .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sw .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sw .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sw .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sw .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sw .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sw div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sw div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sw div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sw .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sw .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sw .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sw .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sw div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sw div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-sw .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sw .product-status-pending {

  background-color: #f89406;

}

#custom-html-sw .product-status-active {

  background-color: #46a546;

}

#custom-html-sw .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sw .product-status-cancelled,

#custom-html-sw .product-status-terminated {

  background-color: #666666;

}

#custom-html-sw .product-status-fraud {

  background-color: #000000;

}

#custom-html-sw .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sw div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sw .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sw .ssl-inactive {

  cursor: pointer;

}

#custom-html-sw .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-sw .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sw .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sw .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sw .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sw .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sw .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sw .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sw .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-sw .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sw .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sw .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sw .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-sw .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sw .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sw .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sw .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sw .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sw .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sw .pagination > li > a,

#custom-html-sw .pagination > li > span {

  color: #444444;

}

#custom-html-sw .pagination > .active > a,

#custom-html-sw .pagination > .active > a:focus,

#custom-html-sw .pagination > .active > a:hover,

#custom-html-sw .pagination > .active > span,

#custom-html-sw .pagination > .active > span:focus,

#custom-html-sw .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sw table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sw .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sw table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sw .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-sw table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sw .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sw .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sw .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sw table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sw table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sw table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sw .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sw .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sw .status-pending {

  color: #d9534f;

}

#custom-html-sw .status-pending.transfer {

  color: #a68500;

}

#custom-html-sw .status-active,

#custom-html-sw .status-completed,

#custom-html-sw .status-open {

  color: #3fad46;

}

#custom-html-sw .status-suspended {

  color: #f0ad4e;

}

#custom-html-sw .status-customer-reply {

  color: #ff6600;

}

#custom-html-sw .status-answered,

#custom-html-sw .status-fraud {

  color: #000000;

}

#custom-html-sw .status-expired,

#custom-html-sw .status-transferred.away {

  color: #004258;

}

#custom-html-sw .status-cancelled {

  color: #9fa29a;

}

#custom-html-sw .status-terminated {

  color: #666666;

}

#custom-html-sw .status-onhold {

  color: #224488;

}

#custom-html-sw .status-inprogress {

  color: #cc0000;

}

#custom-html-sw .status-closed {

  color: #888888;

}

#custom-html-sw .status-paid {

  color: #498302;

}

#custom-html-sw .status-unpaid {

  color: #ed3e48;

}

#custom-html-sw .status-cancelled {

  color: #87939f;

}

#custom-html-sw .status-collections {

  color: #9a141e;

}

#custom-html-sw .status-refunded {

  color: #319fc3;

}

#custom-html-sw .status-customer-reply {

  color: #ff6600;

}

#custom-html-sw .status-delivered {

  color: #224488;

}

#custom-html-sw .status-accepted {

  color: #498302;

}

#custom-html-sw .status-dead,

#custom-html-sw .status-lost {

  color: #000000;

}

#custom-html-sw .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sw .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sw .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sw .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sw .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sw .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sw .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-sw .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-sw .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sw .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sw .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-sw .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sw .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sw .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sw .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sw .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sw .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sw .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sw .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sw .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sw .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sw .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sw .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sw .ticket-reply .rating,

#custom-html-sw .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sw .ticket-reply .rating span.star,

#custom-html-sw .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sw .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sw .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sw .ticket-reply .rating span.star:before,

#custom-html-sw .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sw .ticket-reply .rating span.star:hover:before,

#custom-html-sw .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sw .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sw .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sw .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sw .ticket-reply .clear {

  clear: both;

}

#custom-html-sw .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sw .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sw .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sw .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sw .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sw .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sw .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sw .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sw .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sw .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sw .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sw .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sw .popover-user-notifications ul li i.far,

#custom-html-sw .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sw .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sw .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sw .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sw .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sw .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sw .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sw .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sw .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sw .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sw div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sw div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sw div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sw div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sw div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sw div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sw div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-sw div.credit-card {

    max-width: 250px;

  }

  #custom-html-sw div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sw div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sw div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sw div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sw div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-sw .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sw .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sw .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sw .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sw .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sw .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sw div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sw div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sw div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sw div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sw div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sw div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sw .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-sw .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-sw .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sw .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sw .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sw .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sw .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-sw div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sw div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sw div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sw #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sw .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sw .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sw .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sw .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sw .kb-category a small {

  color: #888888;

}

#custom-html-sw .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sw .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sw .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sw .kbarticles a.admin-inline-edit,

#custom-html-sw .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sw h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sw .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sw .kb-article-title h2 {

  margin: 0;

}

#custom-html-sw .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sw .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sw .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sw .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sw .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sw .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sw .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sw .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sw #stepResults {

  font-size: 20px;

}

#custom-html-sw #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-sw #stepResults {

    font-size: 14px;

  }

  #custom-html-sw #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sw div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-sw #main-menu,

  #custom-html-sw #top-nav,

  #custom-html-sw .header-lined,

  #custom-html-sw .sidebar {

    display: none;

  }

  #custom-html-sw a[href]:after {

    content: "" !important;

  }

}

#custom-html-sw h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sw h3.with-badge i,

#custom-html-sw h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sw h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-sw h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sw .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-sw .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sw .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sw a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sw a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sw .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sw .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sw .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sw .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sw .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sw .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sw .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sw .login-popover {

  font-size: 12px;

}

#custom-html-sw .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sw .login-popover hr {

  margin: 5px 0;

}

#custom-html-sw tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sw tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sw .error-container {

  text-align: center;

}

#custom-html-sw .error-container h1 {

  margin-top: 40px;

}

#custom-html-sw .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sw .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sw .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sw .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sw .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sw #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sw #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sw #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sw .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-sw #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sw #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-sw #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sw #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sw #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sw #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sw .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sw .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sw .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sw .email-verification .btn:active,

#custom-html-sw .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sw .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sw .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sw .email-verification .far,

#custom-html-sw .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-sw .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sw .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sw .email-verification .button {

    float: right;

  }

  #custom-html-sw .email-verification .far,

  #custom-html-sw .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-sw .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sw .email-verification.success .far,

#custom-html-sw .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sw .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sw .email-verification.failed .far,

#custom-html-sw .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sw .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-sw .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sw .md-editor > .md-preview,

#custom-html-sw .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sw div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sw .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sw .small-font {

  font-size: 0.9em;

}

#custom-html-sw .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sw .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sw .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sw .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sw .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sw .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sw .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sw .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sw .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sw .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sw .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sw .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sw .panel-heading i.fab,

#custom-html-sw .panel-heading i.fal,

#custom-html-sw .panel-heading i.far,

#custom-html-sw .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sw .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sw .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sw .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sw .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sw .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sw .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sw .panel-sidebar .list-group-item.disabled,

#custom-html-sw .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sw .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sw .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sw .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sw .panel-sidebar a.list-group-item.active,

#custom-html-sw .panel-sidebar a.list-group-item.active:focus,

#custom-html-sw .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sw .panel-sidebar a.list-group-item.active i,

#custom-html-sw .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sw .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sw .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sw .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sw .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sw .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sw .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sw .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sw .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sw .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sw .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sw .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sw .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sw .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sw .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sw .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-sw .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sw .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-sw .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sw .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sw .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sw .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sw .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sw .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sw .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sw .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sw .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sw .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sw .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sw .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sw .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sw .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-sw .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sw .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sw .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sw .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sw .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sw .promo-banner p {

  margin: 5px 0;

}

#custom-html-sw .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sw .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-sw .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sw .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sw .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sw .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sw .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sw .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sw .promo-banner-slim {

  padding: 10px;

}

#custom-html-sw .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sw .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sw .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sw .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sw .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sw .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sw .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sw .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sw .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sw .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sw .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sw .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sw .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sw .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sw .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sw .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sw .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sw .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sw .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sw .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sw .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sw .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sw .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sw .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sw .panel-mc-sso .btn,

#custom-html-sw .panel-mc-sso .form-control,

#custom-html-sw .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sw .panel-mc-sso small {

  display: block;

}

#custom-html-sw .social-signin-btns {

  text-align: center;

}

#custom-html-sw .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sw .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sw .btn-social i.far,

#custom-html-sw .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-facebook.active,

#custom-html-sw .btn-facebook:active,

#custom-html-sw .btn-facebook:focus,

#custom-html-sw .btn-facebook:hover,

#custom-html-sw .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-facebook.active,

#custom-html-sw .btn-facebook:active,

#custom-html-sw .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sw .btn-facebook.disabled,

#custom-html-sw .btn-facebook.disabled.active,

#custom-html-sw .btn-facebook.disabled:active,

#custom-html-sw .btn-facebook.disabled:focus,

#custom-html-sw .btn-facebook.disabled:hover,

#custom-html-sw .btn-facebook[disabled],

#custom-html-sw .btn-facebook[disabled].active,

#custom-html-sw .btn-facebook[disabled]:active,

#custom-html-sw .btn-facebook[disabled]:focus,

#custom-html-sw .btn-facebook[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-facebook,

#custom-html-sw fieldset[disabled] .btn-facebook.active,

#custom-html-sw fieldset[disabled] .btn-facebook:active,

#custom-html-sw fieldset[disabled] .btn-facebook:focus,

#custom-html-sw fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-google.active,

#custom-html-sw .btn-google:active,

#custom-html-sw .btn-google:focus,

#custom-html-sw .btn-google:hover,

#custom-html-sw .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-google.active,

#custom-html-sw .btn-google:active,

#custom-html-sw .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sw .btn-google-plus.disabled.active,

#custom-html-sw .btn-google-plus.disabled:active,

#custom-html-sw .btn-google-plus.disabled:focus,

#custom-html-sw .btn-google-plus[disabled].active,

#custom-html-sw .btn-google-plus[disabled]:active,

#custom-html-sw .btn-google-plus[disabled]:focus,

#custom-html-sw .btn-google-plus[disabled]:hover,

#custom-html-sw .btn-google.disabled,

#custom-html-sw .btn-google.disabled:hover,

#custom-html-sw .btn-google[disabled],

#custom-html-sw fieldset[disabled] .btn-google,

#custom-html-sw fieldset[disabled] .btn-google-plus.active,

#custom-html-sw fieldset[disabled] .btn-google-plus:active,

#custom-html-sw fieldset[disabled] .btn-google-plus:focus,

#custom-html-sw fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-twitter.active,

#custom-html-sw .btn-twitter:active,

#custom-html-sw .btn-twitter:focus,

#custom-html-sw .btn-twitter:hover,

#custom-html-sw .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .btn-twitter.active,

#custom-html-sw .btn-twitter:active,

#custom-html-sw .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sw .btn-twitter.disabled,

#custom-html-sw .btn-twitter.disabled.active,

#custom-html-sw .btn-twitter.disabled:active,

#custom-html-sw .btn-twitter.disabled:focus,

#custom-html-sw .btn-twitter.disabled:hover,

#custom-html-sw .btn-twitter[disabled],

#custom-html-sw .btn-twitter[disabled].active,

#custom-html-sw .btn-twitter[disabled]:active,

#custom-html-sw .btn-twitter[disabled]:focus,

#custom-html-sw .btn-twitter[disabled]:hover,

#custom-html-sw fieldset[disabled] .btn-twitter,

#custom-html-sw fieldset[disabled] .btn-twitter.active,

#custom-html-sw fieldset[disabled] .btn-twitter:active,

#custom-html-sw fieldset[disabled] .btn-twitter:focus,

#custom-html-sw fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sw .providerPreLinking {

  min-height: 52px;

}

#custom-html-sw .providerLinkingFeedback {

  display: none;

}

#custom-html-sw #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sw #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sw #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sw #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sw .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sw #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sw #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sw #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sw #registration .field,

#custom-html-sw #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sw #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sw #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sw #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sw #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sw #registration textarea.field {

  height: auto;

}

#custom-html-sw #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sw #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sw #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sw #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sw #registration .field[disabled],

#custom-html-sw #registration .field[readonly],

#custom-html-sw #registration .form-control[disabled],

#custom-html-sw #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sw #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-sw .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sw .upgrade .product-to-be-upgraded h4,

#custom-html-sw .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sw .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sw .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sw .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sw .upgrade .products .product .current,

#custom-html-sw .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sw .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sw .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-sw .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-sw .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sw .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sw .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sw .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sw .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sw .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sw .upgrade .products .far,

#custom-html-sw .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sw .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sw .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-sw .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sw .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sw .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sw .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sw .intl-tel-input {

  width: 100%;

}

#custom-html-sw .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sw .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .bootstrap-switch input[type=checkbox],

#custom-html-sw .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sw .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sw .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sw .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sw .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sw .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sw .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sw .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sw .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sw .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sw .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sw .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sw .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-sw .md-editor .md-footer,

#custom-html-sw .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sw .md-editor > .md-header {

  margin: 0;

}

#custom-html-sw .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sw .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sw .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sw .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sw .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sw .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sw .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sw .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-input,

#custom-html-sw .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sw .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sw .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sw .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sw .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sw .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sw .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sw .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sw .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sw .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sw .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sw table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sw table.dataTable td,

#custom-html-sw table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sw table.dataTable td.dataTables_empty,

#custom-html-sw table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sw table.dataTable.nowrap td,

#custom-html-sw table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sw div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sw table.dataTable thead > tr > td.sorting,

#custom-html-sw table.dataTable thead > tr > td.sorting_asc,

#custom-html-sw table.dataTable thead > tr > td.sorting_desc,

#custom-html-sw table.dataTable thead > tr > th.sorting,

#custom-html-sw table.dataTable thead > tr > th.sorting_asc,

#custom-html-sw table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sw table.dataTable thead > tr > td:active,

#custom-html-sw table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sw table.dataTable thead .sorting,

#custom-html-sw table.dataTable thead .sorting_asc,

#custom-html-sw table.dataTable thead .sorting_asc_disabled,

#custom-html-sw table.dataTable thead .sorting_desc,

#custom-html-sw table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sw table.dataTable thead .sorting:after,

#custom-html-sw table.dataTable thead .sorting_asc:after,

#custom-html-sw table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sw table.dataTable thead .sorting_desc:after,

#custom-html-sw table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sw table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sw table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sw table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sw table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sw table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sw div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sw div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sw div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sw div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sw div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sw div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sw div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sw div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-sw div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sw div.dataTables_wrapper div.dataTables_info,

  #custom-html-sw div.dataTables_wrapper div.dataTables_length,

  #custom-html-sw div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-sw table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sw table.dataTable.table-condensed .sorting:after,

#custom-html-sw table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sw table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sw table.table-bordered.dataTable td,

#custom-html-sw table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sw table.table-bordered.dataTable td:last-child,

#custom-html-sw table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sw table.table-bordered.dataTable tbody td,

#custom-html-sw table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sw div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sw div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sw div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-sw div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sw table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sw table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sw table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sw table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sw table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sw table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sw table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sw table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sw table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sw table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sw table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sw table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sw table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sw table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sw table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sw table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sw div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sw div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sw div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sw div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sw div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sw div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-sw div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sw div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sw .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sw .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sw .multiselect-container > li {

  padding: 0;

}

#custom-html-sw .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sw .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sw .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sw .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sw .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sw .multiselect-container > li > a > label.checkbox,

#custom-html-sw .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sw .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sw .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sw .form-inline .multiselect-container label.checkbox,

#custom-html-sw .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sw .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sw .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7xkWn1YM {

  padding-top: 60px;

  padding-bottom: 15px;

  background-image: url("../../../assets/images/31def7b7dc06683c08673b2db3716ee5328f3d2a-restaurant-screens-multiple.webp");

}

.cid-sl7xkWn1YM P {

  color: #767676;

}

.cid-sl7xkWn1YM H1 {

  color: #ffffff;

}

.cid-sl7xkWn1YM .mbr-text,

.cid-sl7xkWn1YM .mbr-section-btn {

  color: #ffffff;

  text-align: left;

}

.cid-sl7xkWn1YM h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3itzLnFN .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3itzLnFN .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3itzLnFN .divider-top::before,

.cid-sF3itzLnFN .divider-bottom::before,

.cid-sF3itzLnFN .divider-top::after,

.cid-sF3itzLnFN .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3itzLnFN .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3itzLnFN .divider-triangles::before {

  top: -50px;

}

.cid-sF3itzLnFN .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3itzLnFN .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3itzLnFN .divider-multitriangles::before,

.cid-sF3itzLnFN .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3itzLnFN .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-rRbRWaKfWC {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-rRbRWaKfWC .mbr-section-subtitle {

  color: #767676;

}

.cid-rRbRWaKfWC H2 {

  color: #000000;

}

.cid-rRbSyUNFEM .modal-body .close {

  background: #1b1b1b;

}

.cid-rRbSyUNFEM .modal-body .close span {

  font-style: normal;

}

.cid-rRbSyUNFEM .carousel-inner > .active,

.cid-rRbSyUNFEM .carousel-inner > .next,

.cid-rRbSyUNFEM .carousel-inner > .prev {

  display: table;

}

.cid-rRbSyUNFEM .carousel-control .icon-next,

.cid-rRbSyUNFEM .carousel-control .icon-prev {

  margin-top: -18px;

  font-size: 40px;

  line-height: 27px;

}

.cid-rRbSyUNFEM .carousel-control:hover {

  background: #1b1b1b;

  color: #fff;

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-rRbSyUNFEM .container .carousel-control {

    margin-bottom: 0;

  }

}

.cid-rRbSyUNFEM .boxed-slider {

  position: relative;

  padding: 93px 0;

}

.cid-rRbSyUNFEM .boxed-slider > div {

  position: relative;

}

.cid-rRbSyUNFEM .container img {

  width: 100%;

}

.cid-rRbSyUNFEM .container img + .row {

  position: absolute;

  top: 50%;

  left: 0;

  right: 0;

  -webkit-transform: translateY(-50%);

  -moz-transform: translateY(-50%);

  transform: translateY(-50%);

  z-index: 2;

}

.cid-rRbSyUNFEM .mbr-section {

  padding: 0;

  background-attachment: scroll;

}

.cid-rRbSyUNFEM .mbr-table-cell {

  padding: 0;

}

.cid-rRbSyUNFEM .container .carousel-indicators {

  margin-bottom: 3px;

}

.cid-rRbSyUNFEM .carousel-caption {

  top: 50%;

  right: 0;

  bottom: auto;

  left: 0;

  display: -webkit-flex;

  align-items: center;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

  -webkit-align-items: center;

}

.cid-rRbSyUNFEM .mbr-overlay {

  z-index: 1;

}

.cid-rRbSyUNFEM .container-slide.container {

  min-width: 100%;

  min-height: 100vh;

  padding: 0;

}

.cid-rRbSyUNFEM .carousel-item {

  background-position: 50% 50%;

  background-repeat: no-repeat;

  background-size: cover;

  -o-transition: -o-transform 0.6s ease-in-out;

  -webkit-transition: -webkit-transform 0.6s ease-in-out;

  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;

  -webkit-backface-visibility: hidden;

  backface-visibility: hidden;

  -webkit-perspective: 1000px;

  perspective: 1000px;

}

@media (max-width: 576px) {

  .cid-rRbSyUNFEM .carousel-item .container {

    width: 100%;

  }

}

.cid-rRbSyUNFEM .carousel-item-next.carousel-item-left,

.cid-rRbSyUNFEM .carousel-item-prev.carousel-item-right {

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

.cid-rRbSyUNFEM .active.carousel-item-right,

.cid-rRbSyUNFEM .carousel-item-next {

  -webkit-transform: translate3d(100%, 0, 0);

  transform: translate3d(100%, 0, 0);

}

.cid-rRbSyUNFEM .active.carousel-item-left,

.cid-rRbSyUNFEM .carousel-item-prev {

  -webkit-transform: translate3d(-100%, 0, 0);

  transform: translate3d(-100%, 0, 0);

}

.cid-rRbSyUNFEM .mbr-slider .carousel-control {

  top: 50%;

  width: 70px;

  height: 70px;

  margin-top: -1.5rem;

  font-size: 35px;

  background-color: rgba(0, 0, 0, 0.5);

  border: 2px solid #fff;

  border-radius: 50%;

  transition: all .3s;

}

.cid-rRbSyUNFEM .mbr-slider .carousel-control.carousel-control-prev {

  left: 0;

  margin-left: 2.5rem;

}

.cid-rRbSyUNFEM .mbr-slider .carousel-control.carousel-control-next {

  right: 0;

  margin-right: 2.5rem;

}

.cid-rRbSyUNFEM .mbr-slider .carousel-control .mbr-iconfont {

  font-size: 2rem;

}

@media (max-width: 767px) {

  .cid-rRbSyUNFEM .mbr-slider .carousel-control {

    top: auto;

    bottom: 1rem;

  }

}

.cid-rRbSyUNFEM .mbr-slider .carousel-indicators {

  position: absolute;

  bottom: 0;

  margin-bottom: 1.5rem !important;

}

.cid-rRbSyUNFEM .mbr-slider .carousel-indicators li {

  max-width: 20px;

  width: 20px;

  height: 20px;

  max-height: 20px;

  margin: 3px;

  background-color: rgba(0, 0, 0, 0.5);

  border: 2px solid #fff;

  border-radius: 50%;

  opacity: .5;

  transition: all .3s;

}

.cid-rRbSyUNFEM .mbr-slider .carousel-indicators li.active,

.cid-rRbSyUNFEM .mbr-slider .carousel-indicators li:hover {

  opacity: .9;

}

.cid-rRbSyUNFEM .mbr-slider .carousel-indicators li::after,

.cid-rRbSyUNFEM .mbr-slider .carousel-indicators li::before {

  content: none;

}

.cid-rRbSyUNFEM .mbr-slider .carousel-indicators.ie-fix {

  left: 50%;

  display: block;

  width: 60%;

  margin-left: -30%;

  text-align: center;

}

@media (max-width: 576px) {

  .cid-rRbSyUNFEM .mbr-slider .carousel-indicators {

    display: none !important;

  }

}

.cid-rRbSyUNFEM .mbr-slider > .container img {

  width: 100%;

}

.cid-rRbSyUNFEM .mbr-slider > .container img + .row {

  position: absolute;

  top: 50%;

  right: 0;

  left: 0;

  z-index: 2;

  -moz-transform: translateY(-50%);

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

}

.cid-rRbSyUNFEM .mbr-slider > .container .carousel-indicators {

  margin-bottom: 3px;

}

@media (max-width: 576px) {

  .cid-rRbSyUNFEM .mbr-slider > .container .carousel-control {

    margin-bottom: 0;

  }

}

.cid-rRbSyUNFEM .mbr-slider .mbr-section {

  padding: 0;

  background-attachment: scroll;

}

.cid-rRbSyUNFEM .mbr-slider .mbr-table-cell {

  padding: 0;

}

.cid-rRbSyUNFEM .carousel-item .container.container-slide {

  position: initial;

  width: auto;

  min-height: 0;

}

.cid-rRbSyUNFEM .full-screen .slider-fullscreen-image {

  min-height: 100vh;

  background-repeat: no-repeat;

  background-position: 50% 50%;

  background-size: cover;

}

.cid-rRbSyUNFEM .full-screen .slider-fullscreen-image.active {

  display: -o-flex;

}

.cid-rRbSyUNFEM .full-screen .container {

  width: auto;

  padding-right: 0;

  padding-left: 0;

}

.cid-rRbSyUNFEM .full-screen .carousel-item .container.container-slide {

  width: 100%;

  min-height: 100vh;

  padding: 0;

}

.cid-rRbSyUNFEM .full-screen .carousel-item .container.container-slide img {

  display: none;

}

.cid-rRbSyUNFEM .mbr-background-video-preview {

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

}

.cid-rRbSyUNFEM .mbr-overlay ~ .container-slide {

  z-index: auto;

}

.cid-rRbSyUNFEM P {

  color: #ffffff;

  text-align: left;

}

.cid-rRbSyUNFEM H2 {

  text-align: left;

}

.cid-sF3jQu7zld .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3jQu7zld .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3jQu7zld .divider-top::before,

.cid-sF3jQu7zld .divider-bottom::before,

.cid-sF3jQu7zld .divider-top::after,

.cid-sF3jQu7zld .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3jQu7zld .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3jQu7zld .divider-triangles::before {

  top: -50px;

}

.cid-sF3jQu7zld .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3jQu7zld .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3jQu7zld .divider-multitriangles::before,

.cid-sF3jQu7zld .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3jQu7zld .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-rRbRsYKtvx {

  padding-top: 15px;

  padding-bottom: 0px;

  background-color: #efefef;

}

.cid-rRbRsYKtvx .mbr-section-subtitle {

  color: #767676;

}

.cid-rRbRsYKtvx H2 {

  color: #000000;

}

.cid-rRbFrt2gbG .modal-body .close {

  background: #1b1b1b;

}

.cid-rRbFrt2gbG .modal-body .close span {

  font-style: normal;

}

.cid-rRbFrt2gbG .carousel-inner > .active,

.cid-rRbFrt2gbG .carousel-inner > .next,

.cid-rRbFrt2gbG .carousel-inner > .prev {

  display: table;

}

.cid-rRbFrt2gbG .carousel-control .icon-next,

.cid-rRbFrt2gbG .carousel-control .icon-prev {

  margin-top: -18px;

  font-size: 40px;

  line-height: 27px;

}

.cid-rRbFrt2gbG .carousel-control:hover {

  background: #1b1b1b;

  color: #fff;

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-rRbFrt2gbG .container .carousel-control {

    margin-bottom: 0;

  }

}

.cid-rRbFrt2gbG .boxed-slider {

  position: relative;

  padding: 93px 0;

}

.cid-rRbFrt2gbG .boxed-slider > div {

  position: relative;

}

.cid-rRbFrt2gbG .container img {

  width: 100%;

}

.cid-rRbFrt2gbG .container img + .row {

  position: absolute;

  top: 50%;

  left: 0;

  right: 0;

  -webkit-transform: translateY(-50%);

  -moz-transform: translateY(-50%);

  transform: translateY(-50%);

  z-index: 2;

}

.cid-rRbFrt2gbG .mbr-section {

  padding: 0;

  background-attachment: scroll;

}

.cid-rRbFrt2gbG .mbr-table-cell {

  padding: 0;

}

.cid-rRbFrt2gbG .container .carousel-indicators {

  margin-bottom: 3px;

}

.cid-rRbFrt2gbG .carousel-caption {

  top: 50%;

  right: 0;

  bottom: auto;

  left: 0;

  display: flex;

  align-items: center;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

}

.cid-rRbFrt2gbG .mbr-overlay {

  z-index: 1;

}

.cid-rRbFrt2gbG .container-slide.container {

  min-width: 100%;

  min-height: 100vh;

  padding: 0;

}

.cid-rRbFrt2gbG .carousel-item {

  background-position: 50% 50%;

  background-repeat: no-repeat;

  background-size: cover;

  -o-transition: -o-transform 0.6s ease-in-out;

  -webkit-transition: -webkit-transform 0.6s ease-in-out;

  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;

  -webkit-backface-visibility: hidden;

  backface-visibility: hidden;

  -webkit-perspective: 1000px;

  perspective: 1000px;

}

@media (max-width: 576px) {

  .cid-rRbFrt2gbG .carousel-item .container {

    width: 100%;

  }

}

.cid-rRbFrt2gbG .carousel-item-next.carousel-item-left,

.cid-rRbFrt2gbG .carousel-item-prev.carousel-item-right {

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

.cid-rRbFrt2gbG .active.carousel-item-right,

.cid-rRbFrt2gbG .carousel-item-next {

  -webkit-transform: translate3d(100%, 0, 0);

  transform: translate3d(100%, 0, 0);

}

.cid-rRbFrt2gbG .active.carousel-item-left,

.cid-rRbFrt2gbG .carousel-item-prev {

  -webkit-transform: translate3d(-100%, 0, 0);

  transform: translate3d(-100%, 0, 0);

}

.cid-rRbFrt2gbG .mbr-slider .carousel-control {

  top: 50%;

  width: 70px;

  height: 70px;

  margin-top: -1.5rem;

  font-size: 35px;

  background-color: rgba(0, 0, 0, 0.5);

  border: 2px solid #fff;

  border-radius: 50%;

  transition: all .3s;

}

.cid-rRbFrt2gbG .mbr-slider .carousel-control.carousel-control-prev {

  left: 0;

  margin-left: 2.5rem;

}

.cid-rRbFrt2gbG .mbr-slider .carousel-control.carousel-control-next {

  right: 0;

  margin-right: 2.5rem;

}

.cid-rRbFrt2gbG .mbr-slider .carousel-control .mbr-iconfont {

  font-size: 2rem;

}

@media (max-width: 767px) {

  .cid-rRbFrt2gbG .mbr-slider .carousel-control {

    top: auto;

    bottom: 1rem;

  }

}

.cid-rRbFrt2gbG .mbr-slider .carousel-indicators {

  position: absolute;

  bottom: 0;

  margin-bottom: 1.5rem !important;

}

.cid-rRbFrt2gbG .mbr-slider .carousel-indicators li {

  max-width: 20px;

  width: 20px;

  height: 20px;

  max-height: 20px;

  margin: 3px;

  background-color: rgba(0, 0, 0, 0.5);

  border: 2px solid #fff;

  border-radius: 50%;

  opacity: .5;

  transition: all .3s;

}

.cid-rRbFrt2gbG .mbr-slider .carousel-indicators li.active,

.cid-rRbFrt2gbG .mbr-slider .carousel-indicators li:hover {

  opacity: .9;

}

.cid-rRbFrt2gbG .mbr-slider .carousel-indicators li::after,

.cid-rRbFrt2gbG .mbr-slider .carousel-indicators li::before {

  content: none;

}

.cid-rRbFrt2gbG .mbr-slider .carousel-indicators.ie-fix {

  left: 50%;

  display: block;

  width: 60%;

  margin-left: -30%;

  text-align: center;

}

@media (max-width: 576px) {

  .cid-rRbFrt2gbG .mbr-slider .carousel-indicators {

    display: none !important;

  }

}

.cid-rRbFrt2gbG .mbr-slider > .container img {

  width: 100%;

}

.cid-rRbFrt2gbG .mbr-slider > .container img + .row {

  position: absolute;

  top: 50%;

  right: 0;

  left: 0;

  z-index: 2;

  -moz-transform: translateY(-50%);

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

}

.cid-rRbFrt2gbG .mbr-slider > .container .carousel-indicators {

  margin-bottom: 3px;

}

@media (max-width: 576px) {

  .cid-rRbFrt2gbG .mbr-slider > .container .carousel-control {

    margin-bottom: 0;

  }

}

.cid-rRbFrt2gbG .mbr-slider .mbr-section {

  padding: 0;

  background-attachment: scroll;

}

.cid-rRbFrt2gbG .mbr-slider .mbr-table-cell {

  padding: 0;

}

.cid-rRbFrt2gbG .carousel-item .container.container-slide {

  position: initial;

  width: auto;

  min-height: 0;

}

.cid-rRbFrt2gbG .full-screen .slider-fullscreen-image {

  min-height: 100vh;

  background-repeat: no-repeat;

  background-position: 50% 50%;

  background-size: cover;

}

.cid-rRbFrt2gbG .full-screen .slider-fullscreen-image.active {

  display: -o-flex;

}

.cid-rRbFrt2gbG .full-screen .container {

  width: auto;

  padding-right: 0;

  padding-left: 0;

}

.cid-rRbFrt2gbG .full-screen .carousel-item .container.container-slide {

  width: 100%;

  min-height: 100vh;

  padding: 0;

}

.cid-rRbFrt2gbG .full-screen .carousel-item .container.container-slide img {

  display: none;

}

.cid-rRbFrt2gbG .mbr-background-video-preview {

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

}

.cid-rRbFrt2gbG .mbr-overlay ~ .container-slide {

  z-index: auto;

}

.cid-sF3j3vHGLW .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3j3vHGLW .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3j3vHGLW .divider-top::before,

.cid-sF3j3vHGLW .divider-bottom::before,

.cid-sF3j3vHGLW .divider-top::after,

.cid-sF3j3vHGLW .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3j3vHGLW .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3j3vHGLW .divider-triangles::before {

  top: -50px;

}

.cid-sF3j3vHGLW .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3j3vHGLW .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3j3vHGLW .divider-multitriangles::before,

.cid-sF3j3vHGLW .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3j3vHGLW .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-rRbGDoMt22 {

  padding-top: 90px;

  padding-bottom: 90px;

  background-color: #ffffff;

}

.cid-rRbGDoMt22 .mbr-figure {

  margin: 0 auto;

  width: 100%;

  display: -webkit-flex;

  justify-content: center;

  -webkit-justify-content: center;

}

.cid-rRbGDoMt22 .mbr-figure img {

  height: 100%;

  margin: 0 auto;

}

@media (max-width: 991px) {

  .cid-rRbGDoMt22 .mbr-figure img {

    width: 100% !important;

  }

}

.cid-rRbGDoMt22 H1 {

  color: #000000;

}

.cid-rRbGDoMt22 .mbr-text,

.cid-rRbGDoMt22 .mbr-section-btn {

  color: #000000;

  text-align: left;

}

.cid-sF3jhntO2r .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3jhntO2r .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3jhntO2r .divider-top::before,

.cid-sF3jhntO2r .divider-bottom::before,

.cid-sF3jhntO2r .divider-top::after,

.cid-sF3jhntO2r .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3jhntO2r .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3jhntO2r .divider-triangles::before {

  top: -50px;

}

.cid-sF3jhntO2r .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3jhntO2r .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3jhntO2r .divider-multitriangles::before,

.cid-sF3jhntO2r .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3jhntO2r .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-rRbMSxmWfU {

  padding-top: 0px;

  padding-bottom: 0px;

  background: linear-gradient(45deg, #efefef, #efefef);

}

.cid-rRbMSxmWfU .list-group-item {

  padding: .75rem 3.25rem;

}

.cid-rRbMSxmWfU .plan {

  word-break: break-word;

  position: relative;

  max-width: 300px;

  padding-right: 0;

  padding-left: 0;

  color: #767676;

}

.cid-rRbMSxmWfU .plan .list-group-item {

  position: relative;

  -webkit-justify-content: center;

  justify-content: center;

  border: 0;

}

.cid-rRbMSxmWfU .plan .list-group-item::after {

  position: absolute;

  bottom: 0;

  left: 20%;

  width: 60%;

  height: 2px;

  content: "";

  background-color: #eaeaea;

}

.cid-rRbMSxmWfU .plan .list-group-item:last-child::after {

  display: none;

}

.cid-rRbMSxmWfU .plan-header {

  padding-left: 1rem;

  padding-right: 1rem;

}

.cid-rRbMSxmWfU .plan-header,

.cid-rRbMSxmWfU .plan-body {

  background-color: #fff;

}

.cid-rRbMSxmWfU .price-figure {

  font-weight: 700;

  color: #232323;

}

.cid-rRbMSxmWfU .price-value {

  font-weight: 700;

  vertical-align: top;

}

@media (max-width: 550px) {

  .cid-rRbMSxmWfU .price-figure {

    font-size: 4.25rem;

  }

}

.cid-rRbMSxmWfU UL {

  text-align: left;

}

.cid-sF3jvzibMe .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3jvzibMe .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3jvzibMe .divider-top::before,

.cid-sF3jvzibMe .divider-bottom::before,

.cid-sF3jvzibMe .divider-top::after,

.cid-sF3jvzibMe .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3jvzibMe .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3jvzibMe .divider-triangles::before {

  top: -50px;

}

.cid-sF3jvzibMe .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3jvzibMe .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3jvzibMe .divider-multitriangles::before,

.cid-sF3jvzibMe .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3jvzibMe .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-rRbJ0BOJrQ {

  padding-top: 75px;

  padding-bottom: 30px;

  background-color: #ffffff;

}

.cid-rRbJ0BOJrQ .mbr-overlay {

  background-color: #ffffff;

  opacity: 0.4;

}

.cid-rRbJ0BOJrQ H4 {

  color: #000000;

}

.cid-rRbJ0BOJrQ P {

  color: #000000;

}

.cid-sF3jEOxkQX .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3jEOxkQX .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3jEOxkQX .divider-top::before,

.cid-sF3jEOxkQX .divider-bottom::before,

.cid-sF3jEOxkQX .divider-top::after,

.cid-sF3jEOxkQX .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3jEOxkQX .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3jEOxkQX .divider-triangles::before {

  top: -50px;

}

.cid-sF3jEOxkQX .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3jEOxkQX .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3jEOxkQX .divider-multitriangles::before,

.cid-sF3jEOxkQX .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3jEOxkQX .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-s889GDzyIE {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s889GDzyIE h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s889GDzyIE p {

  color: #767676;

  text-align: left;

}

.cid-s889GDzyIE .card-box {

  padding-top: 2rem;

}

.cid-s889GDzyIE .card-wrapper {

  height: 100%;

}

.cid-svDzCArZLi {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDzCArZLi .content {

    text-align: center;

  }

  .cid-svDzCArZLi .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDzCArZLi .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDzCArZLi .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDzCArZLi .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDzCArZLi .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDzCArZLi .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDzCArZLi .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDzCArZLi .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDzCArZLi .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDzCArZLi .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDzCArZLi .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDzCArZLi .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDzCArZLi .copyright > p {

  text-align: left;

}

.cid-svDzCArZLi H5 {

  color: #000000;

}

.cid-svGGDXHxK3 .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGGDXHxK3 .my-float {

  margin-top: 16px;

}

.cid-svGGDXHxK3 P {

  color: #232323;

}

.cid-svGGDXHxK3 DIV {

  color: #ffffff;

}

.cid-svGGDXHxK3 H10 {

  color: #767676;

}

.cid-svGGDXHxK3 .hidden {

  display: none;

}

#custom-html-t1 {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-t1 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t1 body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-t1 article,

#custom-html-t1 aside,

#custom-html-t1 details,

#custom-html-t1 figcaption,

#custom-html-t1 figure,

#custom-html-t1 footer,

#custom-html-t1 header,

#custom-html-t1 hgroup,

#custom-html-t1 main,

#custom-html-t1 menu,

#custom-html-t1 nav,

#custom-html-t1 section,

#custom-html-t1 summary {

  display: block;

}

#custom-html-t1 audio,

#custom-html-t1 canvas,

#custom-html-t1 progress,

#custom-html-t1 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t1 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t1 [hidden],

#custom-html-t1 template {

  display: none;

}

#custom-html-t1 a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-t1 a:active,

#custom-html-t1 a:hover {

  outline: 0;

}

#custom-html-t1 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t1 b,

#custom-html-t1 strong {

  font-weight: 700;

}

#custom-html-t1 dfn {

  font-style: italic;

}

#custom-html-t1 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t1 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t1 small {

  font-size: 80%;

}

#custom-html-t1 sub,

#custom-html-t1 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t1 sup {

  top: -0.5em;

}

#custom-html-t1 sub {

  bottom: -0.25em;

}

#custom-html-t1 img {

  border: 0;

  vertical-align: middle;

}

#custom-html-t1 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t1 figure {

  margin: 0;

}

#custom-html-t1 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t1 pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t1 code,

#custom-html-t1 kbd,

#custom-html-t1 pre,

#custom-html-t1 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-t1 button,

#custom-html-t1 input,

#custom-html-t1 optgroup,

#custom-html-t1 select,

#custom-html-t1 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t1 button {

  overflow: visible;

}

#custom-html-t1 button,

#custom-html-t1 select {

  text-transform: none;

}

#custom-html-t1 button,

#custom-html-t1 html input[type=button],

#custom-html-t1 input[type=reset],

#custom-html-t1 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t1 button[disabled],

#custom-html-t1 html input[disabled] {

  cursor: default;

}

#custom-html-t1 button::-moz-focus-inner,

#custom-html-t1 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t1 input {

  line-height: normal;

}

#custom-html-t1 input[type=checkbox],

#custom-html-t1 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t1 input[type=number]::-webkit-inner-spin-button,

#custom-html-t1 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t1 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-t1 input[type=search]::-webkit-search-cancel-button,

#custom-html-t1 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t1 fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-t1 legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t1 textarea {

  overflow: auto;

}

#custom-html-t1 optgroup {

  font-weight: 700;

}

#custom-html-t1 table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-t1 td,

#custom-html-t1 th {

  padding: 0;

}

@media print {

  #custom-html-t1 *,

  #custom-html-t1 :after,

  #custom-html-t1 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t1 a,

  #custom-html-t1 a:visited {

    text-decoration: underline;

  }

  #custom-html-t1 a[href]:after {

    content: "" !important;

  }

  #custom-html-t1 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t1 a[href^="#"]:after,

  #custom-html-t1 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t1 blockquote,

  #custom-html-t1 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t1 thead {

    display: table-header-group;

  }

  #custom-html-t1 img,

  #custom-html-t1 tr {

    page-break-inside: avoid;

  }

  #custom-html-t1 img {

    max-width: 100% !important;

  }

  #custom-html-t1 h2,

  #custom-html-t1 h3,

  #custom-html-t1 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t1 h2,

  #custom-html-t1 h3 {

    page-break-after: avoid;

  }

  #custom-html-t1 .navbar {

    display: none;

  }

  #custom-html-t1 .btn > .caret,

  #custom-html-t1 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t1 .label {

    border: 1px solid #000000;

  }

  #custom-html-t1 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t1 .table td,

  #custom-html-t1 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t1 .table-bordered td,

  #custom-html-t1 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-t1 .visible-print {

    display: block !important;

  }

  #custom-html-t1 table.visible-print {

    display: table !important;

  }

  #custom-html-t1 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t1 td.visible-print,

  #custom-html-t1 th.visible-print {

    display: table-cell !important;

  }

  #custom-html-t1 .visible-print-block {

    display: block !important;

  }

  #custom-html-t1 .visible-print-inline {

    display: inline !important;

  }

  #custom-html-t1 .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-t1 .hidden-print {

    display: none !important;

  }

  #custom-html-t1 #main-menu,

  #custom-html-t1 #top-nav,

  #custom-html-t1 .header-lined,

  #custom-html-t1 .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t1 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t1 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t1 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t1 .glyphicon-eur:before,

#custom-html-t1 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t1 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t1 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t1 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t1 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t1 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t1 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t1 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t1 .glyphicon-heart:before {


  content: "\e005";

}

#custom-html-t1 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t1 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t1 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t1 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t1 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t1 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t1 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t1 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t1 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t1 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t1 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t1 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t1 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t1 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t1 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t1 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t1 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t1 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t1 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t1 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t1 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t1 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t1 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t1 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t1 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t1 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t1 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t1 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t1 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t1 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t1 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t1 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t1 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t1 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t1 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t1 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t1 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t1 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t1 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t1 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t1 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t1 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t1 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t1 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t1 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t1 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t1 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t1 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t1 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t1 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t1 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t1 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t1 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t1 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t1 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t1 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t1 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t1 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t1 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t1 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t1 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t1 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t1 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t1 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t1 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t1 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t1 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t1 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t1 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t1 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t1 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t1 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t1 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t1 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t1 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t1 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t1 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t1 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t1 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t1 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t1 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t1 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t1 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t1 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t1 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t1 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t1 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t1 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t1 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t1 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t1 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t1 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t1 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t1 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t1 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t1 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t1 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t1 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t1 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t1 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t1 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t1 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t1 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t1 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t1 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t1 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t1 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t1 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t1 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t1 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t1 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t1 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t1 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-t1 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t1 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t1 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t1 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t1 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t1 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t1 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t1 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t1 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t1 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t1 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t1 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t1 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t1 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t1 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t1 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t1 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t1 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t1 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t1 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t1 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t1 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t1 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t1 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t1 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t1 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t1 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t1 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t1 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t1 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-t1 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t1 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t1 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t1 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t1 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t1 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t1 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t1 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t1 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t1 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t1 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t1 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t1 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t1 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t1 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t1 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t1 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t1 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t1 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t1 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t1 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t1 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t1 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t1 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t1 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t1 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t1 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t1 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t1 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t1 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t1 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t1 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t1 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t1 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t1 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t1 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t1 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t1 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t1 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t1 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t1 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t1 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t1 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t1 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t1 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t1 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t1 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t1 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t1 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t1 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t1 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t1 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t1 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t1 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t1 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t1 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t1 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t1 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t1 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t1 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t1 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t1 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t1 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t1 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t1 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t1 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t1 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-t1 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t1 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t1 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t1 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t1 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t1 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t1 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t1 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t1 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t1 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t1 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t1 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t1 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t1 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t1 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t1 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t1 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t1 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t1 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t1 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t1 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t1 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t1 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t1 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t1 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t1 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t1 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t1 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t1 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t1 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t1 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t1 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t1 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t1 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t1 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t1 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t1 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t1 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t1 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t1 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t1 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t1 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t1 :after,

#custom-html-t1 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t1 button,

#custom-html-t1 input,

#custom-html-t1 select,

#custom-html-t1 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t1 a:focus,

#custom-html-t1 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t1 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t1 .carousel-inner > .item > a > img,

#custom-html-t1 .carousel-inner > .item > img,

#custom-html-t1 .img-responsive,

#custom-html-t1 .thumbnail a > img,

#custom-html-t1 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t1 .img-rounded {

  border-radius: 6px;

}

#custom-html-t1 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t1 .img-circle {

  border-radius: 50%;

}

#custom-html-t1 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t1 .sr-only-focusable:active,

#custom-html-t1 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t1 [role=button] {

  cursor: pointer;

}

#custom-html-t1 .h1,

#custom-html-t1 .h2,

#custom-html-t1 .h3,

#custom-html-t1 .h4,

#custom-html-t1 .h5,

#custom-html-t1 .h6,

#custom-html-t1 h1,

#custom-html-t1 h2,

#custom-html-t1 h3,

#custom-html-t1 h4,

#custom-html-t1 h5,

#custom-html-t1 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t1 .h1 .small,

#custom-html-t1 .h1 small,

#custom-html-t1 .h2 .small,

#custom-html-t1 .h2 small,

#custom-html-t1 .h3 .small,

#custom-html-t1 .h3 small,

#custom-html-t1 .h4 .small,

#custom-html-t1 .h4 small,

#custom-html-t1 .h5 .small,

#custom-html-t1 .h5 small,

#custom-html-t1 .h6 .small,

#custom-html-t1 .h6 small,

#custom-html-t1 h1 .small,

#custom-html-t1 h1 small,

#custom-html-t1 h2 .small,

#custom-html-t1 h2 small,

#custom-html-t1 h3 .small,

#custom-html-t1 h3 small,

#custom-html-t1 h4 .small,

#custom-html-t1 h4 small,

#custom-html-t1 h5 .small,

#custom-html-t1 h5 small,

#custom-html-t1 h6 .small,

#custom-html-t1 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t1 .h1,

#custom-html-t1 .h2,

#custom-html-t1 .h3,

#custom-html-t1 h1,

#custom-html-t1 h2,

#custom-html-t1 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t1 .h1 .small,

#custom-html-t1 .h1 small,

#custom-html-t1 .h2 .small,

#custom-html-t1 .h2 small,

#custom-html-t1 .h3 .small,

#custom-html-t1 .h3 small,

#custom-html-t1 h1 .small,

#custom-html-t1 h1 small,

#custom-html-t1 h2 .small,

#custom-html-t1 h2 small,

#custom-html-t1 h3 .small,

#custom-html-t1 h3 small {

  font-size: 65%;

}

#custom-html-t1 .h4,

#custom-html-t1 .h5,

#custom-html-t1 .h6,

#custom-html-t1 h4,

#custom-html-t1 h5,

#custom-html-t1 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t1 .h4 .small,

#custom-html-t1 .h4 small,

#custom-html-t1 .h5 .small,

#custom-html-t1 .h5 small,

#custom-html-t1 .h6 .small,

#custom-html-t1 .h6 small,

#custom-html-t1 h4 .small,

#custom-html-t1 h4 small,

#custom-html-t1 h5 .small,

#custom-html-t1 h5 small,

#custom-html-t1 h6 .small,

#custom-html-t1 h6 small {

  font-size: 75%;

}

#custom-html-t1 .h1,

#custom-html-t1 h1 {

  font-size: 36px;

}

#custom-html-t1 .h2,

#custom-html-t1 h2 {

  font-size: 30px;

}

#custom-html-t1 .h3,

#custom-html-t1 h3 {

  font-size: 24px;

}

#custom-html-t1 .h4,

#custom-html-t1 h4 {

  font-size: 18px;

}

#custom-html-t1 .h5,

#custom-html-t1 h5 {

  font-size: 14px;

}

#custom-html-t1 .h6,

#custom-html-t1 h6 {

  font-size: 12px;

}

#custom-html-t1 p {

  margin: 0 0 10px;

}

#custom-html-t1 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t1 .lead {

    font-size: 21px;

  }

  #custom-html-t1 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t1 .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-t1 .container {

    width: 750px;

  }

  #custom-html-t1 .col-sm-1,

  #custom-html-t1 .col-sm-10,

  #custom-html-t1 .col-sm-11,

  #custom-html-t1 .col-sm-12,

  #custom-html-t1 .col-sm-2,

  #custom-html-t1 .col-sm-3,

  #custom-html-t1 .col-sm-4,

  #custom-html-t1 .col-sm-5,

  #custom-html-t1 .col-sm-6,

  #custom-html-t1 .col-sm-7,

  #custom-html-t1 .col-sm-8,

  #custom-html-t1 .col-sm-9 {

    float: left;

  }

  #custom-html-t1 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t1 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t1 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t1 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t1 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t1 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t1 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t1 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t1 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t1 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t1 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t1 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t1 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t1 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t1 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t1 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t1 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t1 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t1 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t1 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t1 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t1 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-t1 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t1 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t1 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t1 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t1 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t1 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t1 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t1 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t1 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t1 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t1 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t1 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t1 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t1 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t1 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t1 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t1 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t1 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t1 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t1 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t1 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t1 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t1 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t1 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t1 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t1 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t1 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t1 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t1 .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-t1 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t1 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t1 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t1 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t1 .form-inline .input-group .form-control,

  #custom-html-t1 .form-inline .input-group .input-group-addon,

  #custom-html-t1 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t1 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t1 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t1 .form-inline .checkbox,

  #custom-html-t1 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t1 .form-inline .checkbox label,

  #custom-html-t1 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t1 .form-inline .checkbox input[type=checkbox],

  #custom-html-t1 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t1 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t1 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-t1 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-t1 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-t1 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-t1 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-t1 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t1 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t1 .nav-tabs.nav-justified > .active > a,

  #custom-html-t1 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t1 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t1 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t1 .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-t1 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t1 .nav-tabs-justified > .active > a,

  #custom-html-t1 .nav-tabs-justified > .active > a:focus,

  #custom-html-t1 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t1 .navbar {

    border-radius: 4px;

  }

  #custom-html-t1 .navbar-header {

    float: left;

  }

  #custom-html-t1 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t1 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t1 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t1 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t1 .navbar-fixed-top .navbar-collapse,

  #custom-html-t1 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-t1 .container-fluid > .navbar-collapse,

  #custom-html-t1 .container-fluid > .navbar-header,

  #custom-html-t1 .container > .navbar-collapse,

  #custom-html-t1 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-t1 .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-t1 .navbar-fixed-bottom,

  #custom-html-t1 .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-t1 .navbar > .container .navbar-brand,

  #custom-html-t1 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-t1 .navbar-toggle {

    display: none;

  }

  #custom-html-t1 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t1 .navbar-nav > li {

    float: left;

  }

  #custom-html-t1 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-t1 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t1 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t1 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t1 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t1 .navbar-form .input-group .form-control,

  #custom-html-t1 .navbar-form .input-group .input-group-addon,

  #custom-html-t1 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t1 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t1 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t1 .navbar-form .checkbox,

  #custom-html-t1 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t1 .navbar-form .checkbox label,

  #custom-html-t1 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t1 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t1 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t1 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t1 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t1 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-t1 .navbar-left {

    float: left !important;

  }

  #custom-html-t1 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t1 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-t1 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t1 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t1 .modal-sm {

    width: 300px;

  }

  #custom-html-t1 .pull-sm-left {

    float: left;

  }

  #custom-html-t1 .pull-sm-right {

    float: right;

  }

  #custom-html-t1 .text-right-sm {

    text-align: right;

  }

  #custom-html-t1 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t1 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-t1 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t1 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t1 .email-verification .button {

    float: right;

  }

  #custom-html-t1 .email-verification .far,

  #custom-html-t1 .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-t1 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t1 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-t1 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t1 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t1 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t1 .small,

#custom-html-t1 small {

  font-size: 85%;

}

#custom-html-t1 .mark,

#custom-html-t1 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t1 .text-left {

  text-align: left;

}

#custom-html-t1 .text-right {

  text-align: right;

}

#custom-html-t1 .text-center {

  text-align: center;

}

#custom-html-t1 .text-justify {

  text-align: justify;

}

#custom-html-t1 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t1 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t1 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t1 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t1 .text-muted {

  color: #777777;

}

#custom-html-t1 .text-primary {

  color: #000000;

}

#custom-html-t1 a.text-primary:focus,

#custom-html-t1 a.text-primary:hover {

  color: #000000;

}

#custom-html-t1 .text-success {

  color: #3c763d;

}

#custom-html-t1 a.text-success:focus,

#custom-html-t1 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t1 .text-info {

  color: #31708f;

}

#custom-html-t1 a.text-info:focus,

#custom-html-t1 a.text-info:hover {

  color: #000000;

}

#custom-html-t1 .text-warning {

  color: #8a6d3b;

}

#custom-html-t1 a.text-warning:focus,

#custom-html-t1 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t1 .text-danger {

  color: #a94442;

}

#custom-html-t1 a.text-danger:focus,

#custom-html-t1 a.text-danger:hover {

  color: #843534;

}

#custom-html-t1 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t1 a.bg-primary:focus,

#custom-html-t1 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t1 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t1 a.bg-success:focus,

#custom-html-t1 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t1 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t1 a.bg-info:focus,

#custom-html-t1 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t1 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t1 a.bg-warning:focus,

#custom-html-t1 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t1 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t1 a.bg-danger:focus,

#custom-html-t1 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t1 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t1 ol,

#custom-html-t1 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t1 ol ol,

#custom-html-t1 ol ul,

#custom-html-t1 ul ol,

#custom-html-t1 ul ul {

  margin-bottom: 0;

}

#custom-html-t1 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t1 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t1 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t1 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t1 dd,

#custom-html-t1 dt {

  line-height: 1.42857143;

}

#custom-html-t1 dt {

  font-weight: 700;

}

#custom-html-t1 dd {

  margin-left: 0;

}

#custom-html-t1 abbr[data-original-title],

#custom-html-t1 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t1 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t1 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t1 blockquote ol:last-child,

#custom-html-t1 blockquote p:last-child,

#custom-html-t1 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t1 blockquote .small,

#custom-html-t1 blockquote footer,

#custom-html-t1 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-t1 blockquote .small:before,

#custom-html-t1 blockquote footer:before,

#custom-html-t1 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t1 .blockquote-reverse,

#custom-html-t1 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t1 .blockquote-reverse .small:before,

#custom-html-t1 .blockquote-reverse footer:before,

#custom-html-t1 .blockquote-reverse small:before,

#custom-html-t1 blockquote.pull-right .small:before,

#custom-html-t1 blockquote.pull-right footer:before,

#custom-html-t1 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t1 .blockquote-reverse .small:after,

#custom-html-t1 .blockquote-reverse footer:after,

#custom-html-t1 .blockquote-reverse small:after,

#custom-html-t1 blockquote.pull-right .small:after,

#custom-html-t1 blockquote.pull-right footer:after,

#custom-html-t1 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t1 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t1 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t1 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t1 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t1 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t1 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t1 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-t1 .container {

    width: 970px;

  }

  #custom-html-t1 .col-md-1,

  #custom-html-t1 .col-md-10,

  #custom-html-t1 .col-md-11,

  #custom-html-t1 .col-md-12,

  #custom-html-t1 .col-md-2,

  #custom-html-t1 .col-md-3,

  #custom-html-t1 .col-md-4,

  #custom-html-t1 .col-md-5,

  #custom-html-t1 .col-md-6,

  #custom-html-t1 .col-md-7,

  #custom-html-t1 .col-md-8,

  #custom-html-t1 .col-md-9 {

    float: left;

  }

  #custom-html-t1 .col-md-12 {

    width: 100%;

  }

  #custom-html-t1 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t1 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t1 .col-md-9 {

    width: 75%;

  }

  #custom-html-t1 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t1 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t1 .col-md-6 {

    width: 50%;

  }

  #custom-html-t1 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t1 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t1 .col-md-3 {

    width: 25%;

  }

  #custom-html-t1 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t1 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t1 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t1 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t1 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t1 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t1 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t1 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t1 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t1 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t1 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t1 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t1 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t1 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t1 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t1 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t1 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t1 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t1 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t1 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t1 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t1 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t1 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t1 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t1 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-t1 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t1 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t1 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t1 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t1 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t1 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t1 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t1 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t1 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t1 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t1 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t1 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t1 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t1 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t1 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t1 .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-t1 .modal-lg {

    width: 900px;

  }

  #custom-html-t1 .pull-md-left {

    float: left;

  }

  #custom-html-t1 .pull-md-right {

    float: right;

  }

  #custom-html-t1 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t1 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t1 .container {

    width: 1170px;

  }

  #custom-html-t1 .col-lg-1,

  #custom-html-t1 .col-lg-10,

  #custom-html-t1 .col-lg-11,

  #custom-html-t1 .col-lg-12,

  #custom-html-t1 .col-lg-2,

  #custom-html-t1 .col-lg-3,

  #custom-html-t1 .col-lg-4,

  #custom-html-t1 .col-lg-5,

  #custom-html-t1 .col-lg-6,

  #custom-html-t1 .col-lg-7,

  #custom-html-t1 .col-lg-8,

  #custom-html-t1 .col-lg-9 {

    float: left;

  }

  #custom-html-t1 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t1 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t1 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t1 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t1 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t1 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t1 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t1 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t1 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t1 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t1 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t1 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t1 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t1 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t1 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t1 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t1 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t1 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t1 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t1 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t1 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t1 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-t1 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t1 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t1 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t1 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t1 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t1 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t1 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t1 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t1 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t1 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t1 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t1 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t1 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t1 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t1 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t1 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t1 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t1 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t1 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t1 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t1 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t1 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t1 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t1 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t1 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t1 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t1 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t1 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t1 .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-t1 .visible-lg {

    display: block !important;

  }

  #custom-html-t1 table.visible-lg {

    display: table !important;

  }

  #custom-html-t1 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t1 td.visible-lg,

  #custom-html-t1 th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-t1 .visible-lg-block {

    display: block !important;

  }

  #custom-html-t1 .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-t1 .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-t1 .hidden-lg {

    display: none !important;

  }

  #custom-html-t1 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t1 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t1 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t1 .col-lg-1,

#custom-html-t1 .col-lg-10,

#custom-html-t1 .col-lg-11,

#custom-html-t1 .col-lg-12,

#custom-html-t1 .col-lg-2,

#custom-html-t1 .col-lg-3,

#custom-html-t1 .col-lg-4,

#custom-html-t1 .col-lg-5,

#custom-html-t1 .col-lg-6,

#custom-html-t1 .col-lg-7,

#custom-html-t1 .col-lg-8,

#custom-html-t1 .col-lg-9,

#custom-html-t1 .col-md-1,

#custom-html-t1 .col-md-10,

#custom-html-t1 .col-md-11,

#custom-html-t1 .col-md-12,

#custom-html-t1 .col-md-2,

#custom-html-t1 .col-md-3,

#custom-html-t1 .col-md-4,

#custom-html-t1 .col-md-5,

#custom-html-t1 .col-md-6,

#custom-html-t1 .col-md-7,

#custom-html-t1 .col-md-8,

#custom-html-t1 .col-md-9,

#custom-html-t1 .col-sm-1,

#custom-html-t1 .col-sm-10,

#custom-html-t1 .col-sm-11,

#custom-html-t1 .col-sm-12,

#custom-html-t1 .col-sm-2,

#custom-html-t1 .col-sm-3,

#custom-html-t1 .col-sm-4,

#custom-html-t1 .col-sm-5,

#custom-html-t1 .col-sm-6,

#custom-html-t1 .col-sm-7,

#custom-html-t1 .col-sm-8,

#custom-html-t1 .col-sm-9,

#custom-html-t1 .col-xs-1,

#custom-html-t1 .col-xs-10,

#custom-html-t1 .col-xs-11,

#custom-html-t1 .col-xs-12,

#custom-html-t1 .col-xs-2,

#custom-html-t1 .col-xs-3,

#custom-html-t1 .col-xs-4,

#custom-html-t1 .col-xs-5,

#custom-html-t1 .col-xs-6,

#custom-html-t1 .col-xs-7,

#custom-html-t1 .col-xs-8,

#custom-html-t1 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t1 .col-xs-1,

#custom-html-t1 .col-xs-10,

#custom-html-t1 .col-xs-11,

#custom-html-t1 .col-xs-12,

#custom-html-t1 .col-xs-2,

#custom-html-t1 .col-xs-3,

#custom-html-t1 .col-xs-4,

#custom-html-t1 .col-xs-5,

#custom-html-t1 .col-xs-6,

#custom-html-t1 .col-xs-7,

#custom-html-t1 .col-xs-8,

#custom-html-t1 .col-xs-9 {

  float: left;

}

#custom-html-t1 .col-xs-12 {

  width: 100%;

}

#custom-html-t1 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t1 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t1 .col-xs-9 {

  width: 75%;

}

#custom-html-t1 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t1 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t1 .col-xs-6 {

  width: 50%;

}

#custom-html-t1 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t1 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-t1 .col-xs-3 {

  width: 25%;

}

#custom-html-t1 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t1 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t1 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t1 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t1 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t1 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t1 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t1 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t1 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t1 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t1 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t1 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t1 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t1 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t1 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t1 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t1 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t1 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t1 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t1 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t1 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t1 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t1 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t1 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t1 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t1 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t1 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t1 .col-xs-push-0 {

  left: auto;

}

#custom-html-t1 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t1 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t1 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t1 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t1 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t1 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t1 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t1 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t1 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t1 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t1 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t1 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t1 .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-t1 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t1 th {

  text-align: left;

}

#custom-html-t1 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t1 .table > tbody > tr > td,

#custom-html-t1 .table > tbody > tr > th,

#custom-html-t1 .table > tfoot > tr > td,

#custom-html-t1 .table > tfoot > tr > th,

#custom-html-t1 .table > thead > tr > td,

#custom-html-t1 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t1 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t1 .table > caption + thead > tr:first-child > td,

#custom-html-t1 .table > caption + thead > tr:first-child > th,

#custom-html-t1 .table > colgroup + thead > tr:first-child > td,

#custom-html-t1 .table > colgroup + thead > tr:first-child > th,

#custom-html-t1 .table > thead:first-child > tr:first-child > td,

#custom-html-t1 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t1 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t1 .table .table {

  background-color: #ffffff;

}

#custom-html-t1 .table-condensed > tbody > tr > td,

#custom-html-t1 .table-condensed > tbody > tr > th,

#custom-html-t1 .table-condensed > tfoot > tr > td,

#custom-html-t1 .table-condensed > tfoot > tr > th,

#custom-html-t1 .table-condensed > thead > tr > td,

#custom-html-t1 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t1 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t1 .table-bordered > tbody > tr > td,

#custom-html-t1 .table-bordered > tbody > tr > th,

#custom-html-t1 .table-bordered > tfoot > tr > td,

#custom-html-t1 .table-bordered > tfoot > tr > th,

#custom-html-t1 .table-bordered > thead > tr > td,

#custom-html-t1 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t1 .table-bordered > thead > tr > td,

#custom-html-t1 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t1 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t1 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t1 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t1 table td[class*=col-],

#custom-html-t1 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t1 .table > tbody > tr.active > td,

#custom-html-t1 .table > tbody > tr.active > th,

#custom-html-t1 .table > tbody > tr > td.active,

#custom-html-t1 .table > tbody > tr > th.active,

#custom-html-t1 .table > tfoot > tr.active > td,

#custom-html-t1 .table > tfoot > tr.active > th,

#custom-html-t1 .table > tfoot > tr > td.active,

#custom-html-t1 .table > tfoot > tr > th.active,

#custom-html-t1 .table > thead > tr.active > td,

#custom-html-t1 .table > thead > tr.active > th,

#custom-html-t1 .table > thead > tr > td.active,

#custom-html-t1 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t1 .table-hover > tbody > tr.active:hover > td,

#custom-html-t1 .table-hover > tbody > tr.active:hover > th,

#custom-html-t1 .table-hover > tbody > tr:hover > .active,

#custom-html-t1 .table-hover > tbody > tr > td.active:hover,

#custom-html-t1 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t1 .table > tbody > tr.success > td,

#custom-html-t1 .table > tbody > tr.success > th,

#custom-html-t1 .table > tbody > tr > td.success,

#custom-html-t1 .table > tbody > tr > th.success,

#custom-html-t1 .table > tfoot > tr.success > td,

#custom-html-t1 .table > tfoot > tr.success > th,

#custom-html-t1 .table > tfoot > tr > td.success,

#custom-html-t1 .table > tfoot > tr > th.success,

#custom-html-t1 .table > thead > tr.success > td,

#custom-html-t1 .table > thead > tr.success > th,

#custom-html-t1 .table > thead > tr > td.success,

#custom-html-t1 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t1 .table-hover > tbody > tr.success:hover > td,

#custom-html-t1 .table-hover > tbody > tr.success:hover > th,

#custom-html-t1 .table-hover > tbody > tr:hover > .success,

#custom-html-t1 .table-hover > tbody > tr > td.success:hover,

#custom-html-t1 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t1 .table > tbody > tr.info > td,

#custom-html-t1 .table > tbody > tr.info > th,

#custom-html-t1 .table > tbody > tr > td.info,

#custom-html-t1 .table > tbody > tr > th.info,

#custom-html-t1 .table > tfoot > tr.info > td,

#custom-html-t1 .table > tfoot > tr.info > th,

#custom-html-t1 .table > tfoot > tr > td.info,

#custom-html-t1 .table > tfoot > tr > th.info,

#custom-html-t1 .table > thead > tr.info > td,

#custom-html-t1 .table > thead > tr.info > th,

#custom-html-t1 .table > thead > tr > td.info,

#custom-html-t1 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t1 .table-hover > tbody > tr.info:hover > td,

#custom-html-t1 .table-hover > tbody > tr.info:hover > th,

#custom-html-t1 .table-hover > tbody > tr:hover > .info,

#custom-html-t1 .table-hover > tbody > tr > td.info:hover,

#custom-html-t1 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t1 .table > tbody > tr.warning > td,

#custom-html-t1 .table > tbody > tr.warning > th,

#custom-html-t1 .table > tbody > tr > td.warning,

#custom-html-t1 .table > tbody > tr > th.warning,

#custom-html-t1 .table > tfoot > tr.warning > td,

#custom-html-t1 .table > tfoot > tr.warning > th,

#custom-html-t1 .table > tfoot > tr > td.warning,

#custom-html-t1 .table > tfoot > tr > th.warning,

#custom-html-t1 .table > thead > tr.warning > td,

#custom-html-t1 .table > thead > tr.warning > th,

#custom-html-t1 .table > thead > tr > td.warning,

#custom-html-t1 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t1 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t1 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t1 .table-hover > tbody > tr:hover > .warning,

#custom-html-t1 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t1 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t1 .table > tbody > tr.danger > td,

#custom-html-t1 .table > tbody > tr.danger > th,

#custom-html-t1 .table > tbody > tr > td.danger,

#custom-html-t1 .table > tbody > tr > th.danger,

#custom-html-t1 .table > tfoot > tr.danger > td,

#custom-html-t1 .table > tfoot > tr.danger > th,

#custom-html-t1 .table > tfoot > tr > td.danger,

#custom-html-t1 .table > tfoot > tr > th.danger,

#custom-html-t1 .table > thead > tr.danger > td,

#custom-html-t1 .table > thead > tr.danger > th,

#custom-html-t1 .table > thead > tr > td.danger,

#custom-html-t1 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t1 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t1 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t1 .table-hover > tbody > tr:hover > .danger,

#custom-html-t1 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t1 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t1 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t1 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t1 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t1 .table-responsive > .table > tbody > tr > td,

  #custom-html-t1 .table-responsive > .table > tbody > tr > th,

  #custom-html-t1 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t1 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t1 .table-responsive > .table > thead > tr > td,

  #custom-html-t1 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t1 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t1 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t1 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t1 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t1 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t1 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t1 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t1 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t1 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t1 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-t1 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t1 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t1 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t1 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t1 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t1 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t1 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-t1 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t1 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t1 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t1 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-t1 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t1 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t1 input[type=file] {

  display: block;

}

#custom-html-t1 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-t1 select[multiple],

#custom-html-t1 select[size] {

  height: auto;

}

#custom-html-t1 input[type=checkbox]:focus,

#custom-html-t1 input[type=file]:focus,

#custom-html-t1 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t1 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t1 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t1 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t1 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t1 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t1 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t1 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t1 .form-control[disabled],

#custom-html-t1 .form-control[readonly],

#custom-html-t1 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t1 .form-control[disabled],

#custom-html-t1 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t1 textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t1 input[type=date].form-control,

  #custom-html-t1 input[type=datetime-local].form-control,

  #custom-html-t1 input[type=month].form-control,

  #custom-html-t1 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t1 .input-group-sm input[type=date],

  #custom-html-t1 .input-group-sm input[type=datetime-local],

  #custom-html-t1 .input-group-sm input[type=month],

  #custom-html-t1 .input-group-sm input[type=time],

  #custom-html-t1 input[type=date].input-sm,

  #custom-html-t1 input[type=datetime-local].input-sm,

  #custom-html-t1 input[type=month].input-sm,

  #custom-html-t1 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t1 .input-group-lg input[type=date],

  #custom-html-t1 .input-group-lg input[type=datetime-local],

  #custom-html-t1 .input-group-lg input[type=month],

  #custom-html-t1 .input-group-lg input[type=time],

  #custom-html-t1 input[type=date].input-lg,

  #custom-html-t1 input[type=datetime-local].input-lg,

  #custom-html-t1 input[type=month].input-lg,

  #custom-html-t1 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t1 .form-group {

  margin-bottom: 15px;

}

#custom-html-t1 .checkbox,

#custom-html-t1 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t1 .checkbox label,

#custom-html-t1 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t1 .checkbox input[type=checkbox],

#custom-html-t1 .checkbox-inline input[type=checkbox],

#custom-html-t1 .radio input[type=radio],

#custom-html-t1 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t1 .checkbox + .checkbox,

#custom-html-t1 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t1 .checkbox-inline,

#custom-html-t1 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t1 .checkbox-inline + .checkbox-inline,

#custom-html-t1 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t1 fieldset[disabled] input[type=checkbox],

#custom-html-t1 fieldset[disabled] input[type=radio],

#custom-html-t1 input[type=checkbox].disabled,

#custom-html-t1 input[type=checkbox][disabled],

#custom-html-t1 input[type=radio].disabled,

#custom-html-t1 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t1 .checkbox-inline.disabled,

#custom-html-t1 .radio-inline.disabled,

#custom-html-t1 fieldset[disabled] .checkbox-inline,

#custom-html-t1 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t1 .checkbox.disabled label,

#custom-html-t1 .radio.disabled label,

#custom-html-t1 fieldset[disabled] .checkbox label,

#custom-html-t1 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t1 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t1 .form-control-static.input-lg,

#custom-html-t1 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t1 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t1 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t1 select[multiple].input-sm,

#custom-html-t1 textarea.input-sm {

  height: auto;

}

#custom-html-t1 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t1 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t1 .form-group-sm select[multiple].form-control,

#custom-html-t1 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t1 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t1 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t1 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t1 select[multiple].input-lg,

#custom-html-t1 textarea.input-lg {

  height: auto;

}

#custom-html-t1 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t1 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-t1 .form-group-lg select[multiple].form-control,

#custom-html-t1 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t1 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t1 .has-feedback {

  position: relative;

}

#custom-html-t1 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t1 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t1 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t1 .input-group-lg + .form-control-feedback,

#custom-html-t1 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t1 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t1 .input-group-sm + .form-control-feedback,

#custom-html-t1 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t1 .has-success .checkbox,

#custom-html-t1 .has-success .checkbox-inline,

#custom-html-t1 .has-success .control-label,

#custom-html-t1 .has-success .help-block,

#custom-html-t1 .has-success .radio,

#custom-html-t1 .has-success .radio-inline,

#custom-html-t1 .has-success.checkbox label,

#custom-html-t1 .has-success.checkbox-inline label,

#custom-html-t1 .has-success.radio label,

#custom-html-t1 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t1 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t1 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t1 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t1 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t1 .has-warning .checkbox,

#custom-html-t1 .has-warning .checkbox-inline,

#custom-html-t1 .has-warning .control-label,

#custom-html-t1 .has-warning .help-block,

#custom-html-t1 .has-warning .radio,

#custom-html-t1 .has-warning .radio-inline,

#custom-html-t1 .has-warning.checkbox label,

#custom-html-t1 .has-warning.checkbox-inline label,

#custom-html-t1 .has-warning.radio label,

#custom-html-t1 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t1 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t1 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t1 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t1 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t1 .has-error .checkbox,

#custom-html-t1 .has-error .checkbox-inline,

#custom-html-t1 .has-error .control-label,

#custom-html-t1 .has-error .help-block,

#custom-html-t1 .has-error .radio,

#custom-html-t1 .has-error .radio-inline,

#custom-html-t1 .has-error.checkbox label,

#custom-html-t1 .has-error.checkbox-inline label,

#custom-html-t1 .has-error.radio label,

#custom-html-t1 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t1 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t1 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t1 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t1 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t1 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t1 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t1 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-t1 .form-horizontal .checkbox,

#custom-html-t1 .form-horizontal .checkbox-inline,

#custom-html-t1 .form-horizontal .radio,

#custom-html-t1 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t1 .form-horizontal .checkbox,

#custom-html-t1 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t1 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t1 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-t1 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-t1 .btn.active.focus,

#custom-html-t1 .btn.active:focus,

#custom-html-t1 .btn.focus,

#custom-html-t1 .btn:active.focus,

#custom-html-t1 .btn:active:focus,

#custom-html-t1 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t1 .btn.focus,

#custom-html-t1 .btn:focus,

#custom-html-t1 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t1 .btn.active,

#custom-html-t1 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t1 .btn.disabled,

#custom-html-t1 .btn[disabled],

#custom-html-t1 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t1 a.btn.disabled,

#custom-html-t1 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t1 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t1 .btn-default.focus,

#custom-html-t1 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t1 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t1 .btn-default.active,

#custom-html-t1 .btn-default:active,

#custom-html-t1 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-t1 .btn-default.active.focus,

#custom-html-t1 .btn-default.active:focus,

#custom-html-t1 .btn-default.active:hover,

#custom-html-t1 .btn-default:active.focus,

#custom-html-t1 .btn-default:active:focus,

#custom-html-t1 .btn-default:active:hover,

#custom-html-t1 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t1 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t1 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t1 .btn-default.disabled.focus,

#custom-html-t1 .btn-default.disabled:focus,

#custom-html-t1 .btn-default.disabled:hover,

#custom-html-t1 .btn-default[disabled].focus,

#custom-html-t1 .btn-default[disabled]:focus,

#custom-html-t1 .btn-default[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-default.focus,

#custom-html-t1 fieldset[disabled] .btn-default:focus,

#custom-html-t1 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t1 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t1 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t1 .btn-primary.focus,

#custom-html-t1 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t1 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t1 .btn-primary.active,

#custom-html-t1 .btn-primary:active,

#custom-html-t1 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-t1 .btn-primary.active.focus,

#custom-html-t1 .btn-primary.active:focus,

#custom-html-t1 .btn-primary.active:hover,

#custom-html-t1 .btn-primary:active.focus,

#custom-html-t1 .btn-primary:active:focus,

#custom-html-t1 .btn-primary:active:hover,

#custom-html-t1 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t1 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t1 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t1 .btn-primary.disabled.focus,

#custom-html-t1 .btn-primary.disabled:focus,

#custom-html-t1 .btn-primary.disabled:hover,

#custom-html-t1 .btn-primary[disabled].focus,

#custom-html-t1 .btn-primary[disabled]:focus,

#custom-html-t1 .btn-primary[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-primary.focus,

#custom-html-t1 fieldset[disabled] .btn-primary:focus,

#custom-html-t1 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t1 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t1 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t1 .btn-success.focus,

#custom-html-t1 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t1 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t1 .btn-success.active,

#custom-html-t1 .btn-success:active,

#custom-html-t1 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-t1 .btn-success.active.focus,

#custom-html-t1 .btn-success.active:focus,

#custom-html-t1 .btn-success.active:hover,

#custom-html-t1 .btn-success:active.focus,

#custom-html-t1 .btn-success:active:focus,

#custom-html-t1 .btn-success:active:hover,

#custom-html-t1 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t1 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t1 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t1 .btn-success.disabled.focus,

#custom-html-t1 .btn-success.disabled:focus,

#custom-html-t1 .btn-success.disabled:hover,

#custom-html-t1 .btn-success[disabled].focus,

#custom-html-t1 .btn-success[disabled]:focus,

#custom-html-t1 .btn-success[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-success.focus,

#custom-html-t1 fieldset[disabled] .btn-success:focus,

#custom-html-t1 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t1 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t1 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t1 .btn-info.focus,

#custom-html-t1 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t1 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t1 .btn-info.active,

#custom-html-t1 .btn-info:active,

#custom-html-t1 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-t1 .btn-info.active.focus,

#custom-html-t1 .btn-info.active:focus,

#custom-html-t1 .btn-info.active:hover,

#custom-html-t1 .btn-info:active.focus,

#custom-html-t1 .btn-info:active:focus,

#custom-html-t1 .btn-info:active:hover,

#custom-html-t1 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t1 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t1 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t1 .btn-info.disabled.focus,

#custom-html-t1 .btn-info.disabled:focus,

#custom-html-t1 .btn-info.disabled:hover,

#custom-html-t1 .btn-info[disabled].focus,

#custom-html-t1 .btn-info[disabled]:focus,

#custom-html-t1 .btn-info[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-info.focus,

#custom-html-t1 fieldset[disabled] .btn-info:focus,

#custom-html-t1 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t1 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t1 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t1 .btn-warning.focus,

#custom-html-t1 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t1 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t1 .btn-warning.active,

#custom-html-t1 .btn-warning:active,

#custom-html-t1 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-t1 .btn-warning.active.focus,

#custom-html-t1 .btn-warning.active:focus,

#custom-html-t1 .btn-warning.active:hover,

#custom-html-t1 .btn-warning:active.focus,

#custom-html-t1 .btn-warning:active:focus,

#custom-html-t1 .btn-warning:active:hover,

#custom-html-t1 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t1 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t1 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t1 .btn-warning.disabled.focus,

#custom-html-t1 .btn-warning.disabled:focus,

#custom-html-t1 .btn-warning.disabled:hover,

#custom-html-t1 .btn-warning[disabled].focus,

#custom-html-t1 .btn-warning[disabled]:focus,

#custom-html-t1 .btn-warning[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-warning.focus,

#custom-html-t1 fieldset[disabled] .btn-warning:focus,

#custom-html-t1 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t1 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t1 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t1 .btn-danger.focus,

#custom-html-t1 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t1 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t1 .btn-danger.active,

#custom-html-t1 .btn-danger:active,

#custom-html-t1 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-t1 .btn-danger.active.focus,

#custom-html-t1 .btn-danger.active:focus,

#custom-html-t1 .btn-danger.active:hover,

#custom-html-t1 .btn-danger:active.focus,

#custom-html-t1 .btn-danger:active:focus,

#custom-html-t1 .btn-danger:active:hover,

#custom-html-t1 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t1 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t1 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t1 .btn-danger.disabled.focus,

#custom-html-t1 .btn-danger.disabled:focus,

#custom-html-t1 .btn-danger.disabled:hover,

#custom-html-t1 .btn-danger[disabled].focus,

#custom-html-t1 .btn-danger[disabled]:focus,

#custom-html-t1 .btn-danger[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-danger.focus,

#custom-html-t1 fieldset[disabled] .btn-danger:focus,

#custom-html-t1 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t1 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t1 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t1 .btn-link,

#custom-html-t1 .btn-link.active,

#custom-html-t1 .btn-link:active,

#custom-html-t1 .btn-link[disabled],

#custom-html-t1 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t1 .btn-link,

#custom-html-t1 .btn-link:active,

#custom-html-t1 .btn-link:focus,

#custom-html-t1 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t1 .btn-link:focus,

#custom-html-t1 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t1 .btn-link[disabled]:focus,

#custom-html-t1 .btn-link[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-link:focus,

#custom-html-t1 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t1 .btn-group-lg > .btn,

#custom-html-t1 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t1 .btn-group-sm > .btn,

#custom-html-t1 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t1 .btn-group-xs > .btn,

#custom-html-t1 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t1 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t1 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t1 input[type=button].btn-block,

#custom-html-t1 input[type=reset].btn-block,

#custom-html-t1 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t1 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t1 .fade.in {

  opacity: 1;

}

#custom-html-t1 .collapse {

  display: none;

}

#custom-html-t1 .collapse.in {

  display: block;

}

#custom-html-t1 tr.collapse.in {

  display: table-row;

}

#custom-html-t1 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t1 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t1 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t1 .dropdown,

#custom-html-t1 .dropup {

  position: relative;

}

#custom-html-t1 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t1 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t1 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t1 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t1 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-t1 .dropdown-menu > li > a:focus,

#custom-html-t1 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t1 .dropdown-menu > .active > a,

#custom-html-t1 .dropdown-menu > .active > a:focus,

#custom-html-t1 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-t1 .dropdown-menu > .disabled > a,

#custom-html-t1 .dropdown-menu > .disabled > a:focus,

#custom-html-t1 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t1 .dropdown-menu > .disabled > a:focus,

#custom-html-t1 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t1 .open > .dropdown-menu {

  display: block;

}

#custom-html-t1 .open > a {

  outline: 0;

}

#custom-html-t1 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t1 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t1 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t1 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t1 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t1 .dropup .caret,

#custom-html-t1 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t1 .dropup .dropdown-menu,

#custom-html-t1 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-t1 .btn-group,

#custom-html-t1 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t1 .btn-group-vertical > .btn,

#custom-html-t1 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t1 .btn-group-vertical > .btn.active,

#custom-html-t1 .btn-group-vertical > .btn:active,

#custom-html-t1 .btn-group-vertical > .btn:focus,

#custom-html-t1 .btn-group-vertical > .btn:hover,

#custom-html-t1 .btn-group > .btn.active,

#custom-html-t1 .btn-group > .btn:active,

#custom-html-t1 .btn-group > .btn:focus,

#custom-html-t1 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t1 .btn-group .btn + .btn,

#custom-html-t1 .btn-group .btn + .btn-group,

#custom-html-t1 .btn-group .btn-group + .btn,

#custom-html-t1 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t1 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t1 .btn-toolbar .btn,

#custom-html-t1 .btn-toolbar .btn-group,

#custom-html-t1 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t1 .btn-toolbar > .btn,

#custom-html-t1 .btn-toolbar > .btn-group,

#custom-html-t1 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t1 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t1 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t1 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t1 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t1 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t1 .btn-group > .btn-group {

  float: left;

}

#custom-html-t1 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t1 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t1 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t1 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t1 .btn-group .dropdown-toggle:active,

#custom-html-t1 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t1 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t1 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t1 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t1 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t1 .btn .caret {

  margin-left: 0;

}

#custom-html-t1 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t1 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t1 .btn-group-vertical > .btn,

#custom-html-t1 .btn-group-vertical > .btn-group,

#custom-html-t1 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t1 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t1 .btn-group-vertical > .btn + .btn,

#custom-html-t1 .btn-group-vertical > .btn + .btn-group,

#custom-html-t1 .btn-group-vertical > .btn-group + .btn,

#custom-html-t1 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t1 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t1 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t1 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t1 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t1 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t1 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t1 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t1 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t1 .btn-group-justified > .btn,

#custom-html-t1 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t1 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t1 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t1 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t1 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t1 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t1 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t1 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t1 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t1 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t1 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t1 .input-group-lg > .form-control,

#custom-html-t1 .input-group-lg > .input-group-addon,

#custom-html-t1 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t1 select.input-group-lg > .form-control,

#custom-html-t1 select.input-group-lg > .input-group-addon,

#custom-html-t1 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t1 select[multiple].input-group-lg > .form-control,

#custom-html-t1 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t1 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t1 textarea.input-group-lg > .form-control,

#custom-html-t1 textarea.input-group-lg > .input-group-addon,

#custom-html-t1 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t1 .input-group-sm > .form-control,

#custom-html-t1 .input-group-sm > .input-group-addon,

#custom-html-t1 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t1 select.input-group-sm > .form-control,

#custom-html-t1 select.input-group-sm > .input-group-addon,

#custom-html-t1 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t1 select[multiple].input-group-sm > .form-control,

#custom-html-t1 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t1 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t1 textarea.input-group-sm > .form-control,

#custom-html-t1 textarea.input-group-sm > .input-group-addon,

#custom-html-t1 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t1 .input-group .form-control,

#custom-html-t1 .input-group-addon,

#custom-html-t1 .input-group-btn {

  display: table-cell;

}

#custom-html-t1 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t1 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t1 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t1 .input-group-addon,

#custom-html-t1 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t1 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t1 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t1 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t1 .input-group-addon input[type=checkbox],

#custom-html-t1 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t1 .input-group .form-control:first-child,

#custom-html-t1 .input-group-addon:first-child,

#custom-html-t1 .input-group-btn:first-child > .btn,

#custom-html-t1 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t1 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t1 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t1 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t1 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t1 .input-group .form-control:last-child,

#custom-html-t1 .input-group-addon:last-child,

#custom-html-t1 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t1 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t1 .input-group-btn:last-child > .btn,

#custom-html-t1 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t1 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t1 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t1 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t1 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t1 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t1 .input-group-btn > .btn:active,

#custom-html-t1 .input-group-btn > .btn:focus,

#custom-html-t1 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t1 .input-group-btn:first-child > .btn,

#custom-html-t1 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t1 .input-group-btn:last-child > .btn,

#custom-html-t1 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t1 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t1 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t1 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t1 .nav > li > a:focus,

#custom-html-t1 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t1 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t1 .nav > li.disabled > a:focus,

#custom-html-t1 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t1 .nav .open > a,

#custom-html-t1 .nav .open > a:focus,

#custom-html-t1 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t1 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t1 .nav > li > a > img {

  max-width: none;

}

#custom-html-t1 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t1 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t1 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t1 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t1 .nav-tabs > li.active > a,

#custom-html-t1 .nav-tabs > li.active > a:focus,

#custom-html-t1 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t1 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t1 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t1 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}


#custom-html-t1 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t1 .nav-tabs.nav-justified > .active > a,

#custom-html-t1 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t1 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t1 .nav-pills > li {

  float: left;

}

#custom-html-t1 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t1 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t1 .nav-pills > li.active > a,

#custom-html-t1 .nav-pills > li.active > a:focus,

#custom-html-t1 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t1 .nav-stacked > li {

  float: none;

}

#custom-html-t1 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t1 .nav-justified {

  width: 100%;

}

#custom-html-t1 .nav-justified > li {

  float: none;

}

#custom-html-t1 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t1 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t1 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t1 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t1 .nav-tabs-justified > .active > a,

#custom-html-t1 .nav-tabs-justified > .active > a:focus,

#custom-html-t1 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t1 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t1 .tab-content > .active {

  display: block;

}

#custom-html-t1 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t1 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-t1 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t1 .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-t1 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t1 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t1 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t1 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t1 .container-fluid > .navbar-collapse,

#custom-html-t1 .container-fluid > .navbar-header,

#custom-html-t1 .container > .navbar-collapse,

#custom-html-t1 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t1 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-t1 .navbar-fixed-bottom,

#custom-html-t1 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-t1 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t1 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t1 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t1 .navbar-brand:focus,

#custom-html-t1 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t1 .navbar-brand > img {

  display: block;

}

#custom-html-t1 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t1 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t1 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t1 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-t1 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t1 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t1 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t1 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t1 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t1 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t1 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t1 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-t1 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t1 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-t1 .visible-xs {

    display: block !important;

  }

  #custom-html-t1 table.visible-xs {

    display: table !important;

  }

  #custom-html-t1 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t1 td.visible-xs,

  #custom-html-t1 th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-t1 .visible-xs-block {

    display: block !important;

  }

  #custom-html-t1 .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-t1 .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-t1 .hidden-xs {

    display: none !important;

  }

  #custom-html-t1 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t1 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-t1 section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-t1 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t1 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t1 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t1 .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-t1 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t1 .tiles .tile:nth-child(1),

  #custom-html-t1 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-t1 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t1 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t1 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-t1 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t1 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t1 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-t1 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-t1 .promo-banner form {

    text-align: center;

  }

}

#custom-html-t1 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t1 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t1 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t1 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t1 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t1 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t1 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t1 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t1 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t1 .navbar-default .navbar-brand:focus,

#custom-html-t1 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t1 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t1 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t1 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t1 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t1 .navbar-default .navbar-nav > .active > a,

#custom-html-t1 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t1 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t1 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t1 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t1 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t1 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t1 .navbar-default .navbar-toggle:focus,

#custom-html-t1 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t1 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t1 .navbar-default .navbar-collapse,

#custom-html-t1 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t1 .navbar-default .navbar-nav > .open > a,

#custom-html-t1 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t1 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t1 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t1 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t1 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t1 .navbar-default .btn-link:focus,

#custom-html-t1 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-t1 .navbar-default .btn-link[disabled]:focus,

#custom-html-t1 .navbar-default .btn-link[disabled]:hover,

#custom-html-t1 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t1 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t1 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t1 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t1 .navbar-inverse .navbar-brand:focus,

#custom-html-t1 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t1 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t1 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t1 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t1 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t1 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t1 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t1 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t1 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t1 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t1 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t1 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t1 .navbar-inverse .navbar-toggle:focus,

#custom-html-t1 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t1 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t1 .navbar-inverse .navbar-collapse,

#custom-html-t1 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t1 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t1 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t1 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t1 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t1 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t1 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t1 .navbar-inverse .btn-link:focus,

#custom-html-t1 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t1 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t1 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t1 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t1 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t1 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t1 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t1 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t1 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t1 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-t1 .pagination > li {

  display: inline;

}

#custom-html-t1 .pagination > li > a,

#custom-html-t1 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t1 .pagination > li:first-child > a,

#custom-html-t1 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t1 .pagination > li:last-child > a,

#custom-html-t1 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t1 .pagination > li > a:focus,

#custom-html-t1 .pagination > li > a:hover,

#custom-html-t1 .pagination > li > span:focus,

#custom-html-t1 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t1 .pagination > .active > a,

#custom-html-t1 .pagination > .active > a:focus,

#custom-html-t1 .pagination > .active > a:hover,

#custom-html-t1 .pagination > .active > span,

#custom-html-t1 .pagination > .active > span:focus,

#custom-html-t1 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t1 .pagination > .disabled > a,

#custom-html-t1 .pagination > .disabled > a:focus,

#custom-html-t1 .pagination > .disabled > a:hover,

#custom-html-t1 .pagination > .disabled > span,

#custom-html-t1 .pagination > .disabled > span:focus,

#custom-html-t1 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t1 .pagination-lg > li > a,

#custom-html-t1 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t1 .pagination-lg > li:first-child > a,

#custom-html-t1 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t1 .pagination-lg > li:last-child > a,

#custom-html-t1 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t1 .pagination-sm > li > a,

#custom-html-t1 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t1 .pagination-sm > li:first-child > a,

#custom-html-t1 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t1 .pagination-sm > li:last-child > a,

#custom-html-t1 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t1 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t1 .pager li {

  display: inline;

}

#custom-html-t1 .pager li > a,

#custom-html-t1 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t1 .pager li > a:focus,

#custom-html-t1 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t1 .pager .next > a,

#custom-html-t1 .pager .next > span {

  float: right;

}

#custom-html-t1 .pager .previous > a,

#custom-html-t1 .pager .previous > span {

  float: left;

}

#custom-html-t1 .pager .disabled > a,

#custom-html-t1 .pager .disabled > a:focus,

#custom-html-t1 .pager .disabled > a:hover,

#custom-html-t1 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t1 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-t1 a.label:focus,

#custom-html-t1 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t1 .label:empty {

  display: none;

}

#custom-html-t1 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t1 .label-default {

  background-color: #777777;

}

#custom-html-t1 .label-default[href]:focus,

#custom-html-t1 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t1 .label-primary {

  background-color: #337ab7;

}

#custom-html-t1 .label-primary[href]:focus,

#custom-html-t1 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t1 .label-success {

  background-color: #5cb85c;

}

#custom-html-t1 .label-success[href]:focus,

#custom-html-t1 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t1 .label-info {

  background-color: #5bc0de;

}

#custom-html-t1 .label-info[href]:focus,

#custom-html-t1 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t1 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t1 .label-warning[href]:focus,

#custom-html-t1 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t1 .label-danger {

  background-color: #d9534f;

}

#custom-html-t1 .label-danger[href]:focus,

#custom-html-t1 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t1 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t1 .badge:empty {

  display: none;

}

#custom-html-t1 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t1 .btn-group-xs > .btn .badge,

#custom-html-t1 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t1 a.badge:focus,

#custom-html-t1 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t1 .list-group-item.active > .badge,

#custom-html-t1 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t1 .list-group-item > .badge {

  float: right;

}

#custom-html-t1 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t1 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t1 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t1 .jumbotron .h1,

#custom-html-t1 .jumbotron h1 {

  color: inherit;

}

#custom-html-t1 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t1 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t1 .container .jumbotron,

#custom-html-t1 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t1 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t1 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t1 .container .jumbotron,

  #custom-html-t1 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t1 .jumbotron .h1,

  #custom-html-t1 .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-t1 .carousel-control .glyphicon-chevron-left,

  #custom-html-t1 .carousel-control .glyphicon-chevron-right,

  #custom-html-t1 .carousel-control .icon-next,

  #custom-html-t1 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t1 .carousel-control .glyphicon-chevron-left,

  #custom-html-t1 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t1 .carousel-control .glyphicon-chevron-right,

  #custom-html-t1 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t1 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t1 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t1 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t1 .thumbnail a > img,

#custom-html-t1 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t1 a.thumbnail.active,

#custom-html-t1 a.thumbnail:focus,

#custom-html-t1 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t1 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t1 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t1 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t1 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t1 .alert > p,

#custom-html-t1 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t1 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t1 .alert-dismissable,

#custom-html-t1 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t1 .alert-dismissable .close,

#custom-html-t1 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t1 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t1 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-t1 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t1 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t1 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t1 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t1 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t1 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t1 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t1 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t1 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t1 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t1 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t1 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t1 .progress-bar-striped,

#custom-html-t1 .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t1 .progress-bar.active,

#custom-html-t1 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t1 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t1 .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t1 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t1 .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t1 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t1 .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t1 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t1 .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t1 .media {

  margin-top: 15px;

}

#custom-html-t1 .media:first-child {

  margin-top: 0;

}

#custom-html-t1 .media,

#custom-html-t1 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t1 .media-body {

  width: 10000px;

}

#custom-html-t1 .media-object {

  display: block;

}

#custom-html-t1 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t1 .media-right,

#custom-html-t1 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t1 .media-left,

#custom-html-t1 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t1 .media-body,

#custom-html-t1 .media-left,

#custom-html-t1 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t1 .media-middle {

  vertical-align: middle;

}

#custom-html-t1 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t1 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t1 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t1 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-t1 .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-t1 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t1 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t1 a.list-group-item,

#custom-html-t1 button.list-group-item {

  color: #555555;

}

#custom-html-t1 a.list-group-item .list-group-item-heading,

#custom-html-t1 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t1 a.list-group-item:focus,

#custom-html-t1 a.list-group-item:hover,

#custom-html-t1 button.list-group-item:focus,

#custom-html-t1 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t1 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t1 .list-group-item.disabled,

#custom-html-t1 .list-group-item.disabled:focus,

#custom-html-t1 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t1 .list-group-item.disabled .list-group-item-heading,

#custom-html-t1 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t1 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t1 .list-group-item.disabled .list-group-item-text,

#custom-html-t1 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t1 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t1 .list-group-item.active,

#custom-html-t1 .list-group-item.active:focus,

#custom-html-t1 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t1 .list-group-item.active .list-group-item-heading,

#custom-html-t1 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t1 .list-group-item.active .list-group-item-heading > small,

#custom-html-t1 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t1 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t1 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t1 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t1 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t1 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t1 .list-group-item.active .list-group-item-text,

#custom-html-t1 .list-group-item.active:focus .list-group-item-text,

#custom-html-t1 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t1 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t1 a.list-group-item-success,

#custom-html-t1 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t1 a.list-group-item-success .list-group-item-heading,

#custom-html-t1 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t1 a.list-group-item-success:focus,

#custom-html-t1 a.list-group-item-success:hover,

#custom-html-t1 button.list-group-item-success:focus,

#custom-html-t1 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t1 a.list-group-item-success.active,

#custom-html-t1 a.list-group-item-success.active:focus,

#custom-html-t1 a.list-group-item-success.active:hover,

#custom-html-t1 button.list-group-item-success.active,

#custom-html-t1 button.list-group-item-success.active:focus,

#custom-html-t1 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t1 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t1 a.list-group-item-info,

#custom-html-t1 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t1 a.list-group-item-info .list-group-item-heading,

#custom-html-t1 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t1 a.list-group-item-info:focus,

#custom-html-t1 a.list-group-item-info:hover,

#custom-html-t1 button.list-group-item-info:focus,

#custom-html-t1 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t1 a.list-group-item-info.active,

#custom-html-t1 a.list-group-item-info.active:focus,

#custom-html-t1 a.list-group-item-info.active:hover,

#custom-html-t1 button.list-group-item-info.active,

#custom-html-t1 button.list-group-item-info.active:focus,

#custom-html-t1 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t1 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t1 a.list-group-item-warning,

#custom-html-t1 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t1 a.list-group-item-warning .list-group-item-heading,

#custom-html-t1 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t1 a.list-group-item-warning:focus,

#custom-html-t1 a.list-group-item-warning:hover,

#custom-html-t1 button.list-group-item-warning:focus,

#custom-html-t1 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t1 a.list-group-item-warning.active,

#custom-html-t1 a.list-group-item-warning.active:focus,

#custom-html-t1 a.list-group-item-warning.active:hover,

#custom-html-t1 button.list-group-item-warning.active,

#custom-html-t1 button.list-group-item-warning.active:focus,

#custom-html-t1 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t1 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t1 a.list-group-item-danger,

#custom-html-t1 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t1 a.list-group-item-danger .list-group-item-heading,

#custom-html-t1 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t1 a.list-group-item-danger:focus,

#custom-html-t1 a.list-group-item-danger:hover,

#custom-html-t1 button.list-group-item-danger:focus,

#custom-html-t1 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t1 a.list-group-item-danger.active,

#custom-html-t1 a.list-group-item-danger.active:focus,

#custom-html-t1 a.list-group-item-danger.active:hover,

#custom-html-t1 button.list-group-item-danger.active,

#custom-html-t1 button.list-group-item-danger.active:focus,

#custom-html-t1 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t1 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t1 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t1 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-t1 .panel-body {

  padding: 10px 15px;

}

#custom-html-t1 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t1 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t1 .panel-title > .small,

#custom-html-t1 .panel-title > .small > a,

#custom-html-t1 .panel-title > a,

#custom-html-t1 .panel-title > small,

#custom-html-t1 .panel-title > small > a {

  color: inherit;

}

#custom-html-t1 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t1 .panel > .list-group,

#custom-html-t1 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t1 .panel > .list-group .list-group-item,

#custom-html-t1 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t1 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t1 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t1 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t1 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t1 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t1 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t1 .panel > .panel-collapse > .table,

#custom-html-t1 .panel > .table,

#custom-html-t1 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t1 .panel > .panel-collapse > .table caption,

#custom-html-t1 .panel > .table caption,

#custom-html-t1 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t1 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t1 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t1 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t1 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t1 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t1 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t1 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t1 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t1 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t1 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t1 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t1 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t1 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t1 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t1 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t1 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t1 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t1 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t1 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t1 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t1 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t1 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t1 .panel > .panel-body + .table,

#custom-html-t1 .panel > .panel-body + .table-responsive,

#custom-html-t1 .panel > .table + .panel-body,

#custom-html-t1 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t1 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t1 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t1 .panel > .table-bordered,

#custom-html-t1 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t1 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t1 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t1 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t1 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t1 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t1 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t1 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t1 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t1 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t1 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t1 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t1 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t1 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t1 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t1 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t1 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t1 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t1 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t1 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t1 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t1 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t1 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t1 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t1 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t1 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-t1 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t1 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t1 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t1 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t1 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t1 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t1 .panel-default {

  border-color: #dddddd;

}

#custom-html-t1 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t1 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t1 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t1 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t1 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t1 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t1 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t1 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t1 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t1 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t1 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t1 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t1 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t1 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-t1 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t1 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t1 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t1 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t1 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t1 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t1 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t1 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t1 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t1 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t1 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t1 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t1 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t1 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t1 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t1 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t1 .embed-responsive .embed-responsive-item,

#custom-html-t1 .embed-responsive embed,

#custom-html-t1 .embed-responsive iframe,

#custom-html-t1 .embed-responsive object,

#custom-html-t1 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t1 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t1 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t1 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t1 .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t1 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t1 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t1 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t1 .close:focus,

#custom-html-t1 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t1 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t1 .modal-open {

  overflow: hidden;

}

#custom-html-t1 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t1 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t1 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t1 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t1 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t1 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t1 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t1 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t1 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t1 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t1 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t1 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t1 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t1 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t1 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t1 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t1 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t1 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-t1 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t1 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t1 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t1 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t1 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t1 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t1 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t1 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t1 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t1 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t1 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t1 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t1 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t1 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t1 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t1 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t1 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t1 .popover.top {

  margin-top: -10px;

}

#custom-html-t1 .popover.right {

  margin-left: 10px;

}

#custom-html-t1 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t1 .popover.left {

  margin-left: -10px;

}

#custom-html-t1 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t1 .popover-content {

  padding: 9px 14px;

}

#custom-html-t1 .popover > .arrow,

#custom-html-t1 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t1 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t1 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t1 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t1 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t1 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t1 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t1 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t1 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t1 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t1 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t1 .carousel {

  position: relative;

}

#custom-html-t1 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t1 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t1 .carousel-inner > .item > a > img,

#custom-html-t1 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t1 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t1 .carousel-inner > .item.active.right,

  #custom-html-t1 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t1 .carousel-inner > .item.active.left,

  #custom-html-t1 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t1 .carousel-inner > .item.active,

  #custom-html-t1 .carousel-inner > .item.next.left,

  #custom-html-t1 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t1 .carousel-inner > .active,

#custom-html-t1 .carousel-inner > .next,

#custom-html-t1 .carousel-inner > .prev {

  display: block;

}

#custom-html-t1 .carousel-inner > .active {

  left: 0;

}

#custom-html-t1 .carousel-inner > .next,

#custom-html-t1 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t1 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t1 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t1 .carousel-inner > .next.left,

#custom-html-t1 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t1 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t1 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t1 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t1 .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t1 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t1 .carousel-control:focus,

#custom-html-t1 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t1 .carousel-control .glyphicon-chevron-left,

#custom-html-t1 .carousel-control .glyphicon-chevron-right,

#custom-html-t1 .carousel-control .icon-next,

#custom-html-t1 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t1 .carousel-control .glyphicon-chevron-left,

#custom-html-t1 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t1 .carousel-control .glyphicon-chevron-right,

#custom-html-t1 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t1 .carousel-control .icon-next,

#custom-html-t1 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t1 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t1 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t1 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t1 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t1 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t1 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t1 .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-t1 .btn-group-vertical > .btn-group:after,

#custom-html-t1 .btn-group-vertical > .btn-group:before,

#custom-html-t1 .btn-toolbar:after,

#custom-html-t1 .btn-toolbar:before,

#custom-html-t1 .clearfix:after,

#custom-html-t1 .clearfix:before,

#custom-html-t1 .container-fluid:after,

#custom-html-t1 .container-fluid:before,

#custom-html-t1 .container:after,

#custom-html-t1 .container:before,

#custom-html-t1 .dl-horizontal dd:after,

#custom-html-t1 .dl-horizontal dd:before,

#custom-html-t1 .form-horizontal .form-group:after,

#custom-html-t1 .form-horizontal .form-group:before,

#custom-html-t1 .modal-footer:after,

#custom-html-t1 .modal-footer:before,

#custom-html-t1 .modal-header:after,

#custom-html-t1 .modal-header:before,

#custom-html-t1 .nav:after,

#custom-html-t1 .nav:before,

#custom-html-t1 .navbar-collapse:after,

#custom-html-t1 .navbar-collapse:before,

#custom-html-t1 .navbar-header:after,

#custom-html-t1 .navbar-header:before,

#custom-html-t1 .navbar:after,

#custom-html-t1 .navbar:before,

#custom-html-t1 .pager:after,

#custom-html-t1 .pager:before,

#custom-html-t1 .panel-body:after,

#custom-html-t1 .panel-body:before,

#custom-html-t1 .row:after,

#custom-html-t1 .row:before {

  display: table;

  content: " ";

}

#custom-html-t1 .btn-group-vertical > .btn-group:after,

#custom-html-t1 .btn-toolbar:after,

#custom-html-t1 .clearfix:after,

#custom-html-t1 .container-fluid:after,

#custom-html-t1 .container:after,

#custom-html-t1 .dl-horizontal dd:after,

#custom-html-t1 .form-horizontal .form-group:after,

#custom-html-t1 .modal-footer:after,

#custom-html-t1 .modal-header:after,

#custom-html-t1 .nav:after,

#custom-html-t1 .navbar-collapse:after,

#custom-html-t1 .navbar-header:after,

#custom-html-t1 .navbar:after,

#custom-html-t1 .pager:after,

#custom-html-t1 .panel-body:after,

#custom-html-t1 .row:after {

  clear: both;

}

#custom-html-t1 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t1 .pull-right {

  float: right !important;

}

#custom-html-t1 .pull-left {

  float: left !important;

}

#custom-html-t1 .hide {

  display: none !important;

}

#custom-html-t1 .show {

  display: block !important;

}

#custom-html-t1 .invisible {

  visibility: hidden;

}

#custom-html-t1 .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t1 .hidden {

  display: none !important;

}

#custom-html-t1 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t1 .visible-lg,

#custom-html-t1 .visible-md,

#custom-html-t1 .visible-sm,

#custom-html-t1 .visible-xs {

  display: none !important;

}

#custom-html-t1 .visible-lg-block,

#custom-html-t1 .visible-lg-inline,

#custom-html-t1 .visible-lg-inline-block,

#custom-html-t1 .visible-md-block,

#custom-html-t1 .visible-md-inline,

#custom-html-t1 .visible-md-inline-block,

#custom-html-t1 .visible-sm-block,

#custom-html-t1 .visible-sm-inline,

#custom-html-t1 .visible-sm-inline-block,

#custom-html-t1 .visible-xs-block,

#custom-html-t1 .visible-xs-inline,

#custom-html-t1 .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t1 .visible-sm {

    display: block !important;

  }

  #custom-html-t1 table.visible-sm {

    display: table !important;

  }

  #custom-html-t1 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t1 td.visible-sm,

  #custom-html-t1 th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-t1 .visible-sm-block {

    display: block !important;

  }

  #custom-html-t1 .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-t1 .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-t1 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t1 .visible-md {

    display: block !important;

  }

  #custom-html-t1 table.visible-md {

    display: table !important;

  }

  #custom-html-t1 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t1 td.visible-md,

  #custom-html-t1 th.visible-md {

    display: table-cell !important;

  }

  #custom-html-t1 .visible-md-block {

    display: block !important;

  }

  #custom-html-t1 .visible-md-inline {

    display: inline !important;

  }

  #custom-html-t1 .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-t1 .hidden-md {

    display: none !important;

  }

}

#custom-html-t1 .visible-print {

  display: none !important;

}

#custom-html-t1 .visible-print-block {

  display: none !important;

}

#custom-html-t1 .visible-print-inline {

  display: none !important;

}

#custom-html-t1 .visible-print-inline-block {

  display: none !important;

}

#custom-html-t1 .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-t1 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t1 .intl-tel-input .hide {

  display: none;

}

#custom-html-t1 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t1 .intl-tel-input input,

#custom-html-t1 .intl-tel-input input[type=tel],

#custom-html-t1 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t1 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t1 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t1 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t1 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t1 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t1 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t1 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t1 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t1 .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-t1 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t1 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t1 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t1 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t1 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t1 .intl-tel-input .country-list .country-name,

#custom-html-t1 .intl-tel-input .country-list .dial-code,

#custom-html-t1 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t1 .intl-tel-input .country-list .country-name,

#custom-html-t1 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t1 .intl-tel-input.allow-dropdown input,

#custom-html-t1 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t1 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t1 .intl-tel-input.separate-dial-code input,

#custom-html-t1 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t1 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t1 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t1 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t1 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t1 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t1 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t1 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t1 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t1 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t1 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t1 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t1 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t1 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t1 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t1 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t1 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t1 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t1 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-t1 .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t1 .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t1 .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t1 .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t1 .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-t1 .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t1 .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t1 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t1 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t1 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t1 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t1 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t1 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t1 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t1 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t1 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t1 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t1 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t1 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t1 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t1 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t1 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t1 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t1 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t1 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t1 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t1 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t1 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t1 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t1 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t1 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t1 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t1 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t1 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t1 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t1 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t1 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t1 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t1 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t1 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t1 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t1 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t1 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t1 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t1 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t1 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t1 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t1 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t1 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t1 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t1 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t1 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t1 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t1 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t1 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t1 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t1 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t1 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t1 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t1 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t1 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t1 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t1 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t1 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t1 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t1 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t1 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t1 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t1 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t1 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t1 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t1 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t1 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t1 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t1 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t1 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t1 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t1 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t1 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t1 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t1 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t1 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t1 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t1 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t1 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t1 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t1 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t1 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t1 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t1 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t1 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t1 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t1 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t1 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t1 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t1 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t1 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t1 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t1 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t1 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t1 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t1 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t1 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t1 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t1 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t1 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t1 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t1 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t1 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t1 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-t1 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t1 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t1 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t1 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t1 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t1 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t1 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t1 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t1 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t1 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t1 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t1 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t1 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t1 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t1 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t1 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t1 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t1 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t1 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t1 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t1 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t1 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t1 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t1 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t1 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t1 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t1 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t1 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t1 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t1 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t1 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t1 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t1 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t1 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t1 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t1 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t1 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t1 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t1 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t1 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t1 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t1 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t1 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t1 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t1 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t1 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t1 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t1 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t1 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t1 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t1 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t1 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t1 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t1 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t1 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t1 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t1 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t1 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t1 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t1 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t1 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t1 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t1 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t1 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t1 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t1 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t1 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t1 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t1 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t1 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t1 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t1 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t1 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t1 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t1 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t1 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t1 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t1 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t1 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t1 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t1 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t1 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t1 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t1 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t1 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t1 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t1 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t1 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t1 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t1 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t1 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t1 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t1 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t1 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t1 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t1 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t1 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t1 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t1 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t1 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t1 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t1 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t1 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t1 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t1 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t1 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t1 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t1 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t1 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t1 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t1 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t1 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t1 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t1 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t1 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t1 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t1 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t1 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t1 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-t1 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t1 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t1 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t1 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t1 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t1 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t1 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t1 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t1 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t1 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t1 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t1 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t1 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t1 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t1 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t1 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t1 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-t1 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t1 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t1 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t1 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t1 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t1 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t1 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t1 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t1 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t1 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t1 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t1 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t1 body,

#custom-html-t1 button,

#custom-html-t1 input,

#custom-html-t1 select,

#custom-html-t1 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t1 h1,

#custom-html-t1 h2,

#custom-html-t1 h3,

#custom-html-t1 h4,

#custom-html-t1 h5,

#custom-html-t1 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-t1 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t1 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t1 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t1 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t1 .navbar-main .navbar-nav > .active > a,

#custom-html-t1 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t1 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t1 .navbar-main .navbar-nav > .open > a,

#custom-html-t1 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t1 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t1 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t1 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t1 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t1 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-t1 .navbar-header {

    float: none;

  }

  #custom-html-t1 .navbar-left,

  #custom-html-t1 .navbar-right {

    float: none !important;

  }

  #custom-html-t1 .navbar-toggle {

    display: block;

  }

  #custom-html-t1 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t1 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t1 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t1 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t1 .navbar-nav > li {

    float: none;

  }

  #custom-html-t1 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t1 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-t1 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t1 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t1 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-t1 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t1 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t1 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-t1 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t1 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t1 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t1 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t1 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t1 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-t1 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t1 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-t1 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t1 a.list-group-item.active,

#custom-html-t1 a.list-group-item.active:focus,

#custom-html-t1 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t1 .dropdown-menu > li > a:focus,

#custom-html-t1 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t1 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t1 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t1 body,

#custom-html-t1 html {

  height: 100%;

}

#custom-html-t1 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t1 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t1 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t1 section#header .search {

  margin: 20px 0;

}

#custom-html-t1 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t1 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t1 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t1 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t1 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t1 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t1 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t1 section#footer {

    line-height: 32px;

  }

}

#custom-html-t1 section#footer .back-to-top {

  float: right;

}

#custom-html-t1 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t1 .adminreturndiv {

  display: none !important;

}

#custom-html-t1 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t1 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t1 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t1 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t1 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t1 .navbar-main .navbar-toggle:focus,

#custom-html-t1 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t1 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t1 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-t1 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t1 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t1 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t1 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t1 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t1 .h1,

  #custom-html-t1 h1 {

    font-size: 26px;

  }

  #custom-html-t1 .h2,

  #custom-html-t1 h2 {

    font-size: 20px;

  }

  #custom-html-t1 .h3,

  #custom-html-t1 h3 {

    font-size: 16px;

  }

  #custom-html-t1 .h4,

  #custom-html-t1 h4 {

    font-size: 14px;

  }

  #custom-html-t1 .h5,

  #custom-html-t1 h5 {

    font-size: 12px;

  }

  #custom-html-t1 .h6,

  #custom-html-t1 h6 {

    font-size: 11px;

  }

  #custom-html-t1 div.header-lined small {

    display: none;

  }

  #custom-html-t1 .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-t1 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t1 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t1 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t1 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-t1 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t1 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t1 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t1 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t1 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t1 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-t1 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t1 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t1 .margin-10 {

  margin: 10px;

}

#custom-html-t1 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t1 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t1 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t1 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t1 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t1 .input-inline {

  display: inline-block;

}

#custom-html-t1 .input-inline-100 {

  width: 100px;

}

#custom-html-t1 .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-t1 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t1 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t1 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-t1 i.icon-rss {

  color: #ff6600;

}

#custom-html-t1 section#main-menu {

  background-color: #000000;

}

#custom-html-t1 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t1 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t1 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t1 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t1 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t1 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t1 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t1 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t1 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t1 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t1 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t1 section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-t1 .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-t1 .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-t1 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t1 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t1 .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-t1 #stepResults {

    font-size: 14px;

  }

  #custom-html-t1 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t1 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-t1 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t1 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t1 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t1 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t1 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t1 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t1 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t1 .home-shortcuts li span {

  display: none;

}

#custom-html-t1 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t1 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-t1 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t1 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t1 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t1 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t1 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t1 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t1 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t1 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t1 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t1 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t1 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t1 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t1 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t1 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t1 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t1 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t1 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t1 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t1 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t1 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t1 .tiles .tile:last-child {

  border: 0;

}

#custom-html-t1 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t1 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t1 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t1 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t1 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t1 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t1 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t1 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t1 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t1 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t1 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t1 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t1 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t1 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t1 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t1 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t1 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t1 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t1 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t1 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t1 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t1 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t1 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t1 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t1 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t1 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t1 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t1 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t1 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t1 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t1 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t1 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t1 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t1 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t1 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t1 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t1 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t1 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t1 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t1 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t1 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t1 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t1 ul.top-nav > li,

#custom-html-t1 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t1 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t1 ul.top-nav > li:active > a,

#custom-html-t1 ul.top-nav > li:focus > a,

#custom-html-t1 ul.top-nav > li:hover > a,

#custom-html-t1 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t1 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t1 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t1 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t1 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-t1 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t1 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t1 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t1 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t1 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t1 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t1 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t1 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-t1 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t1 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-t1 .domain-check-availability {

  width: 100px;

}

#custom-html-t1 .domain-step-options {

  min-height: 300px;

}

#custom-html-t1 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t1 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t1 .domain-checker-invalid,

#custom-html-t1 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t1 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t1 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t1 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t1 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t1 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t1 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t1 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t1 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-t1 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t1 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t1 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t1 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t1 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t1 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t1 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t1 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t1 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t1 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t1 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t1 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t1 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t1 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t1 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t1 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t1 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t1 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t1 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t1 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t1 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t1 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t1 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t1 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t1 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t1 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t1 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t1 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t1 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t1 div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t1 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t1 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t1 .product-status-active {

  background-color: #46a546;

}

#custom-html-t1 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t1 .product-status-cancelled,

#custom-html-t1 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t1 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t1 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t1 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t1 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t1 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t1 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t1 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t1 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t1 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t1 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t1 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t1 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t1 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t1 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-t1 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t1 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t1 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t1 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t1 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t1 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t1 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t1 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t1 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t1 .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-t1 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t1 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t1 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t1 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t1 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t1 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t1 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t1 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t1 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t1 .status-pending {

  color: #d9534f;

}

#custom-html-t1 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t1 .status-active,

#custom-html-t1 .status-completed,

#custom-html-t1 .status-open {

  color: #3fad46;

}

#custom-html-t1 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t1 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t1 .status-answered,

#custom-html-t1 .status-fraud {

  color: #000000;

}

#custom-html-t1 .status-expired,

#custom-html-t1 .status-transferred.away {

  color: #004258;

}

#custom-html-t1 .status-cancelled {

  color: #87939f;

}

#custom-html-t1 .status-terminated {

  color: #666666;

}

#custom-html-t1 .status-onhold {

  color: #224488;

}

#custom-html-t1 .status-inprogress {

  color: #cc0000;

}

#custom-html-t1 .status-closed {

  color: #888888;

}

#custom-html-t1 .status-paid {

  color: #498302;

}

#custom-html-t1 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t1 .status-collections {

  color: #9a141e;

}

#custom-html-t1 .status-refunded {

  color: #319fc3;

}

#custom-html-t1 .status-delivered {

  color: #224488;

}

#custom-html-t1 .status-accepted {

  color: #498302;

}

#custom-html-t1 .status-dead,

#custom-html-t1 .status-lost {

  color: #000000;

}

#custom-html-t1 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t1 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t1 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t1 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t1 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t1 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t1 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t1 .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-t1 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t1 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t1 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t1 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t1 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t1 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t1 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t1 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t1 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t1 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t1 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t1 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t1 .ticket-reply .rating,

#custom-html-t1 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t1 .ticket-reply .rating span.star,

#custom-html-t1 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t1 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t1 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t1 .ticket-reply .rating span.star:before,

#custom-html-t1 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t1 .ticket-reply .rating span.star:hover:before,

#custom-html-t1 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t1 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t1 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t1 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t1 .ticket-reply .clear {

  clear: both;

}

#custom-html-t1 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t1 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t1 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t1 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t1 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t1 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t1 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t1 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t1 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t1 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-t1 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t1 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t1 .popover-user-notifications ul li i.far,

#custom-html-t1 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t1 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t1 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t1 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t1 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t1 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t1 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t1 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t1 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t1 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t1 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t1 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t1 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t1 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t1 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t1 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t1 div.credit-card div.end {

  clear: both;

}

#custom-html-t1 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t1 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t1 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t1 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t1 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t1 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t1 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t1 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t1 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t1 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t1 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t1 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t1 .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-t1 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t1 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t1 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t1 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t1 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t1 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t1 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t1 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t1 .kb-category a small {

  color: #888888;

}

#custom-html-t1 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t1 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t1 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t1 .kbarticles a.admin-inline-edit,

#custom-html-t1 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t1 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t1 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t1 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t1 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t1 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t1 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t1 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t1 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t1 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t1 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t1 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t1 #stepResults {

  font-size: 20px;

}

#custom-html-t1 #stepResults .label {

  font-size: 20px;

}

#custom-html-t1 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t1 h3.with-badge i,

#custom-html-t1 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t1 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-t1 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t1 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t1 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t1 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t1 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t1 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t1 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t1 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t1 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t1 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t1 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t1 .login-popover {

  font-size: 12px;

}

#custom-html-t1 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t1 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t1 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t1 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t1 .error-container {

  text-align: center;

}

#custom-html-t1 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t1 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t1 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t1 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t1 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t1 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t1 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t1 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t1 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t1 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-t1 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t1 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t1 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t1 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t1 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t1 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t1 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t1 .email-verification .btn:active,

#custom-html-t1 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t1 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t1 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t1 .email-verification .far,

#custom-html-t1 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-t1 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t1 .email-verification.success .far,

#custom-html-t1 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t1 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t1 .email-verification.failed .far,

#custom-html-t1 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t1 .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-t1 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t1 .md-editor > .md-preview,

#custom-html-t1 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t1 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t1 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t1 .small-font {

  font-size: 0.9em;

}

#custom-html-t1 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t1 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t1 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t1 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t1 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t1 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t1 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t1 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t1 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t1 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t1 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t1 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t1 .panel-heading i.fab,

#custom-html-t1 .panel-heading i.fal,

#custom-html-t1 .panel-heading i.far,

#custom-html-t1 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t1 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t1 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t1 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t1 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t1 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t1 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t1 .panel-sidebar .list-group-item.disabled,

#custom-html-t1 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t1 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t1 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t1 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t1 .panel-sidebar a.list-group-item.active,

#custom-html-t1 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t1 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t1 .panel-sidebar a.list-group-item.active i,

#custom-html-t1 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t1 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t1 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t1 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t1 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t1 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t1 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t1 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t1 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t1 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t1 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t1 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t1 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t1 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t1 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t1 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-t1 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t1 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t1 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t1 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t1 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t1 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t1 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t1 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t1 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t1 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t1 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t1 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t1 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-t1 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t1 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t1 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t1 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t1 .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-t1 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t1 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t1 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t1 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t1 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t1 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t1 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t1 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t1 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t1 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t1 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t1 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t1 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t1 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t1 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t1 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t1 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t1 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t1 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t1 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t1 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t1 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t1 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t1 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t1 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t1 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t1 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t1 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t1 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t1 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t1 .panel-mc-sso .btn,

#custom-html-t1 .panel-mc-sso .form-control,

#custom-html-t1 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t1 .panel-mc-sso small {

  display: block;

}

#custom-html-t1 .social-signin-btns {

  text-align: center;

}

#custom-html-t1 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t1 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t1 .btn-social i.far,

#custom-html-t1 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-facebook.active,

#custom-html-t1 .btn-facebook:active,

#custom-html-t1 .btn-facebook:focus,

#custom-html-t1 .btn-facebook:hover,

#custom-html-t1 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-facebook.active,

#custom-html-t1 .btn-facebook:active,

#custom-html-t1 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t1 .btn-facebook.disabled,

#custom-html-t1 .btn-facebook.disabled.active,

#custom-html-t1 .btn-facebook.disabled:active,

#custom-html-t1 .btn-facebook.disabled:focus,

#custom-html-t1 .btn-facebook.disabled:hover,

#custom-html-t1 .btn-facebook[disabled],

#custom-html-t1 .btn-facebook[disabled].active,

#custom-html-t1 .btn-facebook[disabled]:active,

#custom-html-t1 .btn-facebook[disabled]:focus,

#custom-html-t1 .btn-facebook[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-facebook,

#custom-html-t1 fieldset[disabled] .btn-facebook.active,

#custom-html-t1 fieldset[disabled] .btn-facebook:active,

#custom-html-t1 fieldset[disabled] .btn-facebook:focus,

#custom-html-t1 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-google.active,

#custom-html-t1 .btn-google:active,

#custom-html-t1 .btn-google:focus,

#custom-html-t1 .btn-google:hover,

#custom-html-t1 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-google.active,

#custom-html-t1 .btn-google:active,

#custom-html-t1 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t1 .btn-google-plus.disabled.active,

#custom-html-t1 .btn-google-plus.disabled:active,

#custom-html-t1 .btn-google-plus.disabled:focus,

#custom-html-t1 .btn-google-plus[disabled].active,

#custom-html-t1 .btn-google-plus[disabled]:active,

#custom-html-t1 .btn-google-plus[disabled]:focus,

#custom-html-t1 .btn-google-plus[disabled]:hover,

#custom-html-t1 .btn-google.disabled,

#custom-html-t1 .btn-google.disabled:hover,

#custom-html-t1 .btn-google[disabled],

#custom-html-t1 fieldset[disabled] .btn-google,

#custom-html-t1 fieldset[disabled] .btn-google-plus.active,

#custom-html-t1 fieldset[disabled] .btn-google-plus:active,

#custom-html-t1 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t1 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-twitter.active,

#custom-html-t1 .btn-twitter:active,

#custom-html-t1 .btn-twitter:focus,

#custom-html-t1 .btn-twitter:hover,

#custom-html-t1 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-twitter.active,

#custom-html-t1 .btn-twitter:active,

#custom-html-t1 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t1 .btn-twitter.disabled,

#custom-html-t1 .btn-twitter.disabled.active,

#custom-html-t1 .btn-twitter.disabled:active,

#custom-html-t1 .btn-twitter.disabled:focus,

#custom-html-t1 .btn-twitter.disabled:hover,

#custom-html-t1 .btn-twitter[disabled],

#custom-html-t1 .btn-twitter[disabled].active,

#custom-html-t1 .btn-twitter[disabled]:active,

#custom-html-t1 .btn-twitter[disabled]:focus,

#custom-html-t1 .btn-twitter[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-twitter,

#custom-html-t1 fieldset[disabled] .btn-twitter.active,

#custom-html-t1 fieldset[disabled] .btn-twitter:active,

#custom-html-t1 fieldset[disabled] .btn-twitter:focus,

#custom-html-t1 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t1 .providerLinkingFeedback {

  display: none;

}

#custom-html-t1 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t1 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t1 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t1 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t1 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t1 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t1 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t1 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t1 #registration .field,

#custom-html-t1 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t1 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t1 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t1 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t1 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t1 #registration textarea.field {

  height: auto;

}

#custom-html-t1 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t1 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t1 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t1 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t1 #registration .field[disabled],

#custom-html-t1 #registration .field[readonly],

#custom-html-t1 #registration .form-control[disabled],

#custom-html-t1 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t1 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t1 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t1 .upgrade .product-to-be-upgraded h4,

#custom-html-t1 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t1 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t1 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t1 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t1 .upgrade .products .product .current,

#custom-html-t1 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t1 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t1 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t1 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-t1 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t1 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t1 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t1 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t1 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t1 .upgrade .products .far,

#custom-html-t1 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t1 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t1 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t1 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t1 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t1 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t1 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .bootstrap-switch input[type=checkbox],

#custom-html-t1 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t1 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t1 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t1 .md-editor .md-footer,

#custom-html-t1 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t1 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t1 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t1 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t1 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t1 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t1 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t1 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t1 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t1 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t1 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t1 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t1 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t1 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t1 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t1 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t1 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t1 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t1 table.dataTable td,

#custom-html-t1 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t1 table.dataTable td.dataTables_empty,

#custom-html-t1 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t1 table.dataTable.nowrap td,

#custom-html-t1 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t1 table.dataTable thead > tr > td.sorting,

#custom-html-t1 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t1 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t1 table.dataTable thead > tr > th.sorting,

#custom-html-t1 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t1 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t1 table.dataTable thead > tr > td:active,

#custom-html-t1 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t1 table.dataTable thead .sorting,

#custom-html-t1 table.dataTable thead .sorting_asc,

#custom-html-t1 table.dataTable thead .sorting_asc_disabled,

#custom-html-t1 table.dataTable thead .sorting_desc,

#custom-html-t1 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t1 table.dataTable thead .sorting:after,

#custom-html-t1 table.dataTable thead .sorting_asc:after,

#custom-html-t1 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t1 table.dataTable thead .sorting_desc:after,

#custom-html-t1 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t1 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t1 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t1 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t1 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t1 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t1 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t1 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t1 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t1 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t1 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t1 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t1 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t1 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-t1 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t1 table.dataTable.table-condensed .sorting:after,

#custom-html-t1 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t1 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t1 table.table-bordered.dataTable td,

#custom-html-t1 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t1 table.table-bordered.dataTable td:last-child,

#custom-html-t1 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t1 table.table-bordered.dataTable tbody td,

#custom-html-t1 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t1 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t1 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t1 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t1 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t1 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t1 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t1 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t1 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t1 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t1 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t1 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t1 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t1 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t1 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t1 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t1 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t1 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t1 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t1 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t1 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t1 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t1 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t1 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t1 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t1 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-t1 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t1 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t1 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t1 .multiselect-container > li {

  padding: 0;

}

#custom-html-t1 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t1 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t1 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t1 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t1 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t1 .multiselect-container > li > a > label.checkbox,

#custom-html-t1 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t1 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t1 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t1 .form-inline .multiselect-container label.checkbox,

#custom-html-t1 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t1 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t1 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-t1 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-t1 body {

  margin: 0;

}

#custom-html-t1 article,

#custom-html-t1 aside,

#custom-html-t1 details,

#custom-html-t1 figcaption,

#custom-html-t1 figure,

#custom-html-t1 footer,

#custom-html-t1 header,

#custom-html-t1 hgroup,

#custom-html-t1 main,

#custom-html-t1 menu,

#custom-html-t1 nav,

#custom-html-t1 section,

#custom-html-t1 summary {

  display: block;

}

#custom-html-t1 audio,

#custom-html-t1 canvas,

#custom-html-t1 progress,

#custom-html-t1 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t1 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t1 [hidden],

#custom-html-t1 template {

  display: none;

}

#custom-html-t1 a {

  background-color: transparent;

}

#custom-html-t1 a:active,

#custom-html-t1 a:hover {

  outline: 0;

}

#custom-html-t1 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t1 b,

#custom-html-t1 strong {

  font-weight: 700;

}

#custom-html-t1 dfn {

  font-style: italic;

}

#custom-html-t1 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t1 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t1 small {

  font-size: 80%;

}

#custom-html-t1 sub,

#custom-html-t1 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t1 sup {

  top: -0.5em;

}

#custom-html-t1 sub {

  bottom: -0.25em;

}

#custom-html-t1 img {

  border: 0;

}

#custom-html-t1 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t1 figure {

  margin: 1em 40px;

}

#custom-html-t1 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t1 pre {

  overflow: auto;

}

#custom-html-t1 code,

#custom-html-t1 kbd,

#custom-html-t1 pre,

#custom-html-t1 samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-t1 button,

#custom-html-t1 input,

#custom-html-t1 optgroup,

#custom-html-t1 select,

#custom-html-t1 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t1 button {

  overflow: visible;

}

#custom-html-t1 button,

#custom-html-t1 select {

  text-transform: none;

}

#custom-html-t1 button,

#custom-html-t1 html input[type=button],

#custom-html-t1 input[type=reset],

#custom-html-t1 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t1 button[disabled],

#custom-html-t1 html input[disabled] {

  cursor: default;

}

#custom-html-t1 button::-moz-focus-inner,

#custom-html-t1 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t1 input {

  line-height: normal;

}

#custom-html-t1 input[type=checkbox],

#custom-html-t1 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-t1 input[type=number]::-webkit-inner-spin-button,

#custom-html-t1 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t1 input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-t1 input[type=search]::-webkit-search-cancel-button,

#custom-html-t1 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t1 fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-t1 legend {

  padding: 0;

  border: 0;

}

#custom-html-t1 textarea {

  overflow: auto;

}

#custom-html-t1 optgroup {

  font-weight: 700;

}

#custom-html-t1 table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-t1 td,

#custom-html-t1 th {

  padding: 0;

}

@media print {

  #custom-html-t1 *,

  #custom-html-t1 :after,

  #custom-html-t1 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t1 a,

  #custom-html-t1 a:visited {

    text-decoration: underline;

  }

  #custom-html-t1 a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-t1 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t1 a[href^="#"]:after,

  #custom-html-t1 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t1 blockquote,

  #custom-html-t1 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t1 thead {

    display: table-header-group;

  }

  #custom-html-t1 img,

  #custom-html-t1 tr {

    page-break-inside: avoid;

  }

  #custom-html-t1 img {

    max-width: 100% !important;

  }

  #custom-html-t1 h2,

  #custom-html-t1 h3,

  #custom-html-t1 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t1 h2,

  #custom-html-t1 h3 {

    page-break-after: avoid;

  }

  #custom-html-t1 .navbar {

    display: none;

  }

  #custom-html-t1 .btn > .caret,

  #custom-html-t1 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t1 .label {

    border: 1px solid #000000;

  }

  #custom-html-t1 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t1 .table td,

  #custom-html-t1 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t1 .table-bordered td,

  #custom-html-t1 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t1 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t1 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t1 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t1 .glyphicon-eur:before,

#custom-html-t1 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t1 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t1 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t1 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t1 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t1 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t1 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t1 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t1 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-t1 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t1 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t1 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t1 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t1 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t1 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t1 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t1 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t1 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t1 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t1 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t1 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t1 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t1 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t1 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t1 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t1 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t1 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t1 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t1 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t1 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t1 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t1 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t1 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t1 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t1 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t1 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t1 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t1 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t1 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t1 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t1 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t1 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t1 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t1 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t1 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t1 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t1 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t1 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t1 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t1 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t1 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t1 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t1 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t1 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t1 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t1 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t1 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t1 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t1 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t1 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t1 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t1 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t1 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t1 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t1 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t1 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t1 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t1 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t1 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t1 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t1 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t1 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t1 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t1 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t1 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t1 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t1 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t1 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t1 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t1 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t1 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t1 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t1 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t1 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t1 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t1 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t1 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t1 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t1 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t1 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t1 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t1 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t1 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t1 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t1 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t1 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t1 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t1 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t1 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t1 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t1 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t1 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t1 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t1 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t1 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t1 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t1 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t1 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t1 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t1 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t1 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t1 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t1 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t1 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t1 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t1 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t1 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t1 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t1 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t1 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t1 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t1 .glyphicon-bullhorn:before {

  content: "\e122";

}


#custom-html-t1 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t1 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t1 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t1 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t1 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t1 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t1 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t1 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t1 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t1 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t1 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t1 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t1 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t1 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t1 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t1 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t1 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t1 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t1 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t1 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t1 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t1 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t1 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t1 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t1 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t1 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t1 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t1 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t1 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t1 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-t1 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t1 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t1 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t1 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t1 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t1 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t1 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t1 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t1 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t1 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t1 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t1 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t1 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t1 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t1 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t1 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t1 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t1 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t1 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t1 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t1 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t1 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t1 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t1 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t1 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t1 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t1 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t1 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t1 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t1 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t1 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t1 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t1 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t1 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t1 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t1 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t1 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t1 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t1 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t1 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t1 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t1 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t1 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t1 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t1 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t1 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t1 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t1 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t1 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t1 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t1 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t1 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t1 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t1 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t1 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t1 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t1 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t1 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t1 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t1 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t1 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t1 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t1 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t1 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t1 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t1 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t1 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-t1 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t1 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t1 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t1 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t1 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t1 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t1 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t1 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t1 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t1 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t1 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t1 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t1 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t1 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t1 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t1 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t1 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t1 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t1 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t1 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t1 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t1 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t1 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t1 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t1 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t1 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t1 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t1 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t1 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t1 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t1 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t1 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t1 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t1 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t1 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t1 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t1 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t1 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t1 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t1 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t1 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t1 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t1 :after,

#custom-html-t1 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t1 html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t1 body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-t1 button,

#custom-html-t1 input,

#custom-html-t1 select,

#custom-html-t1 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t1 a {

  color: #000;

  text-decoration: none;

}

#custom-html-t1 a:focus,

#custom-html-t1 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t1 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t1 figure {

  margin: 0;

}

#custom-html-t1 img {

  vertical-align: middle;

}

#custom-html-t1 .carousel-inner > .item > a > img,

#custom-html-t1 .carousel-inner > .item > img,

#custom-html-t1 .img-responsive,

#custom-html-t1 .thumbnail a > img,

#custom-html-t1 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t1 .img-rounded {

  border-radius: 6px;

}

#custom-html-t1 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t1 .img-circle {

  border-radius: 50%;

}

#custom-html-t1 hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t1 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t1 .sr-only-focusable:active,

#custom-html-t1 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t1 [role=button] {

  cursor: pointer;

}

#custom-html-t1 .h1,

#custom-html-t1 .h2,

#custom-html-t1 .h3,

#custom-html-t1 .h4,

#custom-html-t1 .h5,

#custom-html-t1 .h6,

#custom-html-t1 h1,

#custom-html-t1 h2,

#custom-html-t1 h3,

#custom-html-t1 h4,

#custom-html-t1 h5,

#custom-html-t1 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t1 .h1 .small,

#custom-html-t1 .h1 small,

#custom-html-t1 .h2 .small,

#custom-html-t1 .h2 small,

#custom-html-t1 .h3 .small,

#custom-html-t1 .h3 small,

#custom-html-t1 .h4 .small,

#custom-html-t1 .h4 small,

#custom-html-t1 .h5 .small,

#custom-html-t1 .h5 small,

#custom-html-t1 .h6 .small,

#custom-html-t1 .h6 small,

#custom-html-t1 h1 .small,

#custom-html-t1 h1 small,

#custom-html-t1 h2 .small,

#custom-html-t1 h2 small,

#custom-html-t1 h3 .small,

#custom-html-t1 h3 small,

#custom-html-t1 h4 .small,

#custom-html-t1 h4 small,

#custom-html-t1 h5 .small,

#custom-html-t1 h5 small,

#custom-html-t1 h6 .small,

#custom-html-t1 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t1 .h1,

#custom-html-t1 .h2,

#custom-html-t1 .h3,

#custom-html-t1 h1,

#custom-html-t1 h2,

#custom-html-t1 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t1 .h1 .small,

#custom-html-t1 .h1 small,

#custom-html-t1 .h2 .small,

#custom-html-t1 .h2 small,

#custom-html-t1 .h3 .small,

#custom-html-t1 .h3 small,

#custom-html-t1 h1 .small,

#custom-html-t1 h1 small,

#custom-html-t1 h2 .small,

#custom-html-t1 h2 small,

#custom-html-t1 h3 .small,

#custom-html-t1 h3 small {

  font-size: 65%;

}

#custom-html-t1 .h4,

#custom-html-t1 .h5,

#custom-html-t1 .h6,

#custom-html-t1 h4,

#custom-html-t1 h5,

#custom-html-t1 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t1 .h4 .small,

#custom-html-t1 .h4 small,

#custom-html-t1 .h5 .small,

#custom-html-t1 .h5 small,

#custom-html-t1 .h6 .small,

#custom-html-t1 .h6 small,

#custom-html-t1 h4 .small,

#custom-html-t1 h4 small,

#custom-html-t1 h5 .small,

#custom-html-t1 h5 small,

#custom-html-t1 h6 .small,

#custom-html-t1 h6 small {

  font-size: 75%;

}

#custom-html-t1 .h1,

#custom-html-t1 h1 {

  font-size: 36px;

}

#custom-html-t1 .h2,

#custom-html-t1 h2 {

  font-size: 30px;

}

#custom-html-t1 .h3,

#custom-html-t1 h3 {

  font-size: 24px;

}

#custom-html-t1 .h4,

#custom-html-t1 h4 {

  font-size: 18px;

}

#custom-html-t1 .h5,

#custom-html-t1 h5 {

  font-size: 14px;

}

#custom-html-t1 .h6,

#custom-html-t1 h6 {

  font-size: 12px;

}

#custom-html-t1 p {

  margin: 0 0 10px;

}

#custom-html-t1 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t1 .lead {

    font-size: 21px;

  }

}

#custom-html-t1 .small,

#custom-html-t1 small {

  font-size: 85%;

}

#custom-html-t1 .mark,

#custom-html-t1 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t1 .text-left {

  text-align: left;

}

#custom-html-t1 .text-right {

  text-align: right;

}

#custom-html-t1 .text-center {

  text-align: center;

}

#custom-html-t1 .text-justify {

  text-align: justify;

}

#custom-html-t1 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t1 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t1 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t1 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t1 .text-muted {

  color: #777777;

}

#custom-html-t1 .text-primary {

  color: #000000;

}

#custom-html-t1 a.text-primary:focus,

#custom-html-t1 a.text-primary:hover {

  color: #000000;

}

#custom-html-t1 .text-success {

  color: #3c763d;

}

#custom-html-t1 a.text-success:focus,

#custom-html-t1 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t1 .text-info {

  color: #31708f;

}

#custom-html-t1 a.text-info:focus,

#custom-html-t1 a.text-info:hover {

  color: #000000;

}

#custom-html-t1 .text-warning {

  color: #8a6d3b;

}

#custom-html-t1 a.text-warning:focus,

#custom-html-t1 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t1 .text-danger {

  color: #a94442;

}

#custom-html-t1 a.text-danger:focus,

#custom-html-t1 a.text-danger:hover {

  color: #843534;

}

#custom-html-t1 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t1 a.bg-primary:focus,

#custom-html-t1 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t1 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t1 a.bg-success:focus,

#custom-html-t1 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t1 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t1 a.bg-info:focus,

#custom-html-t1 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t1 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t1 a.bg-warning:focus,

#custom-html-t1 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t1 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t1 a.bg-danger:focus,

#custom-html-t1 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t1 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t1 ol,

#custom-html-t1 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t1 ol ol,

#custom-html-t1 ol ul,

#custom-html-t1 ul ol,

#custom-html-t1 ul ul {

  margin-bottom: 0;

}

#custom-html-t1 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t1 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t1 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t1 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t1 dd,

#custom-html-t1 dt {

  line-height: 1.42857143;

}

#custom-html-t1 dt {

  font-weight: 700;

}

#custom-html-t1 dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t1 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t1 .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-t1 abbr[data-original-title],

#custom-html-t1 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t1 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t1 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t1 blockquote ol:last-child,

#custom-html-t1 blockquote p:last-child,

#custom-html-t1 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t1 blockquote .small,

#custom-html-t1 blockquote footer,

#custom-html-t1 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-t1 blockquote .small:before,

#custom-html-t1 blockquote footer:before,

#custom-html-t1 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t1 .blockquote-reverse,

#custom-html-t1 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t1 .blockquote-reverse .small:before,

#custom-html-t1 .blockquote-reverse footer:before,

#custom-html-t1 .blockquote-reverse small:before,

#custom-html-t1 blockquote.pull-right .small:before,

#custom-html-t1 blockquote.pull-right footer:before,

#custom-html-t1 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t1 .blockquote-reverse .small:after,

#custom-html-t1 .blockquote-reverse footer:after,

#custom-html-t1 .blockquote-reverse small:after,

#custom-html-t1 blockquote.pull-right .small:after,

#custom-html-t1 blockquote.pull-right footer:after,

#custom-html-t1 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t1 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t1 code,

#custom-html-t1 kbd,

#custom-html-t1 pre,

#custom-html-t1 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-t1 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t1 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t1 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t1 pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t1 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t1 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t1 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-t1 .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-t1 .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t1 .container {

    width: 1170px;

  }

}

#custom-html-t1 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t1 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t1 .col-lg-1,

#custom-html-t1 .col-lg-10,

#custom-html-t1 .col-lg-11,

#custom-html-t1 .col-lg-12,

#custom-html-t1 .col-lg-2,

#custom-html-t1 .col-lg-3,

#custom-html-t1 .col-lg-4,

#custom-html-t1 .col-lg-5,

#custom-html-t1 .col-lg-6,

#custom-html-t1 .col-lg-7,

#custom-html-t1 .col-lg-8,

#custom-html-t1 .col-lg-9,

#custom-html-t1 .col-md-1,

#custom-html-t1 .col-md-10,

#custom-html-t1 .col-md-11,

#custom-html-t1 .col-md-12,

#custom-html-t1 .col-md-2,

#custom-html-t1 .col-md-3,

#custom-html-t1 .col-md-4,

#custom-html-t1 .col-md-5,

#custom-html-t1 .col-md-6,

#custom-html-t1 .col-md-7,

#custom-html-t1 .col-md-8,

#custom-html-t1 .col-md-9,

#custom-html-t1 .col-sm-1,

#custom-html-t1 .col-sm-10,

#custom-html-t1 .col-sm-11,

#custom-html-t1 .col-sm-12,

#custom-html-t1 .col-sm-2,

#custom-html-t1 .col-sm-3,

#custom-html-t1 .col-sm-4,

#custom-html-t1 .col-sm-5,

#custom-html-t1 .col-sm-6,

#custom-html-t1 .col-sm-7,

#custom-html-t1 .col-sm-8,

#custom-html-t1 .col-sm-9,

#custom-html-t1 .col-xs-1,

#custom-html-t1 .col-xs-10,

#custom-html-t1 .col-xs-11,

#custom-html-t1 .col-xs-12,

#custom-html-t1 .col-xs-2,

#custom-html-t1 .col-xs-3,

#custom-html-t1 .col-xs-4,

#custom-html-t1 .col-xs-5,

#custom-html-t1 .col-xs-6,

#custom-html-t1 .col-xs-7,

#custom-html-t1 .col-xs-8,

#custom-html-t1 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t1 .col-xs-1,

#custom-html-t1 .col-xs-10,

#custom-html-t1 .col-xs-11,

#custom-html-t1 .col-xs-12,

#custom-html-t1 .col-xs-2,

#custom-html-t1 .col-xs-3,

#custom-html-t1 .col-xs-4,

#custom-html-t1 .col-xs-5,

#custom-html-t1 .col-xs-6,

#custom-html-t1 .col-xs-7,

#custom-html-t1 .col-xs-8,

#custom-html-t1 .col-xs-9 {

  float: left;

}

#custom-html-t1 .col-xs-12 {

  width: 100%;

}

#custom-html-t1 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t1 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t1 .col-xs-9 {

  width: 75%;

}

#custom-html-t1 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t1 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t1 .col-xs-6 {

  width: 50%;

}

#custom-html-t1 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t1 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-t1 .col-xs-3 {

  width: 25%;

}

#custom-html-t1 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t1 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t1 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t1 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t1 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t1 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t1 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t1 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t1 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t1 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t1 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t1 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t1 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t1 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t1 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t1 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t1 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t1 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t1 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t1 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t1 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t1 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t1 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t1 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t1 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t1 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t1 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t1 .col-xs-push-0 {

  left: auto;

}

#custom-html-t1 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t1 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t1 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t1 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t1 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t1 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t1 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t1 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t1 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t1 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t1 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t1 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t1 .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t1 .col-sm-1,

  #custom-html-t1 .col-sm-10,

  #custom-html-t1 .col-sm-11,

  #custom-html-t1 .col-sm-12,

  #custom-html-t1 .col-sm-2,

  #custom-html-t1 .col-sm-3,

  #custom-html-t1 .col-sm-4,

  #custom-html-t1 .col-sm-5,

  #custom-html-t1 .col-sm-6,

  #custom-html-t1 .col-sm-7,

  #custom-html-t1 .col-sm-8,

  #custom-html-t1 .col-sm-9 {

    float: left;

  }

  #custom-html-t1 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t1 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t1 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t1 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t1 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t1 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t1 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t1 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t1 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t1 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t1 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t1 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t1 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t1 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t1 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t1 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t1 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t1 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t1 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t1 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t1 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t1 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-t1 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t1 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t1 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t1 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t1 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t1 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t1 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t1 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t1 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t1 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t1 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t1 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t1 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t1 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t1 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t1 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t1 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t1 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t1 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t1 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t1 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t1 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t1 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t1 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t1 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t1 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t1 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t1 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t1 .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-t1 .col-md-1,

  #custom-html-t1 .col-md-10,

  #custom-html-t1 .col-md-11,

  #custom-html-t1 .col-md-12,

  #custom-html-t1 .col-md-2,

  #custom-html-t1 .col-md-3,

  #custom-html-t1 .col-md-4,

  #custom-html-t1 .col-md-5,

  #custom-html-t1 .col-md-6,

  #custom-html-t1 .col-md-7,

  #custom-html-t1 .col-md-8,

  #custom-html-t1 .col-md-9 {

    float: left;

  }

  #custom-html-t1 .col-md-12 {

    width: 100%;

  }

  #custom-html-t1 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t1 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t1 .col-md-9 {

    width: 75%;

  }

  #custom-html-t1 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t1 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t1 .col-md-6 {

    width: 50%;

  }

  #custom-html-t1 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t1 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t1 .col-md-3 {

    width: 25%;

  }

  #custom-html-t1 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t1 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t1 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t1 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t1 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t1 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t1 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t1 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t1 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t1 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t1 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t1 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t1 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t1 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t1 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t1 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t1 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t1 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t1 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t1 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t1 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t1 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t1 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t1 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t1 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-t1 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t1 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t1 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t1 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t1 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t1 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t1 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t1 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t1 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t1 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t1 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t1 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t1 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t1 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t1 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t1 .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-t1 .col-lg-1,

  #custom-html-t1 .col-lg-10,

  #custom-html-t1 .col-lg-11,

  #custom-html-t1 .col-lg-12,

  #custom-html-t1 .col-lg-2,

  #custom-html-t1 .col-lg-3,

  #custom-html-t1 .col-lg-4,

  #custom-html-t1 .col-lg-5,

  #custom-html-t1 .col-lg-6,

  #custom-html-t1 .col-lg-7,

  #custom-html-t1 .col-lg-8,

  #custom-html-t1 .col-lg-9 {

    float: left;

  }

  #custom-html-t1 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t1 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t1 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t1 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t1 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t1 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t1 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t1 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t1 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t1 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t1 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t1 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t1 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t1 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t1 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t1 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t1 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t1 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t1 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t1 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t1 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t1 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-t1 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t1 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t1 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t1 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t1 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t1 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t1 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t1 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t1 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t1 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t1 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t1 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t1 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t1 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t1 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t1 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t1 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t1 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t1 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t1 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t1 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t1 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t1 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t1 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t1 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t1 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t1 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t1 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t1 .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-t1 table {

  background-color: transparent;

}

#custom-html-t1 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t1 th {

  text-align: left;

}

#custom-html-t1 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t1 .table > tbody > tr > td,

#custom-html-t1 .table > tbody > tr > th,

#custom-html-t1 .table > tfoot > tr > td,

#custom-html-t1 .table > tfoot > tr > th,

#custom-html-t1 .table > thead > tr > td,

#custom-html-t1 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t1 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t1 .table > caption + thead > tr:first-child > td,

#custom-html-t1 .table > caption + thead > tr:first-child > th,

#custom-html-t1 .table > colgroup + thead > tr:first-child > td,

#custom-html-t1 .table > colgroup + thead > tr:first-child > th,

#custom-html-t1 .table > thead:first-child > tr:first-child > td,

#custom-html-t1 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t1 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t1 .table .table {

  background-color: #ffffff;

}

#custom-html-t1 .table-condensed > tbody > tr > td,

#custom-html-t1 .table-condensed > tbody > tr > th,

#custom-html-t1 .table-condensed > tfoot > tr > td,

#custom-html-t1 .table-condensed > tfoot > tr > th,

#custom-html-t1 .table-condensed > thead > tr > td,

#custom-html-t1 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t1 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t1 .table-bordered > tbody > tr > td,

#custom-html-t1 .table-bordered > tbody > tr > th,

#custom-html-t1 .table-bordered > tfoot > tr > td,

#custom-html-t1 .table-bordered > tfoot > tr > th,

#custom-html-t1 .table-bordered > thead > tr > td,

#custom-html-t1 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t1 .table-bordered > thead > tr > td,

#custom-html-t1 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t1 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t1 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t1 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t1 table td[class*=col-],

#custom-html-t1 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t1 .table > tbody > tr.active > td,

#custom-html-t1 .table > tbody > tr.active > th,

#custom-html-t1 .table > tbody > tr > td.active,

#custom-html-t1 .table > tbody > tr > th.active,

#custom-html-t1 .table > tfoot > tr.active > td,

#custom-html-t1 .table > tfoot > tr.active > th,

#custom-html-t1 .table > tfoot > tr > td.active,

#custom-html-t1 .table > tfoot > tr > th.active,

#custom-html-t1 .table > thead > tr.active > td,

#custom-html-t1 .table > thead > tr.active > th,

#custom-html-t1 .table > thead > tr > td.active,

#custom-html-t1 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t1 .table-hover > tbody > tr.active:hover > td,

#custom-html-t1 .table-hover > tbody > tr.active:hover > th,

#custom-html-t1 .table-hover > tbody > tr:hover > .active,

#custom-html-t1 .table-hover > tbody > tr > td.active:hover,

#custom-html-t1 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t1 .table > tbody > tr.success > td,

#custom-html-t1 .table > tbody > tr.success > th,

#custom-html-t1 .table > tbody > tr > td.success,

#custom-html-t1 .table > tbody > tr > th.success,

#custom-html-t1 .table > tfoot > tr.success > td,

#custom-html-t1 .table > tfoot > tr.success > th,

#custom-html-t1 .table > tfoot > tr > td.success,

#custom-html-t1 .table > tfoot > tr > th.success,

#custom-html-t1 .table > thead > tr.success > td,

#custom-html-t1 .table > thead > tr.success > th,

#custom-html-t1 .table > thead > tr > td.success,

#custom-html-t1 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t1 .table-hover > tbody > tr.success:hover > td,

#custom-html-t1 .table-hover > tbody > tr.success:hover > th,

#custom-html-t1 .table-hover > tbody > tr:hover > .success,

#custom-html-t1 .table-hover > tbody > tr > td.success:hover,

#custom-html-t1 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t1 .table > tbody > tr.info > td,

#custom-html-t1 .table > tbody > tr.info > th,

#custom-html-t1 .table > tbody > tr > td.info,

#custom-html-t1 .table > tbody > tr > th.info,

#custom-html-t1 .table > tfoot > tr.info > td,

#custom-html-t1 .table > tfoot > tr.info > th,

#custom-html-t1 .table > tfoot > tr > td.info,

#custom-html-t1 .table > tfoot > tr > th.info,

#custom-html-t1 .table > thead > tr.info > td,

#custom-html-t1 .table > thead > tr.info > th,

#custom-html-t1 .table > thead > tr > td.info,

#custom-html-t1 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t1 .table-hover > tbody > tr.info:hover > td,

#custom-html-t1 .table-hover > tbody > tr.info:hover > th,

#custom-html-t1 .table-hover > tbody > tr:hover > .info,

#custom-html-t1 .table-hover > tbody > tr > td.info:hover,

#custom-html-t1 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t1 .table > tbody > tr.warning > td,

#custom-html-t1 .table > tbody > tr.warning > th,

#custom-html-t1 .table > tbody > tr > td.warning,

#custom-html-t1 .table > tbody > tr > th.warning,

#custom-html-t1 .table > tfoot > tr.warning > td,

#custom-html-t1 .table > tfoot > tr.warning > th,

#custom-html-t1 .table > tfoot > tr > td.warning,

#custom-html-t1 .table > tfoot > tr > th.warning,

#custom-html-t1 .table > thead > tr.warning > td,

#custom-html-t1 .table > thead > tr.warning > th,

#custom-html-t1 .table > thead > tr > td.warning,

#custom-html-t1 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t1 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t1 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t1 .table-hover > tbody > tr:hover > .warning,

#custom-html-t1 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t1 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t1 .table > tbody > tr.danger > td,

#custom-html-t1 .table > tbody > tr.danger > th,

#custom-html-t1 .table > tbody > tr > td.danger,

#custom-html-t1 .table > tbody > tr > th.danger,

#custom-html-t1 .table > tfoot > tr.danger > td,

#custom-html-t1 .table > tfoot > tr.danger > th,

#custom-html-t1 .table > tfoot > tr > td.danger,

#custom-html-t1 .table > tfoot > tr > th.danger,

#custom-html-t1 .table > thead > tr.danger > td,

#custom-html-t1 .table > thead > tr.danger > th,

#custom-html-t1 .table > thead > tr > td.danger,

#custom-html-t1 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t1 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t1 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t1 .table-hover > tbody > tr:hover > .danger,

#custom-html-t1 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t1 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t1 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t1 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t1 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t1 .table-responsive > .table > tbody > tr > td,

  #custom-html-t1 .table-responsive > .table > tbody > tr > th,

  #custom-html-t1 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t1 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t1 .table-responsive > .table > thead > tr > td,

  #custom-html-t1 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t1 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t1 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t1 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t1 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t1 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t1 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t1 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t1 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t1 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t1 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-t1 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t1 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t1 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t1 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t1 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t1 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t1 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-t1 fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-t1 legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t1 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t1 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t1 input[type=checkbox],

#custom-html-t1 input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t1 input[type=file] {

  display: block;

}

#custom-html-t1 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-t1 select[multiple],

#custom-html-t1 select[size] {

  height: auto;

}

#custom-html-t1 input[type=checkbox]:focus,

#custom-html-t1 input[type=file]:focus,

#custom-html-t1 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t1 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t1 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t1 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t1 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t1 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t1 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t1 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t1 .form-control[disabled],

#custom-html-t1 .form-control[readonly],

#custom-html-t1 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t1 .form-control[disabled],

#custom-html-t1 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t1 textarea.form-control {

  height: auto;

}

#custom-html-t1 input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t1 input[type=date].form-control,

  #custom-html-t1 input[type=datetime-local].form-control,

  #custom-html-t1 input[type=month].form-control,

  #custom-html-t1 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t1 .input-group-sm input[type=date],

  #custom-html-t1 .input-group-sm input[type=datetime-local],

  #custom-html-t1 .input-group-sm input[type=month],

  #custom-html-t1 .input-group-sm input[type=time],

  #custom-html-t1 input[type=date].input-sm,

  #custom-html-t1 input[type=datetime-local].input-sm,

  #custom-html-t1 input[type=month].input-sm,

  #custom-html-t1 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t1 .input-group-lg input[type=date],

  #custom-html-t1 .input-group-lg input[type=datetime-local],

  #custom-html-t1 .input-group-lg input[type=month],

  #custom-html-t1 .input-group-lg input[type=time],

  #custom-html-t1 input[type=date].input-lg,

  #custom-html-t1 input[type=datetime-local].input-lg,

  #custom-html-t1 input[type=month].input-lg,

  #custom-html-t1 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t1 .form-group {

  margin-bottom: 15px;

}

#custom-html-t1 .checkbox,

#custom-html-t1 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t1 .checkbox label,

#custom-html-t1 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t1 .checkbox input[type=checkbox],

#custom-html-t1 .checkbox-inline input[type=checkbox],

#custom-html-t1 .radio input[type=radio],

#custom-html-t1 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t1 .checkbox + .checkbox,

#custom-html-t1 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t1 .checkbox-inline,

#custom-html-t1 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t1 .checkbox-inline + .checkbox-inline,

#custom-html-t1 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t1 fieldset[disabled] input[type=checkbox],

#custom-html-t1 fieldset[disabled] input[type=radio],

#custom-html-t1 input[type=checkbox].disabled,

#custom-html-t1 input[type=checkbox][disabled],

#custom-html-t1 input[type=radio].disabled,

#custom-html-t1 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t1 .checkbox-inline.disabled,

#custom-html-t1 .radio-inline.disabled,

#custom-html-t1 fieldset[disabled] .checkbox-inline,

#custom-html-t1 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t1 .checkbox.disabled label,

#custom-html-t1 .radio.disabled label,

#custom-html-t1 fieldset[disabled] .checkbox label,

#custom-html-t1 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t1 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t1 .form-control-static.input-lg,

#custom-html-t1 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t1 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t1 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t1 select[multiple].input-sm,

#custom-html-t1 textarea.input-sm {

  height: auto;

}

#custom-html-t1 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t1 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t1 .form-group-sm select[multiple].form-control,

#custom-html-t1 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t1 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t1 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t1 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t1 select[multiple].input-lg,

#custom-html-t1 textarea.input-lg {

  height: auto;

}

#custom-html-t1 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t1 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-t1 .form-group-lg select[multiple].form-control,

#custom-html-t1 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t1 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t1 .has-feedback {

  position: relative;

}

#custom-html-t1 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t1 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t1 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t1 .input-group-lg + .form-control-feedback,

#custom-html-t1 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t1 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t1 .input-group-sm + .form-control-feedback,

#custom-html-t1 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t1 .has-success .checkbox,

#custom-html-t1 .has-success .checkbox-inline,

#custom-html-t1 .has-success .control-label,

#custom-html-t1 .has-success .help-block,

#custom-html-t1 .has-success .radio,

#custom-html-t1 .has-success .radio-inline,

#custom-html-t1 .has-success.checkbox label,

#custom-html-t1 .has-success.checkbox-inline label,

#custom-html-t1 .has-success.radio label,

#custom-html-t1 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t1 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t1 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t1 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t1 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t1 .has-warning .checkbox,

#custom-html-t1 .has-warning .checkbox-inline,

#custom-html-t1 .has-warning .control-label,

#custom-html-t1 .has-warning .help-block,

#custom-html-t1 .has-warning .radio,

#custom-html-t1 .has-warning .radio-inline,

#custom-html-t1 .has-warning.checkbox label,

#custom-html-t1 .has-warning.checkbox-inline label,

#custom-html-t1 .has-warning.radio label,

#custom-html-t1 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t1 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t1 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t1 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t1 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t1 .has-error .checkbox,

#custom-html-t1 .has-error .checkbox-inline,

#custom-html-t1 .has-error .control-label,

#custom-html-t1 .has-error .help-block,

#custom-html-t1 .has-error .radio,

#custom-html-t1 .has-error .radio-inline,

#custom-html-t1 .has-error.checkbox label,

#custom-html-t1 .has-error.checkbox-inline label,

#custom-html-t1 .has-error.radio label,

#custom-html-t1 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t1 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t1 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t1 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t1 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t1 .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-t1 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t1 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-t1 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t1 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t1 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t1 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t1 .form-inline .input-group .form-control,

  #custom-html-t1 .form-inline .input-group .input-group-addon,

  #custom-html-t1 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t1 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t1 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t1 .form-inline .checkbox,

  #custom-html-t1 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t1 .form-inline .checkbox label,

  #custom-html-t1 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t1 .form-inline .checkbox input[type=checkbox],

  #custom-html-t1 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t1 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-t1 .form-horizontal .checkbox,

#custom-html-t1 .form-horizontal .checkbox-inline,

#custom-html-t1 .form-horizontal .radio,

#custom-html-t1 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t1 .form-horizontal .checkbox,

#custom-html-t1 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t1 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t1 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-t1 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-t1 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-t1 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-t1 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t1 .btn.active.focus,

#custom-html-t1 .btn.active:focus,

#custom-html-t1 .btn.focus,

#custom-html-t1 .btn:active.focus,

#custom-html-t1 .btn:active:focus,

#custom-html-t1 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t1 .btn.focus,

#custom-html-t1 .btn:focus,

#custom-html-t1 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t1 .btn.active,

#custom-html-t1 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t1 .btn.disabled,

#custom-html-t1 .btn[disabled],

#custom-html-t1 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t1 a.btn.disabled,

#custom-html-t1 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t1 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t1 .btn-default.focus,

#custom-html-t1 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t1 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t1 .btn-default.active,

#custom-html-t1 .btn-default:active,

#custom-html-t1 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t1 .btn-default.active.focus,

#custom-html-t1 .btn-default.active:focus,

#custom-html-t1 .btn-default.active:hover,

#custom-html-t1 .btn-default:active.focus,

#custom-html-t1 .btn-default:active:focus,

#custom-html-t1 .btn-default:active:hover,

#custom-html-t1 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t1 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t1 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t1 .btn-default.active,

#custom-html-t1 .btn-default:active,

#custom-html-t1 .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-t1 .btn-default.disabled.focus,

#custom-html-t1 .btn-default.disabled:focus,

#custom-html-t1 .btn-default.disabled:hover,

#custom-html-t1 .btn-default[disabled].focus,

#custom-html-t1 .btn-default[disabled]:focus,

#custom-html-t1 .btn-default[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-default.focus,

#custom-html-t1 fieldset[disabled] .btn-default:focus,

#custom-html-t1 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t1 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t1 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t1 .btn-primary.focus,

#custom-html-t1 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t1 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t1 .btn-primary.active,

#custom-html-t1 .btn-primary:active,

#custom-html-t1 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t1 .btn-primary.active.focus,

#custom-html-t1 .btn-primary.active:focus,

#custom-html-t1 .btn-primary.active:hover,

#custom-html-t1 .btn-primary:active.focus,

#custom-html-t1 .btn-primary:active:focus,

#custom-html-t1 .btn-primary:active:hover,

#custom-html-t1 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t1 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t1 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t1 .btn-primary.active,

#custom-html-t1 .btn-primary:active,

#custom-html-t1 .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-t1 .btn-primary.disabled.focus,

#custom-html-t1 .btn-primary.disabled:focus,

#custom-html-t1 .btn-primary.disabled:hover,

#custom-html-t1 .btn-primary[disabled].focus,

#custom-html-t1 .btn-primary[disabled]:focus,

#custom-html-t1 .btn-primary[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-primary.focus,

#custom-html-t1 fieldset[disabled] .btn-primary:focus,

#custom-html-t1 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t1 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t1 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t1 .btn-success.focus,

#custom-html-t1 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t1 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t1 .btn-success.active,

#custom-html-t1 .btn-success:active,

#custom-html-t1 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t1 .btn-success.active.focus,

#custom-html-t1 .btn-success.active:focus,

#custom-html-t1 .btn-success.active:hover,

#custom-html-t1 .btn-success:active.focus,

#custom-html-t1 .btn-success:active:focus,

#custom-html-t1 .btn-success:active:hover,

#custom-html-t1 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t1 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t1 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t1 .btn-success.active,

#custom-html-t1 .btn-success:active,

#custom-html-t1 .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-t1 .btn-success.disabled.focus,

#custom-html-t1 .btn-success.disabled:focus,

#custom-html-t1 .btn-success.disabled:hover,

#custom-html-t1 .btn-success[disabled].focus,

#custom-html-t1 .btn-success[disabled]:focus,

#custom-html-t1 .btn-success[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-success.focus,

#custom-html-t1 fieldset[disabled] .btn-success:focus,

#custom-html-t1 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t1 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t1 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t1 .btn-info.focus,

#custom-html-t1 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t1 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t1 .btn-info.active,

#custom-html-t1 .btn-info:active,

#custom-html-t1 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t1 .btn-info.active.focus,

#custom-html-t1 .btn-info.active:focus,

#custom-html-t1 .btn-info.active:hover,

#custom-html-t1 .btn-info:active.focus,

#custom-html-t1 .btn-info:active:focus,

#custom-html-t1 .btn-info:active:hover,

#custom-html-t1 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t1 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t1 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t1 .btn-info.active,

#custom-html-t1 .btn-info:active,

#custom-html-t1 .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-t1 .btn-info.disabled.focus,

#custom-html-t1 .btn-info.disabled:focus,

#custom-html-t1 .btn-info.disabled:hover,

#custom-html-t1 .btn-info[disabled].focus,

#custom-html-t1 .btn-info[disabled]:focus,

#custom-html-t1 .btn-info[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-info.focus,

#custom-html-t1 fieldset[disabled] .btn-info:focus,

#custom-html-t1 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t1 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t1 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t1 .btn-warning.focus,

#custom-html-t1 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t1 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t1 .btn-warning.active,

#custom-html-t1 .btn-warning:active,

#custom-html-t1 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t1 .btn-warning.active.focus,

#custom-html-t1 .btn-warning.active:focus,

#custom-html-t1 .btn-warning.active:hover,

#custom-html-t1 .btn-warning:active.focus,

#custom-html-t1 .btn-warning:active:focus,

#custom-html-t1 .btn-warning:active:hover,

#custom-html-t1 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t1 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t1 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t1 .btn-warning.active,

#custom-html-t1 .btn-warning:active,

#custom-html-t1 .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-t1 .btn-warning.disabled.focus,

#custom-html-t1 .btn-warning.disabled:focus,

#custom-html-t1 .btn-warning.disabled:hover,

#custom-html-t1 .btn-warning[disabled].focus,

#custom-html-t1 .btn-warning[disabled]:focus,

#custom-html-t1 .btn-warning[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-warning.focus,

#custom-html-t1 fieldset[disabled] .btn-warning:focus,

#custom-html-t1 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t1 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t1 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t1 .btn-danger.focus,

#custom-html-t1 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t1 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t1 .btn-danger.active,

#custom-html-t1 .btn-danger:active,

#custom-html-t1 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t1 .btn-danger.active.focus,

#custom-html-t1 .btn-danger.active:focus,

#custom-html-t1 .btn-danger.active:hover,

#custom-html-t1 .btn-danger:active.focus,

#custom-html-t1 .btn-danger:active:focus,

#custom-html-t1 .btn-danger:active:hover,

#custom-html-t1 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t1 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t1 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t1 .btn-danger.active,

#custom-html-t1 .btn-danger:active,

#custom-html-t1 .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-t1 .btn-danger.disabled.focus,

#custom-html-t1 .btn-danger.disabled:focus,

#custom-html-t1 .btn-danger.disabled:hover,

#custom-html-t1 .btn-danger[disabled].focus,

#custom-html-t1 .btn-danger[disabled]:focus,

#custom-html-t1 .btn-danger[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-danger.focus,

#custom-html-t1 fieldset[disabled] .btn-danger:focus,

#custom-html-t1 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t1 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t1 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t1 .btn-link,

#custom-html-t1 .btn-link.active,

#custom-html-t1 .btn-link:active,

#custom-html-t1 .btn-link[disabled],

#custom-html-t1 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t1 .btn-link,

#custom-html-t1 .btn-link:active,

#custom-html-t1 .btn-link:focus,

#custom-html-t1 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t1 .btn-link:focus,

#custom-html-t1 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t1 .btn-link[disabled]:focus,

#custom-html-t1 .btn-link[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-link:focus,

#custom-html-t1 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t1 .btn-group-lg > .btn,

#custom-html-t1 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t1 .btn-group-sm > .btn,

#custom-html-t1 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t1 .btn-group-xs > .btn,

#custom-html-t1 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t1 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t1 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t1 input[type=button].btn-block,

#custom-html-t1 input[type=reset].btn-block,

#custom-html-t1 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t1 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t1 .fade.in {

  opacity: 1;

}

#custom-html-t1 .collapse {

  display: none;

}

#custom-html-t1 .collapse.in {

  display: block;

}

#custom-html-t1 tr.collapse.in {

  display: table-row;

}

#custom-html-t1 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t1 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t1 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t1 .dropdown,

#custom-html-t1 .dropup {

  position: relative;

}

#custom-html-t1 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t1 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t1 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t1 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t1 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-t1 .dropdown-menu > li > a:focus,

#custom-html-t1 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t1 .dropdown-menu > .active > a,

#custom-html-t1 .dropdown-menu > .active > a:focus,

#custom-html-t1 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-t1 .dropdown-menu > .disabled > a,

#custom-html-t1 .dropdown-menu > .disabled > a:focus,

#custom-html-t1 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t1 .dropdown-menu > .disabled > a:focus,

#custom-html-t1 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t1 .open > .dropdown-menu {

  display: block;

}

#custom-html-t1 .open > a {

  outline: 0;

}

#custom-html-t1 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t1 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t1 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t1 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t1 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t1 .dropup .caret,

#custom-html-t1 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t1 .dropup .dropdown-menu,

#custom-html-t1 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-t1 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-t1 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-t1 .btn-group,

#custom-html-t1 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t1 .btn-group-vertical > .btn,

#custom-html-t1 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t1 .btn-group-vertical > .btn.active,

#custom-html-t1 .btn-group-vertical > .btn:active,

#custom-html-t1 .btn-group-vertical > .btn:focus,

#custom-html-t1 .btn-group-vertical > .btn:hover,

#custom-html-t1 .btn-group > .btn.active,

#custom-html-t1 .btn-group > .btn:active,

#custom-html-t1 .btn-group > .btn:focus,

#custom-html-t1 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t1 .btn-group .btn + .btn,

#custom-html-t1 .btn-group .btn + .btn-group,

#custom-html-t1 .btn-group .btn-group + .btn,

#custom-html-t1 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t1 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t1 .btn-toolbar .btn,

#custom-html-t1 .btn-toolbar .btn-group,

#custom-html-t1 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t1 .btn-toolbar > .btn,

#custom-html-t1 .btn-toolbar > .btn-group,

#custom-html-t1 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t1 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t1 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t1 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t1 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t1 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t1 .btn-group > .btn-group {

  float: left;

}

#custom-html-t1 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t1 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t1 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t1 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t1 .btn-group .dropdown-toggle:active,

#custom-html-t1 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t1 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t1 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t1 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t1 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t1 .btn .caret {

  margin-left: 0;

}

#custom-html-t1 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t1 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t1 .btn-group-vertical > .btn,

#custom-html-t1 .btn-group-vertical > .btn-group,

#custom-html-t1 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t1 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t1 .btn-group-vertical > .btn + .btn,

#custom-html-t1 .btn-group-vertical > .btn + .btn-group,

#custom-html-t1 .btn-group-vertical > .btn-group + .btn,

#custom-html-t1 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t1 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t1 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t1 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t1 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t1 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t1 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t1 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t1 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t1 .btn-group-justified > .btn,

#custom-html-t1 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t1 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t1 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t1 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t1 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t1 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t1 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t1 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t1 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t1 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t1 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t1 .input-group-lg > .form-control,

#custom-html-t1 .input-group-lg > .input-group-addon,

#custom-html-t1 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t1 select.input-group-lg > .form-control,

#custom-html-t1 select.input-group-lg > .input-group-addon,

#custom-html-t1 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t1 select[multiple].input-group-lg > .form-control,

#custom-html-t1 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t1 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t1 textarea.input-group-lg > .form-control,

#custom-html-t1 textarea.input-group-lg > .input-group-addon,

#custom-html-t1 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t1 .input-group-sm > .form-control,

#custom-html-t1 .input-group-sm > .input-group-addon,

#custom-html-t1 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t1 select.input-group-sm > .form-control,

#custom-html-t1 select.input-group-sm > .input-group-addon,

#custom-html-t1 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t1 select[multiple].input-group-sm > .form-control,

#custom-html-t1 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t1 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t1 textarea.input-group-sm > .form-control,

#custom-html-t1 textarea.input-group-sm > .input-group-addon,

#custom-html-t1 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t1 .input-group .form-control,

#custom-html-t1 .input-group-addon,

#custom-html-t1 .input-group-btn {

  display: table-cell;

}

#custom-html-t1 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t1 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t1 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t1 .input-group-addon,

#custom-html-t1 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t1 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t1 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t1 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t1 .input-group-addon input[type=checkbox],

#custom-html-t1 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t1 .input-group .form-control:first-child,

#custom-html-t1 .input-group-addon:first-child,

#custom-html-t1 .input-group-btn:first-child > .btn,

#custom-html-t1 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t1 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t1 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t1 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t1 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t1 .input-group .form-control:last-child,

#custom-html-t1 .input-group-addon:last-child,

#custom-html-t1 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t1 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t1 .input-group-btn:last-child > .btn,

#custom-html-t1 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t1 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t1 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t1 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t1 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t1 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t1 .input-group-btn > .btn:active,

#custom-html-t1 .input-group-btn > .btn:focus,

#custom-html-t1 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t1 .input-group-btn:first-child > .btn,

#custom-html-t1 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t1 .input-group-btn:last-child > .btn,

#custom-html-t1 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t1 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t1 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t1 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t1 .nav > li > a:focus,

#custom-html-t1 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t1 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t1 .nav > li.disabled > a:focus,

#custom-html-t1 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t1 .nav .open > a,

#custom-html-t1 .nav .open > a:focus,

#custom-html-t1 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t1 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t1 .nav > li > a > img {

  max-width: none;

}

#custom-html-t1 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t1 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t1 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t1 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t1 .nav-tabs > li.active > a,

#custom-html-t1 .nav-tabs > li.active > a:focus,

#custom-html-t1 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t1 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t1 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t1 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t1 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t1 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t1 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t1 .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t1 .nav-tabs.nav-justified > .active > a,

#custom-html-t1 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t1 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t1 .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t1 .nav-tabs.nav-justified > .active > a,

  #custom-html-t1 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t1 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t1 .nav-pills > li {

  float: left;

}

#custom-html-t1 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t1 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t1 .nav-pills > li.active > a,

#custom-html-t1 .nav-pills > li.active > a:focus,

#custom-html-t1 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t1 .nav-stacked > li {

  float: none;

}

#custom-html-t1 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t1 .nav-justified {

  width: 100%;

}

#custom-html-t1 .nav-justified > li {

  float: none;

}

#custom-html-t1 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t1 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t1 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t1 .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t1 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t1 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t1 .nav-tabs-justified > .active > a,

#custom-html-t1 .nav-tabs-justified > .active > a:focus,

#custom-html-t1 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t1 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t1 .nav-tabs-justified > .active > a,

  #custom-html-t1 .nav-tabs-justified > .active > a:focus,

  #custom-html-t1 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t1 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t1 .tab-content > .active {

  display: block;

}

#custom-html-t1 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t1 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-t1 .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-t1 .navbar-header {

    float: left;

  }

}

#custom-html-t1 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t1 .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-t1 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t1 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t1 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t1 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t1 .navbar-fixed-top .navbar-collapse,

  #custom-html-t1 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-t1 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t1 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t1 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t1 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t1 .container-fluid > .navbar-collapse,

#custom-html-t1 .container-fluid > .navbar-header,

#custom-html-t1 .container > .navbar-collapse,

#custom-html-t1 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t1 .container-fluid > .navbar-collapse,

  #custom-html-t1 .container-fluid > .navbar-header,

  #custom-html-t1 .container > .navbar-collapse,

  #custom-html-t1 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-t1 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-t1 .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-t1 .navbar-fixed-bottom,

#custom-html-t1 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-t1 .navbar-fixed-bottom,

  #custom-html-t1 .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-t1 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t1 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t1 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t1 .navbar-brand:focus,

#custom-html-t1 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t1 .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-t1 .navbar > .container .navbar-brand,

  #custom-html-t1 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-t1 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t1 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t1 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t1 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-t1 .navbar-toggle {

    display: none;

  }

}

#custom-html-t1 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t1 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t1 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t1 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t1 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t1 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t1 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t1 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-t1 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t1 .navbar-nav > li {

    float: left;

  }

  #custom-html-t1 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-t1 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-t1 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t1 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t1 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t1 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t1 .navbar-form .input-group .form-control,

  #custom-html-t1 .navbar-form .input-group .input-group-addon,

  #custom-html-t1 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t1 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t1 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t1 .navbar-form .checkbox,

  #custom-html-t1 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t1 .navbar-form .checkbox label,

  #custom-html-t1 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t1 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t1 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t1 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-t1 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t1 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-t1 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-t1 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t1 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t1 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t1 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t1 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t1 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-t1 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-t1 .navbar-left {

    float: left !important;

  }

  #custom-html-t1 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t1 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-t1 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t1 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t1 .navbar-default .navbar-brand:focus,

#custom-html-t1 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t1 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t1 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t1 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t1 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t1 .navbar-default .navbar-nav > .active > a,

#custom-html-t1 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t1 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t1 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t1 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t1 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t1 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t1 .navbar-default .navbar-toggle:focus,

#custom-html-t1 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t1 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t1 .navbar-default .navbar-collapse,

#custom-html-t1 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t1 .navbar-default .navbar-nav > .open > a,

#custom-html-t1 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t1 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t1 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-t1 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t1 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t1 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t1 .navbar-default .btn-link:focus,

#custom-html-t1 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-t1 .navbar-default .btn-link[disabled]:focus,

#custom-html-t1 .navbar-default .btn-link[disabled]:hover,

#custom-html-t1 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t1 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t1 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t1 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t1 .navbar-inverse .navbar-brand:focus,

#custom-html-t1 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t1 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t1 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t1 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t1 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t1 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t1 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t1 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t1 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t1 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t1 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t1 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t1 .navbar-inverse .navbar-toggle:focus,

#custom-html-t1 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t1 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t1 .navbar-inverse .navbar-collapse,

#custom-html-t1 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t1 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t1 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t1 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t1 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-t1 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t1 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t1 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t1 .navbar-inverse .btn-link:focus,

#custom-html-t1 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t1 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t1 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t1 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t1 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t1 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t1 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t1 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t1 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t1 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-t1 .pagination > li {

  display: inline;

}

#custom-html-t1 .pagination > li > a,

#custom-html-t1 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t1 .pagination > li:first-child > a,

#custom-html-t1 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t1 .pagination > li:last-child > a,

#custom-html-t1 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t1 .pagination > li > a:focus,

#custom-html-t1 .pagination > li > a:hover,

#custom-html-t1 .pagination > li > span:focus,

#custom-html-t1 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t1 .pagination > .active > a,

#custom-html-t1 .pagination > .active > a:focus,

#custom-html-t1 .pagination > .active > a:hover,

#custom-html-t1 .pagination > .active > span,

#custom-html-t1 .pagination > .active > span:focus,

#custom-html-t1 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-t1 .pagination > .disabled > a,

#custom-html-t1 .pagination > .disabled > a:focus,

#custom-html-t1 .pagination > .disabled > a:hover,

#custom-html-t1 .pagination > .disabled > span,

#custom-html-t1 .pagination > .disabled > span:focus,

#custom-html-t1 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t1 .pagination-lg > li > a,

#custom-html-t1 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t1 .pagination-lg > li:first-child > a,

#custom-html-t1 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t1 .pagination-lg > li:last-child > a,

#custom-html-t1 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t1 .pagination-sm > li > a,

#custom-html-t1 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t1 .pagination-sm > li:first-child > a,

#custom-html-t1 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t1 .pagination-sm > li:last-child > a,

#custom-html-t1 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t1 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t1 .pager li {

  display: inline;

}

#custom-html-t1 .pager li > a,

#custom-html-t1 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t1 .pager li > a:focus,

#custom-html-t1 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t1 .pager .next > a,

#custom-html-t1 .pager .next > span {

  float: right;

}

#custom-html-t1 .pager .previous > a,

#custom-html-t1 .pager .previous > span {

  float: left;

}

#custom-html-t1 .pager .disabled > a,

#custom-html-t1 .pager .disabled > a:focus,

#custom-html-t1 .pager .disabled > a:hover,

#custom-html-t1 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t1 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-t1 a.label:focus,

#custom-html-t1 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t1 .label:empty {

  display: none;

}

#custom-html-t1 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t1 .label-default {

  background-color: #777777;

}

#custom-html-t1 .label-default[href]:focus,

#custom-html-t1 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t1 .label-primary {

  background-color: #337ab7;

}

#custom-html-t1 .label-primary[href]:focus,

#custom-html-t1 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t1 .label-success {

  background-color: #5cb85c;

}

#custom-html-t1 .label-success[href]:focus,

#custom-html-t1 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t1 .label-info {

  background-color: #5bc0de;

}

#custom-html-t1 .label-info[href]:focus,

#custom-html-t1 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t1 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t1 .label-warning[href]:focus,

#custom-html-t1 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t1 .label-danger {

  background-color: #d9534f;

}

#custom-html-t1 .label-danger[href]:focus,

#custom-html-t1 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t1 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t1 .badge:empty {

  display: none;

}

#custom-html-t1 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t1 .btn-group-xs > .btn .badge,

#custom-html-t1 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t1 a.badge:focus,

#custom-html-t1 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t1 .list-group-item.active > .badge,

#custom-html-t1 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t1 .list-group-item > .badge {

  float: right;

}

#custom-html-t1 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t1 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t1 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t1 .jumbotron .h1,

#custom-html-t1 .jumbotron h1 {

  color: inherit;

}

#custom-html-t1 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t1 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t1 .container .jumbotron,

#custom-html-t1 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t1 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t1 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t1 .container .jumbotron,

  #custom-html-t1 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t1 .jumbotron .h1,

  #custom-html-t1 .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-t1 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t1 .thumbnail a > img,

#custom-html-t1 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t1 a.thumbnail.active,

#custom-html-t1 a.thumbnail:focus,

#custom-html-t1 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t1 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t1 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t1 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t1 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t1 .alert > p,

#custom-html-t1 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t1 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t1 .alert-dismissable,

#custom-html-t1 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t1 .alert-dismissable .close,

#custom-html-t1 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t1 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t1 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-t1 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t1 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t1 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t1 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t1 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t1 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t1 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t1 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t1 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t1 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t1 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t1 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t1 .progress-bar-striped,

#custom-html-t1 .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t1 .progress-bar.active,

#custom-html-t1 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t1 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t1 .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t1 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t1 .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t1 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t1 .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t1 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t1 .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t1 .media {

  margin-top: 15px;

}

#custom-html-t1 .media:first-child {

  margin-top: 0;

}

#custom-html-t1 .media,

#custom-html-t1 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t1 .media-body {

  width: 10000px;

}

#custom-html-t1 .media-object {

  display: block;

}

#custom-html-t1 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t1 .media-right,

#custom-html-t1 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t1 .media-left,

#custom-html-t1 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t1 .media-body,

#custom-html-t1 .media-left,

#custom-html-t1 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t1 .media-middle {

  vertical-align: middle;

}

#custom-html-t1 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t1 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t1 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t1 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-t1 .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t1 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t1 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t1 a.list-group-item,

#custom-html-t1 button.list-group-item {

  color: #555555;

}

#custom-html-t1 a.list-group-item .list-group-item-heading,

#custom-html-t1 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t1 a.list-group-item:focus,

#custom-html-t1 a.list-group-item:hover,

#custom-html-t1 button.list-group-item:focus,

#custom-html-t1 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t1 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t1 .list-group-item.disabled,

#custom-html-t1 .list-group-item.disabled:focus,

#custom-html-t1 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t1 .list-group-item.disabled .list-group-item-heading,

#custom-html-t1 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t1 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t1 .list-group-item.disabled .list-group-item-text,

#custom-html-t1 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t1 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t1 .list-group-item.active,

#custom-html-t1 .list-group-item.active:focus,

#custom-html-t1 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t1 .list-group-item.active .list-group-item-heading,

#custom-html-t1 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t1 .list-group-item.active .list-group-item-heading > small,

#custom-html-t1 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t1 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t1 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t1 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t1 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t1 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t1 .list-group-item.active .list-group-item-text,

#custom-html-t1 .list-group-item.active:focus .list-group-item-text,

#custom-html-t1 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t1 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t1 a.list-group-item-success,

#custom-html-t1 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t1 a.list-group-item-success .list-group-item-heading,

#custom-html-t1 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t1 a.list-group-item-success:focus,

#custom-html-t1 a.list-group-item-success:hover,

#custom-html-t1 button.list-group-item-success:focus,

#custom-html-t1 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t1 a.list-group-item-success.active,

#custom-html-t1 a.list-group-item-success.active:focus,

#custom-html-t1 a.list-group-item-success.active:hover,

#custom-html-t1 button.list-group-item-success.active,

#custom-html-t1 button.list-group-item-success.active:focus,

#custom-html-t1 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t1 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t1 a.list-group-item-info,

#custom-html-t1 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t1 a.list-group-item-info .list-group-item-heading,

#custom-html-t1 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t1 a.list-group-item-info:focus,

#custom-html-t1 a.list-group-item-info:hover,

#custom-html-t1 button.list-group-item-info:focus,

#custom-html-t1 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t1 a.list-group-item-info.active,

#custom-html-t1 a.list-group-item-info.active:focus,

#custom-html-t1 a.list-group-item-info.active:hover,

#custom-html-t1 button.list-group-item-info.active,

#custom-html-t1 button.list-group-item-info.active:focus,

#custom-html-t1 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t1 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t1 a.list-group-item-warning,

#custom-html-t1 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t1 a.list-group-item-warning .list-group-item-heading,

#custom-html-t1 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t1 a.list-group-item-warning:focus,

#custom-html-t1 a.list-group-item-warning:hover,

#custom-html-t1 button.list-group-item-warning:focus,

#custom-html-t1 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t1 a.list-group-item-warning.active,

#custom-html-t1 a.list-group-item-warning.active:focus,

#custom-html-t1 a.list-group-item-warning.active:hover,

#custom-html-t1 button.list-group-item-warning.active,

#custom-html-t1 button.list-group-item-warning.active:focus,

#custom-html-t1 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t1 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t1 a.list-group-item-danger,

#custom-html-t1 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t1 a.list-group-item-danger .list-group-item-heading,

#custom-html-t1 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t1 a.list-group-item-danger:focus,

#custom-html-t1 a.list-group-item-danger:hover,

#custom-html-t1 button.list-group-item-danger:focus,

#custom-html-t1 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t1 a.list-group-item-danger.active,

#custom-html-t1 a.list-group-item-danger.active:focus,

#custom-html-t1 a.list-group-item-danger.active:hover,

#custom-html-t1 button.list-group-item-danger.active,

#custom-html-t1 button.list-group-item-danger.active:focus,

#custom-html-t1 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t1 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t1 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t1 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t1 .panel-body {

  padding: 15px;

}

#custom-html-t1 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t1 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t1 .panel-title > .small,

#custom-html-t1 .panel-title > .small > a,

#custom-html-t1 .panel-title > a,

#custom-html-t1 .panel-title > small,

#custom-html-t1 .panel-title > small > a {

  color: inherit;

}

#custom-html-t1 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t1 .panel > .list-group,

#custom-html-t1 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t1 .panel > .list-group .list-group-item,

#custom-html-t1 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t1 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t1 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t1 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t1 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t1 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t1 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t1 .panel > .panel-collapse > .table,

#custom-html-t1 .panel > .table,

#custom-html-t1 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t1 .panel > .panel-collapse > .table caption,

#custom-html-t1 .panel > .table caption,

#custom-html-t1 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t1 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t1 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t1 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t1 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t1 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t1 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t1 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t1 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t1 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t1 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t1 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t1 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t1 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t1 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t1 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t1 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t1 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t1 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t1 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t1 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t1 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t1 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t1 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t1 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t1 .panel > .panel-body + .table,

#custom-html-t1 .panel > .panel-body + .table-responsive,

#custom-html-t1 .panel > .table + .panel-body,

#custom-html-t1 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t1 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t1 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t1 .panel > .table-bordered,

#custom-html-t1 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t1 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t1 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t1 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t1 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t1 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t1 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t1 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t1 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t1 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t1 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t1 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t1 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t1 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t1 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t1 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t1 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t1 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t1 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t1 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t1 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t1 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t1 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t1 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t1 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t1 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t1 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t1 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-t1 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t1 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t1 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t1 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t1 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t1 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t1 .panel-default {

  border-color: #dddddd;

}

#custom-html-t1 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t1 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t1 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t1 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t1 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t1 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t1 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t1 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t1 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t1 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t1 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t1 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t1 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t1 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-t1 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t1 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t1 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t1 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t1 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t1 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t1 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t1 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t1 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t1 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t1 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t1 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t1 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t1 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t1 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t1 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t1 .embed-responsive .embed-responsive-item,

#custom-html-t1 .embed-responsive embed,

#custom-html-t1 .embed-responsive iframe,

#custom-html-t1 .embed-responsive object,

#custom-html-t1 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t1 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t1 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t1 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t1 .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t1 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t1 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t1 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t1 .close:focus,

#custom-html-t1 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t1 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t1 .modal-open {

  overflow: hidden;

}

#custom-html-t1 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t1 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t1 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t1 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t1 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t1 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t1 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t1 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t1 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t1 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t1 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t1 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t1 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t1 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t1 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t1 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t1 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t1 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-t1 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t1 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t1 .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-t1 .modal-lg {

    width: 900px;

  }

}

#custom-html-t1 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t1 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t1 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t1 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t1 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t1 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t1 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t1 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t1 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t1 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t1 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t1 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t1 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t1 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t1 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t1 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t1 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t1 .popover.top {

  margin-top: -10px;

}

#custom-html-t1 .popover.right {

  margin-left: 10px;

}

#custom-html-t1 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t1 .popover.left {

  margin-left: -10px;

}

#custom-html-t1 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t1 .popover-content {

  padding: 9px 14px;

}

#custom-html-t1 .popover > .arrow,

#custom-html-t1 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t1 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t1 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t1 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t1 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t1 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t1 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t1 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t1 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t1 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t1 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t1 .carousel {

  position: relative;

}

#custom-html-t1 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t1 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t1 .carousel-inner > .item > a > img,

#custom-html-t1 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t1 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t1 .carousel-inner > .item.active.right,

  #custom-html-t1 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t1 .carousel-inner > .item.active.left,

  #custom-html-t1 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t1 .carousel-inner > .item.active,

  #custom-html-t1 .carousel-inner > .item.next.left,

  #custom-html-t1 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t1 .carousel-inner > .active,

#custom-html-t1 .carousel-inner > .next,

#custom-html-t1 .carousel-inner > .prev {

  display: block;

}

#custom-html-t1 .carousel-inner > .active {

  left: 0;

}

#custom-html-t1 .carousel-inner > .next,

#custom-html-t1 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t1 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t1 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t1 .carousel-inner > .next.left,

#custom-html-t1 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t1 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t1 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t1 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t1 .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t1 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t1 .carousel-control:focus,

#custom-html-t1 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t1 .carousel-control .glyphicon-chevron-left,

#custom-html-t1 .carousel-control .glyphicon-chevron-right,

#custom-html-t1 .carousel-control .icon-next,

#custom-html-t1 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t1 .carousel-control .glyphicon-chevron-left,

#custom-html-t1 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t1 .carousel-control .glyphicon-chevron-right,

#custom-html-t1 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t1 .carousel-control .icon-next,

#custom-html-t1 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t1 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t1 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t1 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t1 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t1 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t1 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t1 .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-t1 .carousel-control .glyphicon-chevron-left,

  #custom-html-t1 .carousel-control .glyphicon-chevron-right,

  #custom-html-t1 .carousel-control .icon-next,

  #custom-html-t1 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t1 .carousel-control .glyphicon-chevron-left,

  #custom-html-t1 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t1 .carousel-control .glyphicon-chevron-right,

  #custom-html-t1 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t1 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t1 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t1 .btn-group-vertical > .btn-group:after,

#custom-html-t1 .btn-group-vertical > .btn-group:before,

#custom-html-t1 .btn-toolbar:after,

#custom-html-t1 .btn-toolbar:before,

#custom-html-t1 .clearfix:after,

#custom-html-t1 .clearfix:before,

#custom-html-t1 .container-fluid:after,

#custom-html-t1 .container-fluid:before,

#custom-html-t1 .container:after,

#custom-html-t1 .container:before,

#custom-html-t1 .dl-horizontal dd:after,

#custom-html-t1 .dl-horizontal dd:before,

#custom-html-t1 .form-horizontal .form-group:after,

#custom-html-t1 .form-horizontal .form-group:before,

#custom-html-t1 .modal-footer:after,

#custom-html-t1 .modal-footer:before,

#custom-html-t1 .modal-header:after,

#custom-html-t1 .modal-header:before,

#custom-html-t1 .nav:after,

#custom-html-t1 .nav:before,

#custom-html-t1 .navbar-collapse:after,

#custom-html-t1 .navbar-collapse:before,

#custom-html-t1 .navbar-header:after,

#custom-html-t1 .navbar-header:before,

#custom-html-t1 .navbar:after,

#custom-html-t1 .navbar:before,

#custom-html-t1 .pager:after,

#custom-html-t1 .pager:before,

#custom-html-t1 .panel-body:after,

#custom-html-t1 .panel-body:before,

#custom-html-t1 .row:after,

#custom-html-t1 .row:before {

  display: table;

  content: " ";

}

#custom-html-t1 .btn-group-vertical > .btn-group:after,

#custom-html-t1 .btn-toolbar:after,

#custom-html-t1 .clearfix:after,

#custom-html-t1 .container-fluid:after,

#custom-html-t1 .container:after,

#custom-html-t1 .dl-horizontal dd:after,

#custom-html-t1 .form-horizontal .form-group:after,

#custom-html-t1 .modal-footer:after,

#custom-html-t1 .modal-header:after,

#custom-html-t1 .nav:after,

#custom-html-t1 .navbar-collapse:after,

#custom-html-t1 .navbar-header:after,

#custom-html-t1 .navbar:after,

#custom-html-t1 .pager:after,

#custom-html-t1 .panel-body:after,

#custom-html-t1 .row:after {

  clear: both;

}

#custom-html-t1 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t1 .pull-right {

  float: right !important;

}

#custom-html-t1 .pull-left {

  float: left !important;

}

#custom-html-t1 .hide {

  display: none !important;

}

#custom-html-t1 .show {

  display: block !important;

}

#custom-html-t1 .invisible {

  visibility: hidden;

}

#custom-html-t1 .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t1 .hidden {

  display: none !important;

}

#custom-html-t1 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t1 .visible-lg,

#custom-html-t1 .visible-md,

#custom-html-t1 .visible-sm,

#custom-html-t1 .visible-xs {

  display: none !important;

}

#custom-html-t1 .visible-lg-block,

#custom-html-t1 .visible-lg-inline,

#custom-html-t1 .visible-lg-inline-block,

#custom-html-t1 .visible-md-block,

#custom-html-t1 .visible-md-inline,

#custom-html-t1 .visible-md-inline-block,

#custom-html-t1 .visible-sm-block,

#custom-html-t1 .visible-sm-inline,

#custom-html-t1 .visible-sm-inline-block,

#custom-html-t1 .visible-xs-block,

#custom-html-t1 .visible-xs-inline,

#custom-html-t1 .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-t1 .visible-xs {

    display: block !important;

  }

  #custom-html-t1 table.visible-xs {

    display: table !important;

  }

  #custom-html-t1 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t1 td.visible-xs,

  #custom-html-t1 th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t1 .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t1 .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t1 .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t1 .visible-sm {

    display: block !important;

  }

  #custom-html-t1 table.visible-sm {

    display: table !important;

  }

  #custom-html-t1 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t1 td.visible-sm,

  #custom-html-t1 th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t1 .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t1 .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t1 .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t1 .visible-md {

    display: block !important;

  }

  #custom-html-t1 table.visible-md {

    display: table !important;

  }

  #custom-html-t1 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t1 td.visible-md,

  #custom-html-t1 th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t1 .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t1 .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t1 .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t1 .visible-lg {

    display: block !important;

  }

  #custom-html-t1 table.visible-lg {

    display: table !important;

  }

  #custom-html-t1 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t1 td.visible-lg,

  #custom-html-t1 th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t1 .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t1 .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t1 .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t1 .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t1 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t1 .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t1 .hidden-lg {

    display: none !important;

  }

}

#custom-html-t1 .visible-print {

  display: none !important;

}

@media print {

  #custom-html-t1 .visible-print {

    display: block !important;

  }

  #custom-html-t1 table.visible-print {

    display: table !important;

  }

  #custom-html-t1 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t1 td.visible-print,

  #custom-html-t1 th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-t1 .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-t1 .visible-print-block {

    display: block !important;

  }

}

#custom-html-t1 .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-t1 .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-t1 .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-t1 .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-t1 .hidden-print {

    display: none !important;

  }

}

#custom-html-t1 .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-t1 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t1 .intl-tel-input .hide {

  display: none;

}

#custom-html-t1 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t1 .intl-tel-input input,

#custom-html-t1 .intl-tel-input input[type=tel],

#custom-html-t1 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t1 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t1 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t1 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t1 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t1 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t1 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t1 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t1 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t1 .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-t1 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t1 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t1 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t1 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t1 .intl-tel-input .country-list .country-name,

#custom-html-t1 .intl-tel-input .country-list .dial-code,

#custom-html-t1 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t1 .intl-tel-input .country-list .country-name,

#custom-html-t1 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t1 .intl-tel-input.allow-dropdown input,

#custom-html-t1 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t1 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t1 .intl-tel-input.separate-dial-code input,

#custom-html-t1 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t1 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t1 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t1 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t1 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t1 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t1 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t1 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t1 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t1 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t1 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t1 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t1 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t1 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t1 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t1 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t1 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t1 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t1 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t1 .iti-flag {

  width: 20px;

}

#custom-html-t1 .iti-flag.be {

  width: 18px;

}

#custom-html-t1 .iti-flag.ch {

  width: 15px;

}

#custom-html-t1 .iti-flag.mc {

  width: 19px;

}

#custom-html-t1 .iti-flag.ne {

  width: 18px;

}

#custom-html-t1 .iti-flag.np {

  width: 13px;

}

#custom-html-t1 .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t1 .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-t1 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t1 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t1 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t1 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t1 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t1 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t1 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t1 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t1 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t1 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t1 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t1 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t1 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t1 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t1 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t1 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t1 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t1 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t1 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t1 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t1 .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t1 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t1 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t1 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t1 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t1 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t1 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t1 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t1 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t1 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t1 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t1 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t1 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t1 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t1 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t1 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t1 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t1 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t1 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t1 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t1 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t1 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t1 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t1 .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t1 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t1 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t1 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t1 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t1 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t1 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t1 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t1 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t1 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t1 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t1 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t1 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t1 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t1 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t1 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t1 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t1 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t1 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t1 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t1 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t1 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t1 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t1 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t1 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t1 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t1 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t1 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t1 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t1 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t1 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t1 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t1 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t1 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t1 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t1 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t1 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t1 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t1 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t1 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t1 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t1 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t1 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t1 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t1 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t1 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t1 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t1 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t1 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t1 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t1 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t1 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t1 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t1 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t1 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t1 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t1 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t1 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t1 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t1 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t1 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t1 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-t1 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t1 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t1 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t1 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t1 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t1 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t1 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t1 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t1 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t1 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t1 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t1 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t1 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t1 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t1 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t1 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t1 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t1 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t1 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t1 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t1 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t1 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t1 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t1 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t1 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t1 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t1 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t1 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t1 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t1 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t1 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t1 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t1 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t1 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t1 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t1 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t1 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t1 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t1 .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t1 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t1 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t1 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t1 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t1 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t1 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t1 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t1 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t1 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t1 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t1 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t1 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t1 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t1 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t1 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t1 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t1 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t1 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t1 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t1 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t1 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t1 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t1 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t1 .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t1 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t1 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t1 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t1 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t1 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t1 .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-t1 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t1 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t1 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t1 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t1 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t1 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t1 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t1 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t1 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t1 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t1 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t1 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t1 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t1 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t1 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t1 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t1 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t1 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t1 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t1 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t1 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t1 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t1 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t1 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t1 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t1 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t1 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t1 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t1 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t1 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t1 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t1 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t1 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t1 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t1 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t1 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t1 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t1 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t1 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t1 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t1 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t1 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t1 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t1 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t1 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t1 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t1 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t1 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t1 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t1 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t1 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t1 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t1 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-t1 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t1 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t1 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t1 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t1 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t1 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t1 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t1 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t1 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t1 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t1 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t1 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t1 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t1 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t1 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t1 .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-t1 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t1 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-t1 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t1 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t1 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t1 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t1 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t1 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t1 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t1 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t1 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t1 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t1 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t1 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t1 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t1 .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t1 .iti-flag.np {

  background-color: transparent;

}

#custom-html-t1 body,

#custom-html-t1 button,

#custom-html-t1 input,

#custom-html-t1 select,

#custom-html-t1 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t1 h1,

#custom-html-t1 h2,

#custom-html-t1 h3,

#custom-html-t1 h4,

#custom-html-t1 h5,

#custom-html-t1 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-t1 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t1 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t1 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t1 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-t1 .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t1 .navbar-main .navbar-nav > .active > a,

#custom-html-t1 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t1 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t1 .navbar-main .navbar-nav > .open > a,

#custom-html-t1 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t1 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t1 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t1 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t1 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t1 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t1 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-t1 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t1 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-t1 .navbar-header {

    float: none;

  }

  #custom-html-t1 .navbar-left,

  #custom-html-t1 .navbar-right {

    float: none !important;

  }

  #custom-html-t1 .navbar-toggle {

    display: block;

  }

  #custom-html-t1 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t1 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t1 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t1 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t1 .navbar-nav > li {

    float: none;

  }

  #custom-html-t1 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t1 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-t1 .panel {

  font-size: 0.9em;

}

#custom-html-t1 .list-group {

  font-size: 0.9em;

}

#custom-html-t1 .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-t1 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t1 a.list-group-item.active,

#custom-html-t1 a.list-group-item.active:focus,

#custom-html-t1 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t1 .pagination {

  font-size: 0.8em;

}

#custom-html-t1 .pagination > .active > a,

#custom-html-t1 .pagination > .active > a:focus,

#custom-html-t1 .pagination > .active > a:hover,

#custom-html-t1 .pagination > .active > span,

#custom-html-t1 .pagination > .active > span:focus,

#custom-html-t1 .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t1 .dropdown-menu > li > a:focus,

#custom-html-t1 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t1 .label {

  border-radius: 0;

}

#custom-html-t1 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t1 .list-group-item {

  padding: 7px 15px;

}

#custom-html-t1 .panel-body {

  padding: 10px 15px;

}

#custom-html-t1 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t1 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t1 .btn {

  overflow: hidden;

}

#custom-html-t1 body,

#custom-html-t1 html {

  height: 100%;

}

#custom-html-t1 body {

  background-color: #f8f8f8;

}

#custom-html-t1 h1,

#custom-html-t1 h2,

#custom-html-t1 h3,

#custom-html-t1 h4,

#custom-html-t1 h5,

#custom-html-t1 h6 {

  font-weight: 400;

}

#custom-html-t1 a {

  color: #005588;

}

#custom-html-t1 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t1 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t1 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t1 section#header .search {

  margin: 20px 0;

}

#custom-html-t1 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t1 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t1 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t1 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t1 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t1 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t1 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t1 section#footer {

    line-height: 32px;

  }

}

#custom-html-t1 section#footer .back-to-top {

  float: right;

}

#custom-html-t1 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t1 .adminreturndiv {

  display: none !important;

}

#custom-html-t1 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t1 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t1 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t1 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t1 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t1 .navbar-main .navbar-toggle:focus,

#custom-html-t1 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t1 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t1 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-t1 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t1 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t1 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-t1 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t1 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t1 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t1 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t1 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t1 .h1,

  #custom-html-t1 h1 {

    font-size: 26px;

  }

  #custom-html-t1 .h2,

  #custom-html-t1 h2 {

    font-size: 20px;

  }

  #custom-html-t1 .h3,

  #custom-html-t1 h3 {

    font-size: 16px;

  }

  #custom-html-t1 .h4,

  #custom-html-t1 h4 {

    font-size: 14px;

  }

  #custom-html-t1 .h5,

  #custom-html-t1 h5 {

    font-size: 12px;

  }

  #custom-html-t1 .h6,

  #custom-html-t1 h6 {

    font-size: 11px;

  }

  #custom-html-t1 div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-t1 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t1 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t1 .margin-10 {

  margin: 10px;

}

#custom-html-t1 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t1 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t1 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t1 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t1 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t1 .input-inline {

  display: inline-block;

}

#custom-html-t1 .input-inline-100 {

  width: 100px;

}

#custom-html-t1 .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-t1 .pull-md-left {

    float: left;

  }

  #custom-html-t1 .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-t1 .pull-sm-left {

    float: left;

  }

  #custom-html-t1 .pull-sm-right {

    float: right;

  }

  #custom-html-t1 .text-right-sm {

    text-align: right;

  }

}

#custom-html-t1 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t1 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t1 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-t1 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-t1 .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-t1 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t1 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t1 i.icon-rss {

  color: #ff6600;

}

#custom-html-t1 section#main-menu {

  background-color: #000000;

}

#custom-html-t1 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t1 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t1 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t1 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t1 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t1 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t1 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t1 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t1 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t1 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t1 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t1 section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-t1 section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-t1 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t1 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t1 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t1 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t1 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t1 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t1 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t1 .home-shortcuts li span {

  display: none;

}

#custom-html-t1 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t1 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-t1 .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-t1 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t1 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t1 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t1 .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-t1 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t1 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t1 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t1 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t1 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t1 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t1 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t1 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t1 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t1 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t1 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t1 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t1 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t1 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t1 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t1 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t1 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t1 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t1 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t1 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t1 .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-t1 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t1 .tiles .tile:nth-child(1),

  #custom-html-t1 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-t1 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t1 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t1 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t1 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t1 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t1 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t1 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t1 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t1 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t1 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t1 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t1 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t1 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t1 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t1 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t1 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t1 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t1 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t1 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t1 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t1 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t1 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t1 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t1 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t1 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t1 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t1 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t1 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t1 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t1 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t1 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t1 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t1 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t1 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t1 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t1 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t1 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t1 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t1 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t1 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t1 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t1 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t1 ul.top-nav > li,

#custom-html-t1 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t1 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t1 ul.top-nav > li:active > a,

#custom-html-t1 ul.top-nav > li:focus > a,

#custom-html-t1 ul.top-nav > li:hover > a,

#custom-html-t1 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t1 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t1 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t1 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t1 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-t1 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t1 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t1 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-t1 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t1 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t1 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-t1 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t1 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t1 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t1 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t1 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t1 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t1 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t1 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-t1 .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-t1 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t1 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-t1 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t1 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t1 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-t1 .domain-check-availability {

  width: 100px;

}

#custom-html-t1 .domain-step-options {

  min-height: 300px;

}

#custom-html-t1 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t1 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t1 .domain-checker-invalid,

#custom-html-t1 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t1 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t1 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t1 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t1 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t1 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t1 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t1 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t1 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t1 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-t1 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t1 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t1 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t1 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t1 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t1 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t1 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t1 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t1 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t1 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t1 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t1 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t1 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t1 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t1 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t1 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t1 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t1 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t1 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t1 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t1 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t1 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t1 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t1 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t1 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t1 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t1 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t1 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t1 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t1 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t1 div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t1 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t1 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t1 .product-status-active {

  background-color: #46a546;

}

#custom-html-t1 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t1 .product-status-cancelled,

#custom-html-t1 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t1 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t1 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t1 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t1 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t1 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t1 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-t1 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t1 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t1 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t1 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t1 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t1 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t1 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t1 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-t1 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t1 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t1 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t1 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-t1 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t1 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t1 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t1 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t1 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t1 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t1 .pagination > li > a,

#custom-html-t1 .pagination > li > span {

  color: #444444;

}

#custom-html-t1 .pagination > .active > a,

#custom-html-t1 .pagination > .active > a:focus,

#custom-html-t1 .pagination > .active > a:hover,

#custom-html-t1 .pagination > .active > span,

#custom-html-t1 .pagination > .active > span:focus,

#custom-html-t1 .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t1 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t1 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t1 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t1 .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-t1 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t1 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t1 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t1 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t1 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t1 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t1 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t1 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t1 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t1 .status-pending {

  color: #d9534f;

}

#custom-html-t1 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t1 .status-active,

#custom-html-t1 .status-completed,

#custom-html-t1 .status-open {

  color: #3fad46;

}

#custom-html-t1 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t1 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t1 .status-answered,

#custom-html-t1 .status-fraud {

  color: #000000;

}

#custom-html-t1 .status-expired,

#custom-html-t1 .status-transferred.away {

  color: #004258;

}

#custom-html-t1 .status-cancelled {

  color: #9fa29a;

}

#custom-html-t1 .status-terminated {

  color: #666666;

}

#custom-html-t1 .status-onhold {

  color: #224488;

}

#custom-html-t1 .status-inprogress {

  color: #cc0000;

}

#custom-html-t1 .status-closed {

  color: #888888;

}

#custom-html-t1 .status-paid {

  color: #498302;

}

#custom-html-t1 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t1 .status-cancelled {

  color: #87939f;

}

#custom-html-t1 .status-collections {

  color: #9a141e;

}

#custom-html-t1 .status-refunded {

  color: #319fc3;

}

#custom-html-t1 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t1 .status-delivered {

  color: #224488;

}

#custom-html-t1 .status-accepted {

  color: #498302;

}

#custom-html-t1 .status-dead,

#custom-html-t1 .status-lost {

  color: #000000;

}

#custom-html-t1 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t1 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t1 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t1 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t1 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t1 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t1 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t1 .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-t1 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t1 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t1 .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-t1 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t1 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t1 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t1 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t1 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t1 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t1 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t1 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t1 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t1 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t1 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t1 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t1 .ticket-reply .rating,

#custom-html-t1 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t1 .ticket-reply .rating span.star,

#custom-html-t1 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t1 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t1 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t1 .ticket-reply .rating span.star:before,

#custom-html-t1 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t1 .ticket-reply .rating span.star:hover:before,

#custom-html-t1 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t1 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t1 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t1 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t1 .ticket-reply .clear {

  clear: both;

}

#custom-html-t1 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t1 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t1 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t1 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t1 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t1 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t1 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t1 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t1 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t1 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-t1 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t1 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t1 .popover-user-notifications ul li i.far,

#custom-html-t1 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t1 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t1 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t1 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t1 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t1 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t1 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t1 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t1 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t1 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t1 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t1 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t1 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t1 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t1 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t1 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t1 div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-t1 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t1 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t1 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t1 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t1 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t1 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-t1 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t1 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t1 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t1 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t1 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t1 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t1 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t1 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t1 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t1 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t1 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t1 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t1 .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-t1 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t1 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t1 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t1 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t1 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t1 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-t1 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t1 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t1 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t1 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t1 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t1 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t1 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t1 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t1 .kb-category a small {

  color: #888888;

}

#custom-html-t1 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t1 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t1 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t1 .kbarticles a.admin-inline-edit,

#custom-html-t1 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t1 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t1 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t1 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t1 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t1 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t1 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t1 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t1 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t1 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t1 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t1 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t1 #stepResults {

  font-size: 20px;

}

#custom-html-t1 #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-t1 #stepResults {

    font-size: 14px;

  }

  #custom-html-t1 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t1 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-t1 #main-menu,

  #custom-html-t1 #top-nav,

  #custom-html-t1 .header-lined,

  #custom-html-t1 .sidebar {

    display: none;

  }

  #custom-html-t1 a[href]:after {

    content: "" !important;

  }

}

#custom-html-t1 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t1 h3.with-badge i,

#custom-html-t1 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t1 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-t1 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t1 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-t1 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t1 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t1 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t1 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t1 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t1 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t1 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t1 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t1 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t1 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t1 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t1 .login-popover {

  font-size: 12px;

}

#custom-html-t1 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t1 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t1 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t1 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t1 .error-container {

  text-align: center;

}

#custom-html-t1 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t1 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t1 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t1 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t1 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t1 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t1 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t1 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t1 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t1 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-t1 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t1 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-t1 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t1 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t1 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t1 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t1 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t1 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t1 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t1 .email-verification .btn:active,

#custom-html-t1 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t1 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t1 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t1 .email-verification .far,

#custom-html-t1 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-t1 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t1 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t1 .email-verification .button {

    float: right;

  }

  #custom-html-t1 .email-verification .far,

  #custom-html-t1 .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-t1 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t1 .email-verification.success .far,

#custom-html-t1 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t1 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t1 .email-verification.failed .far,

#custom-html-t1 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t1 .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-t1 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t1 .md-editor > .md-preview,

#custom-html-t1 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t1 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t1 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t1 .small-font {

  font-size: 0.9em;

}

#custom-html-t1 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t1 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t1 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t1 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t1 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t1 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t1 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t1 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t1 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t1 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t1 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t1 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t1 .panel-heading i.fab,

#custom-html-t1 .panel-heading i.fal,

#custom-html-t1 .panel-heading i.far,

#custom-html-t1 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t1 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t1 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t1 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t1 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t1 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t1 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t1 .panel-sidebar .list-group-item.disabled,

#custom-html-t1 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t1 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t1 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t1 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t1 .panel-sidebar a.list-group-item.active,

#custom-html-t1 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t1 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t1 .panel-sidebar a.list-group-item.active i,

#custom-html-t1 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t1 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t1 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t1 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t1 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t1 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t1 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t1 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t1 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t1 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t1 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t1 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t1 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t1 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t1 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t1 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-t1 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t1 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-t1 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t1 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t1 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t1 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t1 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t1 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t1 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t1 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t1 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t1 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t1 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t1 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t1 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t1 .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-t1 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t1 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t1 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t1 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t1 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t1 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t1 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t1 .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-t1 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t1 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t1 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t1 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t1 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t1 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t1 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t1 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t1 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t1 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t1 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t1 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t1 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t1 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t1 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t1 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t1 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t1 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t1 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t1 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t1 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t1 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t1 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t1 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t1 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t1 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t1 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t1 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t1 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t1 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t1 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t1 .panel-mc-sso .btn,

#custom-html-t1 .panel-mc-sso .form-control,

#custom-html-t1 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t1 .panel-mc-sso small {

  display: block;

}

#custom-html-t1 .social-signin-btns {

  text-align: center;

}

#custom-html-t1 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t1 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t1 .btn-social i.far,

#custom-html-t1 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-facebook.active,

#custom-html-t1 .btn-facebook:active,

#custom-html-t1 .btn-facebook:focus,

#custom-html-t1 .btn-facebook:hover,

#custom-html-t1 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-facebook.active,

#custom-html-t1 .btn-facebook:active,

#custom-html-t1 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t1 .btn-facebook.disabled,

#custom-html-t1 .btn-facebook.disabled.active,

#custom-html-t1 .btn-facebook.disabled:active,

#custom-html-t1 .btn-facebook.disabled:focus,

#custom-html-t1 .btn-facebook.disabled:hover,

#custom-html-t1 .btn-facebook[disabled],

#custom-html-t1 .btn-facebook[disabled].active,

#custom-html-t1 .btn-facebook[disabled]:active,

#custom-html-t1 .btn-facebook[disabled]:focus,

#custom-html-t1 .btn-facebook[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-facebook,

#custom-html-t1 fieldset[disabled] .btn-facebook.active,

#custom-html-t1 fieldset[disabled] .btn-facebook:active,

#custom-html-t1 fieldset[disabled] .btn-facebook:focus,

#custom-html-t1 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-google.active,

#custom-html-t1 .btn-google:active,

#custom-html-t1 .btn-google:focus,

#custom-html-t1 .btn-google:hover,

#custom-html-t1 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-google.active,

#custom-html-t1 .btn-google:active,

#custom-html-t1 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t1 .btn-google-plus.disabled.active,

#custom-html-t1 .btn-google-plus.disabled:active,

#custom-html-t1 .btn-google-plus.disabled:focus,

#custom-html-t1 .btn-google-plus[disabled].active,

#custom-html-t1 .btn-google-plus[disabled]:active,

#custom-html-t1 .btn-google-plus[disabled]:focus,

#custom-html-t1 .btn-google-plus[disabled]:hover,

#custom-html-t1 .btn-google.disabled,

#custom-html-t1 .btn-google.disabled:hover,

#custom-html-t1 .btn-google[disabled],

#custom-html-t1 fieldset[disabled] .btn-google,

#custom-html-t1 fieldset[disabled] .btn-google-plus.active,

#custom-html-t1 fieldset[disabled] .btn-google-plus:active,

#custom-html-t1 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t1 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-twitter.active,

#custom-html-t1 .btn-twitter:active,

#custom-html-t1 .btn-twitter:focus,

#custom-html-t1 .btn-twitter:hover,

#custom-html-t1 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .btn-twitter.active,

#custom-html-t1 .btn-twitter:active,

#custom-html-t1 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t1 .btn-twitter.disabled,

#custom-html-t1 .btn-twitter.disabled.active,

#custom-html-t1 .btn-twitter.disabled:active,

#custom-html-t1 .btn-twitter.disabled:focus,

#custom-html-t1 .btn-twitter.disabled:hover,

#custom-html-t1 .btn-twitter[disabled],

#custom-html-t1 .btn-twitter[disabled].active,

#custom-html-t1 .btn-twitter[disabled]:active,

#custom-html-t1 .btn-twitter[disabled]:focus,

#custom-html-t1 .btn-twitter[disabled]:hover,

#custom-html-t1 fieldset[disabled] .btn-twitter,

#custom-html-t1 fieldset[disabled] .btn-twitter.active,

#custom-html-t1 fieldset[disabled] .btn-twitter:active,

#custom-html-t1 fieldset[disabled] .btn-twitter:focus,

#custom-html-t1 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t1 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t1 .providerLinkingFeedback {

  display: none;

}

#custom-html-t1 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t1 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t1 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t1 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t1 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t1 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t1 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t1 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t1 #registration .field,

#custom-html-t1 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t1 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t1 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t1 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t1 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t1 #registration textarea.field {

  height: auto;

}

#custom-html-t1 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t1 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t1 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t1 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t1 #registration .field[disabled],

#custom-html-t1 #registration .field[readonly],

#custom-html-t1 #registration .form-control[disabled],

#custom-html-t1 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t1 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t1 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t1 .upgrade .product-to-be-upgraded h4,

#custom-html-t1 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t1 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t1 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t1 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t1 .upgrade .products .product .current,

#custom-html-t1 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t1 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t1 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-t1 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-t1 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t1 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t1 .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t1 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t1 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t1 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t1 .upgrade .products .far,

#custom-html-t1 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t1 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t1 .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-t1 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t1 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t1 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t1 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t1 .intl-tel-input {

  width: 100%;

}

#custom-html-t1 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t1 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .bootstrap-switch input[type=checkbox],

#custom-html-t1 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t1 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t1 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t1 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t1 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t1 .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-t1 .md-editor .md-footer,

#custom-html-t1 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t1 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t1 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t1 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t1 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t1 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t1 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t1 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t1 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t1 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t1 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t1 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t1 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t1 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t1 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t1 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t1 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t1 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t1 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t1 table.dataTable td,

#custom-html-t1 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t1 table.dataTable td.dataTables_empty,

#custom-html-t1 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t1 table.dataTable.nowrap td,

#custom-html-t1 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t1 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t1 table.dataTable thead > tr > td.sorting,

#custom-html-t1 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t1 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t1 table.dataTable thead > tr > th.sorting,

#custom-html-t1 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t1 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t1 table.dataTable thead > tr > td:active,

#custom-html-t1 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t1 table.dataTable thead .sorting,

#custom-html-t1 table.dataTable thead .sorting_asc,

#custom-html-t1 table.dataTable thead .sorting_asc_disabled,

#custom-html-t1 table.dataTable thead .sorting_desc,

#custom-html-t1 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t1 table.dataTable thead .sorting:after,

#custom-html-t1 table.dataTable thead .sorting_asc:after,

#custom-html-t1 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t1 table.dataTable thead .sorting_desc:after,

#custom-html-t1 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t1 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t1 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t1 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t1 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t1 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t1 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t1 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t1 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t1 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t1 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t1 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t1 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t1 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-t1 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t1 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t1 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t1 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-t1 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t1 table.dataTable.table-condensed .sorting:after,

#custom-html-t1 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t1 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t1 table.table-bordered.dataTable td,

#custom-html-t1 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t1 table.table-bordered.dataTable td:last-child,

#custom-html-t1 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t1 table.table-bordered.dataTable tbody td,

#custom-html-t1 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t1 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t1 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t1 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t1 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t1 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t1 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t1 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t1 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t1 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t1 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t1 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t1 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t1 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t1 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t1 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t1 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t1 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t1 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t1 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t1 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t1 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t1 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t1 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t1 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t1 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t1 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-t1 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t1 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t1 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t1 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t1 .multiselect-container > li {

  padding: 0;

}

#custom-html-t1 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t1 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t1 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t1 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t1 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t1 .multiselect-container > li > a > label.checkbox,

#custom-html-t1 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t1 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t1 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t1 .form-inline .multiselect-container label.checkbox,

#custom-html-t1 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t1 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t1 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7ytJ9BMU {

  padding-top: 45px;

  padding-bottom: 30px;

  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");

}

.cid-sl7ytJ9BMU P {

  color: #767676;

}

.cid-sl7ytJ9BMU H1 {

  color: #ffffff;

}

.cid-sl7ytJ9BMU .mbr-text,

.cid-sl7ytJ9BMU .mbr-section-btn {

  color: #ffffff;

}

.cid-sl7ytJ9BMU h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3vgddI0y .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3vgddI0y .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3vgddI0y .divider-top::before,

.cid-sF3vgddI0y .divider-bottom::before,

.cid-sF3vgddI0y .divider-top::after,

.cid-sF3vgddI0y .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3vgddI0y .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3vgddI0y .divider-triangles::before {

  top: -50px;

}

.cid-sF3vgddI0y .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3vgddI0y .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3vgddI0y .divider-multitriangles::before,

.cid-sF3vgddI0y .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3vgddI0y .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-rXQkqKBMeZ {

  background-color: #ffffff;

}

.cid-rXQkqKBMeZ P {

  color: #767676;

}

.cid-sF3vhhv3sD .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3vhhv3sD .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3vhhv3sD .divider-top::before,

.cid-sF3vhhv3sD .divider-bottom::before,

.cid-sF3vhhv3sD .divider-top::after,

.cid-sF3vhhv3sD .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3vhhv3sD .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3vhhv3sD .divider-triangles::before {

  top: -50px;

}

.cid-sF3vhhv3sD .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3vhhv3sD .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3vhhv3sD .divider-multitriangles::before,

.cid-sF3vhhv3sD .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3vhhv3sD .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-s88a2rDONA {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s88a2rDONA h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s88a2rDONA p {

  color: #767676;

  text-align: left;

}

.cid-s88a2rDONA .card-box {

  padding-top: 2rem;

}

.cid-s88a2rDONA .card-wrapper {

  height: 100%;

}

.cid-svDARZ7loC {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDARZ7loC .content {

    text-align: center;

  }

  .cid-svDARZ7loC .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDARZ7loC .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDARZ7loC .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDARZ7loC .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDARZ7loC .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDARZ7loC .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDARZ7loC .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDARZ7loC .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDARZ7loC .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDARZ7loC .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDARZ7loC .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDARZ7loC .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDARZ7loC .copyright > p {

  text-align: left;

}

.cid-svDARZ7loC H5 {

  color: #000000;

}

.cid-svGH4ASjBg .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGH4ASjBg .my-float {

  margin-top: 16px;

}

.cid-svGH4ASjBg P {

  color: #232323;

}

.cid-svGH4ASjBg DIV {

  color: #ffffff;

}

.cid-svGH4ASjBg H10 {

  color: #767676;

}

.cid-svGH4ASjBg .hidden {

  display: none;

}

#custom-html-t2 {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-t2 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t2 body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-t2 article,

#custom-html-t2 aside,

#custom-html-t2 details,

#custom-html-t2 figcaption,

#custom-html-t2 figure,

#custom-html-t2 footer,

#custom-html-t2 header,

#custom-html-t2 hgroup,

#custom-html-t2 main,

#custom-html-t2 menu,

#custom-html-t2 nav,

#custom-html-t2 section,

#custom-html-t2 summary {

  display: block;

}

#custom-html-t2 audio,

#custom-html-t2 canvas,

#custom-html-t2 progress,

#custom-html-t2 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t2 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t2 [hidden],

#custom-html-t2 template {

  display: none;

}

#custom-html-t2 a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-t2 a:active,

#custom-html-t2 a:hover {

  outline: 0;

}

#custom-html-t2 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t2 b,

#custom-html-t2 strong {

  font-weight: 700;

}

#custom-html-t2 dfn {

  font-style: italic;

}

#custom-html-t2 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t2 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t2 small {

  font-size: 80%;

}

#custom-html-t2 sub,

#custom-html-t2 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t2 sup {

  top: -0.5em;

}

#custom-html-t2 sub {

  bottom: -0.25em;

}

#custom-html-t2 img {

  border: 0;

  vertical-align: middle;

}

#custom-html-t2 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t2 figure {

  margin: 0;

}

#custom-html-t2 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t2 pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t2 code,

#custom-html-t2 kbd,

#custom-html-t2 pre,

#custom-html-t2 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-t2 button,

#custom-html-t2 input,

#custom-html-t2 optgroup,

#custom-html-t2 select,

#custom-html-t2 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t2 button {

  overflow: visible;

}

#custom-html-t2 button,

#custom-html-t2 select {

  text-transform: none;

}

#custom-html-t2 button,

#custom-html-t2 html input[type=button],

#custom-html-t2 input[type=reset],

#custom-html-t2 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t2 button[disabled],

#custom-html-t2 html input[disabled] {

  cursor: default;

}

#custom-html-t2 button::-moz-focus-inner,

#custom-html-t2 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t2 input {

  line-height: normal;

}

#custom-html-t2 input[type=checkbox],

#custom-html-t2 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t2 input[type=number]::-webkit-inner-spin-button,

#custom-html-t2 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t2 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-t2 input[type=search]::-webkit-search-cancel-button,

#custom-html-t2 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t2 fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-t2 legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t2 textarea {

  overflow: auto;

}

#custom-html-t2 optgroup {

  font-weight: 700;

}

#custom-html-t2 table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-t2 td,

#custom-html-t2 th {

  padding: 0;

}

@media print {

  #custom-html-t2 *,

  #custom-html-t2 :after,

  #custom-html-t2 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t2 a,

  #custom-html-t2 a:visited {

    text-decoration: underline;

  }

  #custom-html-t2 a[href]:after {

    content: "" !important;

  }

  #custom-html-t2 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t2 a[href^="#"]:after,

  #custom-html-t2 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t2 blockquote,

  #custom-html-t2 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t2 thead {

    display: table-header-group;

  }

  #custom-html-t2 img,

  #custom-html-t2 tr {

    page-break-inside: avoid;

  }

  #custom-html-t2 img {

    max-width: 100% !important;

  }

  #custom-html-t2 h2,

  #custom-html-t2 h3,

  #custom-html-t2 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t2 h2,

  #custom-html-t2 h3 {

    page-break-after: avoid;

  }

  #custom-html-t2 .navbar {

    display: none;

  }

  #custom-html-t2 .btn > .caret,

  #custom-html-t2 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t2 .label {

    border: 1px solid #000000;

  }

  #custom-html-t2 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t2 .table td,

  #custom-html-t2 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t2 .table-bordered td,

  #custom-html-t2 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-t2 .visible-print {

    display: block !important;

  }

  #custom-html-t2 table.visible-print {

    display: table !important;

  }

  #custom-html-t2 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t2 td.visible-print,

  #custom-html-t2 th.visible-print {

    display: table-cell !important;

  }

  #custom-html-t2 .visible-print-block {

    display: block !important;

  }

  #custom-html-t2 .visible-print-inline {

    display: inline !important;

  }

  #custom-html-t2 .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-t2 .hidden-print {

    display: none !important;

  }

  #custom-html-t2 #main-menu,

  #custom-html-t2 #top-nav,

  #custom-html-t2 .header-lined,

  #custom-html-t2 .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t2 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t2 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t2 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t2 .glyphicon-eur:before,

#custom-html-t2 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t2 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t2 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t2 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t2 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t2 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t2 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t2 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t2 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-t2 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t2 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t2 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t2 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t2 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t2 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t2 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t2 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t2 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t2 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t2 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t2 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t2 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t2 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t2 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t2 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t2 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t2 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t2 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t2 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t2 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t2 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t2 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t2 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t2 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t2 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t2 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t2 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t2 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t2 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t2 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t2 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t2 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t2 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t2 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t2 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t2 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t2 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t2 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t2 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t2 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t2 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t2 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t2 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t2 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t2 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t2 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t2 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t2 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t2 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t2 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t2 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t2 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t2 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t2 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t2 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t2 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t2 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t2 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t2 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t2 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t2 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t2 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t2 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t2 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t2 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t2 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t2 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t2 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t2 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t2 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t2 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t2 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t2 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t2 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t2 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t2 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t2 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t2 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t2 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t2 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t2 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t2 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t2 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t2 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t2 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t2 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t2 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t2 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t2 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t2 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t2 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t2 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t2 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t2 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t2 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t2 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t2 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t2 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t2 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t2 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t2 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t2 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t2 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t2 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t2 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t2 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t2 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t2 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t2 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t2 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t2 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t2 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-t2 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t2 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t2 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t2 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t2 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t2 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t2 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t2 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t2 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t2 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t2 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t2 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t2 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t2 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t2 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t2 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t2 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t2 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t2 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t2 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t2 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t2 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t2 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t2 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t2 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t2 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t2 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t2 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t2 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t2 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-t2 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t2 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t2 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t2 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t2 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t2 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t2 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t2 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t2 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t2 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t2 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t2 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t2 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t2 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t2 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t2 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t2 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t2 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t2 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t2 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t2 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t2 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t2 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t2 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t2 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t2 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t2 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t2 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t2 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t2 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t2 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t2 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t2 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t2 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t2 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t2 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t2 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t2 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t2 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t2 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t2 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t2 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t2 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t2 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t2 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t2 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t2 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t2 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t2 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t2 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t2 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t2 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t2 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t2 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t2 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t2 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t2 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t2 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t2 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t2 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t2 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t2 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t2 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t2 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t2 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t2 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t2 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-t2 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t2 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t2 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t2 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t2 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t2 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t2 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t2 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t2 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t2 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t2 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t2 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t2 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t2 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t2 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t2 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t2 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t2 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t2 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t2 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t2 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t2 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t2 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t2 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t2 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t2 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t2 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t2 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t2 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t2 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t2 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t2 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t2 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t2 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t2 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t2 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t2 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t2 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t2 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t2 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t2 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t2 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t2 :after,

#custom-html-t2 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t2 button,

#custom-html-t2 input,

#custom-html-t2 select,

#custom-html-t2 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t2 a:focus,

#custom-html-t2 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t2 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t2 .carousel-inner > .item > a > img,

#custom-html-t2 .carousel-inner > .item > img,

#custom-html-t2 .img-responsive,

#custom-html-t2 .thumbnail a > img,

#custom-html-t2 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t2 .img-rounded {

  border-radius: 6px;

}

#custom-html-t2 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t2 .img-circle {

  border-radius: 50%;

}

#custom-html-t2 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t2 .sr-only-focusable:active,

#custom-html-t2 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t2 [role=button] {

  cursor: pointer;

}

#custom-html-t2 .h1,

#custom-html-t2 .h2,

#custom-html-t2 .h3,

#custom-html-t2 .h4,

#custom-html-t2 .h5,

#custom-html-t2 .h6,

#custom-html-t2 h1,

#custom-html-t2 h2,

#custom-html-t2 h3,

#custom-html-t2 h4,

#custom-html-t2 h5,

#custom-html-t2 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t2 .h1 .small,

#custom-html-t2 .h1 small,

#custom-html-t2 .h2 .small,

#custom-html-t2 .h2 small,

#custom-html-t2 .h3 .small,

#custom-html-t2 .h3 small,

#custom-html-t2 .h4 .small,

#custom-html-t2 .h4 small,

#custom-html-t2 .h5 .small,

#custom-html-t2 .h5 small,

#custom-html-t2 .h6 .small,

#custom-html-t2 .h6 small,

#custom-html-t2 h1 .small,

#custom-html-t2 h1 small,

#custom-html-t2 h2 .small,

#custom-html-t2 h2 small,

#custom-html-t2 h3 .small,

#custom-html-t2 h3 small,

#custom-html-t2 h4 .small,

#custom-html-t2 h4 small,

#custom-html-t2 h5 .small,

#custom-html-t2 h5 small,

#custom-html-t2 h6 .small,

#custom-html-t2 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t2 .h1,

#custom-html-t2 .h2,

#custom-html-t2 .h3,

#custom-html-t2 h1,

#custom-html-t2 h2,

#custom-html-t2 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t2 .h1 .small,

#custom-html-t2 .h1 small,

#custom-html-t2 .h2 .small,

#custom-html-t2 .h2 small,

#custom-html-t2 .h3 .small,

#custom-html-t2 .h3 small,

#custom-html-t2 h1 .small,

#custom-html-t2 h1 small,

#custom-html-t2 h2 .small,

#custom-html-t2 h2 small,

#custom-html-t2 h3 .small,

#custom-html-t2 h3 small {

  font-size: 65%;

}

#custom-html-t2 .h4,

#custom-html-t2 .h5,

#custom-html-t2 .h6,

#custom-html-t2 h4,

#custom-html-t2 h5,

#custom-html-t2 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t2 .h4 .small,

#custom-html-t2 .h4 small,

#custom-html-t2 .h5 .small,

#custom-html-t2 .h5 small,

#custom-html-t2 .h6 .small,

#custom-html-t2 .h6 small,

#custom-html-t2 h4 .small,

#custom-html-t2 h4 small,

#custom-html-t2 h5 .small,

#custom-html-t2 h5 small,

#custom-html-t2 h6 .small,

#custom-html-t2 h6 small {

  font-size: 75%;

}

#custom-html-t2 .h1,

#custom-html-t2 h1 {

  font-size: 36px;

}

#custom-html-t2 .h2,

#custom-html-t2 h2 {

  font-size: 30px;

}

#custom-html-t2 .h3,

#custom-html-t2 h3 {

  font-size: 24px;

}

#custom-html-t2 .h4,

#custom-html-t2 h4 {

  font-size: 18px;

}

#custom-html-t2 .h5,

#custom-html-t2 h5 {

  font-size: 14px;

}

#custom-html-t2 .h6,

#custom-html-t2 h6 {

  font-size: 12px;

}

#custom-html-t2 p {

  margin: 0 0 10px;

}

#custom-html-t2 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t2 .lead {

    font-size: 21px;

  }

  #custom-html-t2 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t2 .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-t2 .container {

    width: 750px;

  }

  #custom-html-t2 .col-sm-1,

  #custom-html-t2 .col-sm-10,

  #custom-html-t2 .col-sm-11,

  #custom-html-t2 .col-sm-12,

  #custom-html-t2 .col-sm-2,

  #custom-html-t2 .col-sm-3,

  #custom-html-t2 .col-sm-4,

  #custom-html-t2 .col-sm-5,

  #custom-html-t2 .col-sm-6,

  #custom-html-t2 .col-sm-7,

  #custom-html-t2 .col-sm-8,

  #custom-html-t2 .col-sm-9 {

    float: left;

  }

  #custom-html-t2 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t2 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t2 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t2 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t2 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t2 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t2 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t2 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t2 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t2 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t2 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t2 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t2 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t2 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t2 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t2 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t2 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t2 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t2 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t2 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t2 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t2 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-t2 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t2 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t2 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t2 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t2 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t2 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t2 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t2 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t2 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t2 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t2 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t2 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t2 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t2 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t2 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t2 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t2 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t2 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t2 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t2 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t2 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t2 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t2 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t2 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t2 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t2 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t2 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t2 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t2 .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-t2 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t2 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t2 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t2 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t2 .form-inline .input-group .form-control,

  #custom-html-t2 .form-inline .input-group .input-group-addon,

  #custom-html-t2 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t2 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t2 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t2 .form-inline .checkbox,

  #custom-html-t2 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t2 .form-inline .checkbox label,

  #custom-html-t2 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t2 .form-inline .checkbox input[type=checkbox],

  #custom-html-t2 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t2 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t2 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-t2 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-t2 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-t2 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-t2 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-t2 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t2 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t2 .nav-tabs.nav-justified > .active > a,

  #custom-html-t2 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t2 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t2 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t2 .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-t2 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t2 .nav-tabs-justified > .active > a,

  #custom-html-t2 .nav-tabs-justified > .active > a:focus,

  #custom-html-t2 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-t2 .navbar {

    border-radius: 4px;

  }

  #custom-html-t2 .navbar-header {

    float: left;

  }

  #custom-html-t2 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t2 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t2 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t2 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t2 .navbar-fixed-top .navbar-collapse,

  #custom-html-t2 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-t2 .container-fluid > .navbar-collapse,

  #custom-html-t2 .container-fluid > .navbar-header,

  #custom-html-t2 .container > .navbar-collapse,

  #custom-html-t2 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-t2 .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-t2 .navbar-fixed-bottom,

  #custom-html-t2 .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-t2 .navbar > .container .navbar-brand,

  #custom-html-t2 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-t2 .navbar-toggle {

    display: none;

  }

  #custom-html-t2 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t2 .navbar-nav > li {

    float: left;

  }

  #custom-html-t2 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-t2 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t2 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t2 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t2 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t2 .navbar-form .input-group .form-control,

  #custom-html-t2 .navbar-form .input-group .input-group-addon,

  #custom-html-t2 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t2 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t2 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t2 .navbar-form .checkbox,

  #custom-html-t2 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t2 .navbar-form .checkbox label,

  #custom-html-t2 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t2 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t2 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t2 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-t2 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t2 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-t2 .navbar-left {

    float: left !important;

  }

  #custom-html-t2 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t2 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-t2 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t2 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t2 .modal-sm {

    width: 300px;

  }

  #custom-html-t2 .pull-sm-left {

    float: left;

  }

  #custom-html-t2 .pull-sm-right {

    float: right;

  }

  #custom-html-t2 .text-right-sm {

    text-align: right;

  }

  #custom-html-t2 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t2 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-t2 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t2 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t2 .email-verification .button {

    float: right;

  }

  #custom-html-t2 .email-verification .far,

  #custom-html-t2 .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-t2 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t2 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-t2 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t2 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t2 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t2 .small,

#custom-html-t2 small {

  font-size: 85%;

}

#custom-html-t2 .mark,

#custom-html-t2 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t2 .text-left {

  text-align: left;

}

#custom-html-t2 .text-right {

  text-align: right;

}

#custom-html-t2 .text-center {

  text-align: center;

}

#custom-html-t2 .text-justify {

  text-align: justify;

}

#custom-html-t2 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t2 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t2 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t2 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t2 .text-muted {

  color: #777777;

}

#custom-html-t2 .text-primary {

  color: #000000;

}

#custom-html-t2 a.text-primary:focus,

#custom-html-t2 a.text-primary:hover {

  color: #000000;

}

#custom-html-t2 .text-success {

  color: #3c763d;

}

#custom-html-t2 a.text-success:focus,

#custom-html-t2 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t2 .text-info {

  color: #31708f;

}

#custom-html-t2 a.text-info:focus,

#custom-html-t2 a.text-info:hover {

  color: #000000;

}

#custom-html-t2 .text-warning {

  color: #8a6d3b;

}

#custom-html-t2 a.text-warning:focus,

#custom-html-t2 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t2 .text-danger {

  color: #a94442;

}

#custom-html-t2 a.text-danger:focus,

#custom-html-t2 a.text-danger:hover {

  color: #843534;

}

#custom-html-t2 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t2 a.bg-primary:focus,

#custom-html-t2 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t2 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t2 a.bg-success:focus,

#custom-html-t2 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t2 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t2 a.bg-info:focus,

#custom-html-t2 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t2 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t2 a.bg-warning:focus,

#custom-html-t2 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t2 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t2 a.bg-danger:focus,

#custom-html-t2 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t2 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t2 ol,

#custom-html-t2 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t2 ol ol,

#custom-html-t2 ol ul,

#custom-html-t2 ul ol,

#custom-html-t2 ul ul {

  margin-bottom: 0;

}

#custom-html-t2 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t2 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t2 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t2 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t2 dd,

#custom-html-t2 dt {

  line-height: 1.42857143;

}

#custom-html-t2 dt {

  font-weight: 700;

}

#custom-html-t2 dd {

  margin-left: 0;

}

#custom-html-t2 abbr[data-original-title],

#custom-html-t2 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t2 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t2 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t2 blockquote ol:last-child,

#custom-html-t2 blockquote p:last-child,

#custom-html-t2 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t2 blockquote .small,

#custom-html-t2 blockquote footer,

#custom-html-t2 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-t2 blockquote .small:before,

#custom-html-t2 blockquote footer:before,

#custom-html-t2 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t2 .blockquote-reverse,

#custom-html-t2 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t2 .blockquote-reverse .small:before,

#custom-html-t2 .blockquote-reverse footer:before,

#custom-html-t2 .blockquote-reverse small:before,

#custom-html-t2 blockquote.pull-right .small:before,

#custom-html-t2 blockquote.pull-right footer:before,

#custom-html-t2 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t2 .blockquote-reverse .small:after,

#custom-html-t2 .blockquote-reverse footer:after,

#custom-html-t2 .blockquote-reverse small:after,

#custom-html-t2 blockquote.pull-right .small:after,

#custom-html-t2 blockquote.pull-right footer:after,

#custom-html-t2 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t2 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t2 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t2 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t2 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t2 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t2 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t2 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-t2 .container {

    width: 970px;

  }

  #custom-html-t2 .col-md-1,

  #custom-html-t2 .col-md-10,

  #custom-html-t2 .col-md-11,

  #custom-html-t2 .col-md-12,

  #custom-html-t2 .col-md-2,

  #custom-html-t2 .col-md-3,

  #custom-html-t2 .col-md-4,

  #custom-html-t2 .col-md-5,

  #custom-html-t2 .col-md-6,

  #custom-html-t2 .col-md-7,

  #custom-html-t2 .col-md-8,

  #custom-html-t2 .col-md-9 {

    float: left;

  }

  #custom-html-t2 .col-md-12 {

    width: 100%;

  }

  #custom-html-t2 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t2 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t2 .col-md-9 {

    width: 75%;

  }

  #custom-html-t2 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t2 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t2 .col-md-6 {

    width: 50%;

  }

  #custom-html-t2 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t2 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t2 .col-md-3 {

    width: 25%;

  }

  #custom-html-t2 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t2 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t2 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t2 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t2 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t2 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t2 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t2 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t2 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t2 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t2 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t2 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t2 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t2 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t2 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t2 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t2 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t2 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t2 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t2 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t2 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t2 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t2 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t2 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t2 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-t2 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t2 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t2 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t2 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t2 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t2 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t2 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t2 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t2 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t2 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t2 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t2 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t2 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t2 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t2 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t2 .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-t2 .modal-lg {

    width: 900px;

  }

  #custom-html-t2 .pull-md-left {

    float: left;

  }

  #custom-html-t2 .pull-md-right {

    float: right;

  }

  #custom-html-t2 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t2 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t2 .container {

    width: 1170px;

  }

  #custom-html-t2 .col-lg-1,

  #custom-html-t2 .col-lg-10,

  #custom-html-t2 .col-lg-11,

  #custom-html-t2 .col-lg-12,

  #custom-html-t2 .col-lg-2,

  #custom-html-t2 .col-lg-3,

  #custom-html-t2 .col-lg-4,

  #custom-html-t2 .col-lg-5,

  #custom-html-t2 .col-lg-6,

  #custom-html-t2 .col-lg-7,

  #custom-html-t2 .col-lg-8,

  #custom-html-t2 .col-lg-9 {

    float: left;

  }

  #custom-html-t2 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t2 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t2 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t2 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t2 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t2 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t2 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t2 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t2 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t2 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t2 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t2 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t2 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t2 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t2 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t2 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t2 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t2 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t2 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t2 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t2 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t2 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-t2 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t2 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t2 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t2 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t2 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t2 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t2 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t2 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t2 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t2 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t2 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t2 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t2 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t2 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t2 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t2 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t2 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t2 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t2 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t2 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t2 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t2 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t2 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t2 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t2 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t2 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t2 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t2 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t2 .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-t2 .visible-lg {

    display: block !important;

  }

  #custom-html-t2 table.visible-lg {

    display: table !important;

  }

  #custom-html-t2 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t2 td.visible-lg,

  #custom-html-t2 th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-t2 .visible-lg-block {

    display: block !important;

  }

  #custom-html-t2 .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-t2 .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-t2 .hidden-lg {

    display: none !important;

  }

  #custom-html-t2 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t2 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t2 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t2 .col-lg-1,

#custom-html-t2 .col-lg-10,

#custom-html-t2 .col-lg-11,

#custom-html-t2 .col-lg-12,

#custom-html-t2 .col-lg-2,

#custom-html-t2 .col-lg-3,

#custom-html-t2 .col-lg-4,

#custom-html-t2 .col-lg-5,

#custom-html-t2 .col-lg-6,

#custom-html-t2 .col-lg-7,

#custom-html-t2 .col-lg-8,

#custom-html-t2 .col-lg-9,

#custom-html-t2 .col-md-1,

#custom-html-t2 .col-md-10,

#custom-html-t2 .col-md-11,

#custom-html-t2 .col-md-12,

#custom-html-t2 .col-md-2,

#custom-html-t2 .col-md-3,

#custom-html-t2 .col-md-4,

#custom-html-t2 .col-md-5,

#custom-html-t2 .col-md-6,

#custom-html-t2 .col-md-7,

#custom-html-t2 .col-md-8,

#custom-html-t2 .col-md-9,

#custom-html-t2 .col-sm-1,

#custom-html-t2 .col-sm-10,

#custom-html-t2 .col-sm-11,

#custom-html-t2 .col-sm-12,

#custom-html-t2 .col-sm-2,

#custom-html-t2 .col-sm-3,

#custom-html-t2 .col-sm-4,

#custom-html-t2 .col-sm-5,

#custom-html-t2 .col-sm-6,

#custom-html-t2 .col-sm-7,

#custom-html-t2 .col-sm-8,

#custom-html-t2 .col-sm-9,

#custom-html-t2 .col-xs-1,

#custom-html-t2 .col-xs-10,

#custom-html-t2 .col-xs-11,

#custom-html-t2 .col-xs-12,

#custom-html-t2 .col-xs-2,

#custom-html-t2 .col-xs-3,

#custom-html-t2 .col-xs-4,

#custom-html-t2 .col-xs-5,

#custom-html-t2 .col-xs-6,

#custom-html-t2 .col-xs-7,

#custom-html-t2 .col-xs-8,

#custom-html-t2 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t2 .col-xs-1,

#custom-html-t2 .col-xs-10,

#custom-html-t2 .col-xs-11,

#custom-html-t2 .col-xs-12,

#custom-html-t2 .col-xs-2,

#custom-html-t2 .col-xs-3,

#custom-html-t2 .col-xs-4,

#custom-html-t2 .col-xs-5,

#custom-html-t2 .col-xs-6,

#custom-html-t2 .col-xs-7,

#custom-html-t2 .col-xs-8,

#custom-html-t2 .col-xs-9 {

  float: left;

}

#custom-html-t2 .col-xs-12 {

  width: 100%;

}

#custom-html-t2 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t2 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t2 .col-xs-9 {

  width: 75%;

}

#custom-html-t2 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t2 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t2 .col-xs-6 {

  width: 50%;

}

#custom-html-t2 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t2 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-t2 .col-xs-3 {

  width: 25%;

}

#custom-html-t2 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t2 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t2 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t2 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t2 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t2 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t2 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t2 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t2 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t2 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t2 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t2 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t2 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t2 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t2 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t2 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t2 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t2 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t2 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t2 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t2 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t2 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t2 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t2 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t2 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t2 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t2 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t2 .col-xs-push-0 {

  left: auto;

}

#custom-html-t2 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t2 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t2 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t2 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t2 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t2 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t2 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t2 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t2 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t2 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t2 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t2 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t2 .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-t2 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t2 th {

  text-align: left;

}

#custom-html-t2 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t2 .table > tbody > tr > td,

#custom-html-t2 .table > tbody > tr > th,

#custom-html-t2 .table > tfoot > tr > td,

#custom-html-t2 .table > tfoot > tr > th,

#custom-html-t2 .table > thead > tr > td,

#custom-html-t2 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t2 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t2 .table > caption + thead > tr:first-child > td,

#custom-html-t2 .table > caption + thead > tr:first-child > th,

#custom-html-t2 .table > colgroup + thead > tr:first-child > td,

#custom-html-t2 .table > colgroup + thead > tr:first-child > th,

#custom-html-t2 .table > thead:first-child > tr:first-child > td,

#custom-html-t2 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t2 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t2 .table .table {

  background-color: #ffffff;

}

#custom-html-t2 .table-condensed > tbody > tr > td,

#custom-html-t2 .table-condensed > tbody > tr > th,

#custom-html-t2 .table-condensed > tfoot > tr > td,

#custom-html-t2 .table-condensed > tfoot > tr > th,

#custom-html-t2 .table-condensed > thead > tr > td,

#custom-html-t2 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t2 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t2 .table-bordered > tbody > tr > td,

#custom-html-t2 .table-bordered > tbody > tr > th,

#custom-html-t2 .table-bordered > tfoot > tr > td,

#custom-html-t2 .table-bordered > tfoot > tr > th,

#custom-html-t2 .table-bordered > thead > tr > td,

#custom-html-t2 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t2 .table-bordered > thead > tr > td,

#custom-html-t2 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t2 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t2 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t2 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t2 table td[class*=col-],

#custom-html-t2 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t2 .table > tbody > tr.active > td,

#custom-html-t2 .table > tbody > tr.active > th,

#custom-html-t2 .table > tbody > tr > td.active,

#custom-html-t2 .table > tbody > tr > th.active,

#custom-html-t2 .table > tfoot > tr.active > td,

#custom-html-t2 .table > tfoot > tr.active > th,

#custom-html-t2 .table > tfoot > tr > td.active,

#custom-html-t2 .table > tfoot > tr > th.active,

#custom-html-t2 .table > thead > tr.active > td,

#custom-html-t2 .table > thead > tr.active > th,

#custom-html-t2 .table > thead > tr > td.active,

#custom-html-t2 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t2 .table-hover > tbody > tr.active:hover > td,

#custom-html-t2 .table-hover > tbody > tr.active:hover > th,

#custom-html-t2 .table-hover > tbody > tr:hover > .active,

#custom-html-t2 .table-hover > tbody > tr > td.active:hover,

#custom-html-t2 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t2 .table > tbody > tr.success > td,

#custom-html-t2 .table > tbody > tr.success > th,

#custom-html-t2 .table > tbody > tr > td.success,

#custom-html-t2 .table > tbody > tr > th.success,

#custom-html-t2 .table > tfoot > tr.success > td,

#custom-html-t2 .table > tfoot > tr.success > th,

#custom-html-t2 .table > tfoot > tr > td.success,

#custom-html-t2 .table > tfoot > tr > th.success,

#custom-html-t2 .table > thead > tr.success > td,

#custom-html-t2 .table > thead > tr.success > th,

#custom-html-t2 .table > thead > tr > td.success,

#custom-html-t2 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t2 .table-hover > tbody > tr.success:hover > td,

#custom-html-t2 .table-hover > tbody > tr.success:hover > th,

#custom-html-t2 .table-hover > tbody > tr:hover > .success,

#custom-html-t2 .table-hover > tbody > tr > td.success:hover,

#custom-html-t2 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t2 .table > tbody > tr.info > td,

#custom-html-t2 .table > tbody > tr.info > th,

#custom-html-t2 .table > tbody > tr > td.info,

#custom-html-t2 .table > tbody > tr > th.info,

#custom-html-t2 .table > tfoot > tr.info > td,

#custom-html-t2 .table > tfoot > tr.info > th,

#custom-html-t2 .table > tfoot > tr > td.info,

#custom-html-t2 .table > tfoot > tr > th.info,

#custom-html-t2 .table > thead > tr.info > td,

#custom-html-t2 .table > thead > tr.info > th,

#custom-html-t2 .table > thead > tr > td.info,

#custom-html-t2 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t2 .table-hover > tbody > tr.info:hover > td,

#custom-html-t2 .table-hover > tbody > tr.info:hover > th,

#custom-html-t2 .table-hover > tbody > tr:hover > .info,

#custom-html-t2 .table-hover > tbody > tr > td.info:hover,

#custom-html-t2 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t2 .table > tbody > tr.warning > td,

#custom-html-t2 .table > tbody > tr.warning > th,

#custom-html-t2 .table > tbody > tr > td.warning,

#custom-html-t2 .table > tbody > tr > th.warning,

#custom-html-t2 .table > tfoot > tr.warning > td,

#custom-html-t2 .table > tfoot > tr.warning > th,

#custom-html-t2 .table > tfoot > tr > td.warning,

#custom-html-t2 .table > tfoot > tr > th.warning,

#custom-html-t2 .table > thead > tr.warning > td,

#custom-html-t2 .table > thead > tr.warning > th,

#custom-html-t2 .table > thead > tr > td.warning,

#custom-html-t2 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t2 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t2 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t2 .table-hover > tbody > tr:hover > .warning,

#custom-html-t2 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t2 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t2 .table > tbody > tr.danger > td,

#custom-html-t2 .table > tbody > tr.danger > th,

#custom-html-t2 .table > tbody > tr > td.danger,

#custom-html-t2 .table > tbody > tr > th.danger,

#custom-html-t2 .table > tfoot > tr.danger > td,

#custom-html-t2 .table > tfoot > tr.danger > th,

#custom-html-t2 .table > tfoot > tr > td.danger,

#custom-html-t2 .table > tfoot > tr > th.danger,

#custom-html-t2 .table > thead > tr.danger > td,

#custom-html-t2 .table > thead > tr.danger > th,

#custom-html-t2 .table > thead > tr > td.danger,

#custom-html-t2 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t2 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t2 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t2 .table-hover > tbody > tr:hover > .danger,

#custom-html-t2 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t2 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t2 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t2 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t2 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t2 .table-responsive > .table > tbody > tr > td,

  #custom-html-t2 .table-responsive > .table > tbody > tr > th,

  #custom-html-t2 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t2 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t2 .table-responsive > .table > thead > tr > td,

  #custom-html-t2 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t2 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t2 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t2 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t2 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t2 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t2 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t2 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t2 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t2 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t2 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-t2 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t2 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t2 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t2 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t2 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t2 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t2 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-t2 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t2 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t2 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t2 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-t2 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t2 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t2 input[type=file] {

  display: block;

}

#custom-html-t2 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-t2 select[multiple],

#custom-html-t2 select[size] {

  height: auto;

}

#custom-html-t2 input[type=checkbox]:focus,

#custom-html-t2 input[type=file]:focus,

#custom-html-t2 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t2 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t2 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t2 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t2 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t2 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t2 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t2 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t2 .form-control[disabled],

#custom-html-t2 .form-control[readonly],

#custom-html-t2 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t2 .form-control[disabled],

#custom-html-t2 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t2 textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t2 input[type=date].form-control,

  #custom-html-t2 input[type=datetime-local].form-control,

  #custom-html-t2 input[type=month].form-control,

  #custom-html-t2 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t2 .input-group-sm input[type=date],

  #custom-html-t2 .input-group-sm input[type=datetime-local],

  #custom-html-t2 .input-group-sm input[type=month],

  #custom-html-t2 .input-group-sm input[type=time],

  #custom-html-t2 input[type=date].input-sm,

  #custom-html-t2 input[type=datetime-local].input-sm,

  #custom-html-t2 input[type=month].input-sm,

  #custom-html-t2 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t2 .input-group-lg input[type=date],

  #custom-html-t2 .input-group-lg input[type=datetime-local],

  #custom-html-t2 .input-group-lg input[type=month],

  #custom-html-t2 .input-group-lg input[type=time],

  #custom-html-t2 input[type=date].input-lg,

  #custom-html-t2 input[type=datetime-local].input-lg,

  #custom-html-t2 input[type=month].input-lg,

  #custom-html-t2 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t2 .form-group {

  margin-bottom: 15px;

}

#custom-html-t2 .checkbox,

#custom-html-t2 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t2 .checkbox label,

#custom-html-t2 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t2 .checkbox input[type=checkbox],

#custom-html-t2 .checkbox-inline input[type=checkbox],

#custom-html-t2 .radio input[type=radio],

#custom-html-t2 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t2 .checkbox + .checkbox,

#custom-html-t2 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t2 .checkbox-inline,

#custom-html-t2 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t2 .checkbox-inline + .checkbox-inline,

#custom-html-t2 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t2 fieldset[disabled] input[type=checkbox],

#custom-html-t2 fieldset[disabled] input[type=radio],

#custom-html-t2 input[type=checkbox].disabled,

#custom-html-t2 input[type=checkbox][disabled],

#custom-html-t2 input[type=radio].disabled,

#custom-html-t2 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t2 .checkbox-inline.disabled,

#custom-html-t2 .radio-inline.disabled,

#custom-html-t2 fieldset[disabled] .checkbox-inline,

#custom-html-t2 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t2 .checkbox.disabled label,

#custom-html-t2 .radio.disabled label,

#custom-html-t2 fieldset[disabled] .checkbox label,

#custom-html-t2 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t2 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t2 .form-control-static.input-lg,

#custom-html-t2 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t2 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t2 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t2 select[multiple].input-sm,

#custom-html-t2 textarea.input-sm {

  height: auto;

}

#custom-html-t2 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t2 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t2 .form-group-sm select[multiple].form-control,

#custom-html-t2 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t2 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t2 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t2 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t2 select[multiple].input-lg,

#custom-html-t2 textarea.input-lg {

  height: auto;

}

#custom-html-t2 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t2 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-t2 .form-group-lg select[multiple].form-control,

#custom-html-t2 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t2 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t2 .has-feedback {

  position: relative;

}

#custom-html-t2 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t2 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t2 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t2 .input-group-lg + .form-control-feedback,

#custom-html-t2 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t2 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t2 .input-group-sm + .form-control-feedback,

#custom-html-t2 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t2 .has-success .checkbox,

#custom-html-t2 .has-success .checkbox-inline,

#custom-html-t2 .has-success .control-label,

#custom-html-t2 .has-success .help-block,

#custom-html-t2 .has-success .radio,

#custom-html-t2 .has-success .radio-inline,

#custom-html-t2 .has-success.checkbox label,

#custom-html-t2 .has-success.checkbox-inline label,

#custom-html-t2 .has-success.radio label,

#custom-html-t2 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t2 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t2 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t2 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t2 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t2 .has-warning .checkbox,

#custom-html-t2 .has-warning .checkbox-inline,

#custom-html-t2 .has-warning .control-label,

#custom-html-t2 .has-warning .help-block,

#custom-html-t2 .has-warning .radio,

#custom-html-t2 .has-warning .radio-inline,

#custom-html-t2 .has-warning.checkbox label,

#custom-html-t2 .has-warning.checkbox-inline label,

#custom-html-t2 .has-warning.radio label,

#custom-html-t2 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t2 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t2 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t2 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t2 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t2 .has-error .checkbox,

#custom-html-t2 .has-error .checkbox-inline,

#custom-html-t2 .has-error .control-label,

#custom-html-t2 .has-error .help-block,

#custom-html-t2 .has-error .radio,

#custom-html-t2 .has-error .radio-inline,

#custom-html-t2 .has-error.checkbox label,

#custom-html-t2 .has-error.checkbox-inline label,

#custom-html-t2 .has-error.radio label,

#custom-html-t2 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t2 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t2 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t2 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t2 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t2 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t2 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t2 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-t2 .form-horizontal .checkbox,

#custom-html-t2 .form-horizontal .checkbox-inline,

#custom-html-t2 .form-horizontal .radio,

#custom-html-t2 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t2 .form-horizontal .checkbox,

#custom-html-t2 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t2 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t2 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-t2 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-t2 .btn.active.focus,

#custom-html-t2 .btn.active:focus,

#custom-html-t2 .btn.focus,

#custom-html-t2 .btn:active.focus,

#custom-html-t2 .btn:active:focus,

#custom-html-t2 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t2 .btn.focus,

#custom-html-t2 .btn:focus,

#custom-html-t2 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t2 .btn.active,

#custom-html-t2 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t2 .btn.disabled,

#custom-html-t2 .btn[disabled],

#custom-html-t2 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t2 a.btn.disabled,

#custom-html-t2 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t2 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t2 .btn-default.focus,

#custom-html-t2 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t2 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t2 .btn-default.active,

#custom-html-t2 .btn-default:active,

#custom-html-t2 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-t2 .btn-default.active.focus,

#custom-html-t2 .btn-default.active:focus,

#custom-html-t2 .btn-default.active:hover,

#custom-html-t2 .btn-default:active.focus,

#custom-html-t2 .btn-default:active:focus,

#custom-html-t2 .btn-default:active:hover,

#custom-html-t2 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t2 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t2 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t2 .btn-default.disabled.focus,

#custom-html-t2 .btn-default.disabled:focus,

#custom-html-t2 .btn-default.disabled:hover,

#custom-html-t2 .btn-default[disabled].focus,

#custom-html-t2 .btn-default[disabled]:focus,

#custom-html-t2 .btn-default[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-default.focus,

#custom-html-t2 fieldset[disabled] .btn-default:focus,

#custom-html-t2 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t2 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t2 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t2 .btn-primary.focus,

#custom-html-t2 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t2 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t2 .btn-primary.active,

#custom-html-t2 .btn-primary:active,

#custom-html-t2 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-t2 .btn-primary.active.focus,

#custom-html-t2 .btn-primary.active:focus,

#custom-html-t2 .btn-primary.active:hover,

#custom-html-t2 .btn-primary:active.focus,

#custom-html-t2 .btn-primary:active:focus,

#custom-html-t2 .btn-primary:active:hover,

#custom-html-t2 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t2 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t2 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t2 .btn-primary.disabled.focus,

#custom-html-t2 .btn-primary.disabled:focus,

#custom-html-t2 .btn-primary.disabled:hover,

#custom-html-t2 .btn-primary[disabled].focus,

#custom-html-t2 .btn-primary[disabled]:focus,

#custom-html-t2 .btn-primary[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-primary.focus,

#custom-html-t2 fieldset[disabled] .btn-primary:focus,

#custom-html-t2 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t2 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t2 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t2 .btn-success.focus,

#custom-html-t2 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t2 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t2 .btn-success.active,

#custom-html-t2 .btn-success:active,

#custom-html-t2 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-t2 .btn-success.active.focus,

#custom-html-t2 .btn-success.active:focus,

#custom-html-t2 .btn-success.active:hover,

#custom-html-t2 .btn-success:active.focus,

#custom-html-t2 .btn-success:active:focus,

#custom-html-t2 .btn-success:active:hover,

#custom-html-t2 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t2 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t2 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t2 .btn-success.disabled.focus,

#custom-html-t2 .btn-success.disabled:focus,

#custom-html-t2 .btn-success.disabled:hover,

#custom-html-t2 .btn-success[disabled].focus,

#custom-html-t2 .btn-success[disabled]:focus,

#custom-html-t2 .btn-success[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-success.focus,

#custom-html-t2 fieldset[disabled] .btn-success:focus,

#custom-html-t2 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t2 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t2 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t2 .btn-info.focus,

#custom-html-t2 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t2 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t2 .btn-info.active,

#custom-html-t2 .btn-info:active,

#custom-html-t2 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-t2 .btn-info.active.focus,

#custom-html-t2 .btn-info.active:focus,

#custom-html-t2 .btn-info.active:hover,

#custom-html-t2 .btn-info:active.focus,

#custom-html-t2 .btn-info:active:focus,

#custom-html-t2 .btn-info:active:hover,

#custom-html-t2 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t2 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t2 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t2 .btn-info.disabled.focus,

#custom-html-t2 .btn-info.disabled:focus,

#custom-html-t2 .btn-info.disabled:hover,

#custom-html-t2 .btn-info[disabled].focus,

#custom-html-t2 .btn-info[disabled]:focus,

#custom-html-t2 .btn-info[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-info.focus,

#custom-html-t2 fieldset[disabled] .btn-info:focus,

#custom-html-t2 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t2 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t2 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t2 .btn-warning.focus,

#custom-html-t2 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t2 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t2 .btn-warning.active,

#custom-html-t2 .btn-warning:active,

#custom-html-t2 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-t2 .btn-warning.active.focus,

#custom-html-t2 .btn-warning.active:focus,

#custom-html-t2 .btn-warning.active:hover,

#custom-html-t2 .btn-warning:active.focus,

#custom-html-t2 .btn-warning:active:focus,

#custom-html-t2 .btn-warning:active:hover,

#custom-html-t2 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t2 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t2 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t2 .btn-warning.disabled.focus,

#custom-html-t2 .btn-warning.disabled:focus,

#custom-html-t2 .btn-warning.disabled:hover,

#custom-html-t2 .btn-warning[disabled].focus,

#custom-html-t2 .btn-warning[disabled]:focus,

#custom-html-t2 .btn-warning[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-warning.focus,

#custom-html-t2 fieldset[disabled] .btn-warning:focus,

#custom-html-t2 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t2 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t2 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t2 .btn-danger.focus,

#custom-html-t2 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t2 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t2 .btn-danger.active,

#custom-html-t2 .btn-danger:active,

#custom-html-t2 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-t2 .btn-danger.active.focus,

#custom-html-t2 .btn-danger.active:focus,

#custom-html-t2 .btn-danger.active:hover,

#custom-html-t2 .btn-danger:active.focus,

#custom-html-t2 .btn-danger:active:focus,

#custom-html-t2 .btn-danger:active:hover,

#custom-html-t2 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t2 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t2 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t2 .btn-danger.disabled.focus,

#custom-html-t2 .btn-danger.disabled:focus,

#custom-html-t2 .btn-danger.disabled:hover,

#custom-html-t2 .btn-danger[disabled].focus,

#custom-html-t2 .btn-danger[disabled]:focus,

#custom-html-t2 .btn-danger[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-danger.focus,

#custom-html-t2 fieldset[disabled] .btn-danger:focus,

#custom-html-t2 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t2 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t2 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t2 .btn-link,

#custom-html-t2 .btn-link.active,

#custom-html-t2 .btn-link:active,

#custom-html-t2 .btn-link[disabled],

#custom-html-t2 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t2 .btn-link,

#custom-html-t2 .btn-link:active,

#custom-html-t2 .btn-link:focus,

#custom-html-t2 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t2 .btn-link:focus,

#custom-html-t2 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t2 .btn-link[disabled]:focus,

#custom-html-t2 .btn-link[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-link:focus,

#custom-html-t2 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t2 .btn-group-lg > .btn,

#custom-html-t2 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t2 .btn-group-sm > .btn,

#custom-html-t2 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t2 .btn-group-xs > .btn,

#custom-html-t2 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t2 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t2 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t2 input[type=button].btn-block,

#custom-html-t2 input[type=reset].btn-block,

#custom-html-t2 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t2 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t2 .fade.in {

  opacity: 1;

}

#custom-html-t2 .collapse {

  display: none;

}

#custom-html-t2 .collapse.in {

  display: block;

}

#custom-html-t2 tr.collapse.in {

  display: table-row;

}

#custom-html-t2 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t2 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t2 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t2 .dropdown,

#custom-html-t2 .dropup {

  position: relative;

}

#custom-html-t2 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t2 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t2 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t2 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t2 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-t2 .dropdown-menu > li > a:focus,

#custom-html-t2 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t2 .dropdown-menu > .active > a,

#custom-html-t2 .dropdown-menu > .active > a:focus,

#custom-html-t2 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-t2 .dropdown-menu > .disabled > a,

#custom-html-t2 .dropdown-menu > .disabled > a:focus,

#custom-html-t2 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t2 .dropdown-menu > .disabled > a:focus,

#custom-html-t2 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t2 .open > .dropdown-menu {

  display: block;

}

#custom-html-t2 .open > a {

  outline: 0;

}

#custom-html-t2 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t2 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t2 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t2 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t2 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t2 .dropup .caret,

#custom-html-t2 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t2 .dropup .dropdown-menu,

#custom-html-t2 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-t2 .btn-group,

#custom-html-t2 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t2 .btn-group-vertical > .btn,

#custom-html-t2 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t2 .btn-group-vertical > .btn.active,

#custom-html-t2 .btn-group-vertical > .btn:active,

#custom-html-t2 .btn-group-vertical > .btn:focus,

#custom-html-t2 .btn-group-vertical > .btn:hover,

#custom-html-t2 .btn-group > .btn.active,

#custom-html-t2 .btn-group > .btn:active,

#custom-html-t2 .btn-group > .btn:focus,

#custom-html-t2 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t2 .btn-group .btn + .btn,

#custom-html-t2 .btn-group .btn + .btn-group,

#custom-html-t2 .btn-group .btn-group + .btn,

#custom-html-t2 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t2 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t2 .btn-toolbar .btn,

#custom-html-t2 .btn-toolbar .btn-group,

#custom-html-t2 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t2 .btn-toolbar > .btn,

#custom-html-t2 .btn-toolbar > .btn-group,

#custom-html-t2 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t2 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t2 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t2 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t2 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t2 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t2 .btn-group > .btn-group {

  float: left;

}

#custom-html-t2 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t2 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t2 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t2 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t2 .btn-group .dropdown-toggle:active,

#custom-html-t2 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t2 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t2 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t2 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t2 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t2 .btn .caret {

  margin-left: 0;

}

#custom-html-t2 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t2 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t2 .btn-group-vertical > .btn,

#custom-html-t2 .btn-group-vertical > .btn-group,

#custom-html-t2 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t2 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t2 .btn-group-vertical > .btn + .btn,

#custom-html-t2 .btn-group-vertical > .btn + .btn-group,

#custom-html-t2 .btn-group-vertical > .btn-group + .btn,

#custom-html-t2 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t2 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t2 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t2 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t2 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t2 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t2 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t2 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t2 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t2 .btn-group-justified > .btn,

#custom-html-t2 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t2 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t2 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t2 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t2 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t2 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t2 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t2 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t2 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t2 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t2 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t2 .input-group-lg > .form-control,

#custom-html-t2 .input-group-lg > .input-group-addon,

#custom-html-t2 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t2 select.input-group-lg > .form-control,

#custom-html-t2 select.input-group-lg > .input-group-addon,

#custom-html-t2 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t2 select[multiple].input-group-lg > .form-control,

#custom-html-t2 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t2 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t2 textarea.input-group-lg > .form-control,

#custom-html-t2 textarea.input-group-lg > .input-group-addon,

#custom-html-t2 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t2 .input-group-sm > .form-control,

#custom-html-t2 .input-group-sm > .input-group-addon,

#custom-html-t2 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t2 select.input-group-sm > .form-control,

#custom-html-t2 select.input-group-sm > .input-group-addon,

#custom-html-t2 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t2 select[multiple].input-group-sm > .form-control,

#custom-html-t2 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t2 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t2 textarea.input-group-sm > .form-control,

#custom-html-t2 textarea.input-group-sm > .input-group-addon,

#custom-html-t2 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t2 .input-group .form-control,

#custom-html-t2 .input-group-addon,

#custom-html-t2 .input-group-btn {

  display: table-cell;

}

#custom-html-t2 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t2 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t2 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t2 .input-group-addon,

#custom-html-t2 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t2 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t2 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t2 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t2 .input-group-addon input[type=checkbox],

#custom-html-t2 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t2 .input-group .form-control:first-child,

#custom-html-t2 .input-group-addon:first-child,

#custom-html-t2 .input-group-btn:first-child > .btn,

#custom-html-t2 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t2 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t2 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t2 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t2 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t2 .input-group .form-control:last-child,

#custom-html-t2 .input-group-addon:last-child,

#custom-html-t2 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t2 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t2 .input-group-btn:last-child > .btn,

#custom-html-t2 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t2 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t2 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t2 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t2 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t2 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t2 .input-group-btn > .btn:active,

#custom-html-t2 .input-group-btn > .btn:focus,

#custom-html-t2 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t2 .input-group-btn:first-child > .btn,

#custom-html-t2 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t2 .input-group-btn:last-child > .btn,

#custom-html-t2 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t2 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t2 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t2 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t2 .nav > li > a:focus,

#custom-html-t2 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t2 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t2 .nav > li.disabled > a:focus,

#custom-html-t2 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t2 .nav .open > a,

#custom-html-t2 .nav .open > a:focus,

#custom-html-t2 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t2 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t2 .nav > li > a > img {

  max-width: none;

}

#custom-html-t2 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t2 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t2 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t2 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t2 .nav-tabs > li.active > a,

#custom-html-t2 .nav-tabs > li.active > a:focus,

#custom-html-t2 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t2 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t2 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t2 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t2 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t2 .nav-tabs.nav-justified > .active > a,

#custom-html-t2 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t2 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t2 .nav-pills > li {

  float: left;

}

#custom-html-t2 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t2 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t2 .nav-pills > li.active > a,

#custom-html-t2 .nav-pills > li.active > a:focus,

#custom-html-t2 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t2 .nav-stacked > li {

  float: none;

}

#custom-html-t2 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t2 .nav-justified {

  width: 100%;

}

#custom-html-t2 .nav-justified > li {

  float: none;

}

#custom-html-t2 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t2 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-t2 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t2 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t2 .nav-tabs-justified > .active > a,

#custom-html-t2 .nav-tabs-justified > .active > a:focus,

#custom-html-t2 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-t2 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t2 .tab-content > .active {

  display: block;

}

#custom-html-t2 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t2 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-t2 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t2 .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-t2 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t2 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t2 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t2 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t2 .container-fluid > .navbar-collapse,

#custom-html-t2 .container-fluid > .navbar-header,

#custom-html-t2 .container > .navbar-collapse,

#custom-html-t2 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t2 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-t2 .navbar-fixed-bottom,

#custom-html-t2 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-t2 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t2 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t2 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t2 .navbar-brand:focus,

#custom-html-t2 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t2 .navbar-brand > img {

  display: block;

}

#custom-html-t2 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t2 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t2 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t2 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-t2 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t2 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t2 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t2 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t2 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t2 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t2 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t2 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-t2 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t2 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-t2 .visible-xs {

    display: block !important;

  }

  #custom-html-t2 table.visible-xs {

    display: table !important;

  }

  #custom-html-t2 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t2 td.visible-xs,

  #custom-html-t2 th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-t2 .visible-xs-block {

    display: block !important;

  }

  #custom-html-t2 .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-t2 .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-t2 .hidden-xs {

    display: none !important;

  }

  #custom-html-t2 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t2 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-t2 section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-t2 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t2 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t2 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t2 .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-t2 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t2 .tiles .tile:nth-child(1),

  #custom-html-t2 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-t2 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t2 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t2 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-t2 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t2 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t2 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-t2 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-t2 .promo-banner form {

    text-align: center;

  }

}

#custom-html-t2 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t2 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t2 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t2 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t2 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t2 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t2 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t2 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t2 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t2 .navbar-default .navbar-brand:focus,

#custom-html-t2 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t2 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t2 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t2 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t2 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t2 .navbar-default .navbar-nav > .active > a,

#custom-html-t2 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t2 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t2 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t2 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t2 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t2 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t2 .navbar-default .navbar-toggle:focus,

#custom-html-t2 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t2 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t2 .navbar-default .navbar-collapse,

#custom-html-t2 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t2 .navbar-default .navbar-nav > .open > a,

#custom-html-t2 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t2 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t2 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t2 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t2 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t2 .navbar-default .btn-link:focus,

#custom-html-t2 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-t2 .navbar-default .btn-link[disabled]:focus,

#custom-html-t2 .navbar-default .btn-link[disabled]:hover,

#custom-html-t2 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t2 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t2 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t2 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t2 .navbar-inverse .navbar-brand:focus,

#custom-html-t2 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t2 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t2 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t2 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t2 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t2 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t2 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t2 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t2 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t2 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t2 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t2 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t2 .navbar-inverse .navbar-toggle:focus,

#custom-html-t2 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t2 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t2 .navbar-inverse .navbar-collapse,

#custom-html-t2 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t2 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t2 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t2 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t2 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t2 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t2 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t2 .navbar-inverse .btn-link:focus,

#custom-html-t2 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t2 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t2 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t2 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t2 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t2 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t2 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t2 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t2 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t2 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-t2 .pagination > li {

  display: inline;

}

#custom-html-t2 .pagination > li > a,

#custom-html-t2 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t2 .pagination > li:first-child > a,

#custom-html-t2 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t2 .pagination > li:last-child > a,

#custom-html-t2 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t2 .pagination > li > a:focus,

#custom-html-t2 .pagination > li > a:hover,

#custom-html-t2 .pagination > li > span:focus,

#custom-html-t2 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t2 .pagination > .active > a,

#custom-html-t2 .pagination > .active > a:focus,

#custom-html-t2 .pagination > .active > a:hover,

#custom-html-t2 .pagination > .active > span,

#custom-html-t2 .pagination > .active > span:focus,

#custom-html-t2 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t2 .pagination > .disabled > a,

#custom-html-t2 .pagination > .disabled > a:focus,

#custom-html-t2 .pagination > .disabled > a:hover,

#custom-html-t2 .pagination > .disabled > span,

#custom-html-t2 .pagination > .disabled > span:focus,

#custom-html-t2 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t2 .pagination-lg > li > a,

#custom-html-t2 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t2 .pagination-lg > li:first-child > a,

#custom-html-t2 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t2 .pagination-lg > li:last-child > a,

#custom-html-t2 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t2 .pagination-sm > li > a,

#custom-html-t2 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t2 .pagination-sm > li:first-child > a,

#custom-html-t2 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t2 .pagination-sm > li:last-child > a,

#custom-html-t2 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t2 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t2 .pager li {

  display: inline;

}

#custom-html-t2 .pager li > a,

#custom-html-t2 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t2 .pager li > a:focus,

#custom-html-t2 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t2 .pager .next > a,

#custom-html-t2 .pager .next > span {

  float: right;

}

#custom-html-t2 .pager .previous > a,

#custom-html-t2 .pager .previous > span {

  float: left;

}

#custom-html-t2 .pager .disabled > a,

#custom-html-t2 .pager .disabled > a:focus,

#custom-html-t2 .pager .disabled > a:hover,

#custom-html-t2 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t2 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-t2 a.label:focus,

#custom-html-t2 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t2 .label:empty {

  display: none;

}

#custom-html-t2 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t2 .label-default {

  background-color: #777777;

}

#custom-html-t2 .label-default[href]:focus,

#custom-html-t2 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t2 .label-primary {

  background-color: #337ab7;

}

#custom-html-t2 .label-primary[href]:focus,

#custom-html-t2 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t2 .label-success {

  background-color: #5cb85c;

}

#custom-html-t2 .label-success[href]:focus,

#custom-html-t2 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t2 .label-info {

  background-color: #5bc0de;

}

#custom-html-t2 .label-info[href]:focus,

#custom-html-t2 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t2 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t2 .label-warning[href]:focus,

#custom-html-t2 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t2 .label-danger {

  background-color: #d9534f;

}

#custom-html-t2 .label-danger[href]:focus,

#custom-html-t2 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t2 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t2 .badge:empty {

  display: none;

}

#custom-html-t2 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t2 .btn-group-xs > .btn .badge,

#custom-html-t2 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t2 a.badge:focus,

#custom-html-t2 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t2 .list-group-item.active > .badge,

#custom-html-t2 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t2 .list-group-item > .badge {

  float: right;

}

#custom-html-t2 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t2 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t2 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t2 .jumbotron .h1,

#custom-html-t2 .jumbotron h1 {

  color: inherit;

}

#custom-html-t2 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t2 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t2 .container .jumbotron,

#custom-html-t2 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t2 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t2 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t2 .container .jumbotron,

  #custom-html-t2 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t2 .jumbotron .h1,

  #custom-html-t2 .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-t2 .carousel-control .glyphicon-chevron-left,

  #custom-html-t2 .carousel-control .glyphicon-chevron-right,

  #custom-html-t2 .carousel-control .icon-next,

  #custom-html-t2 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t2 .carousel-control .glyphicon-chevron-left,

  #custom-html-t2 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t2 .carousel-control .glyphicon-chevron-right,

  #custom-html-t2 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t2 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t2 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t2 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t2 .thumbnail a > img,

#custom-html-t2 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t2 a.thumbnail.active,

#custom-html-t2 a.thumbnail:focus,

#custom-html-t2 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t2 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t2 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t2 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t2 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t2 .alert > p,

#custom-html-t2 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t2 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t2 .alert-dismissable,

#custom-html-t2 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t2 .alert-dismissable .close,

#custom-html-t2 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t2 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t2 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-t2 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t2 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t2 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t2 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t2 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t2 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t2 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t2 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t2 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t2 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t2 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t2 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t2 .progress-bar-striped,

#custom-html-t2 .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t2 .progress-bar.active,

#custom-html-t2 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t2 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t2 .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t2 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t2 .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t2 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t2 .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t2 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t2 .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t2 .media {

  margin-top: 15px;

}

#custom-html-t2 .media:first-child {

  margin-top: 0;

}

#custom-html-t2 .media,

#custom-html-t2 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t2 .media-body {

  width: 10000px;

}

#custom-html-t2 .media-object {

  display: block;

}

#custom-html-t2 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t2 .media-right,

#custom-html-t2 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t2 .media-left,

#custom-html-t2 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t2 .media-body,

#custom-html-t2 .media-left,

#custom-html-t2 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t2 .media-middle {

  vertical-align: middle;

}

#custom-html-t2 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t2 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t2 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t2 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-t2 .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-t2 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t2 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t2 a.list-group-item,

#custom-html-t2 button.list-group-item {

  color: #555555;

}

#custom-html-t2 a.list-group-item .list-group-item-heading,

#custom-html-t2 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t2 a.list-group-item:focus,

#custom-html-t2 a.list-group-item:hover,

#custom-html-t2 button.list-group-item:focus,

#custom-html-t2 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t2 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t2 .list-group-item.disabled,

#custom-html-t2 .list-group-item.disabled:focus,

#custom-html-t2 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t2 .list-group-item.disabled .list-group-item-heading,

#custom-html-t2 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t2 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t2 .list-group-item.disabled .list-group-item-text,

#custom-html-t2 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t2 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t2 .list-group-item.active,

#custom-html-t2 .list-group-item.active:focus,

#custom-html-t2 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t2 .list-group-item.active .list-group-item-heading,

#custom-html-t2 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t2 .list-group-item.active .list-group-item-heading > small,

#custom-html-t2 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t2 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t2 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t2 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t2 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t2 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t2 .list-group-item.active .list-group-item-text,

#custom-html-t2 .list-group-item.active:focus .list-group-item-text,

#custom-html-t2 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t2 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t2 a.list-group-item-success,

#custom-html-t2 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t2 a.list-group-item-success .list-group-item-heading,

#custom-html-t2 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t2 a.list-group-item-success:focus,

#custom-html-t2 a.list-group-item-success:hover,

#custom-html-t2 button.list-group-item-success:focus,

#custom-html-t2 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t2 a.list-group-item-success.active,

#custom-html-t2 a.list-group-item-success.active:focus,

#custom-html-t2 a.list-group-item-success.active:hover,

#custom-html-t2 button.list-group-item-success.active,

#custom-html-t2 button.list-group-item-success.active:focus,

#custom-html-t2 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t2 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t2 a.list-group-item-info,

#custom-html-t2 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t2 a.list-group-item-info .list-group-item-heading,

#custom-html-t2 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t2 a.list-group-item-info:focus,

#custom-html-t2 a.list-group-item-info:hover,

#custom-html-t2 button.list-group-item-info:focus,

#custom-html-t2 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t2 a.list-group-item-info.active,

#custom-html-t2 a.list-group-item-info.active:focus,

#custom-html-t2 a.list-group-item-info.active:hover,

#custom-html-t2 button.list-group-item-info.active,

#custom-html-t2 button.list-group-item-info.active:focus,

#custom-html-t2 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t2 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t2 a.list-group-item-warning,

#custom-html-t2 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t2 a.list-group-item-warning .list-group-item-heading,

#custom-html-t2 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t2 a.list-group-item-warning:focus,

#custom-html-t2 a.list-group-item-warning:hover,

#custom-html-t2 button.list-group-item-warning:focus,

#custom-html-t2 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t2 a.list-group-item-warning.active,

#custom-html-t2 a.list-group-item-warning.active:focus,

#custom-html-t2 a.list-group-item-warning.active:hover,

#custom-html-t2 button.list-group-item-warning.active,

#custom-html-t2 button.list-group-item-warning.active:focus,

#custom-html-t2 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t2 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t2 a.list-group-item-danger,

#custom-html-t2 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t2 a.list-group-item-danger .list-group-item-heading,

#custom-html-t2 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t2 a.list-group-item-danger:focus,

#custom-html-t2 a.list-group-item-danger:hover,

#custom-html-t2 button.list-group-item-danger:focus,

#custom-html-t2 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t2 a.list-group-item-danger.active,

#custom-html-t2 a.list-group-item-danger.active:focus,

#custom-html-t2 a.list-group-item-danger.active:hover,

#custom-html-t2 button.list-group-item-danger.active,

#custom-html-t2 button.list-group-item-danger.active:focus,

#custom-html-t2 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t2 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t2 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t2 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-t2 .panel-body {

  padding: 10px 15px;

}

#custom-html-t2 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t2 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t2 .panel-title > .small,

#custom-html-t2 .panel-title > .small > a,

#custom-html-t2 .panel-title > a,

#custom-html-t2 .panel-title > small,

#custom-html-t2 .panel-title > small > a {

  color: inherit;

}

#custom-html-t2 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t2 .panel > .list-group,

#custom-html-t2 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t2 .panel > .list-group .list-group-item,

#custom-html-t2 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t2 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t2 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t2 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t2 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t2 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t2 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t2 .panel > .panel-collapse > .table,

#custom-html-t2 .panel > .table,

#custom-html-t2 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t2 .panel > .panel-collapse > .table caption,

#custom-html-t2 .panel > .table caption,

#custom-html-t2 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t2 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t2 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t2 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t2 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t2 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t2 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t2 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t2 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t2 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t2 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t2 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t2 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t2 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t2 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t2 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t2 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t2 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t2 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t2 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t2 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t2 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t2 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t2 .panel > .panel-body + .table,

#custom-html-t2 .panel > .panel-body + .table-responsive,

#custom-html-t2 .panel > .table + .panel-body,

#custom-html-t2 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t2 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t2 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t2 .panel > .table-bordered,

#custom-html-t2 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t2 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t2 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t2 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t2 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t2 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t2 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t2 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t2 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t2 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t2 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t2 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t2 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t2 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t2 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t2 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t2 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t2 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t2 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t2 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t2 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t2 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t2 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t2 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t2 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t2 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-t2 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t2 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t2 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t2 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t2 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t2 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t2 .panel-default {

  border-color: #dddddd;

}

#custom-html-t2 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t2 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t2 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t2 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t2 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t2 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t2 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t2 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t2 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t2 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t2 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t2 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t2 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t2 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-t2 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t2 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t2 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t2 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t2 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t2 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t2 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t2 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t2 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t2 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t2 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t2 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t2 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t2 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t2 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t2 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t2 .embed-responsive .embed-responsive-item,

#custom-html-t2 .embed-responsive embed,

#custom-html-t2 .embed-responsive iframe,

#custom-html-t2 .embed-responsive object,

#custom-html-t2 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t2 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t2 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t2 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t2 .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t2 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t2 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t2 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t2 .close:focus,

#custom-html-t2 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t2 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t2 .modal-open {

  overflow: hidden;

}

#custom-html-t2 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t2 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t2 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t2 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t2 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t2 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t2 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t2 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t2 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t2 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t2 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t2 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t2 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t2 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t2 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t2 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t2 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t2 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-t2 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t2 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t2 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t2 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t2 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t2 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t2 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t2 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t2 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t2 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t2 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t2 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t2 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t2 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t2 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t2 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t2 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t2 .popover.top {

  margin-top: -10px;

}

#custom-html-t2 .popover.right {

  margin-left: 10px;

}

#custom-html-t2 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t2 .popover.left {

  margin-left: -10px;

}

#custom-html-t2 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t2 .popover-content {

  padding: 9px 14px;

}

#custom-html-t2 .popover > .arrow,

#custom-html-t2 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t2 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t2 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t2 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t2 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t2 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t2 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t2 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t2 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t2 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t2 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t2 .carousel {

  position: relative;

}

#custom-html-t2 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t2 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t2 .carousel-inner > .item > a > img,

#custom-html-t2 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t2 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t2 .carousel-inner > .item.active.right,

  #custom-html-t2 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t2 .carousel-inner > .item.active.left,

  #custom-html-t2 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t2 .carousel-inner > .item.active,

  #custom-html-t2 .carousel-inner > .item.next.left,

  #custom-html-t2 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t2 .carousel-inner > .active,

#custom-html-t2 .carousel-inner > .next,

#custom-html-t2 .carousel-inner > .prev {

  display: block;

}

#custom-html-t2 .carousel-inner > .active {

  left: 0;

}

#custom-html-t2 .carousel-inner > .next,

#custom-html-t2 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t2 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t2 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t2 .carousel-inner > .next.left,

#custom-html-t2 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t2 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t2 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t2 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t2 .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t2 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t2 .carousel-control:focus,

#custom-html-t2 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t2 .carousel-control .glyphicon-chevron-left,

#custom-html-t2 .carousel-control .glyphicon-chevron-right,

#custom-html-t2 .carousel-control .icon-next,

#custom-html-t2 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t2 .carousel-control .glyphicon-chevron-left,

#custom-html-t2 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t2 .carousel-control .glyphicon-chevron-right,

#custom-html-t2 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t2 .carousel-control .icon-next,

#custom-html-t2 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t2 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t2 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t2 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t2 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t2 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t2 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t2 .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-t2 .btn-group-vertical > .btn-group:after,

#custom-html-t2 .btn-group-vertical > .btn-group:before,

#custom-html-t2 .btn-toolbar:after,

#custom-html-t2 .btn-toolbar:before,

#custom-html-t2 .clearfix:after,

#custom-html-t2 .clearfix:before,

#custom-html-t2 .container-fluid:after,

#custom-html-t2 .container-fluid:before,

#custom-html-t2 .container:after,

#custom-html-t2 .container:before,

#custom-html-t2 .dl-horizontal dd:after,

#custom-html-t2 .dl-horizontal dd:before,

#custom-html-t2 .form-horizontal .form-group:after,

#custom-html-t2 .form-horizontal .form-group:before,

#custom-html-t2 .modal-footer:after,

#custom-html-t2 .modal-footer:before,

#custom-html-t2 .modal-header:after,

#custom-html-t2 .modal-header:before,

#custom-html-t2 .nav:after,

#custom-html-t2 .nav:before,

#custom-html-t2 .navbar-collapse:after,

#custom-html-t2 .navbar-collapse:before,

#custom-html-t2 .navbar-header:after,

#custom-html-t2 .navbar-header:before,

#custom-html-t2 .navbar:after,

#custom-html-t2 .navbar:before,

#custom-html-t2 .pager:after,

#custom-html-t2 .pager:before,

#custom-html-t2 .panel-body:after,

#custom-html-t2 .panel-body:before,

#custom-html-t2 .row:after,

#custom-html-t2 .row:before {

  display: table;

  content: " ";

}

#custom-html-t2 .btn-group-vertical > .btn-group:after,

#custom-html-t2 .btn-toolbar:after,

#custom-html-t2 .clearfix:after,

#custom-html-t2 .container-fluid:after,

#custom-html-t2 .container:after,

#custom-html-t2 .dl-horizontal dd:after,

#custom-html-t2 .form-horizontal .form-group:after,

#custom-html-t2 .modal-footer:after,

#custom-html-t2 .modal-header:after,

#custom-html-t2 .nav:after,

#custom-html-t2 .navbar-collapse:after,

#custom-html-t2 .navbar-header:after,

#custom-html-t2 .navbar:after,

#custom-html-t2 .pager:after,

#custom-html-t2 .panel-body:after,

#custom-html-t2 .row:after {

  clear: both;

}

#custom-html-t2 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t2 .pull-right {

  float: right !important;

}

#custom-html-t2 .pull-left {

  float: left !important;

}

#custom-html-t2 .hide {

  display: none !important;

}

#custom-html-t2 .show {

  display: block !important;

}

#custom-html-t2 .invisible {

  visibility: hidden;

}

#custom-html-t2 .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t2 .hidden {

  display: none !important;

}

#custom-html-t2 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t2 .visible-lg,

#custom-html-t2 .visible-md,

#custom-html-t2 .visible-sm,

#custom-html-t2 .visible-xs {

  display: none !important;

}

#custom-html-t2 .visible-lg-block,

#custom-html-t2 .visible-lg-inline,

#custom-html-t2 .visible-lg-inline-block,

#custom-html-t2 .visible-md-block,

#custom-html-t2 .visible-md-inline,

#custom-html-t2 .visible-md-inline-block,

#custom-html-t2 .visible-sm-block,

#custom-html-t2 .visible-sm-inline,

#custom-html-t2 .visible-sm-inline-block,

#custom-html-t2 .visible-xs-block,

#custom-html-t2 .visible-xs-inline,

#custom-html-t2 .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t2 .visible-sm {

    display: block !important;

  }

  #custom-html-t2 table.visible-sm {

    display: table !important;

  }

  #custom-html-t2 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t2 td.visible-sm,

  #custom-html-t2 th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-t2 .visible-sm-block {

    display: block !important;

  }

  #custom-html-t2 .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-t2 .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-t2 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t2 .visible-md {

    display: block !important;

  }

  #custom-html-t2 table.visible-md {

    display: table !important;

  }

  #custom-html-t2 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t2 td.visible-md,

  #custom-html-t2 th.visible-md {

    display: table-cell !important;

  }

  #custom-html-t2 .visible-md-block {

    display: block !important;

  }

  #custom-html-t2 .visible-md-inline {

    display: inline !important;

  }

  #custom-html-t2 .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-t2 .hidden-md {

    display: none !important;

  }

}

#custom-html-t2 .visible-print {

  display: none !important;

}

#custom-html-t2 .visible-print-block {

  display: none !important;

}

#custom-html-t2 .visible-print-inline {

  display: none !important;

}

#custom-html-t2 .visible-print-inline-block {

  display: none !important;

}

#custom-html-t2 .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-t2 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t2 .intl-tel-input .hide {

  display: none;

}

#custom-html-t2 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t2 .intl-tel-input input,

#custom-html-t2 .intl-tel-input input[type=tel],

#custom-html-t2 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t2 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t2 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t2 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t2 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t2 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t2 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t2 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t2 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t2 .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-t2 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t2 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t2 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t2 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t2 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t2 .intl-tel-input .country-list .country-name,

#custom-html-t2 .intl-tel-input .country-list .dial-code,

#custom-html-t2 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t2 .intl-tel-input .country-list .country-name,

#custom-html-t2 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t2 .intl-tel-input.allow-dropdown input,

#custom-html-t2 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t2 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t2 .intl-tel-input.separate-dial-code input,

#custom-html-t2 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t2 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t2 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t2 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t2 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t2 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t2 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t2 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t2 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t2 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t2 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t2 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t2 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t2 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t2 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t2 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t2 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t2 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t2 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-t2 .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t2 .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t2 .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t2 .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t2 .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-t2 .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t2 .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t2 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t2 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t2 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t2 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t2 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t2 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t2 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t2 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t2 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t2 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t2 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t2 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t2 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t2 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t2 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t2 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t2 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t2 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t2 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t2 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t2 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t2 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t2 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t2 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t2 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t2 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t2 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t2 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t2 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t2 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t2 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t2 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t2 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t2 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t2 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t2 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t2 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t2 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t2 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t2 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t2 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t2 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t2 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t2 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t2 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t2 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t2 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t2 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t2 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t2 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t2 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t2 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t2 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t2 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t2 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t2 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t2 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t2 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t2 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t2 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t2 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t2 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t2 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t2 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t2 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t2 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t2 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t2 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t2 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t2 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t2 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t2 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t2 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t2 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t2 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t2 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t2 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t2 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t2 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t2 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t2 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t2 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t2 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t2 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t2 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t2 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t2 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t2 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t2 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t2 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t2 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t2 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t2 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t2 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t2 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t2 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t2 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t2 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t2 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t2 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t2 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t2 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t2 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-t2 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t2 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t2 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t2 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t2 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t2 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t2 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t2 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t2 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t2 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t2 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t2 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t2 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t2 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t2 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t2 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t2 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t2 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t2 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t2 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t2 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t2 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t2 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t2 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t2 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t2 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t2 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t2 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t2 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t2 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t2 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t2 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t2 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t2 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t2 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t2 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t2 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t2 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t2 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t2 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t2 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t2 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t2 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t2 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t2 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t2 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t2 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t2 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t2 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t2 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t2 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t2 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t2 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t2 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t2 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t2 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t2 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t2 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t2 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t2 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t2 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t2 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t2 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t2 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t2 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t2 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t2 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t2 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t2 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t2 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t2 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t2 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t2 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t2 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t2 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t2 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t2 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t2 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t2 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t2 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t2 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t2 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t2 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t2 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t2 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t2 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t2 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t2 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t2 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t2 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t2 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t2 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t2 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t2 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t2 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t2 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t2 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t2 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t2 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t2 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t2 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t2 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t2 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t2 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t2 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t2 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t2 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t2 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t2 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t2 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t2 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t2 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t2 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t2 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t2 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t2 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t2 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t2 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t2 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-t2 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t2 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t2 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t2 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t2 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t2 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t2 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t2 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t2 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t2 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t2 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t2 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t2 .iti-flag.us {


  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t2 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t2 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t2 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t2 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-t2 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t2 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t2 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t2 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t2 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t2 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t2 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t2 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t2 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t2 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t2 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t2 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t2 body,

#custom-html-t2 button,

#custom-html-t2 input,

#custom-html-t2 select,

#custom-html-t2 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t2 h1,

#custom-html-t2 h2,

#custom-html-t2 h3,

#custom-html-t2 h4,

#custom-html-t2 h5,

#custom-html-t2 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-t2 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t2 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t2 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t2 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t2 .navbar-main .navbar-nav > .active > a,

#custom-html-t2 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t2 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t2 .navbar-main .navbar-nav > .open > a,

#custom-html-t2 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t2 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t2 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t2 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t2 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t2 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-t2 .navbar-header {

    float: none;

  }

  #custom-html-t2 .navbar-left,

  #custom-html-t2 .navbar-right {

    float: none !important;

  }

  #custom-html-t2 .navbar-toggle {

    display: block;

  }

  #custom-html-t2 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t2 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t2 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t2 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t2 .navbar-nav > li {

    float: none;

  }

  #custom-html-t2 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t2 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-t2 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t2 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t2 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-t2 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t2 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t2 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-t2 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t2 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t2 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t2 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t2 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t2 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-t2 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t2 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-t2 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t2 a.list-group-item.active,

#custom-html-t2 a.list-group-item.active:focus,

#custom-html-t2 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t2 .dropdown-menu > li > a:focus,

#custom-html-t2 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t2 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t2 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t2 body,

#custom-html-t2 html {

  height: 100%;

}

#custom-html-t2 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t2 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t2 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t2 section#header .search {

  margin: 20px 0;

}

#custom-html-t2 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t2 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t2 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t2 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t2 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t2 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t2 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t2 section#footer {

    line-height: 32px;

  }

}

#custom-html-t2 section#footer .back-to-top {

  float: right;

}

#custom-html-t2 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t2 .adminreturndiv {

  display: none !important;

}

#custom-html-t2 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t2 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t2 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t2 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t2 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t2 .navbar-main .navbar-toggle:focus,

#custom-html-t2 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t2 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t2 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-t2 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t2 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t2 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t2 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t2 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t2 .h1,

  #custom-html-t2 h1 {

    font-size: 26px;

  }

  #custom-html-t2 .h2,

  #custom-html-t2 h2 {

    font-size: 20px;

  }

  #custom-html-t2 .h3,

  #custom-html-t2 h3 {

    font-size: 16px;

  }

  #custom-html-t2 .h4,

  #custom-html-t2 h4 {

    font-size: 14px;

  }

  #custom-html-t2 .h5,

  #custom-html-t2 h5 {

    font-size: 12px;

  }

  #custom-html-t2 .h6,

  #custom-html-t2 h6 {

    font-size: 11px;

  }

  #custom-html-t2 div.header-lined small {

    display: none;

  }

  #custom-html-t2 .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-t2 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t2 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t2 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t2 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-t2 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t2 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t2 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t2 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t2 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t2 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-t2 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t2 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t2 .margin-10 {

  margin: 10px;

}

#custom-html-t2 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t2 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t2 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t2 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t2 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t2 .input-inline {

  display: inline-block;

}

#custom-html-t2 .input-inline-100 {

  width: 100px;

}

#custom-html-t2 .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-t2 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t2 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t2 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-t2 i.icon-rss {

  color: #ff6600;

}

#custom-html-t2 section#main-menu {

  background-color: #000000;

}

#custom-html-t2 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t2 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t2 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t2 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t2 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t2 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t2 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t2 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t2 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t2 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t2 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t2 section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-t2 .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-t2 .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-t2 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t2 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t2 .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-t2 #stepResults {

    font-size: 14px;

  }

  #custom-html-t2 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t2 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-t2 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t2 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t2 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t2 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t2 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t2 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t2 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t2 .home-shortcuts li span {

  display: none;

}

#custom-html-t2 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t2 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-t2 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t2 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t2 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t2 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t2 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t2 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t2 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t2 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t2 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t2 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t2 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t2 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t2 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t2 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t2 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t2 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t2 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t2 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t2 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t2 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t2 .tiles .tile:last-child {

  border: 0;

}

#custom-html-t2 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t2 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t2 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t2 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t2 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t2 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t2 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t2 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t2 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t2 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t2 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t2 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t2 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t2 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t2 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t2 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t2 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t2 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t2 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t2 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t2 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t2 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t2 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t2 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t2 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t2 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t2 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t2 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t2 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t2 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t2 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t2 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t2 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t2 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t2 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t2 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t2 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t2 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t2 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t2 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t2 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t2 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t2 ul.top-nav > li,

#custom-html-t2 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t2 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t2 ul.top-nav > li:active > a,

#custom-html-t2 ul.top-nav > li:focus > a,

#custom-html-t2 ul.top-nav > li:hover > a,

#custom-html-t2 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t2 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t2 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t2 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t2 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-t2 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t2 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t2 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t2 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t2 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t2 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t2 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t2 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-t2 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t2 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-t2 .domain-check-availability {

  width: 100px;

}

#custom-html-t2 .domain-step-options {

  min-height: 300px;

}

#custom-html-t2 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t2 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t2 .domain-checker-invalid,

#custom-html-t2 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t2 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t2 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t2 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t2 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t2 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t2 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t2 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t2 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-t2 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t2 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t2 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t2 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t2 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t2 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t2 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t2 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t2 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t2 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t2 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t2 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t2 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t2 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t2 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t2 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t2 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t2 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t2 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t2 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t2 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t2 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t2 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t2 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t2 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t2 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t2 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t2 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t2 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t2 div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t2 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t2 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t2 .product-status-active {

  background-color: #46a546;

}

#custom-html-t2 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t2 .product-status-cancelled,

#custom-html-t2 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t2 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t2 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t2 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t2 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t2 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t2 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t2 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t2 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t2 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t2 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t2 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t2 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t2 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t2 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-t2 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t2 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t2 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t2 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t2 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t2 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t2 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t2 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t2 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t2 .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-t2 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t2 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t2 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t2 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t2 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t2 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t2 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t2 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t2 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t2 .status-pending {

  color: #d9534f;

}

#custom-html-t2 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t2 .status-active,

#custom-html-t2 .status-completed,

#custom-html-t2 .status-open {

  color: #3fad46;

}

#custom-html-t2 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t2 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t2 .status-answered,

#custom-html-t2 .status-fraud {

  color: #000000;

}

#custom-html-t2 .status-expired,

#custom-html-t2 .status-transferred.away {

  color: #004258;

}

#custom-html-t2 .status-cancelled {

  color: #87939f;

}

#custom-html-t2 .status-terminated {

  color: #666666;

}

#custom-html-t2 .status-onhold {

  color: #224488;

}

#custom-html-t2 .status-inprogress {

  color: #cc0000;

}

#custom-html-t2 .status-closed {

  color: #888888;

}

#custom-html-t2 .status-paid {

  color: #498302;

}

#custom-html-t2 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t2 .status-collections {

  color: #9a141e;

}

#custom-html-t2 .status-refunded {

  color: #319fc3;

}

#custom-html-t2 .status-delivered {

  color: #224488;

}

#custom-html-t2 .status-accepted {

  color: #498302;

}

#custom-html-t2 .status-dead,

#custom-html-t2 .status-lost {

  color: #000000;

}

#custom-html-t2 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t2 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t2 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t2 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t2 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t2 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t2 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t2 .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-t2 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t2 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t2 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t2 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t2 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t2 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t2 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t2 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t2 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t2 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t2 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t2 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t2 .ticket-reply .rating,

#custom-html-t2 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t2 .ticket-reply .rating span.star,

#custom-html-t2 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t2 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t2 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t2 .ticket-reply .rating span.star:before,

#custom-html-t2 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t2 .ticket-reply .rating span.star:hover:before,

#custom-html-t2 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t2 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t2 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t2 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t2 .ticket-reply .clear {

  clear: both;

}

#custom-html-t2 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t2 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t2 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t2 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t2 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t2 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t2 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t2 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t2 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t2 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-t2 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t2 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t2 .popover-user-notifications ul li i.far,

#custom-html-t2 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t2 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t2 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t2 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t2 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t2 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t2 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t2 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t2 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t2 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t2 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t2 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t2 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t2 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t2 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t2 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t2 div.credit-card div.end {

  clear: both;

}

#custom-html-t2 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t2 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t2 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t2 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t2 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t2 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t2 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t2 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t2 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t2 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t2 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t2 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t2 .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-t2 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t2 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t2 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t2 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t2 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t2 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t2 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t2 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t2 .kb-category a small {

  color: #888888;

}

#custom-html-t2 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t2 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t2 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t2 .kbarticles a.admin-inline-edit,

#custom-html-t2 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t2 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t2 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t2 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t2 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t2 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t2 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t2 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t2 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t2 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t2 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t2 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t2 #stepResults {

  font-size: 20px;

}

#custom-html-t2 #stepResults .label {

  font-size: 20px;

}

#custom-html-t2 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t2 h3.with-badge i,

#custom-html-t2 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t2 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-t2 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t2 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t2 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t2 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t2 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t2 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t2 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t2 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t2 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t2 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t2 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t2 .login-popover {

  font-size: 12px;

}

#custom-html-t2 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t2 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t2 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t2 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t2 .error-container {

  text-align: center;

}

#custom-html-t2 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t2 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t2 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t2 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t2 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t2 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t2 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t2 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t2 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t2 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-t2 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t2 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t2 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t2 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t2 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t2 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t2 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t2 .email-verification .btn:active,

#custom-html-t2 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t2 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t2 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t2 .email-verification .far,

#custom-html-t2 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-t2 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t2 .email-verification.success .far,

#custom-html-t2 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t2 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t2 .email-verification.failed .far,

#custom-html-t2 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t2 .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-t2 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t2 .md-editor > .md-preview,

#custom-html-t2 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t2 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t2 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t2 .small-font {

  font-size: 0.9em;

}

#custom-html-t2 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t2 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t2 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t2 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t2 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t2 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t2 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t2 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t2 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t2 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t2 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t2 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t2 .panel-heading i.fab,

#custom-html-t2 .panel-heading i.fal,

#custom-html-t2 .panel-heading i.far,

#custom-html-t2 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t2 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t2 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t2 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t2 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t2 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t2 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t2 .panel-sidebar .list-group-item.disabled,

#custom-html-t2 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t2 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t2 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t2 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t2 .panel-sidebar a.list-group-item.active,

#custom-html-t2 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t2 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t2 .panel-sidebar a.list-group-item.active i,

#custom-html-t2 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t2 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t2 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t2 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t2 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t2 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t2 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t2 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t2 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t2 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t2 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t2 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t2 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t2 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t2 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t2 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-t2 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t2 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t2 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t2 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t2 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t2 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t2 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t2 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t2 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t2 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t2 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t2 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t2 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-t2 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t2 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t2 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t2 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t2 .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-t2 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t2 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t2 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t2 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t2 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t2 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t2 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t2 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t2 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t2 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t2 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t2 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t2 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t2 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t2 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t2 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t2 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t2 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t2 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t2 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t2 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t2 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t2 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t2 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t2 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t2 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t2 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t2 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t2 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t2 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t2 .panel-mc-sso .btn,

#custom-html-t2 .panel-mc-sso .form-control,

#custom-html-t2 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t2 .panel-mc-sso small {

  display: block;

}

#custom-html-t2 .social-signin-btns {

  text-align: center;

}

#custom-html-t2 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t2 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t2 .btn-social i.far,

#custom-html-t2 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-facebook.active,

#custom-html-t2 .btn-facebook:active,

#custom-html-t2 .btn-facebook:focus,

#custom-html-t2 .btn-facebook:hover,

#custom-html-t2 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-facebook.active,

#custom-html-t2 .btn-facebook:active,

#custom-html-t2 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t2 .btn-facebook.disabled,

#custom-html-t2 .btn-facebook.disabled.active,

#custom-html-t2 .btn-facebook.disabled:active,

#custom-html-t2 .btn-facebook.disabled:focus,

#custom-html-t2 .btn-facebook.disabled:hover,

#custom-html-t2 .btn-facebook[disabled],

#custom-html-t2 .btn-facebook[disabled].active,

#custom-html-t2 .btn-facebook[disabled]:active,

#custom-html-t2 .btn-facebook[disabled]:focus,

#custom-html-t2 .btn-facebook[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-facebook,

#custom-html-t2 fieldset[disabled] .btn-facebook.active,

#custom-html-t2 fieldset[disabled] .btn-facebook:active,

#custom-html-t2 fieldset[disabled] .btn-facebook:focus,

#custom-html-t2 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-google.active,

#custom-html-t2 .btn-google:active,

#custom-html-t2 .btn-google:focus,

#custom-html-t2 .btn-google:hover,

#custom-html-t2 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-google.active,

#custom-html-t2 .btn-google:active,

#custom-html-t2 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t2 .btn-google-plus.disabled.active,

#custom-html-t2 .btn-google-plus.disabled:active,

#custom-html-t2 .btn-google-plus.disabled:focus,

#custom-html-t2 .btn-google-plus[disabled].active,

#custom-html-t2 .btn-google-plus[disabled]:active,

#custom-html-t2 .btn-google-plus[disabled]:focus,

#custom-html-t2 .btn-google-plus[disabled]:hover,

#custom-html-t2 .btn-google.disabled,

#custom-html-t2 .btn-google.disabled:hover,

#custom-html-t2 .btn-google[disabled],

#custom-html-t2 fieldset[disabled] .btn-google,

#custom-html-t2 fieldset[disabled] .btn-google-plus.active,

#custom-html-t2 fieldset[disabled] .btn-google-plus:active,

#custom-html-t2 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t2 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-twitter.active,

#custom-html-t2 .btn-twitter:active,

#custom-html-t2 .btn-twitter:focus,

#custom-html-t2 .btn-twitter:hover,

#custom-html-t2 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-twitter.active,

#custom-html-t2 .btn-twitter:active,

#custom-html-t2 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t2 .btn-twitter.disabled,

#custom-html-t2 .btn-twitter.disabled.active,

#custom-html-t2 .btn-twitter.disabled:active,

#custom-html-t2 .btn-twitter.disabled:focus,

#custom-html-t2 .btn-twitter.disabled:hover,

#custom-html-t2 .btn-twitter[disabled],

#custom-html-t2 .btn-twitter[disabled].active,

#custom-html-t2 .btn-twitter[disabled]:active,

#custom-html-t2 .btn-twitter[disabled]:focus,

#custom-html-t2 .btn-twitter[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-twitter,

#custom-html-t2 fieldset[disabled] .btn-twitter.active,

#custom-html-t2 fieldset[disabled] .btn-twitter:active,

#custom-html-t2 fieldset[disabled] .btn-twitter:focus,

#custom-html-t2 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t2 .providerLinkingFeedback {

  display: none;

}

#custom-html-t2 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t2 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t2 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t2 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t2 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t2 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t2 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t2 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t2 #registration .field,

#custom-html-t2 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t2 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t2 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t2 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t2 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t2 #registration textarea.field {

  height: auto;

}

#custom-html-t2 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t2 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t2 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t2 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t2 #registration .field[disabled],

#custom-html-t2 #registration .field[readonly],

#custom-html-t2 #registration .form-control[disabled],

#custom-html-t2 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t2 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t2 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t2 .upgrade .product-to-be-upgraded h4,

#custom-html-t2 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t2 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t2 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t2 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t2 .upgrade .products .product .current,

#custom-html-t2 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t2 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t2 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t2 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-t2 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t2 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t2 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t2 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t2 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t2 .upgrade .products .far,

#custom-html-t2 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t2 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t2 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t2 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t2 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t2 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t2 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .bootstrap-switch input[type=checkbox],

#custom-html-t2 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t2 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t2 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t2 .md-editor .md-footer,

#custom-html-t2 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t2 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t2 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t2 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t2 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t2 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t2 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t2 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t2 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t2 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t2 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t2 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t2 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t2 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t2 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t2 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t2 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t2 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t2 table.dataTable td,

#custom-html-t2 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t2 table.dataTable td.dataTables_empty,

#custom-html-t2 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t2 table.dataTable.nowrap td,

#custom-html-t2 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t2 table.dataTable thead > tr > td.sorting,

#custom-html-t2 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t2 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t2 table.dataTable thead > tr > th.sorting,

#custom-html-t2 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t2 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t2 table.dataTable thead > tr > td:active,

#custom-html-t2 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t2 table.dataTable thead .sorting,

#custom-html-t2 table.dataTable thead .sorting_asc,

#custom-html-t2 table.dataTable thead .sorting_asc_disabled,

#custom-html-t2 table.dataTable thead .sorting_desc,

#custom-html-t2 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t2 table.dataTable thead .sorting:after,

#custom-html-t2 table.dataTable thead .sorting_asc:after,

#custom-html-t2 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t2 table.dataTable thead .sorting_desc:after,

#custom-html-t2 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t2 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t2 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t2 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t2 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t2 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t2 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t2 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t2 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t2 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t2 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t2 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t2 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t2 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-t2 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t2 table.dataTable.table-condensed .sorting:after,

#custom-html-t2 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t2 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t2 table.table-bordered.dataTable td,

#custom-html-t2 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t2 table.table-bordered.dataTable td:last-child,

#custom-html-t2 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t2 table.table-bordered.dataTable tbody td,

#custom-html-t2 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t2 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t2 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t2 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t2 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t2 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t2 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t2 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t2 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t2 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t2 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t2 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t2 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t2 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t2 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t2 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t2 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t2 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t2 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t2 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t2 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t2 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t2 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t2 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t2 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t2 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-t2 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t2 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t2 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t2 .multiselect-container > li {

  padding: 0;

}

#custom-html-t2 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t2 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t2 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t2 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t2 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t2 .multiselect-container > li > a > label.checkbox,

#custom-html-t2 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t2 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t2 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t2 .form-inline .multiselect-container label.checkbox,

#custom-html-t2 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t2 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t2 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-t2 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-t2 body {

  margin: 0;

}

#custom-html-t2 article,

#custom-html-t2 aside,

#custom-html-t2 details,

#custom-html-t2 figcaption,

#custom-html-t2 figure,

#custom-html-t2 footer,

#custom-html-t2 header,

#custom-html-t2 hgroup,

#custom-html-t2 main,

#custom-html-t2 menu,

#custom-html-t2 nav,

#custom-html-t2 section,

#custom-html-t2 summary {

  display: block;

}

#custom-html-t2 audio,

#custom-html-t2 canvas,

#custom-html-t2 progress,

#custom-html-t2 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-t2 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-t2 [hidden],

#custom-html-t2 template {

  display: none;

}

#custom-html-t2 a {

  background-color: transparent;

}

#custom-html-t2 a:active,

#custom-html-t2 a:hover {

  outline: 0;

}

#custom-html-t2 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-t2 b,

#custom-html-t2 strong {

  font-weight: 700;

}

#custom-html-t2 dfn {

  font-style: italic;

}

#custom-html-t2 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-t2 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-t2 small {

  font-size: 80%;

}

#custom-html-t2 sub,

#custom-html-t2 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-t2 sup {

  top: -0.5em;

}

#custom-html-t2 sub {

  bottom: -0.25em;

}

#custom-html-t2 img {

  border: 0;

}

#custom-html-t2 svg:not(:root) {

  overflow: hidden;

}

#custom-html-t2 figure {

  margin: 1em 40px;

}

#custom-html-t2 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t2 pre {

  overflow: auto;

}

#custom-html-t2 code,

#custom-html-t2 kbd,

#custom-html-t2 pre,

#custom-html-t2 samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-t2 button,

#custom-html-t2 input,

#custom-html-t2 optgroup,

#custom-html-t2 select,

#custom-html-t2 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-t2 button {

  overflow: visible;

}

#custom-html-t2 button,

#custom-html-t2 select {

  text-transform: none;

}

#custom-html-t2 button,

#custom-html-t2 html input[type=button],

#custom-html-t2 input[type=reset],

#custom-html-t2 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-t2 button[disabled],

#custom-html-t2 html input[disabled] {

  cursor: default;

}

#custom-html-t2 button::-moz-focus-inner,

#custom-html-t2 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-t2 input {

  line-height: normal;

}

#custom-html-t2 input[type=checkbox],

#custom-html-t2 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-t2 input[type=number]::-webkit-inner-spin-button,

#custom-html-t2 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-t2 input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-t2 input[type=search]::-webkit-search-cancel-button,

#custom-html-t2 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-t2 fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-t2 legend {

  padding: 0;

  border: 0;

}

#custom-html-t2 textarea {

  overflow: auto;

}

#custom-html-t2 optgroup {

  font-weight: 700;

}

#custom-html-t2 table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-t2 td,

#custom-html-t2 th {

  padding: 0;

}

@media print {

  #custom-html-t2 *,

  #custom-html-t2 :after,

  #custom-html-t2 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-t2 a,

  #custom-html-t2 a:visited {

    text-decoration: underline;

  }

  #custom-html-t2 a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-t2 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-t2 a[href^="#"]:after,

  #custom-html-t2 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-t2 blockquote,

  #custom-html-t2 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-t2 thead {

    display: table-header-group;

  }

  #custom-html-t2 img,

  #custom-html-t2 tr {

    page-break-inside: avoid;

  }

  #custom-html-t2 img {

    max-width: 100% !important;

  }

  #custom-html-t2 h2,

  #custom-html-t2 h3,

  #custom-html-t2 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-t2 h2,

  #custom-html-t2 h3 {

    page-break-after: avoid;

  }

  #custom-html-t2 .navbar {

    display: none;

  }

  #custom-html-t2 .btn > .caret,

  #custom-html-t2 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-t2 .label {

    border: 1px solid #000000;

  }

  #custom-html-t2 .table {

    border-collapse: collapse !important;

  }

  #custom-html-t2 .table td,

  #custom-html-t2 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-t2 .table-bordered td,

  #custom-html-t2 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-t2 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-t2 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-t2 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-t2 .glyphicon-eur:before,

#custom-html-t2 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-t2 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-t2 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-t2 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-t2 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-t2 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-t2 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-t2 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-t2 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-t2 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-t2 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-t2 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-t2 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-t2 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-t2 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-t2 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-t2 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-t2 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-t2 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-t2 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-t2 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-t2 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-t2 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-t2 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-t2 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-t2 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-t2 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-t2 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-t2 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-t2 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-t2 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-t2 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-t2 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-t2 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-t2 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-t2 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-t2 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-t2 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-t2 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-t2 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-t2 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-t2 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-t2 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-t2 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-t2 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-t2 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-t2 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-t2 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-t2 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-t2 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-t2 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-t2 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-t2 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-t2 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-t2 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-t2 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-t2 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-t2 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-t2 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-t2 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-t2 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-t2 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-t2 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-t2 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-t2 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-t2 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-t2 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-t2 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-t2 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-t2 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-t2 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-t2 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-t2 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-t2 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-t2 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-t2 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-t2 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-t2 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-t2 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-t2 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-t2 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-t2 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-t2 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-t2 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-t2 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-t2 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-t2 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-t2 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-t2 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-t2 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-t2 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-t2 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-t2 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-t2 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-t2 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-t2 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-t2 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-t2 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-t2 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-t2 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-t2 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-t2 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-t2 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-t2 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-t2 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-t2 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-t2 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-t2 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-t2 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-t2 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-t2 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-t2 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-t2 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-t2 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-t2 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-t2 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-t2 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-t2 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-t2 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-t2 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-t2 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-t2 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-t2 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-t2 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-t2 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-t2 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-t2 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-t2 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-t2 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-t2 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-t2 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-t2 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-t2 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-t2 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-t2 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-t2 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-t2 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-t2 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-t2 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-t2 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-t2 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-t2 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-t2 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-t2 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-t2 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-t2 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-t2 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-t2 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-t2 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-t2 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-t2 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-t2 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-t2 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-t2 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-t2 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-t2 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-t2 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-t2 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-t2 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-t2 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-t2 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-t2 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-t2 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-t2 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-t2 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-t2 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-t2 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-t2 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-t2 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-t2 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-t2 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-t2 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-t2 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-t2 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-t2 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-t2 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-t2 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-t2 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-t2 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-t2 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-t2 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-t2 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-t2 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-t2 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-t2 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-t2 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-t2 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-t2 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-t2 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-t2 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-t2 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-t2 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-t2 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-t2 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-t2 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-t2 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-t2 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-t2 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-t2 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-t2 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-t2 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-t2 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-t2 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-t2 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-t2 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-t2 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-t2 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-t2 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-t2 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-t2 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-t2 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-t2 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-t2 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-t2 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-t2 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-t2 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-t2 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-t2 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-t2 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-t2 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-t2 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-t2 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-t2 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-t2 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-t2 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-t2 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-t2 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-t2 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-t2 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-t2 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-t2 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-t2 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-t2 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-t2 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-t2 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-t2 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-t2 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-t2 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-t2 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-t2 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-t2 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-t2 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-t2 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-t2 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-t2 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-t2 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-t2 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-t2 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-t2 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-t2 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-t2 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-t2 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-t2 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-t2 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-t2 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-t2 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-t2 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-t2 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-t2 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-t2 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-t2 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t2 :after,

#custom-html-t2 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t2 html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-t2 body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-t2 button,

#custom-html-t2 input,

#custom-html-t2 select,

#custom-html-t2 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-t2 a {

  color: #000;

  text-decoration: none;

}

#custom-html-t2 a:focus,

#custom-html-t2 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-t2 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t2 figure {

  margin: 0;

}

#custom-html-t2 img {

  vertical-align: middle;

}

#custom-html-t2 .carousel-inner > .item > a > img,

#custom-html-t2 .carousel-inner > .item > img,

#custom-html-t2 .img-responsive,

#custom-html-t2 .thumbnail a > img,

#custom-html-t2 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-t2 .img-rounded {

  border-radius: 6px;

}

#custom-html-t2 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-t2 .img-circle {

  border-radius: 50%;

}

#custom-html-t2 hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-t2 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-t2 .sr-only-focusable:active,

#custom-html-t2 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-t2 [role=button] {

  cursor: pointer;

}

#custom-html-t2 .h1,

#custom-html-t2 .h2,

#custom-html-t2 .h3,

#custom-html-t2 .h4,

#custom-html-t2 .h5,

#custom-html-t2 .h6,

#custom-html-t2 h1,

#custom-html-t2 h2,

#custom-html-t2 h3,

#custom-html-t2 h4,

#custom-html-t2 h5,

#custom-html-t2 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-t2 .h1 .small,

#custom-html-t2 .h1 small,

#custom-html-t2 .h2 .small,

#custom-html-t2 .h2 small,

#custom-html-t2 .h3 .small,

#custom-html-t2 .h3 small,

#custom-html-t2 .h4 .small,

#custom-html-t2 .h4 small,

#custom-html-t2 .h5 .small,

#custom-html-t2 .h5 small,

#custom-html-t2 .h6 .small,

#custom-html-t2 .h6 small,

#custom-html-t2 h1 .small,

#custom-html-t2 h1 small,

#custom-html-t2 h2 .small,

#custom-html-t2 h2 small,

#custom-html-t2 h3 .small,

#custom-html-t2 h3 small,

#custom-html-t2 h4 .small,

#custom-html-t2 h4 small,

#custom-html-t2 h5 .small,

#custom-html-t2 h5 small,

#custom-html-t2 h6 .small,

#custom-html-t2 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-t2 .h1,

#custom-html-t2 .h2,

#custom-html-t2 .h3,

#custom-html-t2 h1,

#custom-html-t2 h2,

#custom-html-t2 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-t2 .h1 .small,

#custom-html-t2 .h1 small,

#custom-html-t2 .h2 .small,

#custom-html-t2 .h2 small,

#custom-html-t2 .h3 .small,

#custom-html-t2 .h3 small,

#custom-html-t2 h1 .small,

#custom-html-t2 h1 small,

#custom-html-t2 h2 .small,

#custom-html-t2 h2 small,

#custom-html-t2 h3 .small,

#custom-html-t2 h3 small {

  font-size: 65%;

}

#custom-html-t2 .h4,

#custom-html-t2 .h5,

#custom-html-t2 .h6,

#custom-html-t2 h4,

#custom-html-t2 h5,

#custom-html-t2 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t2 .h4 .small,

#custom-html-t2 .h4 small,

#custom-html-t2 .h5 .small,

#custom-html-t2 .h5 small,

#custom-html-t2 .h6 .small,

#custom-html-t2 .h6 small,

#custom-html-t2 h4 .small,

#custom-html-t2 h4 small,

#custom-html-t2 h5 .small,

#custom-html-t2 h5 small,

#custom-html-t2 h6 .small,

#custom-html-t2 h6 small {

  font-size: 75%;

}

#custom-html-t2 .h1,

#custom-html-t2 h1 {

  font-size: 36px;

}

#custom-html-t2 .h2,

#custom-html-t2 h2 {

  font-size: 30px;

}

#custom-html-t2 .h3,

#custom-html-t2 h3 {

  font-size: 24px;

}

#custom-html-t2 .h4,

#custom-html-t2 h4 {

  font-size: 18px;

}

#custom-html-t2 .h5,

#custom-html-t2 h5 {

  font-size: 14px;

}

#custom-html-t2 .h6,

#custom-html-t2 h6 {

  font-size: 12px;

}

#custom-html-t2 p {

  margin: 0 0 10px;

}

#custom-html-t2 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-t2 .lead {

    font-size: 21px;

  }

}

#custom-html-t2 .small,

#custom-html-t2 small {

  font-size: 85%;

}

#custom-html-t2 .mark,

#custom-html-t2 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-t2 .text-left {

  text-align: left;

}

#custom-html-t2 .text-right {

  text-align: right;

}

#custom-html-t2 .text-center {

  text-align: center;

}

#custom-html-t2 .text-justify {

  text-align: justify;

}

#custom-html-t2 .text-nowrap {

  white-space: nowrap;

}

#custom-html-t2 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-t2 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-t2 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-t2 .text-muted {

  color: #777777;

}

#custom-html-t2 .text-primary {

  color: #000000;

}

#custom-html-t2 a.text-primary:focus,

#custom-html-t2 a.text-primary:hover {

  color: #000000;

}

#custom-html-t2 .text-success {

  color: #3c763d;

}

#custom-html-t2 a.text-success:focus,

#custom-html-t2 a.text-success:hover {

  color: #2b542c;

}

#custom-html-t2 .text-info {

  color: #31708f;

}

#custom-html-t2 a.text-info:focus,

#custom-html-t2 a.text-info:hover {

  color: #000000;

}

#custom-html-t2 .text-warning {

  color: #8a6d3b;

}

#custom-html-t2 a.text-warning:focus,

#custom-html-t2 a.text-warning:hover {

  color: #66512c;

}

#custom-html-t2 .text-danger {

  color: #a94442;

}

#custom-html-t2 a.text-danger:focus,

#custom-html-t2 a.text-danger:hover {

  color: #843534;

}

#custom-html-t2 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-t2 a.bg-primary:focus,

#custom-html-t2 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-t2 .bg-success {

  background-color: #dff0d8;

}

#custom-html-t2 a.bg-success:focus,

#custom-html-t2 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-t2 .bg-info {

  background-color: #d9edf7;

}

#custom-html-t2 a.bg-info:focus,

#custom-html-t2 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-t2 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-t2 a.bg-warning:focus,

#custom-html-t2 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-t2 .bg-danger {

  background-color: #f2dede;

}

#custom-html-t2 a.bg-danger:focus,

#custom-html-t2 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-t2 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t2 ol,

#custom-html-t2 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-t2 ol ol,

#custom-html-t2 ol ul,

#custom-html-t2 ul ol,

#custom-html-t2 ul ul {

  margin-bottom: 0;

}

#custom-html-t2 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-t2 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-t2 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-t2 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-t2 dd,

#custom-html-t2 dt {

  line-height: 1.42857143;

}

#custom-html-t2 dt {

  font-weight: 700;

}

#custom-html-t2 dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t2 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-t2 .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-t2 abbr[data-original-title],

#custom-html-t2 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-t2 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-t2 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-t2 blockquote ol:last-child,

#custom-html-t2 blockquote p:last-child,

#custom-html-t2 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-t2 blockquote .small,

#custom-html-t2 blockquote footer,

#custom-html-t2 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-t2 blockquote .small:before,

#custom-html-t2 blockquote footer:before,

#custom-html-t2 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-t2 .blockquote-reverse,

#custom-html-t2 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-t2 .blockquote-reverse .small:before,

#custom-html-t2 .blockquote-reverse footer:before,

#custom-html-t2 .blockquote-reverse small:before,

#custom-html-t2 blockquote.pull-right .small:before,

#custom-html-t2 blockquote.pull-right footer:before,

#custom-html-t2 blockquote.pull-right small:before {

  content: '';

}

#custom-html-t2 .blockquote-reverse .small:after,

#custom-html-t2 .blockquote-reverse footer:after,

#custom-html-t2 .blockquote-reverse small:after,

#custom-html-t2 blockquote.pull-right .small:after,

#custom-html-t2 blockquote.pull-right footer:after,

#custom-html-t2 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-t2 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-t2 code,

#custom-html-t2 kbd,

#custom-html-t2 pre,

#custom-html-t2 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-t2 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-t2 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-t2 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t2 pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t2 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-t2 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-t2 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-t2 .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-t2 .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-t2 .container {

    width: 1170px;

  }

}

#custom-html-t2 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t2 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-t2 .col-lg-1,

#custom-html-t2 .col-lg-10,

#custom-html-t2 .col-lg-11,

#custom-html-t2 .col-lg-12,

#custom-html-t2 .col-lg-2,

#custom-html-t2 .col-lg-3,

#custom-html-t2 .col-lg-4,

#custom-html-t2 .col-lg-5,

#custom-html-t2 .col-lg-6,

#custom-html-t2 .col-lg-7,

#custom-html-t2 .col-lg-8,

#custom-html-t2 .col-lg-9,

#custom-html-t2 .col-md-1,

#custom-html-t2 .col-md-10,

#custom-html-t2 .col-md-11,

#custom-html-t2 .col-md-12,

#custom-html-t2 .col-md-2,

#custom-html-t2 .col-md-3,

#custom-html-t2 .col-md-4,

#custom-html-t2 .col-md-5,

#custom-html-t2 .col-md-6,

#custom-html-t2 .col-md-7,

#custom-html-t2 .col-md-8,

#custom-html-t2 .col-md-9,

#custom-html-t2 .col-sm-1,

#custom-html-t2 .col-sm-10,

#custom-html-t2 .col-sm-11,

#custom-html-t2 .col-sm-12,

#custom-html-t2 .col-sm-2,

#custom-html-t2 .col-sm-3,

#custom-html-t2 .col-sm-4,

#custom-html-t2 .col-sm-5,

#custom-html-t2 .col-sm-6,

#custom-html-t2 .col-sm-7,

#custom-html-t2 .col-sm-8,

#custom-html-t2 .col-sm-9,

#custom-html-t2 .col-xs-1,

#custom-html-t2 .col-xs-10,

#custom-html-t2 .col-xs-11,

#custom-html-t2 .col-xs-12,

#custom-html-t2 .col-xs-2,

#custom-html-t2 .col-xs-3,

#custom-html-t2 .col-xs-4,

#custom-html-t2 .col-xs-5,

#custom-html-t2 .col-xs-6,

#custom-html-t2 .col-xs-7,

#custom-html-t2 .col-xs-8,

#custom-html-t2 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t2 .col-xs-1,

#custom-html-t2 .col-xs-10,

#custom-html-t2 .col-xs-11,

#custom-html-t2 .col-xs-12,

#custom-html-t2 .col-xs-2,

#custom-html-t2 .col-xs-3,

#custom-html-t2 .col-xs-4,

#custom-html-t2 .col-xs-5,

#custom-html-t2 .col-xs-6,

#custom-html-t2 .col-xs-7,

#custom-html-t2 .col-xs-8,

#custom-html-t2 .col-xs-9 {

  float: left;

}

#custom-html-t2 .col-xs-12 {

  width: 100%;

}

#custom-html-t2 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-t2 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-t2 .col-xs-9 {

  width: 75%;

}

#custom-html-t2 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-t2 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-t2 .col-xs-6 {

  width: 50%;

}

#custom-html-t2 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-t2 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-t2 .col-xs-3 {

  width: 25%;

}

#custom-html-t2 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-t2 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-t2 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-t2 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-t2 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-t2 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-t2 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-t2 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-t2 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-t2 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-t2 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-t2 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-t2 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-t2 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-t2 .col-xs-pull-0 {

  right: auto;

}

#custom-html-t2 .col-xs-push-12 {

  left: 100%;

}

#custom-html-t2 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-t2 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-t2 .col-xs-push-9 {

  left: 75%;

}

#custom-html-t2 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-t2 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-t2 .col-xs-push-6 {

  left: 50%;

}

#custom-html-t2 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-t2 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-t2 .col-xs-push-3 {

  left: 25%;

}

#custom-html-t2 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-t2 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-t2 .col-xs-push-0 {

  left: auto;

}

#custom-html-t2 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-t2 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-t2 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-t2 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-t2 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-t2 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-t2 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-t2 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-t2 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-t2 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-t2 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-t2 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-t2 .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-t2 .col-sm-1,

  #custom-html-t2 .col-sm-10,

  #custom-html-t2 .col-sm-11,

  #custom-html-t2 .col-sm-12,

  #custom-html-t2 .col-sm-2,

  #custom-html-t2 .col-sm-3,

  #custom-html-t2 .col-sm-4,

  #custom-html-t2 .col-sm-5,

  #custom-html-t2 .col-sm-6,

  #custom-html-t2 .col-sm-7,

  #custom-html-t2 .col-sm-8,

  #custom-html-t2 .col-sm-9 {

    float: left;

  }

  #custom-html-t2 .col-sm-12 {

    width: 100%;

  }

  #custom-html-t2 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-t2 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-t2 .col-sm-9 {

    width: 75%;

  }

  #custom-html-t2 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-t2 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-t2 .col-sm-6 {

    width: 50%;

  }

  #custom-html-t2 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-t2 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-t2 .col-sm-3 {

    width: 25%;

  }

  #custom-html-t2 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-t2 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-t2 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-t2 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t2 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t2 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-t2 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t2 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t2 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-t2 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t2 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t2 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-t2 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t2 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t2 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-t2 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-t2 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t2 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t2 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-t2 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t2 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t2 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-t2 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t2 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t2 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-t2 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t2 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t2 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-t2 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t2 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t2 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t2 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t2 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t2 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t2 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t2 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t2 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t2 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t2 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t2 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t2 .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-t2 .col-md-1,

  #custom-html-t2 .col-md-10,

  #custom-html-t2 .col-md-11,

  #custom-html-t2 .col-md-12,

  #custom-html-t2 .col-md-2,

  #custom-html-t2 .col-md-3,

  #custom-html-t2 .col-md-4,

  #custom-html-t2 .col-md-5,

  #custom-html-t2 .col-md-6,

  #custom-html-t2 .col-md-7,

  #custom-html-t2 .col-md-8,

  #custom-html-t2 .col-md-9 {

    float: left;

  }

  #custom-html-t2 .col-md-12 {

    width: 100%;

  }

  #custom-html-t2 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-t2 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-t2 .col-md-9 {

    width: 75%;

  }

  #custom-html-t2 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-t2 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-t2 .col-md-6 {

    width: 50%;

  }

  #custom-html-t2 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-t2 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-t2 .col-md-3 {

    width: 25%;

  }

  #custom-html-t2 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-t2 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-t2 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-t2 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t2 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t2 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-t2 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t2 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t2 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-t2 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t2 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t2 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-t2 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t2 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t2 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-t2 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-t2 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t2 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t2 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-t2 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t2 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t2 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-t2 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t2 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t2 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-t2 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t2 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t2 .col-md-push-0 {

    left: auto;

  }

  #custom-html-t2 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t2 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t2 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t2 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t2 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t2 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t2 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t2 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t2 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t2 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t2 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t2 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t2 .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-t2 .col-lg-1,

  #custom-html-t2 .col-lg-10,

  #custom-html-t2 .col-lg-11,

  #custom-html-t2 .col-lg-12,

  #custom-html-t2 .col-lg-2,

  #custom-html-t2 .col-lg-3,

  #custom-html-t2 .col-lg-4,

  #custom-html-t2 .col-lg-5,

  #custom-html-t2 .col-lg-6,

  #custom-html-t2 .col-lg-7,

  #custom-html-t2 .col-lg-8,

  #custom-html-t2 .col-lg-9 {

    float: left;

  }

  #custom-html-t2 .col-lg-12 {

    width: 100%;

  }

  #custom-html-t2 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-t2 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-t2 .col-lg-9 {

    width: 75%;

  }

  #custom-html-t2 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-t2 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-t2 .col-lg-6 {

    width: 50%;

  }

  #custom-html-t2 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-t2 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-t2 .col-lg-3 {

    width: 25%;

  }

  #custom-html-t2 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-t2 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-t2 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-t2 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-t2 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-t2 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-t2 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-t2 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-t2 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-t2 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-t2 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-t2 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-t2 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-t2 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-t2 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-t2 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-t2 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-t2 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-t2 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-t2 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-t2 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-t2 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-t2 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-t2 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-t2 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-t2 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-t2 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-t2 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-t2 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-t2 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-t2 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-t2 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-t2 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-t2 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-t2 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-t2 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-t2 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-t2 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-t2 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-t2 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-t2 .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-t2 table {

  background-color: transparent;

}

#custom-html-t2 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-t2 th {

  text-align: left;

}

#custom-html-t2 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-t2 .table > tbody > tr > td,

#custom-html-t2 .table > tbody > tr > th,

#custom-html-t2 .table > tfoot > tr > td,

#custom-html-t2 .table > tfoot > tr > th,

#custom-html-t2 .table > thead > tr > td,

#custom-html-t2 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-t2 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-t2 .table > caption + thead > tr:first-child > td,

#custom-html-t2 .table > caption + thead > tr:first-child > th,

#custom-html-t2 .table > colgroup + thead > tr:first-child > td,

#custom-html-t2 .table > colgroup + thead > tr:first-child > th,

#custom-html-t2 .table > thead:first-child > tr:first-child > td,

#custom-html-t2 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-t2 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-t2 .table .table {

  background-color: #ffffff;

}

#custom-html-t2 .table-condensed > tbody > tr > td,

#custom-html-t2 .table-condensed > tbody > tr > th,

#custom-html-t2 .table-condensed > tfoot > tr > td,

#custom-html-t2 .table-condensed > tfoot > tr > th,

#custom-html-t2 .table-condensed > thead > tr > td,

#custom-html-t2 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-t2 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-t2 .table-bordered > tbody > tr > td,

#custom-html-t2 .table-bordered > tbody > tr > th,

#custom-html-t2 .table-bordered > tfoot > tr > td,

#custom-html-t2 .table-bordered > tfoot > tr > th,

#custom-html-t2 .table-bordered > thead > tr > td,

#custom-html-t2 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-t2 .table-bordered > thead > tr > td,

#custom-html-t2 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-t2 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-t2 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-t2 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-t2 table td[class*=col-],

#custom-html-t2 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-t2 .table > tbody > tr.active > td,

#custom-html-t2 .table > tbody > tr.active > th,

#custom-html-t2 .table > tbody > tr > td.active,

#custom-html-t2 .table > tbody > tr > th.active,

#custom-html-t2 .table > tfoot > tr.active > td,

#custom-html-t2 .table > tfoot > tr.active > th,

#custom-html-t2 .table > tfoot > tr > td.active,

#custom-html-t2 .table > tfoot > tr > th.active,

#custom-html-t2 .table > thead > tr.active > td,

#custom-html-t2 .table > thead > tr.active > th,

#custom-html-t2 .table > thead > tr > td.active,

#custom-html-t2 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-t2 .table-hover > tbody > tr.active:hover > td,

#custom-html-t2 .table-hover > tbody > tr.active:hover > th,

#custom-html-t2 .table-hover > tbody > tr:hover > .active,

#custom-html-t2 .table-hover > tbody > tr > td.active:hover,

#custom-html-t2 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-t2 .table > tbody > tr.success > td,

#custom-html-t2 .table > tbody > tr.success > th,

#custom-html-t2 .table > tbody > tr > td.success,

#custom-html-t2 .table > tbody > tr > th.success,

#custom-html-t2 .table > tfoot > tr.success > td,

#custom-html-t2 .table > tfoot > tr.success > th,

#custom-html-t2 .table > tfoot > tr > td.success,

#custom-html-t2 .table > tfoot > tr > th.success,

#custom-html-t2 .table > thead > tr.success > td,

#custom-html-t2 .table > thead > tr.success > th,

#custom-html-t2 .table > thead > tr > td.success,

#custom-html-t2 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-t2 .table-hover > tbody > tr.success:hover > td,

#custom-html-t2 .table-hover > tbody > tr.success:hover > th,

#custom-html-t2 .table-hover > tbody > tr:hover > .success,

#custom-html-t2 .table-hover > tbody > tr > td.success:hover,

#custom-html-t2 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-t2 .table > tbody > tr.info > td,

#custom-html-t2 .table > tbody > tr.info > th,

#custom-html-t2 .table > tbody > tr > td.info,

#custom-html-t2 .table > tbody > tr > th.info,

#custom-html-t2 .table > tfoot > tr.info > td,

#custom-html-t2 .table > tfoot > tr.info > th,

#custom-html-t2 .table > tfoot > tr > td.info,

#custom-html-t2 .table > tfoot > tr > th.info,

#custom-html-t2 .table > thead > tr.info > td,

#custom-html-t2 .table > thead > tr.info > th,

#custom-html-t2 .table > thead > tr > td.info,

#custom-html-t2 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-t2 .table-hover > tbody > tr.info:hover > td,

#custom-html-t2 .table-hover > tbody > tr.info:hover > th,

#custom-html-t2 .table-hover > tbody > tr:hover > .info,

#custom-html-t2 .table-hover > tbody > tr > td.info:hover,

#custom-html-t2 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-t2 .table > tbody > tr.warning > td,

#custom-html-t2 .table > tbody > tr.warning > th,

#custom-html-t2 .table > tbody > tr > td.warning,

#custom-html-t2 .table > tbody > tr > th.warning,

#custom-html-t2 .table > tfoot > tr.warning > td,

#custom-html-t2 .table > tfoot > tr.warning > th,

#custom-html-t2 .table > tfoot > tr > td.warning,

#custom-html-t2 .table > tfoot > tr > th.warning,

#custom-html-t2 .table > thead > tr.warning > td,

#custom-html-t2 .table > thead > tr.warning > th,

#custom-html-t2 .table > thead > tr > td.warning,

#custom-html-t2 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-t2 .table-hover > tbody > tr.warning:hover > td,

#custom-html-t2 .table-hover > tbody > tr.warning:hover > th,

#custom-html-t2 .table-hover > tbody > tr:hover > .warning,

#custom-html-t2 .table-hover > tbody > tr > td.warning:hover,

#custom-html-t2 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-t2 .table > tbody > tr.danger > td,

#custom-html-t2 .table > tbody > tr.danger > th,

#custom-html-t2 .table > tbody > tr > td.danger,

#custom-html-t2 .table > tbody > tr > th.danger,

#custom-html-t2 .table > tfoot > tr.danger > td,

#custom-html-t2 .table > tfoot > tr.danger > th,

#custom-html-t2 .table > tfoot > tr > td.danger,

#custom-html-t2 .table > tfoot > tr > th.danger,

#custom-html-t2 .table > thead > tr.danger > td,

#custom-html-t2 .table > thead > tr.danger > th,

#custom-html-t2 .table > thead > tr > td.danger,

#custom-html-t2 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-t2 .table-hover > tbody > tr.danger:hover > td,

#custom-html-t2 .table-hover > tbody > tr.danger:hover > th,

#custom-html-t2 .table-hover > tbody > tr:hover > .danger,

#custom-html-t2 .table-hover > tbody > tr > td.danger:hover,

#custom-html-t2 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-t2 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-t2 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-t2 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-t2 .table-responsive > .table > tbody > tr > td,

  #custom-html-t2 .table-responsive > .table > tbody > tr > th,

  #custom-html-t2 .table-responsive > .table > tfoot > tr > td,

  #custom-html-t2 .table-responsive > .table > tfoot > tr > th,

  #custom-html-t2 .table-responsive > .table > thead > tr > td,

  #custom-html-t2 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-t2 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-t2 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-t2 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-t2 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-t2 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-t2 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-t2 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-t2 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-t2 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-t2 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-t2 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-t2 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-t2 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-t2 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-t2 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-t2 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-t2 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-t2 fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-t2 legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t2 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-t2 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-t2 input[type=checkbox],

#custom-html-t2 input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-t2 input[type=file] {

  display: block;

}

#custom-html-t2 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-t2 select[multiple],

#custom-html-t2 select[size] {

  height: auto;

}

#custom-html-t2 input[type=checkbox]:focus,

#custom-html-t2 input[type=file]:focus,

#custom-html-t2 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t2 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-t2 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t2 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t2 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-t2 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-t2 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-t2 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-t2 .form-control[disabled],

#custom-html-t2 .form-control[readonly],

#custom-html-t2 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-t2 .form-control[disabled],

#custom-html-t2 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-t2 textarea.form-control {

  height: auto;

}

#custom-html-t2 input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-t2 input[type=date].form-control,

  #custom-html-t2 input[type=datetime-local].form-control,

  #custom-html-t2 input[type=month].form-control,

  #custom-html-t2 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-t2 .input-group-sm input[type=date],

  #custom-html-t2 .input-group-sm input[type=datetime-local],

  #custom-html-t2 .input-group-sm input[type=month],

  #custom-html-t2 .input-group-sm input[type=time],

  #custom-html-t2 input[type=date].input-sm,

  #custom-html-t2 input[type=datetime-local].input-sm,

  #custom-html-t2 input[type=month].input-sm,

  #custom-html-t2 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-t2 .input-group-lg input[type=date],

  #custom-html-t2 .input-group-lg input[type=datetime-local],

  #custom-html-t2 .input-group-lg input[type=month],

  #custom-html-t2 .input-group-lg input[type=time],

  #custom-html-t2 input[type=date].input-lg,

  #custom-html-t2 input[type=datetime-local].input-lg,

  #custom-html-t2 input[type=month].input-lg,

  #custom-html-t2 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-t2 .form-group {

  margin-bottom: 15px;

}

#custom-html-t2 .checkbox,

#custom-html-t2 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t2 .checkbox label,

#custom-html-t2 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-t2 .checkbox input[type=checkbox],

#custom-html-t2 .checkbox-inline input[type=checkbox],

#custom-html-t2 .radio input[type=radio],

#custom-html-t2 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-t2 .checkbox + .checkbox,

#custom-html-t2 .radio + .radio {

  margin-top: -5px;

}

#custom-html-t2 .checkbox-inline,

#custom-html-t2 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-t2 .checkbox-inline + .checkbox-inline,

#custom-html-t2 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-t2 fieldset[disabled] input[type=checkbox],

#custom-html-t2 fieldset[disabled] input[type=radio],

#custom-html-t2 input[type=checkbox].disabled,

#custom-html-t2 input[type=checkbox][disabled],

#custom-html-t2 input[type=radio].disabled,

#custom-html-t2 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-t2 .checkbox-inline.disabled,

#custom-html-t2 .radio-inline.disabled,

#custom-html-t2 fieldset[disabled] .checkbox-inline,

#custom-html-t2 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-t2 .checkbox.disabled label,

#custom-html-t2 .radio.disabled label,

#custom-html-t2 fieldset[disabled] .checkbox label,

#custom-html-t2 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-t2 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-t2 .form-control-static.input-lg,

#custom-html-t2 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t2 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t2 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-t2 select[multiple].input-sm,

#custom-html-t2 textarea.input-sm {

  height: auto;

}

#custom-html-t2 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t2 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-t2 .form-group-sm select[multiple].form-control,

#custom-html-t2 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-t2 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t2 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t2 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-t2 select[multiple].input-lg,

#custom-html-t2 textarea.input-lg {

  height: auto;

}

#custom-html-t2 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t2 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-t2 .form-group-lg select[multiple].form-control,

#custom-html-t2 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-t2 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t2 .has-feedback {

  position: relative;

}

#custom-html-t2 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-t2 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-t2 .form-group-lg .form-control + .form-control-feedback,

#custom-html-t2 .input-group-lg + .form-control-feedback,

#custom-html-t2 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-t2 .form-group-sm .form-control + .form-control-feedback,

#custom-html-t2 .input-group-sm + .form-control-feedback,

#custom-html-t2 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-t2 .has-success .checkbox,

#custom-html-t2 .has-success .checkbox-inline,

#custom-html-t2 .has-success .control-label,

#custom-html-t2 .has-success .help-block,

#custom-html-t2 .has-success .radio,

#custom-html-t2 .has-success .radio-inline,

#custom-html-t2 .has-success.checkbox label,

#custom-html-t2 .has-success.checkbox-inline label,

#custom-html-t2 .has-success.radio label,

#custom-html-t2 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-t2 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t2 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-t2 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-t2 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-t2 .has-warning .checkbox,

#custom-html-t2 .has-warning .checkbox-inline,

#custom-html-t2 .has-warning .control-label,

#custom-html-t2 .has-warning .help-block,

#custom-html-t2 .has-warning .radio,

#custom-html-t2 .has-warning .radio-inline,

#custom-html-t2 .has-warning.checkbox label,

#custom-html-t2 .has-warning.checkbox-inline label,

#custom-html-t2 .has-warning.radio label,

#custom-html-t2 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-t2 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t2 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-t2 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-t2 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-t2 .has-error .checkbox,

#custom-html-t2 .has-error .checkbox-inline,

#custom-html-t2 .has-error .control-label,

#custom-html-t2 .has-error .help-block,

#custom-html-t2 .has-error .radio,

#custom-html-t2 .has-error .radio-inline,

#custom-html-t2 .has-error.checkbox label,

#custom-html-t2 .has-error.checkbox-inline label,

#custom-html-t2 .has-error.radio label,

#custom-html-t2 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-t2 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-t2 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-t2 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-t2 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-t2 .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-t2 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-t2 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-t2 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t2 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t2 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-t2 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t2 .form-inline .input-group .form-control,

  #custom-html-t2 .form-inline .input-group .input-group-addon,

  #custom-html-t2 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t2 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t2 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t2 .form-inline .checkbox,

  #custom-html-t2 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t2 .form-inline .checkbox label,

  #custom-html-t2 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-t2 .form-inline .checkbox input[type=checkbox],

  #custom-html-t2 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t2 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-t2 .form-horizontal .checkbox,

#custom-html-t2 .form-horizontal .checkbox-inline,

#custom-html-t2 .form-horizontal .radio,

#custom-html-t2 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-t2 .form-horizontal .checkbox,

#custom-html-t2 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-t2 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t2 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-t2 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-t2 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-t2 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-t2 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t2 .btn.active.focus,

#custom-html-t2 .btn.active:focus,

#custom-html-t2 .btn.focus,

#custom-html-t2 .btn:active.focus,

#custom-html-t2 .btn:active:focus,

#custom-html-t2 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-t2 .btn.focus,

#custom-html-t2 .btn:focus,

#custom-html-t2 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t2 .btn.active,

#custom-html-t2 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t2 .btn.disabled,

#custom-html-t2 .btn[disabled],

#custom-html-t2 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-t2 a.btn.disabled,

#custom-html-t2 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-t2 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t2 .btn-default.focus,

#custom-html-t2 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-t2 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t2 .btn-default.active,

#custom-html-t2 .btn-default:active,

#custom-html-t2 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-t2 .btn-default.active.focus,

#custom-html-t2 .btn-default.active:focus,

#custom-html-t2 .btn-default.active:hover,

#custom-html-t2 .btn-default:active.focus,

#custom-html-t2 .btn-default:active:focus,

#custom-html-t2 .btn-default:active:hover,

#custom-html-t2 .open > .dropdown-toggle.btn-default.focus,

#custom-html-t2 .open > .dropdown-toggle.btn-default:focus,

#custom-html-t2 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-t2 .btn-default.active,

#custom-html-t2 .btn-default:active,

#custom-html-t2 .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-t2 .btn-default.disabled.focus,

#custom-html-t2 .btn-default.disabled:focus,

#custom-html-t2 .btn-default.disabled:hover,

#custom-html-t2 .btn-default[disabled].focus,

#custom-html-t2 .btn-default[disabled]:focus,

#custom-html-t2 .btn-default[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-default.focus,

#custom-html-t2 fieldset[disabled] .btn-default:focus,

#custom-html-t2 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-t2 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-t2 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t2 .btn-primary.focus,

#custom-html-t2 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-t2 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t2 .btn-primary.active,

#custom-html-t2 .btn-primary:active,

#custom-html-t2 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-t2 .btn-primary.active.focus,

#custom-html-t2 .btn-primary.active:focus,

#custom-html-t2 .btn-primary.active:hover,

#custom-html-t2 .btn-primary:active.focus,

#custom-html-t2 .btn-primary:active:focus,

#custom-html-t2 .btn-primary:active:hover,

#custom-html-t2 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-t2 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-t2 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-t2 .btn-primary.active,

#custom-html-t2 .btn-primary:active,

#custom-html-t2 .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-t2 .btn-primary.disabled.focus,

#custom-html-t2 .btn-primary.disabled:focus,

#custom-html-t2 .btn-primary.disabled:hover,

#custom-html-t2 .btn-primary[disabled].focus,

#custom-html-t2 .btn-primary[disabled]:focus,

#custom-html-t2 .btn-primary[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-primary.focus,

#custom-html-t2 fieldset[disabled] .btn-primary:focus,

#custom-html-t2 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-t2 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t2 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t2 .btn-success.focus,

#custom-html-t2 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-t2 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t2 .btn-success.active,

#custom-html-t2 .btn-success:active,

#custom-html-t2 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-t2 .btn-success.active.focus,

#custom-html-t2 .btn-success.active:focus,

#custom-html-t2 .btn-success.active:hover,

#custom-html-t2 .btn-success:active.focus,

#custom-html-t2 .btn-success:active:focus,

#custom-html-t2 .btn-success:active:hover,

#custom-html-t2 .open > .dropdown-toggle.btn-success.focus,

#custom-html-t2 .open > .dropdown-toggle.btn-success:focus,

#custom-html-t2 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-t2 .btn-success.active,

#custom-html-t2 .btn-success:active,

#custom-html-t2 .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-t2 .btn-success.disabled.focus,

#custom-html-t2 .btn-success.disabled:focus,

#custom-html-t2 .btn-success.disabled:hover,

#custom-html-t2 .btn-success[disabled].focus,

#custom-html-t2 .btn-success[disabled]:focus,

#custom-html-t2 .btn-success[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-success.focus,

#custom-html-t2 fieldset[disabled] .btn-success:focus,

#custom-html-t2 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-t2 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-t2 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t2 .btn-info.focus,

#custom-html-t2 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-t2 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t2 .btn-info.active,

#custom-html-t2 .btn-info:active,

#custom-html-t2 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-t2 .btn-info.active.focus,

#custom-html-t2 .btn-info.active:focus,

#custom-html-t2 .btn-info.active:hover,

#custom-html-t2 .btn-info:active.focus,

#custom-html-t2 .btn-info:active:focus,

#custom-html-t2 .btn-info:active:hover,

#custom-html-t2 .open > .dropdown-toggle.btn-info.focus,

#custom-html-t2 .open > .dropdown-toggle.btn-info:focus,

#custom-html-t2 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-t2 .btn-info.active,

#custom-html-t2 .btn-info:active,

#custom-html-t2 .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-t2 .btn-info.disabled.focus,

#custom-html-t2 .btn-info.disabled:focus,

#custom-html-t2 .btn-info.disabled:hover,

#custom-html-t2 .btn-info[disabled].focus,

#custom-html-t2 .btn-info[disabled]:focus,

#custom-html-t2 .btn-info[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-info.focus,

#custom-html-t2 fieldset[disabled] .btn-info:focus,

#custom-html-t2 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-t2 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-t2 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t2 .btn-warning.focus,

#custom-html-t2 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-t2 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t2 .btn-warning.active,

#custom-html-t2 .btn-warning:active,

#custom-html-t2 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-t2 .btn-warning.active.focus,

#custom-html-t2 .btn-warning.active:focus,

#custom-html-t2 .btn-warning.active:hover,

#custom-html-t2 .btn-warning:active.focus,

#custom-html-t2 .btn-warning:active:focus,

#custom-html-t2 .btn-warning:active:hover,

#custom-html-t2 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-t2 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-t2 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-t2 .btn-warning.active,

#custom-html-t2 .btn-warning:active,

#custom-html-t2 .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-t2 .btn-warning.disabled.focus,

#custom-html-t2 .btn-warning.disabled:focus,

#custom-html-t2 .btn-warning.disabled:hover,

#custom-html-t2 .btn-warning[disabled].focus,

#custom-html-t2 .btn-warning[disabled]:focus,

#custom-html-t2 .btn-warning[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-warning.focus,

#custom-html-t2 fieldset[disabled] .btn-warning:focus,

#custom-html-t2 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-t2 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-t2 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t2 .btn-danger.focus,

#custom-html-t2 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-t2 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t2 .btn-danger.active,

#custom-html-t2 .btn-danger:active,

#custom-html-t2 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-t2 .btn-danger.active.focus,

#custom-html-t2 .btn-danger.active:focus,

#custom-html-t2 .btn-danger.active:hover,

#custom-html-t2 .btn-danger:active.focus,

#custom-html-t2 .btn-danger:active:focus,

#custom-html-t2 .btn-danger:active:hover,

#custom-html-t2 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-t2 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-t2 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-t2 .btn-danger.active,

#custom-html-t2 .btn-danger:active,

#custom-html-t2 .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-t2 .btn-danger.disabled.focus,

#custom-html-t2 .btn-danger.disabled:focus,

#custom-html-t2 .btn-danger.disabled:hover,

#custom-html-t2 .btn-danger[disabled].focus,

#custom-html-t2 .btn-danger[disabled]:focus,

#custom-html-t2 .btn-danger[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-danger.focus,

#custom-html-t2 fieldset[disabled] .btn-danger:focus,

#custom-html-t2 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-t2 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-t2 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-t2 .btn-link,

#custom-html-t2 .btn-link.active,

#custom-html-t2 .btn-link:active,

#custom-html-t2 .btn-link[disabled],

#custom-html-t2 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t2 .btn-link,

#custom-html-t2 .btn-link:active,

#custom-html-t2 .btn-link:focus,

#custom-html-t2 .btn-link:hover {

  border-color: transparent;

}

#custom-html-t2 .btn-link:focus,

#custom-html-t2 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-t2 .btn-link[disabled]:focus,

#custom-html-t2 .btn-link[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-link:focus,

#custom-html-t2 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-t2 .btn-group-lg > .btn,

#custom-html-t2 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t2 .btn-group-sm > .btn,

#custom-html-t2 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t2 .btn-group-xs > .btn,

#custom-html-t2 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t2 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-t2 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-t2 input[type=button].btn-block,

#custom-html-t2 input[type=reset].btn-block,

#custom-html-t2 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-t2 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-t2 .fade.in {

  opacity: 1;

}

#custom-html-t2 .collapse {

  display: none;

}

#custom-html-t2 .collapse.in {

  display: block;

}

#custom-html-t2 tr.collapse.in {

  display: table-row;

}

#custom-html-t2 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-t2 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-t2 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-t2 .dropdown,

#custom-html-t2 .dropup {

  position: relative;

}

#custom-html-t2 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-t2 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-t2 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-t2 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t2 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-t2 .dropdown-menu > li > a:focus,

#custom-html-t2 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t2 .dropdown-menu > .active > a,

#custom-html-t2 .dropdown-menu > .active > a:focus,

#custom-html-t2 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-t2 .dropdown-menu > .disabled > a,

#custom-html-t2 .dropdown-menu > .disabled > a:focus,

#custom-html-t2 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-t2 .dropdown-menu > .disabled > a:focus,

#custom-html-t2 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-t2 .open > .dropdown-menu {

  display: block;

}

#custom-html-t2 .open > a {

  outline: 0;

}

#custom-html-t2 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-t2 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-t2 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-t2 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-t2 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-t2 .dropup .caret,

#custom-html-t2 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-t2 .dropup .dropdown-menu,

#custom-html-t2 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-t2 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-t2 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-t2 .btn-group,

#custom-html-t2 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-t2 .btn-group-vertical > .btn,

#custom-html-t2 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-t2 .btn-group-vertical > .btn.active,

#custom-html-t2 .btn-group-vertical > .btn:active,

#custom-html-t2 .btn-group-vertical > .btn:focus,

#custom-html-t2 .btn-group-vertical > .btn:hover,

#custom-html-t2 .btn-group > .btn.active,

#custom-html-t2 .btn-group > .btn:active,

#custom-html-t2 .btn-group > .btn:focus,

#custom-html-t2 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-t2 .btn-group .btn + .btn,

#custom-html-t2 .btn-group .btn + .btn-group,

#custom-html-t2 .btn-group .btn-group + .btn,

#custom-html-t2 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-t2 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-t2 .btn-toolbar .btn,

#custom-html-t2 .btn-toolbar .btn-group,

#custom-html-t2 .btn-toolbar .input-group {

  float: left;

}

#custom-html-t2 .btn-toolbar > .btn,

#custom-html-t2 .btn-toolbar > .btn-group,

#custom-html-t2 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-t2 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-t2 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-t2 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t2 .btn-group > .btn:last-child:not(:first-child),

#custom-html-t2 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t2 .btn-group > .btn-group {

  float: left;

}

#custom-html-t2 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t2 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t2 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t2 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t2 .btn-group .dropdown-toggle:active,

#custom-html-t2 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-t2 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-t2 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-t2 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-t2 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t2 .btn .caret {

  margin-left: 0;

}

#custom-html-t2 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-t2 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-t2 .btn-group-vertical > .btn,

#custom-html-t2 .btn-group-vertical > .btn-group,

#custom-html-t2 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-t2 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-t2 .btn-group-vertical > .btn + .btn,

#custom-html-t2 .btn-group-vertical > .btn + .btn-group,

#custom-html-t2 .btn-group-vertical > .btn-group + .btn,

#custom-html-t2 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-t2 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t2 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t2 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t2 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-t2 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-t2 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t2 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t2 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-t2 .btn-group-justified > .btn,

#custom-html-t2 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-t2 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-t2 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-t2 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-t2 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-t2 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-t2 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-t2 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-t2 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-t2 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-t2 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-t2 .input-group-lg > .form-control,

#custom-html-t2 .input-group-lg > .input-group-addon,

#custom-html-t2 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-t2 select.input-group-lg > .form-control,

#custom-html-t2 select.input-group-lg > .input-group-addon,

#custom-html-t2 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-t2 select[multiple].input-group-lg > .form-control,

#custom-html-t2 select[multiple].input-group-lg > .input-group-addon,

#custom-html-t2 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-t2 textarea.input-group-lg > .form-control,

#custom-html-t2 textarea.input-group-lg > .input-group-addon,

#custom-html-t2 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t2 .input-group-sm > .form-control,

#custom-html-t2 .input-group-sm > .input-group-addon,

#custom-html-t2 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-t2 select.input-group-sm > .form-control,

#custom-html-t2 select.input-group-sm > .input-group-addon,

#custom-html-t2 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-t2 select[multiple].input-group-sm > .form-control,

#custom-html-t2 select[multiple].input-group-sm > .input-group-addon,

#custom-html-t2 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-t2 textarea.input-group-sm > .form-control,

#custom-html-t2 textarea.input-group-sm > .input-group-addon,

#custom-html-t2 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-t2 .input-group .form-control,

#custom-html-t2 .input-group-addon,

#custom-html-t2 .input-group-btn {

  display: table-cell;

}

#custom-html-t2 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-t2 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-t2 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-t2 .input-group-addon,

#custom-html-t2 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-t2 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-t2 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-t2 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-t2 .input-group-addon input[type=checkbox],

#custom-html-t2 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-t2 .input-group .form-control:first-child,

#custom-html-t2 .input-group-addon:first-child,

#custom-html-t2 .input-group-btn:first-child > .btn,

#custom-html-t2 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-t2 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-t2 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-t2 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-t2 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-t2 .input-group .form-control:last-child,

#custom-html-t2 .input-group-addon:last-child,

#custom-html-t2 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-t2 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-t2 .input-group-btn:last-child > .btn,

#custom-html-t2 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-t2 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t2 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-t2 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-t2 .input-group-btn > .btn {

  position: relative;

}

#custom-html-t2 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-t2 .input-group-btn > .btn:active,

#custom-html-t2 .input-group-btn > .btn:focus,

#custom-html-t2 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-t2 .input-group-btn:first-child > .btn,

#custom-html-t2 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-t2 .input-group-btn:last-child > .btn,

#custom-html-t2 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-t2 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-t2 .nav > li {

  position: relative;

  display: block;

}

#custom-html-t2 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-t2 .nav > li > a:focus,

#custom-html-t2 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t2 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-t2 .nav > li.disabled > a:focus,

#custom-html-t2 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-t2 .nav .open > a,

#custom-html-t2 .nav .open > a:focus,

#custom-html-t2 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-t2 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-t2 .nav > li > a > img {

  max-width: none;

}

#custom-html-t2 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t2 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-t2 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-t2 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-t2 .nav-tabs > li.active > a,

#custom-html-t2 .nav-tabs > li.active > a:focus,

#custom-html-t2 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-t2 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-t2 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-t2 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t2 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t2 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t2 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t2 .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t2 .nav-tabs.nav-justified > .active > a,

#custom-html-t2 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-t2 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t2 .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t2 .nav-tabs.nav-justified > .active > a,

  #custom-html-t2 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-t2 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t2 .nav-pills > li {

  float: left;

}

#custom-html-t2 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-t2 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-t2 .nav-pills > li.active > a,

#custom-html-t2 .nav-pills > li.active > a:focus,

#custom-html-t2 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-t2 .nav-stacked > li {

  float: none;

}

#custom-html-t2 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-t2 .nav-justified {

  width: 100%;

}

#custom-html-t2 .nav-justified > li {

  float: none;

}

#custom-html-t2 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-t2 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-t2 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-t2 .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-t2 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-t2 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-t2 .nav-tabs-justified > .active > a,

#custom-html-t2 .nav-tabs-justified > .active > a:focus,

#custom-html-t2 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-t2 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-t2 .nav-tabs-justified > .active > a,

  #custom-html-t2 .nav-tabs-justified > .active > a:focus,

  #custom-html-t2 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-t2 .tab-content > .tab-pane {

  display: none;

}

#custom-html-t2 .tab-content > .active {

  display: block;

}

#custom-html-t2 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t2 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-t2 .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-t2 .navbar-header {

    float: left;

  }

}

#custom-html-t2 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-t2 .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-t2 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t2 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-t2 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-t2 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t2 .navbar-fixed-top .navbar-collapse,

  #custom-html-t2 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-t2 .navbar-fixed-bottom .navbar-collapse,

#custom-html-t2 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-t2 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-t2 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-t2 .container-fluid > .navbar-collapse,

#custom-html-t2 .container-fluid > .navbar-header,

#custom-html-t2 .container > .navbar-collapse,

#custom-html-t2 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-t2 .container-fluid > .navbar-collapse,

  #custom-html-t2 .container-fluid > .navbar-header,

  #custom-html-t2 .container > .navbar-collapse,

  #custom-html-t2 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-t2 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-t2 .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-t2 .navbar-fixed-bottom,

#custom-html-t2 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-t2 .navbar-fixed-bottom,

  #custom-html-t2 .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-t2 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-t2 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-t2 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-t2 .navbar-brand:focus,

#custom-html-t2 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-t2 .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-t2 .navbar > .container .navbar-brand,

  #custom-html-t2 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-t2 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t2 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-t2 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-t2 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-t2 .navbar-toggle {

    display: none;

  }

}

#custom-html-t2 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-t2 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-t2 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-t2 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-t2 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-t2 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-t2 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t2 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-t2 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-t2 .navbar-nav > li {

    float: left;

  }

  #custom-html-t2 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-t2 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-t2 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t2 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-t2 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-t2 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-t2 .navbar-form .input-group .form-control,

  #custom-html-t2 .navbar-form .input-group .input-group-addon,

  #custom-html-t2 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-t2 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-t2 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t2 .navbar-form .checkbox,

  #custom-html-t2 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-t2 .navbar-form .checkbox label,

  #custom-html-t2 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-t2 .navbar-form .checkbox input[type=checkbox],

  #custom-html-t2 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-t2 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-t2 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-t2 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-t2 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-t2 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t2 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-t2 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-t2 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-t2 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-t2 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-t2 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-t2 .navbar-left {

    float: left !important;

  }

  #custom-html-t2 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-t2 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-t2 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-t2 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-t2 .navbar-default .navbar-brand:focus,

#custom-html-t2 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-t2 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-t2 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-t2 .navbar-default .navbar-nav > li > a:focus,

#custom-html-t2 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-t2 .navbar-default .navbar-nav > .active > a,

#custom-html-t2 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-t2 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-t2 .navbar-default .navbar-nav > .disabled > a,

#custom-html-t2 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-t2 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-t2 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-t2 .navbar-default .navbar-toggle:focus,

#custom-html-t2 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-t2 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-t2 .navbar-default .navbar-collapse,

#custom-html-t2 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-t2 .navbar-default .navbar-nav > .open > a,

#custom-html-t2 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-t2 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t2 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-t2 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-t2 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-t2 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-t2 .navbar-default .btn-link:focus,

#custom-html-t2 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-t2 .navbar-default .btn-link[disabled]:focus,

#custom-html-t2 .navbar-default .btn-link[disabled]:hover,

#custom-html-t2 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-t2 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-t2 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-t2 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-t2 .navbar-inverse .navbar-brand:focus,

#custom-html-t2 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t2 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-t2 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-t2 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-t2 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-t2 .navbar-inverse .navbar-nav > .active > a,

#custom-html-t2 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-t2 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-t2 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-t2 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-t2 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-t2 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-t2 .navbar-inverse .navbar-toggle:focus,

#custom-html-t2 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-t2 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-t2 .navbar-inverse .navbar-collapse,

#custom-html-t2 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-t2 .navbar-inverse .navbar-nav > .open > a,

#custom-html-t2 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-t2 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-t2 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-t2 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-t2 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-t2 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-t2 .navbar-inverse .btn-link:focus,

#custom-html-t2 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-t2 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-t2 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-t2 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-t2 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-t2 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-t2 .breadcrumb > li {

  display: inline-block;

}

#custom-html-t2 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-t2 .breadcrumb > .active {

  color: #777777;

}

#custom-html-t2 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-t2 .pagination > li {

  display: inline;

}

#custom-html-t2 .pagination > li > a,

#custom-html-t2 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t2 .pagination > li:first-child > a,

#custom-html-t2 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t2 .pagination > li:last-child > a,

#custom-html-t2 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-t2 .pagination > li > a:focus,

#custom-html-t2 .pagination > li > a:hover,

#custom-html-t2 .pagination > li > span:focus,

#custom-html-t2 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-t2 .pagination > .active > a,

#custom-html-t2 .pagination > .active > a:focus,

#custom-html-t2 .pagination > .active > a:hover,

#custom-html-t2 .pagination > .active > span,

#custom-html-t2 .pagination > .active > span:focus,

#custom-html-t2 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-t2 .pagination > .disabled > a,

#custom-html-t2 .pagination > .disabled > a:focus,

#custom-html-t2 .pagination > .disabled > a:hover,

#custom-html-t2 .pagination > .disabled > span,

#custom-html-t2 .pagination > .disabled > span:focus,

#custom-html-t2 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-t2 .pagination-lg > li > a,

#custom-html-t2 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-t2 .pagination-lg > li:first-child > a,

#custom-html-t2 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-t2 .pagination-lg > li:last-child > a,

#custom-html-t2 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-t2 .pagination-sm > li > a,

#custom-html-t2 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t2 .pagination-sm > li:first-child > a,

#custom-html-t2 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t2 .pagination-sm > li:last-child > a,

#custom-html-t2 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-t2 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-t2 .pager li {

  display: inline;

}

#custom-html-t2 .pager li > a,

#custom-html-t2 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-t2 .pager li > a:focus,

#custom-html-t2 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-t2 .pager .next > a,

#custom-html-t2 .pager .next > span {

  float: right;

}

#custom-html-t2 .pager .previous > a,

#custom-html-t2 .pager .previous > span {

  float: left;

}

#custom-html-t2 .pager .disabled > a,

#custom-html-t2 .pager .disabled > a:focus,

#custom-html-t2 .pager .disabled > a:hover,

#custom-html-t2 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-t2 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-t2 a.label:focus,

#custom-html-t2 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t2 .label:empty {

  display: none;

}

#custom-html-t2 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-t2 .label-default {

  background-color: #777777;

}

#custom-html-t2 .label-default[href]:focus,

#custom-html-t2 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-t2 .label-primary {

  background-color: #337ab7;

}

#custom-html-t2 .label-primary[href]:focus,

#custom-html-t2 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-t2 .label-success {

  background-color: #5cb85c;

}

#custom-html-t2 .label-success[href]:focus,

#custom-html-t2 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-t2 .label-info {

  background-color: #5bc0de;

}

#custom-html-t2 .label-info[href]:focus,

#custom-html-t2 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-t2 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-t2 .label-warning[href]:focus,

#custom-html-t2 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-t2 .label-danger {

  background-color: #d9534f;

}

#custom-html-t2 .label-danger[href]:focus,

#custom-html-t2 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-t2 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-t2 .badge:empty {

  display: none;

}

#custom-html-t2 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-t2 .btn-group-xs > .btn .badge,

#custom-html-t2 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-t2 a.badge:focus,

#custom-html-t2 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-t2 .list-group-item.active > .badge,

#custom-html-t2 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t2 .list-group-item > .badge {

  float: right;

}

#custom-html-t2 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-t2 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-t2 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-t2 .jumbotron .h1,

#custom-html-t2 .jumbotron h1 {

  color: inherit;

}

#custom-html-t2 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-t2 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-t2 .container .jumbotron,

#custom-html-t2 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-t2 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-t2 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-t2 .container .jumbotron,

  #custom-html-t2 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-t2 .jumbotron .h1,

  #custom-html-t2 .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-t2 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-t2 .thumbnail a > img,

#custom-html-t2 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t2 a.thumbnail.active,

#custom-html-t2 a.thumbnail:focus,

#custom-html-t2 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-t2 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-t2 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-t2 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-t2 .alert .alert-link {

  font-weight: 700;

}

#custom-html-t2 .alert > p,

#custom-html-t2 .alert > ul {

  margin-bottom: 0;

}

#custom-html-t2 .alert > p + p {

  margin-top: 5px;

}

#custom-html-t2 .alert-dismissable,

#custom-html-t2 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-t2 .alert-dismissable .close,

#custom-html-t2 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-t2 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t2 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-t2 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-t2 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t2 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-t2 .alert-info .alert-link {

  color: #000000;

}

#custom-html-t2 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t2 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-t2 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-t2 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t2 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-t2 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-t2 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-t2 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-t2 .progress-bar-striped,

#custom-html-t2 .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-t2 .progress-bar.active,

#custom-html-t2 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-t2 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-t2 .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t2 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-t2 .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t2 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-t2 .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t2 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-t2 .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-t2 .media {

  margin-top: 15px;

}

#custom-html-t2 .media:first-child {

  margin-top: 0;

}

#custom-html-t2 .media,

#custom-html-t2 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-t2 .media-body {

  width: 10000px;

}

#custom-html-t2 .media-object {

  display: block;

}

#custom-html-t2 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-t2 .media-right,

#custom-html-t2 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-t2 .media-left,

#custom-html-t2 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-t2 .media-body,

#custom-html-t2 .media-left,

#custom-html-t2 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-t2 .media-middle {

  vertical-align: middle;

}

#custom-html-t2 .media-bottom {

  vertical-align: bottom;

}

#custom-html-t2 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t2 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-t2 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-t2 .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t2 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-t2 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t2 a.list-group-item,

#custom-html-t2 button.list-group-item {

  color: #555555;

}

#custom-html-t2 a.list-group-item .list-group-item-heading,

#custom-html-t2 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-t2 a.list-group-item:focus,

#custom-html-t2 a.list-group-item:hover,

#custom-html-t2 button.list-group-item:focus,

#custom-html-t2 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-t2 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-t2 .list-group-item.disabled,

#custom-html-t2 .list-group-item.disabled:focus,

#custom-html-t2 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-t2 .list-group-item.disabled .list-group-item-heading,

#custom-html-t2 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-t2 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-t2 .list-group-item.disabled .list-group-item-text,

#custom-html-t2 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-t2 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-t2 .list-group-item.active,

#custom-html-t2 .list-group-item.active:focus,

#custom-html-t2 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t2 .list-group-item.active .list-group-item-heading,

#custom-html-t2 .list-group-item.active .list-group-item-heading > .small,

#custom-html-t2 .list-group-item.active .list-group-item-heading > small,

#custom-html-t2 .list-group-item.active:focus .list-group-item-heading,

#custom-html-t2 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-t2 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-t2 .list-group-item.active:hover .list-group-item-heading,

#custom-html-t2 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-t2 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-t2 .list-group-item.active .list-group-item-text,

#custom-html-t2 .list-group-item.active:focus .list-group-item-text,

#custom-html-t2 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-t2 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-t2 a.list-group-item-success,

#custom-html-t2 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-t2 a.list-group-item-success .list-group-item-heading,

#custom-html-t2 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-t2 a.list-group-item-success:focus,

#custom-html-t2 a.list-group-item-success:hover,

#custom-html-t2 button.list-group-item-success:focus,

#custom-html-t2 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-t2 a.list-group-item-success.active,

#custom-html-t2 a.list-group-item-success.active:focus,

#custom-html-t2 a.list-group-item-success.active:hover,

#custom-html-t2 button.list-group-item-success.active,

#custom-html-t2 button.list-group-item-success.active:focus,

#custom-html-t2 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-t2 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-t2 a.list-group-item-info,

#custom-html-t2 button.list-group-item-info {

  color: #31708f;

}

#custom-html-t2 a.list-group-item-info .list-group-item-heading,

#custom-html-t2 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-t2 a.list-group-item-info:focus,

#custom-html-t2 a.list-group-item-info:hover,

#custom-html-t2 button.list-group-item-info:focus,

#custom-html-t2 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-t2 a.list-group-item-info.active,

#custom-html-t2 a.list-group-item-info.active:focus,

#custom-html-t2 a.list-group-item-info.active:hover,

#custom-html-t2 button.list-group-item-info.active,

#custom-html-t2 button.list-group-item-info.active:focus,

#custom-html-t2 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-t2 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-t2 a.list-group-item-warning,

#custom-html-t2 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-t2 a.list-group-item-warning .list-group-item-heading,

#custom-html-t2 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-t2 a.list-group-item-warning:focus,

#custom-html-t2 a.list-group-item-warning:hover,

#custom-html-t2 button.list-group-item-warning:focus,

#custom-html-t2 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-t2 a.list-group-item-warning.active,

#custom-html-t2 a.list-group-item-warning.active:focus,

#custom-html-t2 a.list-group-item-warning.active:hover,

#custom-html-t2 button.list-group-item-warning.active,

#custom-html-t2 button.list-group-item-warning.active:focus,

#custom-html-t2 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-t2 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-t2 a.list-group-item-danger,

#custom-html-t2 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-t2 a.list-group-item-danger .list-group-item-heading,

#custom-html-t2 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-t2 a.list-group-item-danger:focus,

#custom-html-t2 a.list-group-item-danger:hover,

#custom-html-t2 button.list-group-item-danger:focus,

#custom-html-t2 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-t2 a.list-group-item-danger.active,

#custom-html-t2 a.list-group-item-danger.active:focus,

#custom-html-t2 a.list-group-item-danger.active:hover,

#custom-html-t2 button.list-group-item-danger.active,

#custom-html-t2 button.list-group-item-danger.active:focus,

#custom-html-t2 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-t2 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-t2 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-t2 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t2 .panel-body {

  padding: 15px;

}

#custom-html-t2 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-t2 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-t2 .panel-title > .small,

#custom-html-t2 .panel-title > .small > a,

#custom-html-t2 .panel-title > a,

#custom-html-t2 .panel-title > small,

#custom-html-t2 .panel-title > small > a {

  color: inherit;

}

#custom-html-t2 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t2 .panel > .list-group,

#custom-html-t2 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-t2 .panel > .list-group .list-group-item,

#custom-html-t2 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-t2 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-t2 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-t2 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t2 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-t2 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-t2 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-t2 .panel > .panel-collapse > .table,

#custom-html-t2 .panel > .table,

#custom-html-t2 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-t2 .panel > .panel-collapse > .table caption,

#custom-html-t2 .panel > .table caption,

#custom-html-t2 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-t2 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-t2 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-t2 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-t2 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-t2 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-t2 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-t2 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t2 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-t2 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-t2 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-t2 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-t2 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-t2 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-t2 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-t2 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-t2 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-t2 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-t2 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-t2 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t2 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-t2 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-t2 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-t2 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-t2 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-t2 .panel > .panel-body + .table,

#custom-html-t2 .panel > .panel-body + .table-responsive,

#custom-html-t2 .panel > .table + .panel-body,

#custom-html-t2 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t2 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-t2 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-t2 .panel > .table-bordered,

#custom-html-t2 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-t2 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-t2 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-t2 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t2 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t2 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-t2 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-t2 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-t2 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-t2 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t2 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t2 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-t2 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-t2 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-t2 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-t2 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-t2 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-t2 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-t2 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-t2 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-t2 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-t2 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-t2 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t2 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-t2 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-t2 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-t2 .panel-group {

  margin-bottom: 20px;

}

#custom-html-t2 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-t2 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-t2 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-t2 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-t2 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-t2 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-t2 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-t2 .panel-default {

  border-color: #dddddd;

}

#custom-html-t2 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-t2 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-t2 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-t2 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-t2 .panel-primary {

  border-color: #337ab7;

}

#custom-html-t2 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-t2 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-t2 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-t2 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-t2 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-t2 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-t2 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-t2 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-t2 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-t2 .panel-info {

  border-color: #bce8f1;

}

#custom-html-t2 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-t2 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-t2 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-t2 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-t2 .panel-warning {

  border-color: #faebcc;

}

#custom-html-t2 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-t2 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-t2 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-t2 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-t2 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-t2 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-t2 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-t2 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-t2 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-t2 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-t2 .embed-responsive .embed-responsive-item,

#custom-html-t2 .embed-responsive embed,

#custom-html-t2 .embed-responsive iframe,

#custom-html-t2 .embed-responsive object,

#custom-html-t2 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-t2 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-t2 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-t2 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-t2 .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-t2 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-t2 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-t2 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-t2 .close:focus,

#custom-html-t2 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-t2 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-t2 .modal-open {

  overflow: hidden;

}

#custom-html-t2 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-t2 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-t2 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-t2 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-t2 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-t2 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-t2 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-t2 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-t2 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-t2 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-t2 .modal-header .close {

  margin-top: -2px;

}

#custom-html-t2 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-t2 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-t2 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-t2 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-t2 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-t2 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-t2 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-t2 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-t2 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-t2 .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-t2 .modal-lg {

    width: 900px;

  }

}

#custom-html-t2 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-t2 .tooltip.in {

  opacity: 0.9;

}

#custom-html-t2 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-t2 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-t2 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-t2 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-t2 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-t2 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t2 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t2 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t2 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-t2 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-t2 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-t2 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t2 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t2 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-t2 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-t2 .popover.top {

  margin-top: -10px;

}

#custom-html-t2 .popover.right {

  margin-left: 10px;

}

#custom-html-t2 .popover.bottom {

  margin-top: 10px;

}

#custom-html-t2 .popover.left {

  margin-left: -10px;

}

#custom-html-t2 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-t2 .popover-content {

  padding: 9px 14px;

}

#custom-html-t2 .popover > .arrow,

#custom-html-t2 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-t2 .popover > .arrow {

  border-width: 11px;

}

#custom-html-t2 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-t2 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-t2 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-t2 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-t2 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-t2 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t2 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-t2 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-t2 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-t2 .carousel {

  position: relative;

}

#custom-html-t2 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-t2 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-t2 .carousel-inner > .item > a > img,

#custom-html-t2 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-t2 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-t2 .carousel-inner > .item.active.right,

  #custom-html-t2 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-t2 .carousel-inner > .item.active.left,

  #custom-html-t2 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-t2 .carousel-inner > .item.active,

  #custom-html-t2 .carousel-inner > .item.next.left,

  #custom-html-t2 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-t2 .carousel-inner > .active,

#custom-html-t2 .carousel-inner > .next,

#custom-html-t2 .carousel-inner > .prev {

  display: block;

}

#custom-html-t2 .carousel-inner > .active {

  left: 0;

}

#custom-html-t2 .carousel-inner > .next,

#custom-html-t2 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-t2 .carousel-inner > .next {

  left: 100%;

}

#custom-html-t2 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-t2 .carousel-inner > .next.left,

#custom-html-t2 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-t2 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-t2 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-t2 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-t2 .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-t2 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-t2 .carousel-control:focus,

#custom-html-t2 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-t2 .carousel-control .glyphicon-chevron-left,

#custom-html-t2 .carousel-control .glyphicon-chevron-right,

#custom-html-t2 .carousel-control .icon-next,

#custom-html-t2 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-t2 .carousel-control .glyphicon-chevron-left,

#custom-html-t2 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-t2 .carousel-control .glyphicon-chevron-right,

#custom-html-t2 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-t2 .carousel-control .icon-next,

#custom-html-t2 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-t2 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-t2 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-t2 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-t2 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-t2 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-t2 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-t2 .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-t2 .carousel-control .glyphicon-chevron-left,

  #custom-html-t2 .carousel-control .glyphicon-chevron-right,

  #custom-html-t2 .carousel-control .icon-next,

  #custom-html-t2 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-t2 .carousel-control .glyphicon-chevron-left,

  #custom-html-t2 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-t2 .carousel-control .glyphicon-chevron-right,

  #custom-html-t2 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-t2 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-t2 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-t2 .btn-group-vertical > .btn-group:after,

#custom-html-t2 .btn-group-vertical > .btn-group:before,

#custom-html-t2 .btn-toolbar:after,

#custom-html-t2 .btn-toolbar:before,

#custom-html-t2 .clearfix:after,

#custom-html-t2 .clearfix:before,

#custom-html-t2 .container-fluid:after,

#custom-html-t2 .container-fluid:before,

#custom-html-t2 .container:after,

#custom-html-t2 .container:before,

#custom-html-t2 .dl-horizontal dd:after,

#custom-html-t2 .dl-horizontal dd:before,

#custom-html-t2 .form-horizontal .form-group:after,

#custom-html-t2 .form-horizontal .form-group:before,

#custom-html-t2 .modal-footer:after,

#custom-html-t2 .modal-footer:before,

#custom-html-t2 .modal-header:after,

#custom-html-t2 .modal-header:before,

#custom-html-t2 .nav:after,

#custom-html-t2 .nav:before,

#custom-html-t2 .navbar-collapse:after,

#custom-html-t2 .navbar-collapse:before,

#custom-html-t2 .navbar-header:after,

#custom-html-t2 .navbar-header:before,

#custom-html-t2 .navbar:after,

#custom-html-t2 .navbar:before,

#custom-html-t2 .pager:after,

#custom-html-t2 .pager:before,

#custom-html-t2 .panel-body:after,

#custom-html-t2 .panel-body:before,

#custom-html-t2 .row:after,

#custom-html-t2 .row:before {

  display: table;

  content: " ";

}

#custom-html-t2 .btn-group-vertical > .btn-group:after,

#custom-html-t2 .btn-toolbar:after,

#custom-html-t2 .clearfix:after,

#custom-html-t2 .container-fluid:after,

#custom-html-t2 .container:after,

#custom-html-t2 .dl-horizontal dd:after,

#custom-html-t2 .form-horizontal .form-group:after,

#custom-html-t2 .modal-footer:after,

#custom-html-t2 .modal-header:after,

#custom-html-t2 .nav:after,

#custom-html-t2 .navbar-collapse:after,

#custom-html-t2 .navbar-header:after,

#custom-html-t2 .navbar:after,

#custom-html-t2 .pager:after,

#custom-html-t2 .panel-body:after,

#custom-html-t2 .row:after {

  clear: both;

}

#custom-html-t2 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-t2 .pull-right {

  float: right !important;

}

#custom-html-t2 .pull-left {

  float: left !important;

}

#custom-html-t2 .hide {

  display: none !important;

}

#custom-html-t2 .show {

  display: block !important;

}

#custom-html-t2 .invisible {

  visibility: hidden;

}

#custom-html-t2 .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-t2 .hidden {

  display: none !important;

}

#custom-html-t2 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-t2 .visible-lg,

#custom-html-t2 .visible-md,

#custom-html-t2 .visible-sm,

#custom-html-t2 .visible-xs {

  display: none !important;

}

#custom-html-t2 .visible-lg-block,

#custom-html-t2 .visible-lg-inline,

#custom-html-t2 .visible-lg-inline-block,

#custom-html-t2 .visible-md-block,

#custom-html-t2 .visible-md-inline,

#custom-html-t2 .visible-md-inline-block,

#custom-html-t2 .visible-sm-block,

#custom-html-t2 .visible-sm-inline,

#custom-html-t2 .visible-sm-inline-block,

#custom-html-t2 .visible-xs-block,

#custom-html-t2 .visible-xs-inline,

#custom-html-t2 .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-t2 .visible-xs {

    display: block !important;

  }

  #custom-html-t2 table.visible-xs {

    display: table !important;

  }

  #custom-html-t2 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-t2 td.visible-xs,

  #custom-html-t2 th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t2 .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t2 .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t2 .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t2 .visible-sm {

    display: block !important;

  }

  #custom-html-t2 table.visible-sm {

    display: table !important;

  }

  #custom-html-t2 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-t2 td.visible-sm,

  #custom-html-t2 th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t2 .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t2 .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t2 .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t2 .visible-md {

    display: block !important;

  }

  #custom-html-t2 table.visible-md {

    display: table !important;

  }

  #custom-html-t2 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-t2 td.visible-md,

  #custom-html-t2 th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t2 .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t2 .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t2 .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t2 .visible-lg {

    display: block !important;

  }

  #custom-html-t2 table.visible-lg {

    display: table !important;

  }

  #custom-html-t2 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-t2 td.visible-lg,

  #custom-html-t2 th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t2 .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t2 .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t2 .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-t2 .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-t2 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-t2 .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-t2 .hidden-lg {

    display: none !important;

  }

}

#custom-html-t2 .visible-print {

  display: none !important;

}

@media print {

  #custom-html-t2 .visible-print {

    display: block !important;

  }

  #custom-html-t2 table.visible-print {

    display: table !important;

  }

  #custom-html-t2 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-t2 td.visible-print,

  #custom-html-t2 th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-t2 .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-t2 .visible-print-block {

    display: block !important;

  }

}

#custom-html-t2 .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-t2 .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-t2 .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-t2 .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-t2 .hidden-print {

    display: none !important;

  }

}

#custom-html-t2 .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-t2 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-t2 .intl-tel-input .hide {

  display: none;

}

#custom-html-t2 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-t2 .intl-tel-input input,

#custom-html-t2 .intl-tel-input input[type=tel],

#custom-html-t2 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-t2 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-t2 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-t2 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-t2 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-t2 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-t2 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-t2 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-t2 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-t2 .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-t2 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-t2 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-t2 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-t2 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t2 .intl-tel-input .country-list .country-name,

#custom-html-t2 .intl-tel-input .country-list .dial-code,

#custom-html-t2 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-t2 .intl-tel-input .country-list .country-name,

#custom-html-t2 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-t2 .intl-tel-input.allow-dropdown input,

#custom-html-t2 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-t2 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-t2 .intl-tel-input.separate-dial-code input,

#custom-html-t2 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-t2 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-t2 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-t2 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-t2 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-t2 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-t2 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-t2 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-t2 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-t2 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-t2 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-t2 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-t2 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-t2 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-t2 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-t2 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-t2 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-t2 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-t2 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-t2 .iti-flag {

  width: 20px;

}

#custom-html-t2 .iti-flag.be {

  width: 18px;

}

#custom-html-t2 .iti-flag.ch {

  width: 15px;

}

#custom-html-t2 .iti-flag.mc {

  width: 19px;

}

#custom-html-t2 .iti-flag.ne {

  width: 18px;

}

#custom-html-t2 .iti-flag.np {

  width: 13px;

}

#custom-html-t2 .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t2 .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-t2 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-t2 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-t2 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-t2 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-t2 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-t2 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-t2 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-t2 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-t2 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-t2 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-t2 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-t2 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-t2 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-t2 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-t2 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-t2 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-t2 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-t2 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-t2 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-t2 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-t2 .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-t2 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-t2 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-t2 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-t2 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-t2 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-t2 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-t2 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-t2 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-t2 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-t2 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-t2 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-t2 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-t2 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-t2 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-t2 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-t2 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-t2 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-t2 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-t2 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-t2 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-t2 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-t2 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-t2 .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-t2 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-t2 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-t2 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-t2 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-t2 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-t2 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-t2 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-t2 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-t2 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-t2 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-t2 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-t2 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-t2 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-t2 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-t2 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-t2 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-t2 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-t2 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-t2 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-t2 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-t2 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-t2 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-t2 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-t2 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-t2 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-t2 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-t2 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-t2 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-t2 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-t2 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-t2 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-t2 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-t2 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-t2 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-t2 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-t2 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-t2 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-t2 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-t2 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-t2 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-t2 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-t2 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-t2 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-t2 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-t2 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-t2 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-t2 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-t2 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-t2 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-t2 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-t2 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-t2 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-t2 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-t2 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-t2 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-t2 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-t2 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-t2 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-t2 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-t2 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-t2 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-t2 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-t2 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-t2 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-t2 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-t2 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-t2 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-t2 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-t2 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-t2 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-t2 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-t2 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-t2 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-t2 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-t2 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-t2 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-t2 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-t2 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-t2 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-t2 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-t2 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-t2 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-t2 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-t2 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-t2 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-t2 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-t2 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-t2 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-t2 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-t2 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-t2 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-t2 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-t2 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-t2 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-t2 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-t2 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-t2 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-t2 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-t2 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-t2 .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-t2 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-t2 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-t2 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-t2 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-t2 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-t2 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-t2 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-t2 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-t2 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-t2 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-t2 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-t2 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-t2 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-t2 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-t2 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-t2 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-t2 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-t2 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-t2 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-t2 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-t2 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-t2 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-t2 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-t2 .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-t2 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-t2 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-t2 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-t2 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-t2 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-t2 .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-t2 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-t2 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-t2 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-t2 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-t2 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-t2 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-t2 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-t2 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-t2 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-t2 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-t2 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-t2 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-t2 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-t2 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-t2 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-t2 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-t2 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-t2 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-t2 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-t2 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-t2 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-t2 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-t2 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-t2 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-t2 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-t2 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-t2 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-t2 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-t2 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-t2 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-t2 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-t2 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-t2 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-t2 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-t2 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-t2 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-t2 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-t2 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-t2 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-t2 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-t2 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-t2 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-t2 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-t2 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-t2 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-t2 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-t2 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-t2 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-t2 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-t2 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-t2 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-t2 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-t2 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-t2 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-t2 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-t2 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-t2 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-t2 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-t2 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-t2 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-t2 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-t2 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-t2 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-t2 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-t2 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-t2 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-t2 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-t2 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-t2 .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-t2 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-t2 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-t2 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-t2 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-t2 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-t2 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-t2 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-t2 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-t2 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-t2 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-t2 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-t2 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-t2 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-t2 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-t2 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-t2 .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-t2 .iti-flag.np {

  background-color: transparent;

}

#custom-html-t2 body,

#custom-html-t2 button,

#custom-html-t2 input,

#custom-html-t2 select,

#custom-html-t2 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-t2 h1,

#custom-html-t2 h2,

#custom-html-t2 h3,

#custom-html-t2 h4,

#custom-html-t2 h5,

#custom-html-t2 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-t2 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-t2 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-t2 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-t2 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-t2 .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-t2 .navbar-main .navbar-nav > .active > a,

#custom-html-t2 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-t2 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-t2 .navbar-main .navbar-nav > .open > a,

#custom-html-t2 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-t2 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-t2 .navbar-main .navbar-nav > li > a:focus,

#custom-html-t2 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-t2 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-t2 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-t2 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-t2 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-t2 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-t2 .navbar-header {

    float: none;

  }

  #custom-html-t2 .navbar-left,

  #custom-html-t2 .navbar-right {

    float: none !important;

  }

  #custom-html-t2 .navbar-toggle {

    display: block;

  }

  #custom-html-t2 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-t2 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-t2 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-t2 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-t2 .navbar-nav > li {

    float: none;

  }

  #custom-html-t2 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-t2 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-t2 .panel {

  font-size: 0.9em;

}

#custom-html-t2 .list-group {

  font-size: 0.9em;

}

#custom-html-t2 .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-t2 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-t2 a.list-group-item.active,

#custom-html-t2 a.list-group-item.active:focus,

#custom-html-t2 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t2 .pagination {

  font-size: 0.8em;

}

#custom-html-t2 .pagination > .active > a,

#custom-html-t2 .pagination > .active > a:focus,

#custom-html-t2 .pagination > .active > a:hover,

#custom-html-t2 .pagination > .active > span,

#custom-html-t2 .pagination > .active > span:focus,

#custom-html-t2 .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-t2 .dropdown-menu > li > a:focus,

#custom-html-t2 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-t2 .label {

  border-radius: 0;

}

#custom-html-t2 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-t2 .list-group-item {

  padding: 7px 15px;

}

#custom-html-t2 .panel-body {

  padding: 10px 15px;

}

#custom-html-t2 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-t2 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-t2 .btn {

  overflow: hidden;

}

#custom-html-t2 body,

#custom-html-t2 html {

  height: 100%;

}

#custom-html-t2 body {

  background-color: #f8f8f8;

}

#custom-html-t2 h1,

#custom-html-t2 h2,

#custom-html-t2 h3,

#custom-html-t2 h4,

#custom-html-t2 h5,

#custom-html-t2 h6 {

  font-weight: 400;

}

#custom-html-t2 a {

  color: #005588;

}

#custom-html-t2 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-t2 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-t2 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-t2 section#header .search {

  margin: 20px 0;

}

#custom-html-t2 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-t2 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-t2 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-t2 section#main-content {

  margin-bottom: 60px;

}

#custom-html-t2 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-t2 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-t2 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-t2 section#footer {

    line-height: 32px;

  }

}

#custom-html-t2 section#footer .back-to-top {

  float: right;

}

#custom-html-t2 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-t2 .adminreturndiv {

  display: none !important;

}

#custom-html-t2 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-t2 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t2 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-t2 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-t2 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-t2 .navbar-main .navbar-toggle:focus,

#custom-html-t2 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-t2 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-t2 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-t2 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-t2 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-t2 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-t2 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-t2 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-t2 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-t2 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-t2 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-t2 .h1,

  #custom-html-t2 h1 {

    font-size: 26px;

  }

  #custom-html-t2 .h2,

  #custom-html-t2 h2 {

    font-size: 20px;

  }

  #custom-html-t2 .h3,

  #custom-html-t2 h3 {

    font-size: 16px;

  }

  #custom-html-t2 .h4,

  #custom-html-t2 h4 {

    font-size: 14px;

  }

  #custom-html-t2 .h5,

  #custom-html-t2 h5 {

    font-size: 12px;

  }

  #custom-html-t2 .h6,

  #custom-html-t2 h6 {

    font-size: 11px;

  }

  #custom-html-t2 div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-t2 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-t2 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-t2 .margin-10 {

  margin: 10px;

}

#custom-html-t2 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-t2 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-t2 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-t2 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-t2 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-t2 .input-inline {

  display: inline-block;

}

#custom-html-t2 .input-inline-100 {

  width: 100px;

}

#custom-html-t2 .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-t2 .pull-md-left {

    float: left;

  }

  #custom-html-t2 .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-t2 .pull-sm-left {

    float: left;

  }

  #custom-html-t2 .pull-sm-right {

    float: right;

  }

  #custom-html-t2 .text-right-sm {

    text-align: right;

  }

}

#custom-html-t2 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-t2 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-t2 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-t2 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-t2 .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-t2 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-t2 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-t2 i.icon-rss {

  color: #ff6600;

}

#custom-html-t2 section#main-menu {

  background-color: #000000;

}

#custom-html-t2 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-t2 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-t2 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-t2 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-t2 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-t2 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-t2 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-t2 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-t2 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-t2 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-t2 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-t2 section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-t2 section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-t2 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-t2 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t2 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-t2 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-t2 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-t2 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-t2 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-t2 .home-shortcuts li span {

  display: none;

}

#custom-html-t2 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-t2 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-t2 .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-t2 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-t2 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-t2 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-t2 .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-t2 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-t2 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-t2 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-t2 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-t2 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-t2 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-t2 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-t2 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-t2 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t2 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-t2 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-t2 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-t2 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-t2 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t2 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-t2 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-t2 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-t2 .tiles .tile a {

  text-decoration: none;

}

#custom-html-t2 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-t2 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-t2 .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-t2 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-t2 .tiles .tile:nth-child(1),

  #custom-html-t2 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-t2 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-t2 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-t2 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-t2 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-t2 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-t2 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-t2 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-t2 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-t2 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-t2 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-t2 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-t2 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-t2 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-t2 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-t2 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-t2 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-t2 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-t2 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-t2 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-t2 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-t2 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-t2 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-t2 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-t2 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-t2 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-t2 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-t2 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-t2 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-t2 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-t2 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-t2 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-t2 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-t2 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-t2 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-t2 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-t2 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-t2 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-t2 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-t2 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-t2 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-t2 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-t2 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-t2 ul.top-nav > li,

#custom-html-t2 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-t2 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-t2 ul.top-nav > li:active > a,

#custom-html-t2 ul.top-nav > li:focus > a,

#custom-html-t2 ul.top-nav > li:hover > a,

#custom-html-t2 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-t2 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-t2 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-t2 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-t2 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-t2 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-t2 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-t2 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-t2 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-t2 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-t2 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-t2 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-t2 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-t2 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-t2 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-t2 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-t2 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-t2 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-t2 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-t2 .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-t2 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-t2 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-t2 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-t2 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-t2 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-t2 .domain-check-availability {

  width: 100px;

}

#custom-html-t2 .domain-step-options {

  min-height: 300px;

}

#custom-html-t2 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t2 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-t2 .domain-checker-invalid,

#custom-html-t2 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-t2 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-t2 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-t2 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-t2 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-t2 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-t2 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-t2 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-t2 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t2 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-t2 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-t2 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-t2 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-t2 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-t2 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-t2 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-t2 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-t2 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-t2 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t2 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-t2 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-t2 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-t2 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-t2 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-t2 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-t2 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-t2 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-t2 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-t2 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-t2 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-t2 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-t2 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-t2 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-t2 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-t2 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-t2 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-t2 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-t2 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-t2 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-t2 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-t2 div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-t2 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-t2 .product-status-pending {

  background-color: #f89406;

}

#custom-html-t2 .product-status-active {

  background-color: #46a546;

}

#custom-html-t2 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-t2 .product-status-cancelled,

#custom-html-t2 .product-status-terminated {

  background-color: #666666;

}

#custom-html-t2 .product-status-fraud {

  background-color: #000000;

}

#custom-html-t2 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-t2 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t2 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-t2 .ssl-inactive {

  cursor: pointer;

}

#custom-html-t2 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-t2 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-t2 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-t2 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-t2 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-t2 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-t2 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-t2 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-t2 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-t2 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-t2 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-t2 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-t2 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-t2 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-t2 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-t2 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-t2 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-t2 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-t2 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-t2 .pagination > li > a,

#custom-html-t2 .pagination > li > span {

  color: #444444;

}

#custom-html-t2 .pagination > .active > a,

#custom-html-t2 .pagination > .active > a:focus,

#custom-html-t2 .pagination > .active > a:hover,

#custom-html-t2 .pagination > .active > span,

#custom-html-t2 .pagination > .active > span:focus,

#custom-html-t2 .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-t2 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-t2 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-t2 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-t2 .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-t2 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-t2 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-t2 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-t2 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-t2 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-t2 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-t2 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-t2 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-t2 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-t2 .status-pending {

  color: #d9534f;

}

#custom-html-t2 .status-pending.transfer {

  color: #a68500;

}

#custom-html-t2 .status-active,

#custom-html-t2 .status-completed,

#custom-html-t2 .status-open {

  color: #3fad46;

}

#custom-html-t2 .status-suspended {

  color: #f0ad4e;

}

#custom-html-t2 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t2 .status-answered,

#custom-html-t2 .status-fraud {

  color: #000000;

}

#custom-html-t2 .status-expired,

#custom-html-t2 .status-transferred.away {

  color: #004258;

}

#custom-html-t2 .status-cancelled {

  color: #9fa29a;

}

#custom-html-t2 .status-terminated {

  color: #666666;

}

#custom-html-t2 .status-onhold {

  color: #224488;

}

#custom-html-t2 .status-inprogress {

  color: #cc0000;

}

#custom-html-t2 .status-closed {

  color: #888888;

}

#custom-html-t2 .status-paid {

  color: #498302;

}

#custom-html-t2 .status-unpaid {

  color: #ed3e48;

}

#custom-html-t2 .status-cancelled {

  color: #87939f;

}

#custom-html-t2 .status-collections {

  color: #9a141e;

}

#custom-html-t2 .status-refunded {

  color: #319fc3;

}

#custom-html-t2 .status-customer-reply {

  color: #ff6600;

}

#custom-html-t2 .status-delivered {

  color: #224488;

}

#custom-html-t2 .status-accepted {

  color: #498302;

}

#custom-html-t2 .status-dead,

#custom-html-t2 .status-lost {

  color: #000000;

}

#custom-html-t2 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-t2 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-t2 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-t2 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-t2 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-t2 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-t2 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-t2 .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-t2 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-t2 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-t2 .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-t2 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-t2 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-t2 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-t2 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-t2 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-t2 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-t2 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-t2 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-t2 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-t2 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-t2 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-t2 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-t2 .ticket-reply .rating,

#custom-html-t2 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-t2 .ticket-reply .rating span.star,

#custom-html-t2 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-t2 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-t2 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-t2 .ticket-reply .rating span.star:before,

#custom-html-t2 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-t2 .ticket-reply .rating span.star:hover:before,

#custom-html-t2 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-t2 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-t2 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-t2 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-t2 .ticket-reply .clear {

  clear: both;

}

#custom-html-t2 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-t2 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-t2 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-t2 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-t2 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-t2 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-t2 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-t2 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-t2 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t2 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-t2 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-t2 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-t2 .popover-user-notifications ul li i.far,

#custom-html-t2 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-t2 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-t2 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-t2 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-t2 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-t2 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-t2 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-t2 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-t2 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-t2 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-t2 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-t2 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-t2 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-t2 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-t2 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t2 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-t2 div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-t2 div.credit-card {

    max-width: 250px;

  }

  #custom-html-t2 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-t2 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-t2 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-t2 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-t2 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-t2 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-t2 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-t2 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-t2 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-t2 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-t2 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t2 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-t2 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-t2 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-t2 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-t2 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-t2 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-t2 .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-t2 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-t2 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-t2 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-t2 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-t2 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-t2 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-t2 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-t2 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-t2 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-t2 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-t2 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-t2 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-t2 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-t2 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-t2 .kb-category a small {

  color: #888888;

}

#custom-html-t2 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-t2 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-t2 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-t2 .kbarticles a.admin-inline-edit,

#custom-html-t2 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-t2 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-t2 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-t2 .kb-article-title h2 {

  margin: 0;

}

#custom-html-t2 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-t2 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-t2 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-t2 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-t2 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-t2 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-t2 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-t2 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-t2 #stepResults {

  font-size: 20px;

}

#custom-html-t2 #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-t2 #stepResults {

    font-size: 14px;

  }

  #custom-html-t2 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-t2 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-t2 #main-menu,

  #custom-html-t2 #top-nav,

  #custom-html-t2 .header-lined,

  #custom-html-t2 .sidebar {

    display: none;

  }

  #custom-html-t2 a[href]:after {

    content: "" !important;

  }

}

#custom-html-t2 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-t2 h3.with-badge i,

#custom-html-t2 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-t2 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-t2 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-t2 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-t2 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-t2 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-t2 a.admin-inline-edit {


  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-t2 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-t2 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-t2 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-t2 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-t2 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-t2 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-t2 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-t2 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-t2 .login-popover {

  font-size: 12px;

}

#custom-html-t2 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-t2 .login-popover hr {

  margin: 5px 0;

}

#custom-html-t2 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-t2 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-t2 .error-container {

  text-align: center;

}

#custom-html-t2 .error-container h1 {

  margin-top: 40px;

}

#custom-html-t2 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-t2 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-t2 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-t2 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-t2 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-t2 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-t2 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-t2 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-t2 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-t2 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-t2 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-t2 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-t2 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-t2 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-t2 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-t2 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-t2 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-t2 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t2 .email-verification .btn:active,

#custom-html-t2 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-t2 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-t2 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-t2 .email-verification .far,

#custom-html-t2 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-t2 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-t2 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-t2 .email-verification .button {

    float: right;

  }

  #custom-html-t2 .email-verification .far,

  #custom-html-t2 .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-t2 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-t2 .email-verification.success .far,

#custom-html-t2 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-t2 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-t2 .email-verification.failed .far,

#custom-html-t2 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-t2 .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-t2 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-t2 .md-editor > .md-preview,

#custom-html-t2 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-t2 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t2 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-t2 .small-font {

  font-size: 0.9em;

}

#custom-html-t2 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-t2 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-t2 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-t2 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-t2 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-t2 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-t2 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-t2 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-t2 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-t2 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-t2 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-t2 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-t2 .panel-heading i.fab,

#custom-html-t2 .panel-heading i.fal,

#custom-html-t2 .panel-heading i.far,

#custom-html-t2 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-t2 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-t2 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-t2 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-t2 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-t2 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-t2 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-t2 .panel-sidebar .list-group-item.disabled,

#custom-html-t2 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-t2 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-t2 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-t2 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-t2 .panel-sidebar a.list-group-item.active,

#custom-html-t2 .panel-sidebar a.list-group-item.active:focus,

#custom-html-t2 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-t2 .panel-sidebar a.list-group-item.active i,

#custom-html-t2 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-t2 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-t2 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-t2 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-t2 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-t2 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-t2 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-t2 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-t2 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-t2 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-t2 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-t2 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-t2 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-t2 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-t2 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-t2 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-t2 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-t2 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-t2 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-t2 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-t2 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-t2 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-t2 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-t2 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t2 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-t2 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t2 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-t2 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-t2 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-t2 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-t2 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-t2 .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-t2 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-t2 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-t2 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-t2 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-t2 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-t2 .promo-banner p {

  margin: 5px 0;

}

#custom-html-t2 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-t2 .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-t2 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-t2 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-t2 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-t2 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-t2 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-t2 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-t2 .promo-banner-slim {

  padding: 10px;

}

#custom-html-t2 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-t2 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-t2 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-t2 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-t2 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-t2 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-t2 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-t2 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-t2 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-t2 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-t2 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-t2 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-t2 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-t2 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-t2 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-t2 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-t2 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-t2 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-t2 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-t2 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-t2 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-t2 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-t2 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t2 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t2 .panel-mc-sso .btn,

#custom-html-t2 .panel-mc-sso .form-control,

#custom-html-t2 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-t2 .panel-mc-sso small {

  display: block;

}

#custom-html-t2 .social-signin-btns {

  text-align: center;

}

#custom-html-t2 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-t2 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-t2 .btn-social i.far,

#custom-html-t2 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-facebook.active,

#custom-html-t2 .btn-facebook:active,

#custom-html-t2 .btn-facebook:focus,

#custom-html-t2 .btn-facebook:hover,

#custom-html-t2 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-facebook.active,

#custom-html-t2 .btn-facebook:active,

#custom-html-t2 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-t2 .btn-facebook.disabled,

#custom-html-t2 .btn-facebook.disabled.active,

#custom-html-t2 .btn-facebook.disabled:active,

#custom-html-t2 .btn-facebook.disabled:focus,

#custom-html-t2 .btn-facebook.disabled:hover,

#custom-html-t2 .btn-facebook[disabled],

#custom-html-t2 .btn-facebook[disabled].active,

#custom-html-t2 .btn-facebook[disabled]:active,

#custom-html-t2 .btn-facebook[disabled]:focus,

#custom-html-t2 .btn-facebook[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-facebook,

#custom-html-t2 fieldset[disabled] .btn-facebook.active,

#custom-html-t2 fieldset[disabled] .btn-facebook:active,

#custom-html-t2 fieldset[disabled] .btn-facebook:focus,

#custom-html-t2 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-google.active,

#custom-html-t2 .btn-google:active,

#custom-html-t2 .btn-google:focus,

#custom-html-t2 .btn-google:hover,

#custom-html-t2 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-google.active,

#custom-html-t2 .btn-google:active,

#custom-html-t2 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-t2 .btn-google-plus.disabled.active,

#custom-html-t2 .btn-google-plus.disabled:active,

#custom-html-t2 .btn-google-plus.disabled:focus,

#custom-html-t2 .btn-google-plus[disabled].active,

#custom-html-t2 .btn-google-plus[disabled]:active,

#custom-html-t2 .btn-google-plus[disabled]:focus,

#custom-html-t2 .btn-google-plus[disabled]:hover,

#custom-html-t2 .btn-google.disabled,

#custom-html-t2 .btn-google.disabled:hover,

#custom-html-t2 .btn-google[disabled],

#custom-html-t2 fieldset[disabled] .btn-google,

#custom-html-t2 fieldset[disabled] .btn-google-plus.active,

#custom-html-t2 fieldset[disabled] .btn-google-plus:active,

#custom-html-t2 fieldset[disabled] .btn-google-plus:focus,

#custom-html-t2 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-twitter.active,

#custom-html-t2 .btn-twitter:active,

#custom-html-t2 .btn-twitter:focus,

#custom-html-t2 .btn-twitter:hover,

#custom-html-t2 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .btn-twitter.active,

#custom-html-t2 .btn-twitter:active,

#custom-html-t2 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-t2 .btn-twitter.disabled,

#custom-html-t2 .btn-twitter.disabled.active,

#custom-html-t2 .btn-twitter.disabled:active,

#custom-html-t2 .btn-twitter.disabled:focus,

#custom-html-t2 .btn-twitter.disabled:hover,

#custom-html-t2 .btn-twitter[disabled],

#custom-html-t2 .btn-twitter[disabled].active,

#custom-html-t2 .btn-twitter[disabled]:active,

#custom-html-t2 .btn-twitter[disabled]:focus,

#custom-html-t2 .btn-twitter[disabled]:hover,

#custom-html-t2 fieldset[disabled] .btn-twitter,

#custom-html-t2 fieldset[disabled] .btn-twitter.active,

#custom-html-t2 fieldset[disabled] .btn-twitter:active,

#custom-html-t2 fieldset[disabled] .btn-twitter:focus,

#custom-html-t2 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-t2 .providerPreLinking {

  min-height: 52px;

}

#custom-html-t2 .providerLinkingFeedback {

  display: none;

}

#custom-html-t2 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-t2 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-t2 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-t2 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-t2 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-t2 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-t2 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-t2 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-t2 #registration .field,

#custom-html-t2 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-t2 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-t2 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-t2 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-t2 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-t2 #registration textarea.field {

  height: auto;

}

#custom-html-t2 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-t2 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-t2 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-t2 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-t2 #registration .field[disabled],

#custom-html-t2 #registration .field[readonly],

#custom-html-t2 #registration .form-control[disabled],

#custom-html-t2 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-t2 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-t2 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-t2 .upgrade .product-to-be-upgraded h4,

#custom-html-t2 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-t2 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-t2 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-t2 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-t2 .upgrade .products .product .current,

#custom-html-t2 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-t2 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-t2 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-t2 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-t2 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-t2 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-t2 .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-t2 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-t2 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-t2 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-t2 .upgrade .products .far,

#custom-html-t2 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-t2 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-t2 .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-t2 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-t2 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-t2 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-t2 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-t2 .intl-tel-input {

  width: 100%;

}

#custom-html-t2 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t2 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .bootstrap-switch input[type=checkbox],

#custom-html-t2 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-t2 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-t2 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-t2 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-t2 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-t2 .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-t2 .md-editor .md-footer,

#custom-html-t2 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-t2 .md-editor > .md-header {

  margin: 0;

}

#custom-html-t2 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-t2 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-t2 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-t2 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-t2 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-t2 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-t2 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-t2 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-input,

#custom-html-t2 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-t2 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-t2 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-t2 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-t2 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-t2 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-t2 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-t2 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-t2 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-t2 table.dataTable td,

#custom-html-t2 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-t2 table.dataTable td.dataTables_empty,

#custom-html-t2 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-t2 table.dataTable.nowrap td,

#custom-html-t2 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-t2 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-t2 table.dataTable thead > tr > td.sorting,

#custom-html-t2 table.dataTable thead > tr > td.sorting_asc,

#custom-html-t2 table.dataTable thead > tr > td.sorting_desc,

#custom-html-t2 table.dataTable thead > tr > th.sorting,

#custom-html-t2 table.dataTable thead > tr > th.sorting_asc,

#custom-html-t2 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-t2 table.dataTable thead > tr > td:active,

#custom-html-t2 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-t2 table.dataTable thead .sorting,

#custom-html-t2 table.dataTable thead .sorting_asc,

#custom-html-t2 table.dataTable thead .sorting_asc_disabled,

#custom-html-t2 table.dataTable thead .sorting_desc,

#custom-html-t2 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-t2 table.dataTable thead .sorting:after,

#custom-html-t2 table.dataTable thead .sorting_asc:after,

#custom-html-t2 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t2 table.dataTable thead .sorting_desc:after,

#custom-html-t2 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-t2 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-t2 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-t2 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-t2 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-t2 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-t2 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-t2 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-t2 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-t2 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-t2 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-t2 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-t2 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-t2 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-t2 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-t2 div.dataTables_wrapper div.dataTables_info,

  #custom-html-t2 div.dataTables_wrapper div.dataTables_length,

  #custom-html-t2 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-t2 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-t2 table.dataTable.table-condensed .sorting:after,

#custom-html-t2 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-t2 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-t2 table.table-bordered.dataTable td,

#custom-html-t2 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-t2 table.table-bordered.dataTable td:last-child,

#custom-html-t2 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-t2 table.table-bordered.dataTable tbody td,

#custom-html-t2 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-t2 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-t2 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-t2 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-t2 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-t2 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-t2 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-t2 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-t2 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-t2 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-t2 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-t2 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-t2 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-t2 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-t2 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-t2 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-t2 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t2 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-t2 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-t2 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-t2 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-t2 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-t2 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-t2 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-t2 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-t2 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-t2 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-t2 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-t2 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-t2 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-t2 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-t2 .multiselect-container > li {

  padding: 0;

}

#custom-html-t2 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-t2 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-t2 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-t2 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-t2 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-t2 .multiselect-container > li > a > label.checkbox,

#custom-html-t2 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-t2 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-t2 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-t2 .form-inline .multiselect-container label.checkbox,

#custom-html-t2 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-t2 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-t2 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7yDMF99R {

  padding-top: 45px;

  padding-bottom: 15px;

  background-image: url("../../../assets/images/mbr-1920x1326.jpg");

}

.cid-sl7yDMF99R P {

  color: #767676;

}

.cid-sl7yDMF99R H1 {

  color: #ffffff;

}

.cid-sl7yDMF99R .mbr-text,

.cid-sl7yDMF99R .mbr-section-btn {

  color: #ffffff;

}

.cid-sl7yDMF99R h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3wtYhSnV .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3wtYhSnV .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3wtYhSnV .divider-top::before,

.cid-sF3wtYhSnV .divider-bottom::before,

.cid-sF3wtYhSnV .divider-top::after,

.cid-sF3wtYhSnV .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3wtYhSnV .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3wtYhSnV .divider-triangles::before {

  top: -50px;

}

.cid-sF3wtYhSnV .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3wtYhSnV .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3wtYhSnV .divider-multitriangles::before,

.cid-sF3wtYhSnV .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3wtYhSnV .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-rXQtVnqtcH {

  background-color: #efefef;

}

.cid-rXQtVnqtcH P {

  color: #767676;

}

.cid-sF3wvGZEkl .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3wvGZEkl .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3wvGZEkl .divider-top::before,

.cid-sF3wvGZEkl .divider-bottom::before,

.cid-sF3wvGZEkl .divider-top::after,

.cid-sF3wvGZEkl .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3wvGZEkl .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3wvGZEkl .divider-triangles::before {

  top: -50px;

}

.cid-sF3wvGZEkl .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3wvGZEkl .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3wvGZEkl .divider-multitriangles::before,

.cid-sF3wvGZEkl .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3wvGZEkl .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-s88a5xunw3 {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s88a5xunw3 h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s88a5xunw3 p {

  color: #767676;

  text-align: left;

}

.cid-s88a5xunw3 .card-box {

  padding-top: 2rem;

}

.cid-s88a5xunw3 .card-wrapper {

  height: 100%;

}

.cid-svDB4UN8sU {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDB4UN8sU .content {

    text-align: center;

  }

  .cid-svDB4UN8sU .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDB4UN8sU .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDB4UN8sU .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDB4UN8sU .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDB4UN8sU .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDB4UN8sU .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDB4UN8sU .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDB4UN8sU .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDB4UN8sU .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDB4UN8sU .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDB4UN8sU .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDB4UN8sU .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDB4UN8sU .copyright > p {

  text-align: left;

}

.cid-svDB4UN8sU H5 {

  color: #000000;

}

.cid-svGH7yeGyY .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGH7yeGyY .my-float {

  margin-top: 16px;

}

.cid-svGH7yeGyY P {

  color: #232323;

}

.cid-svGH7yeGyY DIV {

  color: #ffffff;

}

.cid-svGH7yeGyY H10 {

  color: #767676;

}

.cid-svGH7yeGyY .hidden {

  display: none;

}

#custom-html-st {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-st html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-st body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-st article,

#custom-html-st aside,

#custom-html-st details,

#custom-html-st figcaption,

#custom-html-st figure,

#custom-html-st footer,

#custom-html-st header,

#custom-html-st hgroup,

#custom-html-st main,

#custom-html-st menu,

#custom-html-st nav,

#custom-html-st section,

#custom-html-st summary {

  display: block;

}

#custom-html-st audio,

#custom-html-st canvas,

#custom-html-st progress,

#custom-html-st video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-st audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-st [hidden],

#custom-html-st template {

  display: none;

}

#custom-html-st a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-st a:active,

#custom-html-st a:hover {

  outline: 0;

}

#custom-html-st abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-st b,

#custom-html-st strong {

  font-weight: 700;

}

#custom-html-st dfn {

  font-style: italic;

}

#custom-html-st h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-st mark {

  color: #000;

  background: #ffff00;

}

#custom-html-st small {

  font-size: 80%;

}

#custom-html-st sub,

#custom-html-st sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-st sup {

  top: -0.5em;

}

#custom-html-st sub {

  bottom: -0.25em;

}

#custom-html-st img {

  border: 0;

  vertical-align: middle;

}

#custom-html-st svg:not(:root) {

  overflow: hidden;

}

#custom-html-st figure {

  margin: 0;

}

#custom-html-st hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-st pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-st code,

#custom-html-st kbd,

#custom-html-st pre,

#custom-html-st samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-st button,

#custom-html-st input,

#custom-html-st optgroup,

#custom-html-st select,

#custom-html-st textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-st button {

  overflow: visible;

}

#custom-html-st button,

#custom-html-st select {

  text-transform: none;

}

#custom-html-st button,

#custom-html-st html input[type=button],

#custom-html-st input[type=reset],

#custom-html-st input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-st button[disabled],

#custom-html-st html input[disabled] {

  cursor: default;

}

#custom-html-st button::-moz-focus-inner,

#custom-html-st input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-st input {

  line-height: normal;

}

#custom-html-st input[type=checkbox],

#custom-html-st input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-st input[type=number]::-webkit-inner-spin-button,

#custom-html-st input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-st input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-st input[type=search]::-webkit-search-cancel-button,

#custom-html-st input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-st fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-st legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-st textarea {

  overflow: auto;

}

#custom-html-st optgroup {

  font-weight: 700;

}

#custom-html-st table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-st td,

#custom-html-st th {

  padding: 0;

}

@media print {

  #custom-html-st *,

  #custom-html-st :after,

  #custom-html-st :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-st a,

  #custom-html-st a:visited {

    text-decoration: underline;

  }

  #custom-html-st a[href]:after {

    content: "" !important;

  }

  #custom-html-st abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-st a[href^="#"]:after,

  #custom-html-st a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-st blockquote,

  #custom-html-st pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-st thead {

    display: table-header-group;

  }

  #custom-html-st img,

  #custom-html-st tr {

    page-break-inside: avoid;

  }

  #custom-html-st img {

    max-width: 100% !important;

  }

  #custom-html-st h2,

  #custom-html-st h3,

  #custom-html-st p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-st h2,

  #custom-html-st h3 {

    page-break-after: avoid;

  }

  #custom-html-st .navbar {

    display: none;

  }

  #custom-html-st .btn > .caret,

  #custom-html-st .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-st .label {

    border: 1px solid #000000;

  }

  #custom-html-st .table {

    border-collapse: collapse !important;

  }

  #custom-html-st .table td,

  #custom-html-st .table th {

    background-color: #ffffff !important;

  }

  #custom-html-st .table-bordered td,

  #custom-html-st .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-st .visible-print {

    display: block !important;

  }

  #custom-html-st table.visible-print {

    display: table !important;

  }

  #custom-html-st tr.visible-print {

    display: table-row !important;

  }

  #custom-html-st td.visible-print,

  #custom-html-st th.visible-print {

    display: table-cell !important;

  }

  #custom-html-st .visible-print-block {

    display: block !important;

  }

  #custom-html-st .visible-print-inline {

    display: inline !important;

  }

  #custom-html-st .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-st .hidden-print {

    display: none !important;

  }

  #custom-html-st #main-menu,

  #custom-html-st #top-nav,

  #custom-html-st .header-lined,

  #custom-html-st .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-st .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-st .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-st .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-st .glyphicon-eur:before,

#custom-html-st .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-st .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-st .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-st .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-st .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-st .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-st .glyphicon-music:before {

  content: "\e002";

}

#custom-html-st .glyphicon-search:before {

  content: "\e003";

}

#custom-html-st .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-st .glyphicon-star:before {

  content: "\e006";

}

#custom-html-st .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-st .glyphicon-user:before {

  content: "\e008";

}

#custom-html-st .glyphicon-film:before {

  content: "\e009";

}

#custom-html-st .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-st .glyphicon-th:before {

  content: "\e011";

}

#custom-html-st .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-st .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-st .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-st .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-st .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-st .glyphicon-off:before {

  content: "\e017";

}

#custom-html-st .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-st .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-st .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-st .glyphicon-home:before {

  content: "\e021";

}

#custom-html-st .glyphicon-file:before {

  content: "\e022";

}

#custom-html-st .glyphicon-time:before {

  content: "\e023";

}

#custom-html-st .glyphicon-road:before {

  content: "\e024";

}

#custom-html-st .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-st .glyphicon-download:before {

  content: "\e026";

}

#custom-html-st .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-st .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-st .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-st .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-st .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-st .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-st .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-st .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-st .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-st .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-st .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-st .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-st .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-st .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-st .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-st .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-st .glyphicon-book:before {

  content: "\e043";

}

#custom-html-st .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-st .glyphicon-print:before {

  content: "\e045";

}

#custom-html-st .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-st .glyphicon-font:before {

  content: "\e047";

}

#custom-html-st .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-st .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-st .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-st .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-st .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-st .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-st .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-st .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-st .glyphicon-list:before {

  content: "\e056";

}

#custom-html-st .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-st .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-st .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-st .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-st .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-st .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-st .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-st .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-st .glyphicon-share:before {

  content: "\e066";

}

#custom-html-st .glyphicon-check:before {

  content: "\e067";

}

#custom-html-st .glyphicon-move:before {

  content: "\e068";

}

#custom-html-st .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-st .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-st .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-st .glyphicon-play:before {

  content: "\e072";

}

#custom-html-st .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-st .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-st .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-st .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-st .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-st .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-st .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-st .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-st .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-st .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-st .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-st .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-st .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-st .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-st .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-st .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-st .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-st .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-st .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-st .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-st .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-st .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-st .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-st .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-st .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-st .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-st .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-st .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-st .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-st .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-st .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-st .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-st .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-st .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-st .glyphicon-random:before {

  content: "\e110";

}

#custom-html-st .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-st .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-st .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-st .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-st .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-st .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-st .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-st .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-st .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-st .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-st .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-st .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-st .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-st .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-st .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-st .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-st .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-st .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-st .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-st .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-st .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-st .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-st .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-st .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-st .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-st .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-st .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-st .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-st .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-st .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-st .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-st .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-st .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-st .glyphicon-link:before {

  content: "\e144";

}

#custom-html-st .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-st .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-st .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-st .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-st .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-st .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-st .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-st .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-st .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-st .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-st .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-st .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-st .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-st .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-st .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-st .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-st .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-st .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-st .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-st .glyphicon-record:before {

  content: "\e165";

}

#custom-html-st .glyphicon-save:before {

  content: "\e166";

}

#custom-html-st .glyphicon-open:before {

  content: "\e167";

}

#custom-html-st .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-st .glyphicon-import:before {

  content: "\e169";

}

#custom-html-st .glyphicon-export:before {

  content: "\e170";

}

#custom-html-st .glyphicon-send:before {

  content: "\e171";

}

#custom-html-st .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-st .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-st .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-st .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-st .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-st .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-st .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-st .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-st .glyphicon-header:before {

  content: "\e180";

}

#custom-html-st .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-st .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-st .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-st .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-st .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-st .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-st .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-st .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-st .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-st .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-st .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-st .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-st .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-st .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-st .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-st .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-st .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-st .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-st .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-st .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-st .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-st .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-st .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-st .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-st .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-st .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-st .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-st .glyphicon-king:before {

  content: "\e211";

}

#custom-html-st .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-st .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-st .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-st .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-st .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-st .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-st .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-st .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-st .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-st .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-st .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-st .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-st .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-st .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-st .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-st .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-st .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-st .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-st .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-st .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-st .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-st .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-st .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-st .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-st .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-st .glyphicon-education:before {

  content: "\e233";

}

#custom-html-st .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-st .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-st .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-st .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-st .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-st .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-st .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-st .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-st .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-st .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-st .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-st .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-st .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-st .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-st .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-st .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-st .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-st .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-st .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-st .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-st .glyphicon-console:before {

  content: "\e254";

}

#custom-html-st .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-st .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-st .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-st .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-st .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-st .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-st * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-st :after,

#custom-html-st :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-st button,

#custom-html-st input,

#custom-html-st select,

#custom-html-st textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-st a:focus,

#custom-html-st a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-st a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-st .carousel-inner > .item > a > img,

#custom-html-st .carousel-inner > .item > img,

#custom-html-st .img-responsive,

#custom-html-st .thumbnail a > img,

#custom-html-st .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-st .img-rounded {

  border-radius: 6px;

}

#custom-html-st .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-st .img-circle {

  border-radius: 50%;

}

#custom-html-st .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-st .sr-only-focusable:active,

#custom-html-st .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-st [role=button] {

  cursor: pointer;

}

#custom-html-st .h1,

#custom-html-st .h2,

#custom-html-st .h3,

#custom-html-st .h4,

#custom-html-st .h5,

#custom-html-st .h6,

#custom-html-st h1,

#custom-html-st h2,

#custom-html-st h3,

#custom-html-st h4,

#custom-html-st h5,

#custom-html-st h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-st .h1 .small,

#custom-html-st .h1 small,

#custom-html-st .h2 .small,

#custom-html-st .h2 small,

#custom-html-st .h3 .small,

#custom-html-st .h3 small,

#custom-html-st .h4 .small,

#custom-html-st .h4 small,

#custom-html-st .h5 .small,

#custom-html-st .h5 small,

#custom-html-st .h6 .small,

#custom-html-st .h6 small,

#custom-html-st h1 .small,

#custom-html-st h1 small,

#custom-html-st h2 .small,

#custom-html-st h2 small,

#custom-html-st h3 .small,

#custom-html-st h3 small,

#custom-html-st h4 .small,

#custom-html-st h4 small,

#custom-html-st h5 .small,

#custom-html-st h5 small,

#custom-html-st h6 .small,

#custom-html-st h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-st .h1,

#custom-html-st .h2,

#custom-html-st .h3,

#custom-html-st h1,

#custom-html-st h2,

#custom-html-st h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-st .h1 .small,

#custom-html-st .h1 small,

#custom-html-st .h2 .small,

#custom-html-st .h2 small,

#custom-html-st .h3 .small,

#custom-html-st .h3 small,

#custom-html-st h1 .small,

#custom-html-st h1 small,

#custom-html-st h2 .small,

#custom-html-st h2 small,

#custom-html-st h3 .small,

#custom-html-st h3 small {

  font-size: 65%;

}

#custom-html-st .h4,

#custom-html-st .h5,

#custom-html-st .h6,

#custom-html-st h4,

#custom-html-st h5,

#custom-html-st h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-st .h4 .small,

#custom-html-st .h4 small,

#custom-html-st .h5 .small,

#custom-html-st .h5 small,

#custom-html-st .h6 .small,

#custom-html-st .h6 small,

#custom-html-st h4 .small,

#custom-html-st h4 small,

#custom-html-st h5 .small,

#custom-html-st h5 small,

#custom-html-st h6 .small,

#custom-html-st h6 small {

  font-size: 75%;

}

#custom-html-st .h1,

#custom-html-st h1 {

  font-size: 36px;

}

#custom-html-st .h2,

#custom-html-st h2 {

  font-size: 30px;

}

#custom-html-st .h3,

#custom-html-st h3 {

  font-size: 24px;

}

#custom-html-st .h4,

#custom-html-st h4 {

  font-size: 18px;

}

#custom-html-st .h5,

#custom-html-st h5 {

  font-size: 14px;

}

#custom-html-st .h6,

#custom-html-st h6 {

  font-size: 12px;

}

#custom-html-st p {

  margin: 0 0 10px;

}

#custom-html-st .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-st .lead {

    font-size: 21px;

  }

  #custom-html-st .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-st .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-st .container {

    width: 750px;

  }

  #custom-html-st .col-sm-1,

  #custom-html-st .col-sm-10,

  #custom-html-st .col-sm-11,

  #custom-html-st .col-sm-12,

  #custom-html-st .col-sm-2,

  #custom-html-st .col-sm-3,

  #custom-html-st .col-sm-4,

  #custom-html-st .col-sm-5,

  #custom-html-st .col-sm-6,

  #custom-html-st .col-sm-7,

  #custom-html-st .col-sm-8,

  #custom-html-st .col-sm-9 {

    float: left;

  }

  #custom-html-st .col-sm-12 {

    width: 100%;

  }

  #custom-html-st .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-st .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-st .col-sm-9 {

    width: 75%;

  }

  #custom-html-st .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-st .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-st .col-sm-6 {

    width: 50%;

  }

  #custom-html-st .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-st .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-st .col-sm-3 {

    width: 25%;

  }

  #custom-html-st .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-st .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-st .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-st .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-st .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-st .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-st .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-st .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-st .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-st .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-st .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-st .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-st .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-st .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-st .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-st .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-st .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-st .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-st .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-st .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-st .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-st .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-st .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-st .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-st .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-st .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-st .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-st .col-sm-push-0 {

    left: auto;

  }

  #custom-html-st .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-st .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-st .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-st .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-st .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-st .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-st .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-st .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-st .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-st .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-st .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-st .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-st .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-st .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-st .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-st .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-st .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-st .form-inline .input-group .form-control,

  #custom-html-st .form-inline .input-group .input-group-addon,

  #custom-html-st .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-st .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-st .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-st .form-inline .checkbox,

  #custom-html-st .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-st .form-inline .checkbox label,

  #custom-html-st .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-st .form-inline .checkbox input[type=checkbox],

  #custom-html-st .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-st .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-st .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-st .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-st .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-st .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-st .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-st .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-st .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-st .nav-tabs.nav-justified > .active > a,

  #custom-html-st .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-st .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-st .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-st .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-st .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-st .nav-tabs-justified > .active > a,

  #custom-html-st .nav-tabs-justified > .active > a:focus,

  #custom-html-st .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-st .navbar {

    border-radius: 4px;

  }

  #custom-html-st .navbar-header {

    float: left;

  }

  #custom-html-st .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-st .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-st .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-st .navbar-fixed-bottom .navbar-collapse,

  #custom-html-st .navbar-fixed-top .navbar-collapse,

  #custom-html-st .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-st .container-fluid > .navbar-collapse,

  #custom-html-st .container-fluid > .navbar-header,

  #custom-html-st .container > .navbar-collapse,

  #custom-html-st .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-st .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-st .navbar-fixed-bottom,

  #custom-html-st .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-st .navbar > .container .navbar-brand,

  #custom-html-st .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-st .navbar-toggle {

    display: none;

  }

  #custom-html-st .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-st .navbar-nav > li {

    float: left;

  }

  #custom-html-st .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-st .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-st .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-st .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-st .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-st .navbar-form .input-group .form-control,

  #custom-html-st .navbar-form .input-group .input-group-addon,

  #custom-html-st .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-st .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-st .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-st .navbar-form .checkbox,

  #custom-html-st .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-st .navbar-form .checkbox label,

  #custom-html-st .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-st .navbar-form .checkbox input[type=checkbox],

  #custom-html-st .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-st .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-st .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-st .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-st .navbar-left {

    float: left !important;

  }

  #custom-html-st .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-st .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-st .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-st .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-st .modal-sm {

    width: 300px;

  }

  #custom-html-st .pull-sm-left {

    float: left;

  }

  #custom-html-st .pull-sm-right {

    float: right;

  }

  #custom-html-st .text-right-sm {

    text-align: right;

  }

  #custom-html-st .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-st .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-st .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-st .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-st .email-verification .button {

    float: right;

  }

  #custom-html-st .email-verification .far,

  #custom-html-st .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-st .store-order-container .payment-term {

    float: right;

  }

  #custom-html-st .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-st .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-st .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-st .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-st .small,

#custom-html-st small {

  font-size: 85%;

}

#custom-html-st .mark,

#custom-html-st mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-st .text-left {

  text-align: left;

}

#custom-html-st .text-right {

  text-align: right;

}

#custom-html-st .text-center {

  text-align: center;

}

#custom-html-st .text-justify {

  text-align: justify;

}

#custom-html-st .text-nowrap {

  white-space: nowrap;

}

#custom-html-st .text-lowercase {

  text-transform: lowercase;

}

#custom-html-st .text-uppercase {

  text-transform: uppercase;

}

#custom-html-st .text-capitalize {

  text-transform: capitalize;

}

#custom-html-st .text-muted {

  color: #777777;

}

#custom-html-st .text-primary {

  color: #000000;

}

#custom-html-st a.text-primary:focus,

#custom-html-st a.text-primary:hover {

  color: #000000;

}

#custom-html-st .text-success {

  color: #3c763d;

}

#custom-html-st a.text-success:focus,

#custom-html-st a.text-success:hover {

  color: #2b542c;

}

#custom-html-st .text-info {

  color: #31708f;

}

#custom-html-st a.text-info:focus,

#custom-html-st a.text-info:hover {

  color: #000000;

}

#custom-html-st .text-warning {

  color: #8a6d3b;

}

#custom-html-st a.text-warning:focus,

#custom-html-st a.text-warning:hover {

  color: #66512c;

}

#custom-html-st .text-danger {

  color: #a94442;

}

#custom-html-st a.text-danger:focus,

#custom-html-st a.text-danger:hover {

  color: #843534;

}

#custom-html-st .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-st a.bg-primary:focus,

#custom-html-st a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-st .bg-success {

  background-color: #dff0d8;

}

#custom-html-st a.bg-success:focus,

#custom-html-st a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-st .bg-info {

  background-color: #d9edf7;

}

#custom-html-st a.bg-info:focus,

#custom-html-st a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-st .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-st a.bg-warning:focus,

#custom-html-st a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-st .bg-danger {

  background-color: #f2dede;

}

#custom-html-st a.bg-danger:focus,

#custom-html-st a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-st .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-st ol,

#custom-html-st ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-st ol ol,

#custom-html-st ol ul,

#custom-html-st ul ol,

#custom-html-st ul ul {

  margin-bottom: 0;

}

#custom-html-st .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-st .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-st .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-st dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-st dd,

#custom-html-st dt {

  line-height: 1.42857143;

}

#custom-html-st dt {

  font-weight: 700;

}

#custom-html-st dd {

  margin-left: 0;

}

#custom-html-st abbr[data-original-title],

#custom-html-st abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-st .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-st blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-st blockquote ol:last-child,

#custom-html-st blockquote p:last-child,

#custom-html-st blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-st blockquote .small,

#custom-html-st blockquote footer,

#custom-html-st blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-st blockquote .small:before,

#custom-html-st blockquote footer:before,

#custom-html-st blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-st .blockquote-reverse,

#custom-html-st blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-st .blockquote-reverse .small:before,

#custom-html-st .blockquote-reverse footer:before,

#custom-html-st .blockquote-reverse small:before,

#custom-html-st blockquote.pull-right .small:before,

#custom-html-st blockquote.pull-right footer:before,

#custom-html-st blockquote.pull-right small:before {

  content: '';

}

#custom-html-st .blockquote-reverse .small:after,

#custom-html-st .blockquote-reverse footer:after,

#custom-html-st .blockquote-reverse small:after,

#custom-html-st blockquote.pull-right .small:after,

#custom-html-st blockquote.pull-right footer:after,

#custom-html-st blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-st address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-st code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-st kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-st kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-st pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-st .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-st .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-st .container {

    width: 970px;

  }

  #custom-html-st .col-md-1,

  #custom-html-st .col-md-10,

  #custom-html-st .col-md-11,

  #custom-html-st .col-md-12,

  #custom-html-st .col-md-2,

  #custom-html-st .col-md-3,

  #custom-html-st .col-md-4,

  #custom-html-st .col-md-5,

  #custom-html-st .col-md-6,

  #custom-html-st .col-md-7,

  #custom-html-st .col-md-8,

  #custom-html-st .col-md-9 {

    float: left;

  }

  #custom-html-st .col-md-12 {

    width: 100%;

  }

  #custom-html-st .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-st .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-st .col-md-9 {

    width: 75%;

  }

  #custom-html-st .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-st .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-st .col-md-6 {

    width: 50%;

  }

  #custom-html-st .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-st .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-st .col-md-3 {

    width: 25%;

  }

  #custom-html-st .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-st .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-st .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-st .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-st .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-st .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-st .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-st .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-st .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-st .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-st .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-st .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-st .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-st .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-st .col-md-pull-0 {

    right: auto;

  }

  #custom-html-st .col-md-push-12 {

    left: 100%;

  }

  #custom-html-st .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-st .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-st .col-md-push-9 {

    left: 75%;

  }

  #custom-html-st .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-st .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-st .col-md-push-6 {

    left: 50%;

  }

  #custom-html-st .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-st .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-st .col-md-push-3 {

    left: 25%;

  }

  #custom-html-st .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-st .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-st .col-md-push-0 {

    left: auto;

  }

  #custom-html-st .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-st .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-st .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-st .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-st .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-st .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-st .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-st .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-st .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-st .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-st .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-st .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-st .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-st .modal-lg {

    width: 900px;

  }

  #custom-html-st .pull-md-left {

    float: left;

  }

  #custom-html-st .pull-md-right {

    float: right;

  }

  #custom-html-st h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-st .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-st .container {

    width: 1170px;

  }

  #custom-html-st .col-lg-1,

  #custom-html-st .col-lg-10,

  #custom-html-st .col-lg-11,

  #custom-html-st .col-lg-12,

  #custom-html-st .col-lg-2,

  #custom-html-st .col-lg-3,

  #custom-html-st .col-lg-4,

  #custom-html-st .col-lg-5,

  #custom-html-st .col-lg-6,

  #custom-html-st .col-lg-7,

  #custom-html-st .col-lg-8,

  #custom-html-st .col-lg-9 {

    float: left;

  }

  #custom-html-st .col-lg-12 {

    width: 100%;

  }

  #custom-html-st .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-st .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-st .col-lg-9 {

    width: 75%;

  }

  #custom-html-st .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-st .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-st .col-lg-6 {

    width: 50%;

  }

  #custom-html-st .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-st .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-st .col-lg-3 {

    width: 25%;

  }

  #custom-html-st .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-st .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-st .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-st .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-st .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-st .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-st .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-st .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-st .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-st .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-st .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-st .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-st .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-st .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-st .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-st .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-st .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-st .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-st .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-st .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-st .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-st .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-st .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-st .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-st .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-st .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-st .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-st .col-lg-push-0 {

    left: auto;

  }

  #custom-html-st .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-st .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-st .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-st .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-st .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-st .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-st .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-st .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-st .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-st .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-st .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-st .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-st .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-st .visible-lg {

    display: block !important;

  }

  #custom-html-st table.visible-lg {

    display: table !important;

  }

  #custom-html-st tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-st td.visible-lg,

  #custom-html-st th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-st .visible-lg-block {

    display: block !important;

  }

  #custom-html-st .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-st .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-st .hidden-lg {

    display: none !important;

  }

  #custom-html-st .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-st .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-st .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-st .col-lg-1,

#custom-html-st .col-lg-10,

#custom-html-st .col-lg-11,

#custom-html-st .col-lg-12,

#custom-html-st .col-lg-2,

#custom-html-st .col-lg-3,

#custom-html-st .col-lg-4,

#custom-html-st .col-lg-5,

#custom-html-st .col-lg-6,

#custom-html-st .col-lg-7,

#custom-html-st .col-lg-8,

#custom-html-st .col-lg-9,

#custom-html-st .col-md-1,

#custom-html-st .col-md-10,

#custom-html-st .col-md-11,

#custom-html-st .col-md-12,

#custom-html-st .col-md-2,

#custom-html-st .col-md-3,

#custom-html-st .col-md-4,

#custom-html-st .col-md-5,

#custom-html-st .col-md-6,

#custom-html-st .col-md-7,

#custom-html-st .col-md-8,

#custom-html-st .col-md-9,

#custom-html-st .col-sm-1,

#custom-html-st .col-sm-10,

#custom-html-st .col-sm-11,

#custom-html-st .col-sm-12,

#custom-html-st .col-sm-2,

#custom-html-st .col-sm-3,

#custom-html-st .col-sm-4,

#custom-html-st .col-sm-5,

#custom-html-st .col-sm-6,

#custom-html-st .col-sm-7,

#custom-html-st .col-sm-8,

#custom-html-st .col-sm-9,

#custom-html-st .col-xs-1,

#custom-html-st .col-xs-10,

#custom-html-st .col-xs-11,

#custom-html-st .col-xs-12,

#custom-html-st .col-xs-2,

#custom-html-st .col-xs-3,

#custom-html-st .col-xs-4,

#custom-html-st .col-xs-5,

#custom-html-st .col-xs-6,

#custom-html-st .col-xs-7,

#custom-html-st .col-xs-8,

#custom-html-st .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-st .col-xs-1,

#custom-html-st .col-xs-10,

#custom-html-st .col-xs-11,

#custom-html-st .col-xs-12,

#custom-html-st .col-xs-2,

#custom-html-st .col-xs-3,

#custom-html-st .col-xs-4,

#custom-html-st .col-xs-5,

#custom-html-st .col-xs-6,

#custom-html-st .col-xs-7,

#custom-html-st .col-xs-8,

#custom-html-st .col-xs-9 {

  float: left;

}

#custom-html-st .col-xs-12 {

  width: 100%;

}

#custom-html-st .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-st .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-st .col-xs-9 {

  width: 75%;

}

#custom-html-st .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-st .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-st .col-xs-6 {

  width: 50%;

}

#custom-html-st .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-st .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-st .col-xs-3 {

  width: 25%;

}

#custom-html-st .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-st .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-st .col-xs-pull-12 {

  right: 100%;

}

#custom-html-st .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-st .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-st .col-xs-pull-9 {

  right: 75%;

}

#custom-html-st .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-st .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-st .col-xs-pull-6 {

  right: 50%;

}

#custom-html-st .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-st .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-st .col-xs-pull-3 {

  right: 25%;

}

#custom-html-st .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-st .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-st .col-xs-pull-0 {

  right: auto;

}

#custom-html-st .col-xs-push-12 {

  left: 100%;

}

#custom-html-st .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-st .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-st .col-xs-push-9 {

  left: 75%;

}

#custom-html-st .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-st .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-st .col-xs-push-6 {

  left: 50%;

}

#custom-html-st .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-st .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-st .col-xs-push-3 {

  left: 25%;

}

#custom-html-st .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-st .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-st .col-xs-push-0 {

  left: auto;

}

#custom-html-st .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-st .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-st .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-st .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-st .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-st .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-st .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-st .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-st .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-st .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-st .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-st .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-st .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-st caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-st th {

  text-align: left;

}

#custom-html-st .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-st .table > tbody > tr > td,

#custom-html-st .table > tbody > tr > th,

#custom-html-st .table > tfoot > tr > td,

#custom-html-st .table > tfoot > tr > th,

#custom-html-st .table > thead > tr > td,

#custom-html-st .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-st .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-st .table > caption + thead > tr:first-child > td,

#custom-html-st .table > caption + thead > tr:first-child > th,

#custom-html-st .table > colgroup + thead > tr:first-child > td,

#custom-html-st .table > colgroup + thead > tr:first-child > th,

#custom-html-st .table > thead:first-child > tr:first-child > td,

#custom-html-st .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-st .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-st .table .table {

  background-color: #ffffff;

}

#custom-html-st .table-condensed > tbody > tr > td,

#custom-html-st .table-condensed > tbody > tr > th,

#custom-html-st .table-condensed > tfoot > tr > td,

#custom-html-st .table-condensed > tfoot > tr > th,

#custom-html-st .table-condensed > thead > tr > td,

#custom-html-st .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-st .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-st .table-bordered > tbody > tr > td,

#custom-html-st .table-bordered > tbody > tr > th,

#custom-html-st .table-bordered > tfoot > tr > td,

#custom-html-st .table-bordered > tfoot > tr > th,

#custom-html-st .table-bordered > thead > tr > td,

#custom-html-st .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-st .table-bordered > thead > tr > td,

#custom-html-st .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-st .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-st .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-st table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-st table td[class*=col-],

#custom-html-st table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-st .table > tbody > tr.active > td,

#custom-html-st .table > tbody > tr.active > th,

#custom-html-st .table > tbody > tr > td.active,

#custom-html-st .table > tbody > tr > th.active,

#custom-html-st .table > tfoot > tr.active > td,

#custom-html-st .table > tfoot > tr.active > th,

#custom-html-st .table > tfoot > tr > td.active,

#custom-html-st .table > tfoot > tr > th.active,

#custom-html-st .table > thead > tr.active > td,

#custom-html-st .table > thead > tr.active > th,

#custom-html-st .table > thead > tr > td.active,

#custom-html-st .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-st .table-hover > tbody > tr.active:hover > td,

#custom-html-st .table-hover > tbody > tr.active:hover > th,

#custom-html-st .table-hover > tbody > tr:hover > .active,

#custom-html-st .table-hover > tbody > tr > td.active:hover,

#custom-html-st .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-st .table > tbody > tr.success > td,

#custom-html-st .table > tbody > tr.success > th,

#custom-html-st .table > tbody > tr > td.success,

#custom-html-st .table > tbody > tr > th.success,

#custom-html-st .table > tfoot > tr.success > td,

#custom-html-st .table > tfoot > tr.success > th,

#custom-html-st .table > tfoot > tr > td.success,

#custom-html-st .table > tfoot > tr > th.success,

#custom-html-st .table > thead > tr.success > td,

#custom-html-st .table > thead > tr.success > th,

#custom-html-st .table > thead > tr > td.success,

#custom-html-st .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-st .table-hover > tbody > tr.success:hover > td,

#custom-html-st .table-hover > tbody > tr.success:hover > th,

#custom-html-st .table-hover > tbody > tr:hover > .success,

#custom-html-st .table-hover > tbody > tr > td.success:hover,

#custom-html-st .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-st .table > tbody > tr.info > td,

#custom-html-st .table > tbody > tr.info > th,

#custom-html-st .table > tbody > tr > td.info,

#custom-html-st .table > tbody > tr > th.info,

#custom-html-st .table > tfoot > tr.info > td,

#custom-html-st .table > tfoot > tr.info > th,

#custom-html-st .table > tfoot > tr > td.info,

#custom-html-st .table > tfoot > tr > th.info,

#custom-html-st .table > thead > tr.info > td,

#custom-html-st .table > thead > tr.info > th,

#custom-html-st .table > thead > tr > td.info,

#custom-html-st .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-st .table-hover > tbody > tr.info:hover > td,

#custom-html-st .table-hover > tbody > tr.info:hover > th,

#custom-html-st .table-hover > tbody > tr:hover > .info,

#custom-html-st .table-hover > tbody > tr > td.info:hover,

#custom-html-st .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-st .table > tbody > tr.warning > td,

#custom-html-st .table > tbody > tr.warning > th,

#custom-html-st .table > tbody > tr > td.warning,

#custom-html-st .table > tbody > tr > th.warning,

#custom-html-st .table > tfoot > tr.warning > td,

#custom-html-st .table > tfoot > tr.warning > th,

#custom-html-st .table > tfoot > tr > td.warning,

#custom-html-st .table > tfoot > tr > th.warning,

#custom-html-st .table > thead > tr.warning > td,

#custom-html-st .table > thead > tr.warning > th,

#custom-html-st .table > thead > tr > td.warning,

#custom-html-st .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-st .table-hover > tbody > tr.warning:hover > td,

#custom-html-st .table-hover > tbody > tr.warning:hover > th,

#custom-html-st .table-hover > tbody > tr:hover > .warning,

#custom-html-st .table-hover > tbody > tr > td.warning:hover,

#custom-html-st .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-st .table > tbody > tr.danger > td,

#custom-html-st .table > tbody > tr.danger > th,

#custom-html-st .table > tbody > tr > td.danger,

#custom-html-st .table > tbody > tr > th.danger,

#custom-html-st .table > tfoot > tr.danger > td,

#custom-html-st .table > tfoot > tr.danger > th,

#custom-html-st .table > tfoot > tr > td.danger,

#custom-html-st .table > tfoot > tr > th.danger,

#custom-html-st .table > thead > tr.danger > td,

#custom-html-st .table > thead > tr.danger > th,

#custom-html-st .table > thead > tr > td.danger,

#custom-html-st .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-st .table-hover > tbody > tr.danger:hover > td,

#custom-html-st .table-hover > tbody > tr.danger:hover > th,

#custom-html-st .table-hover > tbody > tr:hover > .danger,

#custom-html-st .table-hover > tbody > tr > td.danger:hover,

#custom-html-st .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-st .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-st .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-st .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-st .table-responsive > .table > tbody > tr > td,

  #custom-html-st .table-responsive > .table > tbody > tr > th,

  #custom-html-st .table-responsive > .table > tfoot > tr > td,

  #custom-html-st .table-responsive > .table > tfoot > tr > th,

  #custom-html-st .table-responsive > .table > thead > tr > td,

  #custom-html-st .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-st .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-st .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-st .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-st .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-st .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-st .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-st .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-st .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-st .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-st .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-st .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-st .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-st .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-st .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-st .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-st .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-st .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-st div.dataTables_wrapper div.dataTables_filter,

  #custom-html-st div.dataTables_wrapper div.dataTables_info,

  #custom-html-st div.dataTables_wrapper div.dataTables_length,

  #custom-html-st div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-st div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-st label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-st input[type=file] {

  display: block;

}

#custom-html-st input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-st select[multiple],

#custom-html-st select[size] {

  height: auto;

}

#custom-html-st input[type=checkbox]:focus,

#custom-html-st input[type=file]:focus,

#custom-html-st input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-st output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-st .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-st .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-st .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-st .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-st .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-st .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-st .form-control[disabled],

#custom-html-st .form-control[readonly],

#custom-html-st fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-st .form-control[disabled],

#custom-html-st fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-st textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-st input[type=date].form-control,

  #custom-html-st input[type=datetime-local].form-control,

  #custom-html-st input[type=month].form-control,

  #custom-html-st input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-st .input-group-sm input[type=date],

  #custom-html-st .input-group-sm input[type=datetime-local],

  #custom-html-st .input-group-sm input[type=month],

  #custom-html-st .input-group-sm input[type=time],

  #custom-html-st input[type=date].input-sm,

  #custom-html-st input[type=datetime-local].input-sm,

  #custom-html-st input[type=month].input-sm,

  #custom-html-st input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-st .input-group-lg input[type=date],

  #custom-html-st .input-group-lg input[type=datetime-local],

  #custom-html-st .input-group-lg input[type=month],

  #custom-html-st .input-group-lg input[type=time],

  #custom-html-st input[type=date].input-lg,

  #custom-html-st input[type=datetime-local].input-lg,

  #custom-html-st input[type=month].input-lg,

  #custom-html-st input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-st .form-group {

  margin-bottom: 15px;

}

#custom-html-st .checkbox,

#custom-html-st .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-st .checkbox label,

#custom-html-st .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-st .checkbox input[type=checkbox],

#custom-html-st .checkbox-inline input[type=checkbox],

#custom-html-st .radio input[type=radio],

#custom-html-st .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-st .checkbox + .checkbox,

#custom-html-st .radio + .radio {

  margin-top: -5px;

}

#custom-html-st .checkbox-inline,

#custom-html-st .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-st .checkbox-inline + .checkbox-inline,

#custom-html-st .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-st fieldset[disabled] input[type=checkbox],

#custom-html-st fieldset[disabled] input[type=radio],

#custom-html-st input[type=checkbox].disabled,

#custom-html-st input[type=checkbox][disabled],

#custom-html-st input[type=radio].disabled,

#custom-html-st input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-st .checkbox-inline.disabled,

#custom-html-st .radio-inline.disabled,

#custom-html-st fieldset[disabled] .checkbox-inline,

#custom-html-st fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-st .checkbox.disabled label,

#custom-html-st .radio.disabled label,

#custom-html-st fieldset[disabled] .checkbox label,

#custom-html-st fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-st .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-st .form-control-static.input-lg,

#custom-html-st .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-st .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-st select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-st select[multiple].input-sm,

#custom-html-st textarea.input-sm {

  height: auto;

}

#custom-html-st .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-st .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-st .form-group-sm select[multiple].form-control,

#custom-html-st .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-st .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-st .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-st select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-st select[multiple].input-lg,

#custom-html-st textarea.input-lg {

  height: auto;

}

#custom-html-st .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-st .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-st .form-group-lg select[multiple].form-control,

#custom-html-st .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-st .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-st .has-feedback {

  position: relative;

}

#custom-html-st .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-st .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-st .form-group-lg .form-control + .form-control-feedback,

#custom-html-st .input-group-lg + .form-control-feedback,

#custom-html-st .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-st .form-group-sm .form-control + .form-control-feedback,

#custom-html-st .input-group-sm + .form-control-feedback,

#custom-html-st .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-st .has-success .checkbox,

#custom-html-st .has-success .checkbox-inline,

#custom-html-st .has-success .control-label,

#custom-html-st .has-success .help-block,

#custom-html-st .has-success .radio,

#custom-html-st .has-success .radio-inline,

#custom-html-st .has-success.checkbox label,

#custom-html-st .has-success.checkbox-inline label,

#custom-html-st .has-success.radio label,

#custom-html-st .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-st .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-st .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-st .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-st .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-st .has-warning .checkbox,

#custom-html-st .has-warning .checkbox-inline,

#custom-html-st .has-warning .control-label,

#custom-html-st .has-warning .help-block,

#custom-html-st .has-warning .radio,

#custom-html-st .has-warning .radio-inline,

#custom-html-st .has-warning.checkbox label,

#custom-html-st .has-warning.checkbox-inline label,

#custom-html-st .has-warning.radio label,

#custom-html-st .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-st .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-st .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-st .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-st .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-st .has-error .checkbox,

#custom-html-st .has-error .checkbox-inline,

#custom-html-st .has-error .control-label,

#custom-html-st .has-error .help-block,

#custom-html-st .has-error .radio,

#custom-html-st .has-error .radio-inline,

#custom-html-st .has-error.checkbox label,

#custom-html-st .has-error.checkbox-inline label,

#custom-html-st .has-error.radio label,

#custom-html-st .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-st .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-st .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-st .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-st .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-st .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-st .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-st .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-st .form-horizontal .checkbox,

#custom-html-st .form-horizontal .checkbox-inline,

#custom-html-st .form-horizontal .radio,

#custom-html-st .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-st .form-horizontal .checkbox,

#custom-html-st .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-st .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-st .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-st .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-st .btn.active.focus,

#custom-html-st .btn.active:focus,

#custom-html-st .btn.focus,

#custom-html-st .btn:active.focus,

#custom-html-st .btn:active:focus,

#custom-html-st .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-st .btn.focus,

#custom-html-st .btn:focus,

#custom-html-st .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-st .btn.active,

#custom-html-st .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-st .btn.disabled,

#custom-html-st .btn[disabled],

#custom-html-st fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-st a.btn.disabled,

#custom-html-st fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-st .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-st .btn-default.focus,

#custom-html-st .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-st .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-st .btn-default.active,

#custom-html-st .btn-default:active,

#custom-html-st .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-st .btn-default.active.focus,

#custom-html-st .btn-default.active:focus,

#custom-html-st .btn-default.active:hover,

#custom-html-st .btn-default:active.focus,

#custom-html-st .btn-default:active:focus,

#custom-html-st .btn-default:active:hover,

#custom-html-st .open > .dropdown-toggle.btn-default.focus,

#custom-html-st .open > .dropdown-toggle.btn-default:focus,

#custom-html-st .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-st .btn-default.disabled.focus,

#custom-html-st .btn-default.disabled:focus,

#custom-html-st .btn-default.disabled:hover,

#custom-html-st .btn-default[disabled].focus,

#custom-html-st .btn-default[disabled]:focus,

#custom-html-st .btn-default[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-default.focus,

#custom-html-st fieldset[disabled] .btn-default:focus,

#custom-html-st fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-st .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-st .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-st .btn-primary.focus,

#custom-html-st .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-st .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-st .btn-primary.active,

#custom-html-st .btn-primary:active,

#custom-html-st .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-st .btn-primary.active.focus,

#custom-html-st .btn-primary.active:focus,

#custom-html-st .btn-primary.active:hover,

#custom-html-st .btn-primary:active.focus,

#custom-html-st .btn-primary:active:focus,

#custom-html-st .btn-primary:active:hover,

#custom-html-st .open > .dropdown-toggle.btn-primary.focus,

#custom-html-st .open > .dropdown-toggle.btn-primary:focus,

#custom-html-st .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-st .btn-primary.disabled.focus,

#custom-html-st .btn-primary.disabled:focus,

#custom-html-st .btn-primary.disabled:hover,

#custom-html-st .btn-primary[disabled].focus,

#custom-html-st .btn-primary[disabled]:focus,

#custom-html-st .btn-primary[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-primary.focus,

#custom-html-st fieldset[disabled] .btn-primary:focus,

#custom-html-st fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-st .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-st .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-st .btn-success.focus,

#custom-html-st .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-st .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-st .btn-success.active,

#custom-html-st .btn-success:active,

#custom-html-st .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-st .btn-success.active.focus,

#custom-html-st .btn-success.active:focus,

#custom-html-st .btn-success.active:hover,

#custom-html-st .btn-success:active.focus,

#custom-html-st .btn-success:active:focus,

#custom-html-st .btn-success:active:hover,

#custom-html-st .open > .dropdown-toggle.btn-success.focus,

#custom-html-st .open > .dropdown-toggle.btn-success:focus,

#custom-html-st .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-st .btn-success.disabled.focus,

#custom-html-st .btn-success.disabled:focus,

#custom-html-st .btn-success.disabled:hover,

#custom-html-st .btn-success[disabled].focus,

#custom-html-st .btn-success[disabled]:focus,

#custom-html-st .btn-success[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-success.focus,

#custom-html-st fieldset[disabled] .btn-success:focus,

#custom-html-st fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-st .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-st .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-st .btn-info.focus,

#custom-html-st .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-st .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-st .btn-info.active,

#custom-html-st .btn-info:active,

#custom-html-st .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-st .btn-info.active.focus,

#custom-html-st .btn-info.active:focus,

#custom-html-st .btn-info.active:hover,

#custom-html-st .btn-info:active.focus,

#custom-html-st .btn-info:active:focus,

#custom-html-st .btn-info:active:hover,

#custom-html-st .open > .dropdown-toggle.btn-info.focus,

#custom-html-st .open > .dropdown-toggle.btn-info:focus,

#custom-html-st .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-st .btn-info.disabled.focus,

#custom-html-st .btn-info.disabled:focus,

#custom-html-st .btn-info.disabled:hover,

#custom-html-st .btn-info[disabled].focus,

#custom-html-st .btn-info[disabled]:focus,

#custom-html-st .btn-info[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-info.focus,

#custom-html-st fieldset[disabled] .btn-info:focus,

#custom-html-st fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-st .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-st .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-st .btn-warning.focus,

#custom-html-st .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-st .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-st .btn-warning.active,

#custom-html-st .btn-warning:active,

#custom-html-st .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-st .btn-warning.active.focus,

#custom-html-st .btn-warning.active:focus,

#custom-html-st .btn-warning.active:hover,

#custom-html-st .btn-warning:active.focus,

#custom-html-st .btn-warning:active:focus,

#custom-html-st .btn-warning:active:hover,

#custom-html-st .open > .dropdown-toggle.btn-warning.focus,

#custom-html-st .open > .dropdown-toggle.btn-warning:focus,

#custom-html-st .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-st .btn-warning.disabled.focus,

#custom-html-st .btn-warning.disabled:focus,

#custom-html-st .btn-warning.disabled:hover,

#custom-html-st .btn-warning[disabled].focus,

#custom-html-st .btn-warning[disabled]:focus,

#custom-html-st .btn-warning[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-warning.focus,

#custom-html-st fieldset[disabled] .btn-warning:focus,

#custom-html-st fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-st .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-st .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-st .btn-danger.focus,

#custom-html-st .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-st .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-st .btn-danger.active,

#custom-html-st .btn-danger:active,

#custom-html-st .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-st .btn-danger.active.focus,

#custom-html-st .btn-danger.active:focus,

#custom-html-st .btn-danger.active:hover,

#custom-html-st .btn-danger:active.focus,

#custom-html-st .btn-danger:active:focus,

#custom-html-st .btn-danger:active:hover,

#custom-html-st .open > .dropdown-toggle.btn-danger.focus,

#custom-html-st .open > .dropdown-toggle.btn-danger:focus,

#custom-html-st .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-st .btn-danger.disabled.focus,

#custom-html-st .btn-danger.disabled:focus,

#custom-html-st .btn-danger.disabled:hover,

#custom-html-st .btn-danger[disabled].focus,

#custom-html-st .btn-danger[disabled]:focus,

#custom-html-st .btn-danger[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-danger.focus,

#custom-html-st fieldset[disabled] .btn-danger:focus,

#custom-html-st fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-st .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-st .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-st .btn-link,

#custom-html-st .btn-link.active,

#custom-html-st .btn-link:active,

#custom-html-st .btn-link[disabled],

#custom-html-st fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-st .btn-link,

#custom-html-st .btn-link:active,

#custom-html-st .btn-link:focus,

#custom-html-st .btn-link:hover {

  border-color: transparent;

}

#custom-html-st .btn-link:focus,

#custom-html-st .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-st .btn-link[disabled]:focus,

#custom-html-st .btn-link[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-link:focus,

#custom-html-st fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-st .btn-group-lg > .btn,

#custom-html-st .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-st .btn-group-sm > .btn,

#custom-html-st .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-st .btn-group-xs > .btn,

#custom-html-st .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-st .btn-block {

  display: block;

  width: 100%;

}

#custom-html-st .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-st input[type=button].btn-block,

#custom-html-st input[type=reset].btn-block,

#custom-html-st input[type=submit].btn-block {

  width: 100%;

}

#custom-html-st .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-st .fade.in {

  opacity: 1;

}

#custom-html-st .collapse {

  display: none;

}

#custom-html-st .collapse.in {

  display: block;

}

#custom-html-st tr.collapse.in {

  display: table-row;

}

#custom-html-st tbody.collapse.in {

  display: table-row-group;

}

#custom-html-st .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-st .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-st .dropdown,

#custom-html-st .dropup {

  position: relative;

}

#custom-html-st .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-st .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-st .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-st .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-st .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-st .dropdown-menu > li > a:focus,

#custom-html-st .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-st .dropdown-menu > .active > a,

#custom-html-st .dropdown-menu > .active > a:focus,

#custom-html-st .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-st .dropdown-menu > .disabled > a,

#custom-html-st .dropdown-menu > .disabled > a:focus,

#custom-html-st .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-st .dropdown-menu > .disabled > a:focus,

#custom-html-st .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-st .open > .dropdown-menu {

  display: block;

}

#custom-html-st .open > a {

  outline: 0;

}

#custom-html-st .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-st .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-st .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-st .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-st .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-st .dropup .caret,

#custom-html-st .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-st .dropup .dropdown-menu,

#custom-html-st .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-st .btn-group,

#custom-html-st .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-st .btn-group-vertical > .btn,

#custom-html-st .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-st .btn-group-vertical > .btn.active,

#custom-html-st .btn-group-vertical > .btn:active,

#custom-html-st .btn-group-vertical > .btn:focus,

#custom-html-st .btn-group-vertical > .btn:hover,

#custom-html-st .btn-group > .btn.active,

#custom-html-st .btn-group > .btn:active,

#custom-html-st .btn-group > .btn:focus,

#custom-html-st .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-st .btn-group .btn + .btn,

#custom-html-st .btn-group .btn + .btn-group,

#custom-html-st .btn-group .btn-group + .btn,

#custom-html-st .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-st .btn-toolbar {

  margin-left: -5px;

}

#custom-html-st .btn-toolbar .btn,

#custom-html-st .btn-toolbar .btn-group,

#custom-html-st .btn-toolbar .input-group {

  float: left;

}

#custom-html-st .btn-toolbar > .btn,

#custom-html-st .btn-toolbar > .btn-group,

#custom-html-st .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-st .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-st .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-st .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-st .btn-group > .btn:last-child:not(:first-child),

#custom-html-st .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-st .btn-group > .btn-group {

  float: left;

}

#custom-html-st .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-st .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-st .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-st .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-st .btn-group .dropdown-toggle:active,

#custom-html-st .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-st .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-st .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-st .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-st .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-st .btn .caret {

  margin-left: 0;

}

#custom-html-st .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-st .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-st .btn-group-vertical > .btn,

#custom-html-st .btn-group-vertical > .btn-group,

#custom-html-st .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-st .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-st .btn-group-vertical > .btn + .btn,

#custom-html-st .btn-group-vertical > .btn + .btn-group,

#custom-html-st .btn-group-vertical > .btn-group + .btn,

#custom-html-st .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-st .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-st .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-st .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-st .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-st .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-st .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-st .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-st .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-st .btn-group-justified > .btn,

#custom-html-st .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-st .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-st .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-st [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-st [data-toggle=buttons] > .btn input[type=radio],

#custom-html-st [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-st [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-st .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-st .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-st .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-st .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-st .input-group-lg > .form-control,

#custom-html-st .input-group-lg > .input-group-addon,

#custom-html-st .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-st select.input-group-lg > .form-control,

#custom-html-st select.input-group-lg > .input-group-addon,

#custom-html-st select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-st select[multiple].input-group-lg > .form-control,

#custom-html-st select[multiple].input-group-lg > .input-group-addon,

#custom-html-st select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-st textarea.input-group-lg > .form-control,

#custom-html-st textarea.input-group-lg > .input-group-addon,

#custom-html-st textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-st .input-group-sm > .form-control,

#custom-html-st .input-group-sm > .input-group-addon,

#custom-html-st .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-st select.input-group-sm > .form-control,

#custom-html-st select.input-group-sm > .input-group-addon,

#custom-html-st select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-st select[multiple].input-group-sm > .form-control,

#custom-html-st select[multiple].input-group-sm > .input-group-addon,

#custom-html-st select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-st textarea.input-group-sm > .form-control,

#custom-html-st textarea.input-group-sm > .input-group-addon,

#custom-html-st textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-st .input-group .form-control,

#custom-html-st .input-group-addon,

#custom-html-st .input-group-btn {

  display: table-cell;

}

#custom-html-st .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-st .input-group-addon:not(:first-child):not(:last-child),

#custom-html-st .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-st .input-group-addon,

#custom-html-st .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-st .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-st .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-st .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-st .input-group-addon input[type=checkbox],

#custom-html-st .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-st .input-group .form-control:first-child,

#custom-html-st .input-group-addon:first-child,

#custom-html-st .input-group-btn:first-child > .btn,

#custom-html-st .input-group-btn:first-child > .btn-group > .btn,

#custom-html-st .input-group-btn:first-child > .dropdown-toggle,

#custom-html-st .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-st .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-st .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-st .input-group .form-control:last-child,

#custom-html-st .input-group-addon:last-child,

#custom-html-st .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-st .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-st .input-group-btn:last-child > .btn,

#custom-html-st .input-group-btn:last-child > .btn-group > .btn,

#custom-html-st .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-st .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-st .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-st .input-group-btn > .btn {

  position: relative;

}

#custom-html-st .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-st .input-group-btn > .btn:active,

#custom-html-st .input-group-btn > .btn:focus,

#custom-html-st .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-st .input-group-btn:first-child > .btn,

#custom-html-st .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-st .input-group-btn:last-child > .btn,

#custom-html-st .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-st .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-st .nav > li {

  position: relative;

  display: block;

}

#custom-html-st .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-st .nav > li > a:focus,

#custom-html-st .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-st .nav > li.disabled > a {

  color: #777777;

}

#custom-html-st .nav > li.disabled > a:focus,

#custom-html-st .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-st .nav .open > a,

#custom-html-st .nav .open > a:focus,

#custom-html-st .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-st .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-st .nav > li > a > img {

  max-width: none;

}

#custom-html-st .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-st .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-st .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-st .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-st .nav-tabs > li.active > a,

#custom-html-st .nav-tabs > li.active > a:focus,

#custom-html-st .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-st .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-st .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-st .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-st .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-st .nav-tabs.nav-justified > .active > a,

#custom-html-st .nav-tabs.nav-justified > .active > a:focus,

#custom-html-st .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-st .nav-pills > li {

  float: left;

}

#custom-html-st .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-st .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-st .nav-pills > li.active > a,

#custom-html-st .nav-pills > li.active > a:focus,

#custom-html-st .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-st .nav-stacked > li {

  float: none;

}

#custom-html-st .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-st .nav-justified {

  width: 100%;

}

#custom-html-st .nav-justified > li {

  float: none;

}

#custom-html-st .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-st .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-st .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-st .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-st .nav-tabs-justified > .active > a,

#custom-html-st .nav-tabs-justified > .active > a:focus,

#custom-html-st .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-st .tab-content > .tab-pane {

  display: none;

}

#custom-html-st .tab-content > .active {

  display: block;

}

#custom-html-st .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-st .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-st .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-st .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-st .navbar-fixed-bottom .navbar-collapse,

#custom-html-st .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-st .navbar-fixed-bottom .navbar-collapse,

  #custom-html-st .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-st .container-fluid > .navbar-collapse,

#custom-html-st .container-fluid > .navbar-header,

#custom-html-st .container > .navbar-collapse,

#custom-html-st .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-st .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-st .navbar-fixed-bottom,

#custom-html-st .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-st .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-st .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-st .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-st .navbar-brand:focus,

#custom-html-st .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-st .navbar-brand > img {

  display: block;

}

#custom-html-st .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-st .navbar-toggle:focus {

  outline: 0;

}

#custom-html-st .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-st .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-st .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-st .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-st .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-st .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-st .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-st .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-st .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-st .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-st .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-st .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-st .visible-xs {

    display: block !important;

  }

  #custom-html-st table.visible-xs {

    display: table !important;

  }

  #custom-html-st tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-st td.visible-xs,

  #custom-html-st th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-st .visible-xs-block {

    display: block !important;

  }

  #custom-html-st .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-st .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-st .hidden-xs {

    display: none !important;

  }

  #custom-html-st .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-st .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-st section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-st .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-st .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-st .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-st .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-st .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-st .tiles .tile:nth-child(1),

  #custom-html-st .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-st ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-st ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-st ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-st .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-st .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-st .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-st .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-st .promo-banner form {

    text-align: center;

  }

}

#custom-html-st .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-st .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-st .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-st .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-st .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-st .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-st .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-st .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-st .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-st .navbar-default .navbar-brand:focus,

#custom-html-st .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-st .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-st .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-st .navbar-default .navbar-nav > li > a:focus,

#custom-html-st .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-st .navbar-default .navbar-nav > .active > a,

#custom-html-st .navbar-default .navbar-nav > .active > a:focus,

#custom-html-st .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-st .navbar-default .navbar-nav > .disabled > a,

#custom-html-st .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-st .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-st .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-st .navbar-default .navbar-toggle:focus,

#custom-html-st .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-st .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-st .navbar-default .navbar-collapse,

#custom-html-st .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-st .navbar-default .navbar-nav > .open > a,

#custom-html-st .navbar-default .navbar-nav > .open > a:focus,

#custom-html-st .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-st .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-st .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-st .navbar-default .btn-link {

  color: #777777;

}

#custom-html-st .navbar-default .btn-link:focus,

#custom-html-st .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-st .navbar-default .btn-link[disabled]:focus,

#custom-html-st .navbar-default .btn-link[disabled]:hover,

#custom-html-st fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-st fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-st .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-st .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-st .navbar-inverse .navbar-brand:focus,

#custom-html-st .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-st .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-st .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-st .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-st .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-st .navbar-inverse .navbar-nav > .active > a,

#custom-html-st .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-st .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-st .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-st .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-st .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-st .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-st .navbar-inverse .navbar-toggle:focus,

#custom-html-st .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-st .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-st .navbar-inverse .navbar-collapse,

#custom-html-st .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-st .navbar-inverse .navbar-nav > .open > a,

#custom-html-st .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-st .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-st .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-st .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-st .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-st .navbar-inverse .btn-link:focus,

#custom-html-st .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-st .navbar-inverse .btn-link[disabled]:focus,

#custom-html-st .navbar-inverse .btn-link[disabled]:hover,

#custom-html-st fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-st fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-st .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-st .breadcrumb > li {

  display: inline-block;

}

#custom-html-st .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-st .breadcrumb > .active {

  color: #777777;

}

#custom-html-st .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-st .pagination > li {

  display: inline;

}

#custom-html-st .pagination > li > a,

#custom-html-st .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-st .pagination > li:first-child > a,

#custom-html-st .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-st .pagination > li:last-child > a,

#custom-html-st .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-st .pagination > li > a:focus,

#custom-html-st .pagination > li > a:hover,

#custom-html-st .pagination > li > span:focus,

#custom-html-st .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-st .pagination > .active > a,

#custom-html-st .pagination > .active > a:focus,

#custom-html-st .pagination > .active > a:hover,

#custom-html-st .pagination > .active > span,

#custom-html-st .pagination > .active > span:focus,

#custom-html-st .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-st .pagination > .disabled > a,

#custom-html-st .pagination > .disabled > a:focus,

#custom-html-st .pagination > .disabled > a:hover,

#custom-html-st .pagination > .disabled > span,

#custom-html-st .pagination > .disabled > span:focus,

#custom-html-st .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-st .pagination-lg > li > a,

#custom-html-st .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-st .pagination-lg > li:first-child > a,

#custom-html-st .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-st .pagination-lg > li:last-child > a,

#custom-html-st .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-st .pagination-sm > li > a,

#custom-html-st .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-st .pagination-sm > li:first-child > a,

#custom-html-st .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-st .pagination-sm > li:last-child > a,

#custom-html-st .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-st .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-st .pager li {

  display: inline;

}

#custom-html-st .pager li > a,

#custom-html-st .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-st .pager li > a:focus,

#custom-html-st .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-st .pager .next > a,

#custom-html-st .pager .next > span {

  float: right;

}

#custom-html-st .pager .previous > a,

#custom-html-st .pager .previous > span {

  float: left;

}

#custom-html-st .pager .disabled > a,

#custom-html-st .pager .disabled > a:focus,

#custom-html-st .pager .disabled > a:hover,

#custom-html-st .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-st .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-st a.label:focus,

#custom-html-st a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-st .label:empty {

  display: none;

}

#custom-html-st .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-st .label-default {

  background-color: #777777;

}

#custom-html-st .label-default[href]:focus,

#custom-html-st .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-st .label-primary {

  background-color: #337ab7;

}

#custom-html-st .label-primary[href]:focus,

#custom-html-st .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-st .label-success {

  background-color: #5cb85c;

}

#custom-html-st .label-success[href]:focus,

#custom-html-st .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-st .label-info {

  background-color: #5bc0de;

}

#custom-html-st .label-info[href]:focus,

#custom-html-st .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-st .label-warning {

  background-color: #f0ad4e;

}

#custom-html-st .label-warning[href]:focus,

#custom-html-st .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-st .label-danger {

  background-color: #d9534f;

}

#custom-html-st .label-danger[href]:focus,

#custom-html-st .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-st .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-st .badge:empty {

  display: none;

}

#custom-html-st .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-st .btn-group-xs > .btn .badge,

#custom-html-st .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-st a.badge:focus,

#custom-html-st a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-st .list-group-item.active > .badge,

#custom-html-st .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-st .list-group-item > .badge {

  float: right;

}

#custom-html-st .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-st .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-st .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-st .jumbotron .h1,

#custom-html-st .jumbotron h1 {

  color: inherit;

}

#custom-html-st .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-st .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-st .container .jumbotron,

#custom-html-st .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-st .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-st .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-st .container .jumbotron,

  #custom-html-st .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-st .jumbotron .h1,

  #custom-html-st .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-st .carousel-control .glyphicon-chevron-left,

  #custom-html-st .carousel-control .glyphicon-chevron-right,

  #custom-html-st .carousel-control .icon-next,

  #custom-html-st .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-st .carousel-control .glyphicon-chevron-left,

  #custom-html-st .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-st .carousel-control .glyphicon-chevron-right,

  #custom-html-st .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-st .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-st .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-st .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-st .thumbnail a > img,

#custom-html-st .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-st a.thumbnail.active,

#custom-html-st a.thumbnail:focus,

#custom-html-st a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-st .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-st .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-st .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-st .alert .alert-link {

  font-weight: 700;

}

#custom-html-st .alert > p,

#custom-html-st .alert > ul {

  margin-bottom: 0;

}

#custom-html-st .alert > p + p {

  margin-top: 5px;

}

#custom-html-st .alert-dismissable,

#custom-html-st .alert-dismissible {

  padding-right: 35px;

}

#custom-html-st .alert-dismissable .close,

#custom-html-st .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-st .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-st .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-st .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-st .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-st .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-st .alert-info .alert-link {

  color: #000000;

}

#custom-html-st .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-st .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-st .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-st .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-st .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-st .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-st .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-st .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-st .progress-bar-striped,

#custom-html-st .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-st .progress-bar.active,

#custom-html-st .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-st .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-st .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-st .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-st .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-st .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-st .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-st .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-st .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-st .media {

  margin-top: 15px;

}

#custom-html-st .media:first-child {

  margin-top: 0;

}

#custom-html-st .media,

#custom-html-st .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-st .media-body {

  width: 10000px;

}

#custom-html-st .media-object {

  display: block;

}

#custom-html-st .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-st .media-right,

#custom-html-st .media > .pull-right {

  padding-left: 10px;

}

#custom-html-st .media-left,

#custom-html-st .media > .pull-left {

  padding-right: 10px;

}

#custom-html-st .media-body,

#custom-html-st .media-left,

#custom-html-st .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-st .media-middle {

  vertical-align: middle;

}

#custom-html-st .media-bottom {

  vertical-align: bottom;

}

#custom-html-st .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-st .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-st .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-st .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-st .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-st .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-st a.list-group-item,

#custom-html-st button.list-group-item {

  color: #555555;

}

#custom-html-st a.list-group-item .list-group-item-heading,

#custom-html-st button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-st a.list-group-item:focus,

#custom-html-st a.list-group-item:hover,

#custom-html-st button.list-group-item:focus,

#custom-html-st button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-st button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-st .list-group-item.disabled,

#custom-html-st .list-group-item.disabled:focus,

#custom-html-st .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-st .list-group-item.disabled .list-group-item-heading,

#custom-html-st .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-st .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-st .list-group-item.disabled .list-group-item-text,

#custom-html-st .list-group-item.disabled:focus .list-group-item-text,

#custom-html-st .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-st .list-group-item.active,

#custom-html-st .list-group-item.active:focus,

#custom-html-st .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-st .list-group-item.active .list-group-item-heading,

#custom-html-st .list-group-item.active .list-group-item-heading > .small,

#custom-html-st .list-group-item.active .list-group-item-heading > small,

#custom-html-st .list-group-item.active:focus .list-group-item-heading,

#custom-html-st .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-st .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-st .list-group-item.active:hover .list-group-item-heading,

#custom-html-st .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-st .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-st .list-group-item.active .list-group-item-text,

#custom-html-st .list-group-item.active:focus .list-group-item-text,

#custom-html-st .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-st .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-st a.list-group-item-success,

#custom-html-st button.list-group-item-success {

  color: #3c763d;

}

#custom-html-st a.list-group-item-success .list-group-item-heading,

#custom-html-st button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-st a.list-group-item-success:focus,

#custom-html-st a.list-group-item-success:hover,

#custom-html-st button.list-group-item-success:focus,

#custom-html-st button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-st a.list-group-item-success.active,

#custom-html-st a.list-group-item-success.active:focus,

#custom-html-st a.list-group-item-success.active:hover,

#custom-html-st button.list-group-item-success.active,

#custom-html-st button.list-group-item-success.active:focus,

#custom-html-st button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-st .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-st a.list-group-item-info,

#custom-html-st button.list-group-item-info {

  color: #31708f;

}

#custom-html-st a.list-group-item-info .list-group-item-heading,

#custom-html-st button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-st a.list-group-item-info:focus,

#custom-html-st a.list-group-item-info:hover,

#custom-html-st button.list-group-item-info:focus,

#custom-html-st button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-st a.list-group-item-info.active,

#custom-html-st a.list-group-item-info.active:focus,

#custom-html-st a.list-group-item-info.active:hover,

#custom-html-st button.list-group-item-info.active,

#custom-html-st button.list-group-item-info.active:focus,

#custom-html-st button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-st .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-st a.list-group-item-warning,

#custom-html-st button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-st a.list-group-item-warning .list-group-item-heading,

#custom-html-st button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-st a.list-group-item-warning:focus,

#custom-html-st a.list-group-item-warning:hover,

#custom-html-st button.list-group-item-warning:focus,

#custom-html-st button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-st a.list-group-item-warning.active,

#custom-html-st a.list-group-item-warning.active:focus,

#custom-html-st a.list-group-item-warning.active:hover,

#custom-html-st button.list-group-item-warning.active,

#custom-html-st button.list-group-item-warning.active:focus,

#custom-html-st button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-st .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-st a.list-group-item-danger,

#custom-html-st button.list-group-item-danger {

  color: #a94442;

}

#custom-html-st a.list-group-item-danger .list-group-item-heading,

#custom-html-st button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-st a.list-group-item-danger:focus,

#custom-html-st a.list-group-item-danger:hover,

#custom-html-st button.list-group-item-danger:focus,

#custom-html-st button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-st a.list-group-item-danger.active,

#custom-html-st a.list-group-item-danger.active:focus,

#custom-html-st a.list-group-item-danger.active:hover,

#custom-html-st button.list-group-item-danger.active,

#custom-html-st button.list-group-item-danger.active:focus,

#custom-html-st button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-st .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-st .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-st .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-st .panel-body {

  padding: 10px 15px;

}

#custom-html-st .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-st .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-st .panel-title > .small,

#custom-html-st .panel-title > .small > a,

#custom-html-st .panel-title > a,

#custom-html-st .panel-title > small,

#custom-html-st .panel-title > small > a {

  color: inherit;

}

#custom-html-st .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-st .panel > .list-group,

#custom-html-st .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-st .panel > .list-group .list-group-item,

#custom-html-st .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-st .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-st .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-st .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-st .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-st .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-st .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-st .panel > .panel-collapse > .table,

#custom-html-st .panel > .table,

#custom-html-st .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-st .panel > .panel-collapse > .table caption,

#custom-html-st .panel > .table caption,

#custom-html-st .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-st .panel > .table-responsive:first-child > .table:first-child,

#custom-html-st .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-st .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-st .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-st .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-st .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-st .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-st .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-st .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-st .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-st .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-st .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-st .panel > .table-responsive:last-child > .table:last-child,

#custom-html-st .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-st .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-st .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-st .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-st .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-st .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-st .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-st .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-st .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-st .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-st .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-st .panel > .panel-body + .table,

#custom-html-st .panel > .panel-body + .table-responsive,

#custom-html-st .panel > .table + .panel-body,

#custom-html-st .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-st .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-st .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-st .panel > .table-bordered,

#custom-html-st .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-st .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-st .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-st .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-st .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-st .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-st .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-st .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-st .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-st .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-st .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-st .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-st .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-st .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-st .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-st .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-st .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-st .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-st .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-st .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-st .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-st .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-st .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-st .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-st .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-st .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-st .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-st .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-st .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-st .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-st .panel-group {

  margin-bottom: 20px;

}

#custom-html-st .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-st .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-st .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-st .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-st .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-st .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-st .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-st .panel-default {

  border-color: #dddddd;

}

#custom-html-st .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-st .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-st .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-st .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-st .panel-primary {

  border-color: #337ab7;

}

#custom-html-st .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-st .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-st .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-st .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-st .panel-success {

  border-color: #d6e9c6;

}

#custom-html-st .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-st .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-st .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-st .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-st .panel-info {

  border-color: #bce8f1;

}

#custom-html-st .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-st .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-st .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-st .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-st .panel-warning {

  border-color: #faebcc;

}

#custom-html-st .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-st .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-st .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-st .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-st .panel-danger {

  border-color: #ebccd1;

}

#custom-html-st .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-st .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-st .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-st .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-st .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-st .embed-responsive .embed-responsive-item,

#custom-html-st .embed-responsive embed,

#custom-html-st .embed-responsive iframe,

#custom-html-st .embed-responsive object,

#custom-html-st .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-st .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-st .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-st .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-st .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-st .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-st .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-st .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-st .close:focus,

#custom-html-st .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-st button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-st .modal-open {

  overflow: hidden;

}

#custom-html-st .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-st .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-st .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-st .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-st .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-st .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-st .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-st .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-st .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-st .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-st .modal-header .close {

  margin-top: -2px;

}

#custom-html-st .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-st .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-st .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-st .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-st .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-st .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-st .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-st .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-st .tooltip.in {

  opacity: 0.9;

}

#custom-html-st .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-st .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-st .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-st .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-st .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-st .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-st .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-st .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-st .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-st .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-st .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-st .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-st .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-st .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-st .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-st .popover.top {

  margin-top: -10px;

}

#custom-html-st .popover.right {

  margin-left: 10px;

}

#custom-html-st .popover.bottom {

  margin-top: 10px;

}

#custom-html-st .popover.left {

  margin-left: -10px;

}

#custom-html-st .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-st .popover-content {

  padding: 9px 14px;

}

#custom-html-st .popover > .arrow,

#custom-html-st .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-st .popover > .arrow {

  border-width: 11px;

}

#custom-html-st .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-st .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-st .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-st .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-st .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-st .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-st .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-st .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-st .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-st .carousel {

  position: relative;

}

#custom-html-st .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-st .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-st .carousel-inner > .item > a > img,

#custom-html-st .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-st .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-st .carousel-inner > .item.active.right,

  #custom-html-st .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-st .carousel-inner > .item.active.left,

  #custom-html-st .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-st .carousel-inner > .item.active,

  #custom-html-st .carousel-inner > .item.next.left,

  #custom-html-st .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-st .carousel-inner > .active,

#custom-html-st .carousel-inner > .next,

#custom-html-st .carousel-inner > .prev {

  display: block;

}

#custom-html-st .carousel-inner > .active {

  left: 0;

}

#custom-html-st .carousel-inner > .next,

#custom-html-st .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-st .carousel-inner > .next {

  left: 100%;

}

#custom-html-st .carousel-inner > .prev {

  left: -100%;

}

#custom-html-st .carousel-inner > .next.left,

#custom-html-st .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-st .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-st .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-st .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-st .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-st .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-st .carousel-control:focus,

#custom-html-st .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-st .carousel-control .glyphicon-chevron-left,

#custom-html-st .carousel-control .glyphicon-chevron-right,

#custom-html-st .carousel-control .icon-next,

#custom-html-st .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-st .carousel-control .glyphicon-chevron-left,

#custom-html-st .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-st .carousel-control .glyphicon-chevron-right,

#custom-html-st .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-st .carousel-control .icon-next,

#custom-html-st .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-st .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-st .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-st .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-st .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-st .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-st .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-st .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-st .btn-group-vertical > .btn-group:after,

#custom-html-st .btn-group-vertical > .btn-group:before,

#custom-html-st .btn-toolbar:after,

#custom-html-st .btn-toolbar:before,

#custom-html-st .clearfix:after,

#custom-html-st .clearfix:before,

#custom-html-st .container-fluid:after,

#custom-html-st .container-fluid:before,

#custom-html-st .container:after,

#custom-html-st .container:before,

#custom-html-st .dl-horizontal dd:after,

#custom-html-st .dl-horizontal dd:before,

#custom-html-st .form-horizontal .form-group:after,

#custom-html-st .form-horizontal .form-group:before,

#custom-html-st .modal-footer:after,

#custom-html-st .modal-footer:before,

#custom-html-st .modal-header:after,

#custom-html-st .modal-header:before,

#custom-html-st .nav:after,

#custom-html-st .nav:before,

#custom-html-st .navbar-collapse:after,

#custom-html-st .navbar-collapse:before,

#custom-html-st .navbar-header:after,

#custom-html-st .navbar-header:before,

#custom-html-st .navbar:after,

#custom-html-st .navbar:before,

#custom-html-st .pager:after,

#custom-html-st .pager:before,

#custom-html-st .panel-body:after,

#custom-html-st .panel-body:before,

#custom-html-st .row:after,

#custom-html-st .row:before {

  display: table;

  content: " ";

}

#custom-html-st .btn-group-vertical > .btn-group:after,

#custom-html-st .btn-toolbar:after,

#custom-html-st .clearfix:after,

#custom-html-st .container-fluid:after,

#custom-html-st .container:after,

#custom-html-st .dl-horizontal dd:after,

#custom-html-st .form-horizontal .form-group:after,

#custom-html-st .modal-footer:after,

#custom-html-st .modal-header:after,

#custom-html-st .nav:after,

#custom-html-st .navbar-collapse:after,

#custom-html-st .navbar-header:after,

#custom-html-st .navbar:after,

#custom-html-st .pager:after,

#custom-html-st .panel-body:after,

#custom-html-st .row:after {

  clear: both;

}

#custom-html-st .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-st .pull-right {

  float: right !important;

}

#custom-html-st .pull-left {

  float: left !important;

}

#custom-html-st .hide {

  display: none !important;

}

#custom-html-st .show {

  display: block !important;

}

#custom-html-st .invisible {

  visibility: hidden;

}

#custom-html-st .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-st .hidden {

  display: none !important;

}

#custom-html-st .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-st .visible-lg,

#custom-html-st .visible-md,

#custom-html-st .visible-sm,

#custom-html-st .visible-xs {

  display: none !important;

}

#custom-html-st .visible-lg-block,

#custom-html-st .visible-lg-inline,

#custom-html-st .visible-lg-inline-block,

#custom-html-st .visible-md-block,

#custom-html-st .visible-md-inline,

#custom-html-st .visible-md-inline-block,

#custom-html-st .visible-sm-block,

#custom-html-st .visible-sm-inline,

#custom-html-st .visible-sm-inline-block,

#custom-html-st .visible-xs-block,

#custom-html-st .visible-xs-inline,

#custom-html-st .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-st .visible-sm {

    display: block !important;

  }

  #custom-html-st table.visible-sm {

    display: table !important;

  }

  #custom-html-st tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-st td.visible-sm,

  #custom-html-st th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-st .visible-sm-block {

    display: block !important;

  }

  #custom-html-st .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-st .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-st .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-st .visible-md {

    display: block !important;

  }

  #custom-html-st table.visible-md {

    display: table !important;

  }

  #custom-html-st tr.visible-md {

    display: table-row !important;

  }

  #custom-html-st td.visible-md,

  #custom-html-st th.visible-md {

    display: table-cell !important;

  }

  #custom-html-st .visible-md-block {

    display: block !important;

  }

  #custom-html-st .visible-md-inline {

    display: inline !important;

  }

  #custom-html-st .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-st .hidden-md {

    display: none !important;

  }

}

#custom-html-st .visible-print {

  display: none !important;

}

#custom-html-st .visible-print-block {

  display: none !important;

}

#custom-html-st .visible-print-inline {

  display: none !important;

}

#custom-html-st .visible-print-inline-block {

  display: none !important;

}

#custom-html-st .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-st .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-st .intl-tel-input .hide {

  display: none;

}

#custom-html-st .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-st .intl-tel-input input,

#custom-html-st .intl-tel-input input[type=tel],

#custom-html-st .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-st .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-st .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-st .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-st .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-st .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-st .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-st .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-st .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-st .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-st .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-st .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-st .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-st .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-st .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-st .intl-tel-input .country-list .country-name,

#custom-html-st .intl-tel-input .country-list .dial-code,

#custom-html-st .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-st .intl-tel-input .country-list .country-name,

#custom-html-st .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-st .intl-tel-input.allow-dropdown input,

#custom-html-st .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-st .intl-tel-input.allow-dropdown input[type=text],

#custom-html-st .intl-tel-input.separate-dial-code input,

#custom-html-st .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-st .intl-tel-input.allow-dropdown .flag-container,

#custom-html-st .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-st .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-st .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-st .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-st .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-st .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-st .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-st .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-st .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-st .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-st .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-st .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-st .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-st .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-st .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-st .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-st .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-st .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-st .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-st .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-st .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-st .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-st .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-st .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-st .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-st .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-st .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-st .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-st .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-st .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-st .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-st .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-st .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-st .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-st .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-st .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-st .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-st .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-st .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-st .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-st .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-st .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-st .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-st .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-st .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-st .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-st .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-st .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-st .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-st .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-st .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-st .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-st .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-st .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-st .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-st .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-st .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-st .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-st .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-st .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-st .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-st .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-st .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-st .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-st .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-st .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-st .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-st .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-st .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-st .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-st .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-st .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-st .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-st .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-st .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-st .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-st .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-st .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-st .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-st .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-st .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-st .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-st .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-st .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-st .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-st .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-st .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-st .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-st .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-st .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-st .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-st .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-st .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-st .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-st .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-st .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-st .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-st .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-st .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-st .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-st .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-st .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-st .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-st .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-st .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-st .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-st .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-st .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-st .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-st .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-st .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-st .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-st .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-st .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-st .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-st .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-st .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-st .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-st .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-st .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-st .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-st .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-st .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-st .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-st .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-st .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-st .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-st .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-st .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-st .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-st .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-st .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-st .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-st .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-st .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-st .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-st .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-st .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-st .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-st .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-st .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-st .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-st .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-st .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-st .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-st .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-st .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-st .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-st .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-st .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-st .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-st .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-st .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-st .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-st .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-st .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-st .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-st .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-st .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-st .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-st .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-st .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-st .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-st .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-st .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-st .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-st .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-st .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-st .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-st .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-st .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-st .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-st .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-st .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-st .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-st .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-st .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-st .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-st .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-st .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-st .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-st .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-st .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-st .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-st .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-st .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-st .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-st .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-st .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-st .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-st .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-st .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-st .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-st .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-st .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-st .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-st .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-st .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-st .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-st .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-st .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-st .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-st .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-st .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-st .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-st .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-st .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-st .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-st .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-st .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-st .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-st .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-st .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-st .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-st .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-st .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-st .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-st .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-st .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-st .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-st .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-st .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-st .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-st .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-st .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-st .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-st .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-st .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-st .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-st .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-st .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-st .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-st .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-st .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-st .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-st .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-st .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-st .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-st .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-st .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-st .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-st .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-st .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-st .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-st .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-st .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-st .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-st .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-st .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-st .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-st .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-st .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-st .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-st .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-st .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-st .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-st .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-st .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-st .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-st .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-st .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-st .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-st .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-st .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-st .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-st .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-st .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-st .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-st .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-st .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-st .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-st .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-st .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-st .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-st .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-st body,

#custom-html-st button,

#custom-html-st input,

#custom-html-st select,

#custom-html-st textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-st h1,

#custom-html-st h2,

#custom-html-st h3,

#custom-html-st h4,

#custom-html-st h5,

#custom-html-st h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-st .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-st .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-st .navbar-main li.account {

  background-color: #000000;

}

#custom-html-st .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-st .navbar-main .navbar-nav > .active > a,

#custom-html-st .navbar-main .navbar-nav > .active > a:focus,

#custom-html-st .navbar-main .navbar-nav > .active > a:hover,

#custom-html-st .navbar-main .navbar-nav > .open > a,

#custom-html-st .navbar-main .navbar-nav > .open > a:focus,

#custom-html-st .navbar-main .navbar-nav > .open > a:hover,

#custom-html-st .navbar-main .navbar-nav > li > a:focus,

#custom-html-st .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-st #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-st .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-st .navbar-header {

    float: none;

  }

  #custom-html-st .navbar-left,

  #custom-html-st .navbar-right {

    float: none !important;

  }

  #custom-html-st .navbar-toggle {

    display: block;

  }

  #custom-html-st .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-st .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-st .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-st .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-st .navbar-nav > li {

    float: none;

  }

  #custom-html-st .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-st .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-st .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-st .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-st .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-st ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-st ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-st ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-st .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-st .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-st .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-st .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-st .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-st .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-st #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-st #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-st .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-st a.list-group-item.active,

#custom-html-st a.list-group-item.active:focus,

#custom-html-st a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-st .dropdown-menu > li > a:focus,

#custom-html-st .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-st input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-st .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-st body,

#custom-html-st html {

  height: 100%;

}

#custom-html-st section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-st section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-st section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-st section#header .search {

  margin: 20px 0;

}

#custom-html-st section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-st section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-st section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-st section#main-content {

  margin-bottom: 60px;

}

#custom-html-st .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-st section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-st section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-st section#footer {

    line-height: 32px;

  }

}

#custom-html-st section#footer .back-to-top {

  float: right;

}

#custom-html-st section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-st .adminreturndiv {

  display: none !important;

}

#custom-html-st .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-st .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-st .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-st .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-st .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-st .navbar-main .navbar-toggle:focus,

#custom-html-st .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-st .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-st .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-st div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-st div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-st div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-st div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-st div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-st .h1,

  #custom-html-st h1 {

    font-size: 26px;

  }

  #custom-html-st .h2,

  #custom-html-st h2 {

    font-size: 20px;

  }

  #custom-html-st .h3,

  #custom-html-st h3 {

    font-size: 16px;

  }

  #custom-html-st .h4,

  #custom-html-st h4 {

    font-size: 14px;

  }

  #custom-html-st .h5,

  #custom-html-st h5 {

    font-size: 12px;

  }

  #custom-html-st .h6,

  #custom-html-st h6 {

    font-size: 11px;

  }

  #custom-html-st div.header-lined small {

    display: none;

  }

  #custom-html-st .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-st .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-st .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-st .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-st .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-st div.credit-card {

    max-width: 250px;

  }

  #custom-html-st div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-st div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-st div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-st div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-st div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-st .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-st .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-st .margin-10 {

  margin: 10px;

}

#custom-html-st .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-st .margin-top-5 {

  margin-top: 5px;

}

#custom-html-st .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-st .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-st .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-st .input-inline {

  display: inline-block;

}

#custom-html-st .input-inline-100 {

  width: 100px;

}

#custom-html-st .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-st .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-st .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-st .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-st i.icon-rss {

  color: #ff6600;

}

#custom-html-st section#main-menu {

  background-color: #000000;

}

#custom-html-st section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-st section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-st section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-st section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-st section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-st section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-st section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-st section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-st section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-st section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-st section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-st section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-st .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-st .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-st .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-st .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-st .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-st #stepResults {

    font-size: 14px;

  }

  #custom-html-st #stepResults .label {

    font-size: 14px;

  }

  #custom-html-st div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-st .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-st .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-st .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-st .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-st .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-st .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-st .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-st .home-shortcuts li span {

  display: none;

}

#custom-html-st .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-st .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-st .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-st .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-st .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-st .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-st .client-home-panels .panel small {

  color: #888888;

}

#custom-html-st .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-st .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-st .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-st .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-st .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-st .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-st .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-st .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-st .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-st .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-st .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-st .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-st .tiles .tile a {

  text-decoration: none;

}

#custom-html-st .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-st .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-st .tiles .tile:last-child {

  border: 0;

}

#custom-html-st .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-st .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-st .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-st .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-st .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-st .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-st .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-st .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-st .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-st .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-st .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-st .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-st .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-st .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-st .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-st .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-st .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-st .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-st .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-st .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-st .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-st .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-st .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-st .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-st .bg-color-red {

  background-color: #d9534f;

}

#custom-html-st .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-st .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-st .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-st .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-st .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-st .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-st .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-st .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-st .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-st .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-st .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-st .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-st .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-st .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-st .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-st .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-st ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-st ul.top-nav > li,

#custom-html-st ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-st ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-st ul.top-nav > li:active > a,

#custom-html-st ul.top-nav > li:focus > a,

#custom-html-st ul.top-nav > li:hover > a,

#custom-html-st ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-st ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-st ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-st ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-st ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-st div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-st div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-st div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-st div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-st div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-st div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-st .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-st .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-st .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-st .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-st .domain-check-availability {

  width: 100px;

}

#custom-html-st .domain-step-options {

  min-height: 300px;

}

#custom-html-st .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-st .domain-checker-available {

  color: #5cb85c;

}

#custom-html-st .domain-checker-invalid,

#custom-html-st .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-st div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-st .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-st .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-st .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-st a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-st .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-st .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-st .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-st .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-st .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-st .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-st .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-st .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-st .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-st .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-st .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-st .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-st .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-st .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-st .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-st .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-st .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-st .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-st .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-st .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-st .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-st .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-st .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-st .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-st div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-st div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-st div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-st .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-st .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-st .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-st .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-st div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-st div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-st .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-st .product-status-pending {

  background-color: #f89406;

}

#custom-html-st .product-status-active {

  background-color: #46a546;

}

#custom-html-st .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-st .product-status-cancelled,

#custom-html-st .product-status-terminated {

  background-color: #666666;

}

#custom-html-st .product-status-fraud {

  background-color: #000000;

}

#custom-html-st .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-st div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-st .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-st .ssl-inactive {

  cursor: pointer;

}

#custom-html-st .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-st div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-st .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-st .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-st .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-st .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-st .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-st .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-st .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-st .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-st .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-st .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-st .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-st .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-st .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-st .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-st table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-st table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-st .table-container {

  padding: 0 0 25px 0;

}

#custom-html-st table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-st .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-st table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-st .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-st .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-st .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-st table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-st table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-st table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-st .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-st .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-st .status-pending {

  color: #d9534f;

}

#custom-html-st .status-pending.transfer {

  color: #a68500;

}

#custom-html-st .status-active,

#custom-html-st .status-completed,

#custom-html-st .status-open {

  color: #3fad46;

}

#custom-html-st .status-suspended {

  color: #f0ad4e;

}

#custom-html-st .status-customer-reply {

  color: #ff6600;

}

#custom-html-st .status-answered,

#custom-html-st .status-fraud {

  color: #000000;

}

#custom-html-st .status-expired,

#custom-html-st .status-transferred.away {

  color: #004258;

}

#custom-html-st .status-cancelled {

  color: #87939f;

}

#custom-html-st .status-terminated {

  color: #666666;

}

#custom-html-st .status-onhold {

  color: #224488;

}

#custom-html-st .status-inprogress {

  color: #cc0000;

}

#custom-html-st .status-closed {

  color: #888888;

}

#custom-html-st .status-paid {

  color: #498302;

}

#custom-html-st .status-unpaid {

  color: #ed3e48;

}

#custom-html-st .status-collections {

  color: #9a141e;

}

#custom-html-st .status-refunded {

  color: #319fc3;

}

#custom-html-st .status-delivered {

  color: #224488;

}

#custom-html-st .status-accepted {

  color: #498302;

}

#custom-html-st .status-dead,

#custom-html-st .status-lost {

  color: #000000;

}

#custom-html-st .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-st .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-st .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-st .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-st .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-st .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-st .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-st .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-st .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-st .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-st .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-st .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-st .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-st .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-st .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-st .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-st .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-st .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-st .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-st .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-st .ticket-reply .rating,

#custom-html-st .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-st .ticket-reply .rating span.star,

#custom-html-st .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-st .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-st .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-st .ticket-reply .rating span.star:before,

#custom-html-st .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-st .ticket-reply .rating span.star:hover:before,

#custom-html-st .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-st .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-st .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-st .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-st .ticket-reply .clear {

  clear: both;

}

#custom-html-st .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-st .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-st .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-st .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-st .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-st .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-st .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-st .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-st .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-st .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-st .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-st .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-st .popover-user-notifications ul li i.far,

#custom-html-st .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-st .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-st .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-st .popover-user-notifications ul li i.far.fa-warning,

#custom-html-st .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-st .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-st .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-st .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-st .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-st .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-st div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-st div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-st div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-st div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-st div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-st div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-st div.credit-card div.end {

  clear: both;

}

#custom-html-st .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-st .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-st .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-st .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-st .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-st .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-st div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-st div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-st div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-st div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-st div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-st div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-st .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-st div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-st div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-st div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-st #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-st .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-st .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-st .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-st .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-st .kb-category a small {

  color: #888888;

}

#custom-html-st .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-st .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-st .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-st .kbarticles a.admin-inline-edit,

#custom-html-st .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-st h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-st .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-st .kb-article-title h2 {

  margin: 0;

}

#custom-html-st .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-st .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-st .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-st .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-st .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-st .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-st .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-st .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-st #stepResults {

  font-size: 20px;

}

#custom-html-st #stepResults .label {

  font-size: 20px;

}

#custom-html-st h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-st h3.with-badge i,

#custom-html-st h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-st h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-st .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-st .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-st a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-st a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-st .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-st .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-st .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-st .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-st .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-st .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-st .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-st .login-popover {

  font-size: 12px;

}

#custom-html-st .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-st .login-popover hr {

  margin: 5px 0;

}

#custom-html-st tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-st tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-st .error-container {

  text-align: center;

}

#custom-html-st .error-container h1 {

  margin-top: 40px;

}

#custom-html-st .error-container .buttons {

  margin: 25px 0;

}

#custom-html-st .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-st .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-st .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-st .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-st #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-st #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-st #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-st .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-st #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-st #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-st #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-st #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-st .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-st .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-st .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-st .email-verification .btn:active,

#custom-html-st .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-st .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-st .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-st .email-verification .far,

#custom-html-st .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-st .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-st .email-verification.success .far,

#custom-html-st .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-st .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-st .email-verification.failed .far,

#custom-html-st .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-st .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-st .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-st .md-editor > .md-preview,

#custom-html-st .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-st div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-st .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-st .small-font {

  font-size: 0.9em;

}

#custom-html-st .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-st .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-st .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-st .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-st .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-st .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-st .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-st .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-st .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-st .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-st .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-st .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-st .panel-heading i.fab,

#custom-html-st .panel-heading i.fal,

#custom-html-st .panel-heading i.far,

#custom-html-st .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-st .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-st .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-st .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-st .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-st .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-st .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-st .panel-sidebar .list-group-item.disabled,

#custom-html-st .panel-sidebar .list-group-item.disabled:focus,

#custom-html-st .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-st .panel-sidebar a.list-group-item:hover i.far,

#custom-html-st .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-st .panel-sidebar a.list-group-item.active,

#custom-html-st .panel-sidebar a.list-group-item.active:focus,

#custom-html-st .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-st .panel-sidebar a.list-group-item.active i,

#custom-html-st .panel-sidebar a.list-group-item.active:focus i,

#custom-html-st .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-st .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-st .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-st .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-st .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-st .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-st .store-order-container h2 {

  margin-top: 0;

}

#custom-html-st .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-st .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-st .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-st .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-st .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-st .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-st .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-st .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-st .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-st .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-st .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-st .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-st .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-st .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-st .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-st .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-st .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-st .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-st .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-st .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-st .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-st .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-st .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-st .promo-banner p {

  margin: 5px 0;

}

#custom-html-st .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-st .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-st .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-st .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-st .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-st .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-st .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-st .promo-banner-slim {

  padding: 10px;

}

#custom-html-st .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-st .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-st .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-st .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-st .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-st .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-st .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-st .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-st .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-st .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-st .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-st .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-st .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-st .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-st .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-st .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-st .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-st .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-st .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-st .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-st .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-st .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-st .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-st .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-st .panel-mc-sso .btn,

#custom-html-st .panel-mc-sso .form-control,

#custom-html-st .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-st .panel-mc-sso small {

  display: block;

}

#custom-html-st .social-signin-btns {

  text-align: center;

}

#custom-html-st .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-st .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-st .btn-social i.far,

#custom-html-st .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-facebook.active,

#custom-html-st .btn-facebook:active,

#custom-html-st .btn-facebook:focus,

#custom-html-st .btn-facebook:hover,

#custom-html-st .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-facebook.active,

#custom-html-st .btn-facebook:active,

#custom-html-st .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-st .btn-facebook.disabled,

#custom-html-st .btn-facebook.disabled.active,

#custom-html-st .btn-facebook.disabled:active,

#custom-html-st .btn-facebook.disabled:focus,

#custom-html-st .btn-facebook.disabled:hover,

#custom-html-st .btn-facebook[disabled],

#custom-html-st .btn-facebook[disabled].active,

#custom-html-st .btn-facebook[disabled]:active,

#custom-html-st .btn-facebook[disabled]:focus,

#custom-html-st .btn-facebook[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-facebook,

#custom-html-st fieldset[disabled] .btn-facebook.active,

#custom-html-st fieldset[disabled] .btn-facebook:active,

#custom-html-st fieldset[disabled] .btn-facebook:focus,

#custom-html-st fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-google.active,

#custom-html-st .btn-google:active,

#custom-html-st .btn-google:focus,

#custom-html-st .btn-google:hover,

#custom-html-st .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-google.active,

#custom-html-st .btn-google:active,

#custom-html-st .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-st .btn-google-plus.disabled.active,

#custom-html-st .btn-google-plus.disabled:active,

#custom-html-st .btn-google-plus.disabled:focus,

#custom-html-st .btn-google-plus[disabled].active,

#custom-html-st .btn-google-plus[disabled]:active,

#custom-html-st .btn-google-plus[disabled]:focus,

#custom-html-st .btn-google-plus[disabled]:hover,

#custom-html-st .btn-google.disabled,

#custom-html-st .btn-google.disabled:hover,

#custom-html-st .btn-google[disabled],

#custom-html-st fieldset[disabled] .btn-google,

#custom-html-st fieldset[disabled] .btn-google-plus.active,

#custom-html-st fieldset[disabled] .btn-google-plus:active,

#custom-html-st fieldset[disabled] .btn-google-plus:focus,

#custom-html-st fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-twitter.active,

#custom-html-st .btn-twitter:active,

#custom-html-st .btn-twitter:focus,

#custom-html-st .btn-twitter:hover,

#custom-html-st .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-twitter.active,

#custom-html-st .btn-twitter:active,

#custom-html-st .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-st .btn-twitter.disabled,

#custom-html-st .btn-twitter.disabled.active,

#custom-html-st .btn-twitter.disabled:active,

#custom-html-st .btn-twitter.disabled:focus,

#custom-html-st .btn-twitter.disabled:hover,

#custom-html-st .btn-twitter[disabled],

#custom-html-st .btn-twitter[disabled].active,

#custom-html-st .btn-twitter[disabled]:active,

#custom-html-st .btn-twitter[disabled]:focus,

#custom-html-st .btn-twitter[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-twitter,

#custom-html-st fieldset[disabled] .btn-twitter.active,

#custom-html-st fieldset[disabled] .btn-twitter:active,

#custom-html-st fieldset[disabled] .btn-twitter:focus,

#custom-html-st fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .providerPreLinking {

  min-height: 52px;

}

#custom-html-st .providerLinkingFeedback {

  display: none;

}

#custom-html-st #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-st #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-st #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-st #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-st .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-st #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-st #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-st #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-st #registration .field,

#custom-html-st #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-st #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-st #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-st #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-st #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-st #registration textarea.field {

  height: auto;

}

#custom-html-st #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-st #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-st #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-st #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-st #registration .field[disabled],

#custom-html-st #registration .field[readonly],

#custom-html-st #registration .form-control[disabled],

#custom-html-st #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-st #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-st .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}


#custom-html-st .upgrade .product-to-be-upgraded h4,

#custom-html-st .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-st .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-st .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-st .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-st .upgrade .products .product .current,

#custom-html-st .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-st .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-st .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-st .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-st .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-st .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-st .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-st .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-st .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-st .upgrade .products .far,

#custom-html-st .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-st .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-st .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-st .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-st .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-st .alert .alert-text {

  margin-left: 56px;

}

#custom-html-st .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .bootstrap-switch input[type=checkbox],

#custom-html-st .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-st .bootstrap-switch input[type=checkbox].form-control,

#custom-html-st .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-st .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-st .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-st .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-st .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-st .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-st .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-st .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-st .md-editor .md-footer,

#custom-html-st .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-st .md-editor > .md-header {

  margin: 0;

}

#custom-html-st .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-st .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-st .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-st .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-st .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-st .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-st .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-st .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-input,

#custom-html-st .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-st .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-st .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-st .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-st .md-editor.md-fullscreen-mode .btn.active,

#custom-html-st .md-editor.md-fullscreen-mode .btn:active,

#custom-html-st .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-st .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-st .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-st .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-st table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-st table.dataTable td,

#custom-html-st table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-st table.dataTable td.dataTables_empty,

#custom-html-st table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-st table.dataTable.nowrap td,

#custom-html-st table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-st div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-st div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-st div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-st div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-st div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-st div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-st div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-st div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-st table.dataTable thead > tr > td.sorting,

#custom-html-st table.dataTable thead > tr > td.sorting_asc,

#custom-html-st table.dataTable thead > tr > td.sorting_desc,

#custom-html-st table.dataTable thead > tr > th.sorting,

#custom-html-st table.dataTable thead > tr > th.sorting_asc,

#custom-html-st table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-st table.dataTable thead > tr > td:active,

#custom-html-st table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-st table.dataTable thead .sorting,

#custom-html-st table.dataTable thead .sorting_asc,

#custom-html-st table.dataTable thead .sorting_asc_disabled,

#custom-html-st table.dataTable thead .sorting_desc,

#custom-html-st table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-st table.dataTable thead .sorting:after,

#custom-html-st table.dataTable thead .sorting_asc:after,

#custom-html-st table.dataTable thead .sorting_asc_disabled:after,

#custom-html-st table.dataTable thead .sorting_desc:after,

#custom-html-st table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-st table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-st table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-st table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-st table.dataTable thead .sorting_asc_disabled:after,

#custom-html-st table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-st div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-st div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-st div.dataTables_scrollBody table thead .sorting:after,

#custom-html-st div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-st div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-st div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-st div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-st div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-st table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-st table.dataTable.table-condensed .sorting:after,

#custom-html-st table.dataTable.table-condensed .sorting_asc:after,

#custom-html-st table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-st table.table-bordered.dataTable td,

#custom-html-st table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-st table.table-bordered.dataTable td:last-child,

#custom-html-st table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-st table.table-bordered.dataTable tbody td,

#custom-html-st table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-st div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-st div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-st div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-st div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-st table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-st table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-st table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-st table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-st table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-st table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-st table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-st table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-st table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-st table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-st table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-st table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-st table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-st table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-st table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-st table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-st table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-st div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-st div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-st div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-st div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-st div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-st div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-st div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-st .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-st .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-st .multiselect-container > li {

  padding: 0;

}

#custom-html-st .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-st .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-st .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-st .multiselect-container > li > a {

  padding: 0;

}

#custom-html-st .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-st .multiselect-container > li > a > label.checkbox,

#custom-html-st .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-st .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-st .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-st .form-inline .multiselect-container label.checkbox,

#custom-html-st .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-st .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-st .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-st html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-st body {

  margin: 0;

}

#custom-html-st article,

#custom-html-st aside,

#custom-html-st details,

#custom-html-st figcaption,

#custom-html-st figure,

#custom-html-st footer,

#custom-html-st header,

#custom-html-st hgroup,

#custom-html-st main,

#custom-html-st menu,

#custom-html-st nav,

#custom-html-st section,

#custom-html-st summary {

  display: block;

}

#custom-html-st audio,

#custom-html-st canvas,

#custom-html-st progress,

#custom-html-st video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-st audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-st [hidden],

#custom-html-st template {

  display: none;

}

#custom-html-st a {

  background-color: transparent;

}

#custom-html-st a:active,

#custom-html-st a:hover {

  outline: 0;

}

#custom-html-st abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-st b,

#custom-html-st strong {

  font-weight: 700;

}

#custom-html-st dfn {

  font-style: italic;

}

#custom-html-st h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-st mark {

  color: #000;

  background: #ffff00;

}

#custom-html-st small {

  font-size: 80%;

}

#custom-html-st sub,

#custom-html-st sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-st sup {

  top: -0.5em;

}

#custom-html-st sub {

  bottom: -0.25em;

}

#custom-html-st img {

  border: 0;

}

#custom-html-st svg:not(:root) {

  overflow: hidden;

}

#custom-html-st figure {

  margin: 1em 40px;

}

#custom-html-st hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-st pre {

  overflow: auto;

}

#custom-html-st code,

#custom-html-st kbd,

#custom-html-st pre,

#custom-html-st samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-st button,

#custom-html-st input,

#custom-html-st optgroup,

#custom-html-st select,

#custom-html-st textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-st button {

  overflow: visible;

}

#custom-html-st button,

#custom-html-st select {

  text-transform: none;

}

#custom-html-st button,

#custom-html-st html input[type=button],

#custom-html-st input[type=reset],

#custom-html-st input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-st button[disabled],

#custom-html-st html input[disabled] {

  cursor: default;

}

#custom-html-st button::-moz-focus-inner,

#custom-html-st input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-st input {

  line-height: normal;

}

#custom-html-st input[type=checkbox],

#custom-html-st input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-st input[type=number]::-webkit-inner-spin-button,

#custom-html-st input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-st input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-st input[type=search]::-webkit-search-cancel-button,

#custom-html-st input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-st fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-st legend {

  padding: 0;

  border: 0;

}

#custom-html-st textarea {

  overflow: auto;

}

#custom-html-st optgroup {

  font-weight: 700;

}

#custom-html-st table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-st td,

#custom-html-st th {

  padding: 0;

}

@media print {

  #custom-html-st *,

  #custom-html-st :after,

  #custom-html-st :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-st a,

  #custom-html-st a:visited {

    text-decoration: underline;

  }

  #custom-html-st a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-st abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-st a[href^="#"]:after,

  #custom-html-st a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-st blockquote,

  #custom-html-st pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-st thead {

    display: table-header-group;

  }

  #custom-html-st img,

  #custom-html-st tr {

    page-break-inside: avoid;

  }

  #custom-html-st img {

    max-width: 100% !important;

  }

  #custom-html-st h2,

  #custom-html-st h3,

  #custom-html-st p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-st h2,

  #custom-html-st h3 {

    page-break-after: avoid;

  }

  #custom-html-st .navbar {

    display: none;

  }

  #custom-html-st .btn > .caret,

  #custom-html-st .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-st .label {

    border: 1px solid #000000;

  }

  #custom-html-st .table {

    border-collapse: collapse !important;

  }

  #custom-html-st .table td,

  #custom-html-st .table th {

    background-color: #ffffff !important;

  }

  #custom-html-st .table-bordered td,

  #custom-html-st .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-st .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-st .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-st .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-st .glyphicon-eur:before,

#custom-html-st .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-st .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-st .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-st .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-st .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-st .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-st .glyphicon-music:before {

  content: "\e002";

}

#custom-html-st .glyphicon-search:before {

  content: "\e003";

}

#custom-html-st .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-st .glyphicon-star:before {

  content: "\e006";

}

#custom-html-st .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-st .glyphicon-user:before {

  content: "\e008";

}

#custom-html-st .glyphicon-film:before {

  content: "\e009";

}

#custom-html-st .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-st .glyphicon-th:before {

  content: "\e011";

}

#custom-html-st .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-st .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-st .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-st .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-st .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-st .glyphicon-off:before {

  content: "\e017";

}

#custom-html-st .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-st .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-st .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-st .glyphicon-home:before {

  content: "\e021";

}

#custom-html-st .glyphicon-file:before {

  content: "\e022";

}

#custom-html-st .glyphicon-time:before {

  content: "\e023";

}

#custom-html-st .glyphicon-road:before {

  content: "\e024";

}

#custom-html-st .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-st .glyphicon-download:before {

  content: "\e026";

}

#custom-html-st .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-st .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-st .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-st .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-st .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-st .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-st .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-st .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-st .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-st .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-st .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-st .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-st .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-st .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-st .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-st .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-st .glyphicon-book:before {

  content: "\e043";

}

#custom-html-st .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-st .glyphicon-print:before {

  content: "\e045";

}

#custom-html-st .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-st .glyphicon-font:before {

  content: "\e047";

}

#custom-html-st .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-st .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-st .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-st .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-st .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-st .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-st .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-st .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-st .glyphicon-list:before {

  content: "\e056";

}

#custom-html-st .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-st .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-st .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-st .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-st .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-st .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-st .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-st .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-st .glyphicon-share:before {

  content: "\e066";

}

#custom-html-st .glyphicon-check:before {

  content: "\e067";

}

#custom-html-st .glyphicon-move:before {

  content: "\e068";

}

#custom-html-st .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-st .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-st .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-st .glyphicon-play:before {

  content: "\e072";

}

#custom-html-st .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-st .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-st .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-st .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-st .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-st .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-st .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-st .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-st .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-st .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-st .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-st .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-st .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-st .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-st .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-st .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-st .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-st .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-st .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-st .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-st .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-st .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-st .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-st .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-st .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-st .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-st .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-st .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-st .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-st .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-st .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-st .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-st .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-st .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-st .glyphicon-random:before {

  content: "\e110";

}

#custom-html-st .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-st .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-st .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-st .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-st .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-st .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-st .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-st .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-st .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-st .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-st .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-st .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-st .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-st .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-st .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-st .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-st .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-st .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-st .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-st .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-st .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-st .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-st .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-st .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-st .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-st .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-st .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-st .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-st .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-st .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-st .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-st .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-st .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-st .glyphicon-link:before {

  content: "\e144";

}

#custom-html-st .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-st .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-st .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-st .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-st .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-st .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-st .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-st .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-st .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-st .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-st .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-st .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-st .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-st .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-st .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-st .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-st .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-st .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-st .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-st .glyphicon-record:before {

  content: "\e165";

}

#custom-html-st .glyphicon-save:before {

  content: "\e166";

}

#custom-html-st .glyphicon-open:before {

  content: "\e167";

}

#custom-html-st .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-st .glyphicon-import:before {

  content: "\e169";

}

#custom-html-st .glyphicon-export:before {

  content: "\e170";

}

#custom-html-st .glyphicon-send:before {

  content: "\e171";

}

#custom-html-st .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-st .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-st .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-st .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-st .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-st .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-st .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-st .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-st .glyphicon-header:before {

  content: "\e180";

}

#custom-html-st .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-st .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-st .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-st .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-st .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-st .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-st .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-st .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-st .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-st .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-st .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-st .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-st .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-st .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-st .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-st .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-st .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-st .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-st .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-st .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-st .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-st .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-st .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-st .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-st .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-st .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-st .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-st .glyphicon-king:before {

  content: "\e211";

}

#custom-html-st .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-st .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-st .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-st .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-st .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-st .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-st .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-st .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-st .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-st .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-st .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-st .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-st .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-st .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-st .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-st .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-st .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-st .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-st .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-st .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-st .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-st .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-st .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-st .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-st .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-st .glyphicon-education:before {

  content: "\e233";

}

#custom-html-st .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-st .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-st .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-st .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-st .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-st .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-st .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-st .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-st .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-st .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-st .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-st .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-st .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-st .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-st .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-st .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-st .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-st .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-st .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-st .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-st .glyphicon-console:before {

  content: "\e254";

}

#custom-html-st .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-st .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-st .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-st .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-st .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-st .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-st * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-st :after,

#custom-html-st :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-st html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-st body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-st button,

#custom-html-st input,

#custom-html-st select,

#custom-html-st textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-st a {

  color: #000;

  text-decoration: none;

}

#custom-html-st a:focus,

#custom-html-st a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-st a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-st figure {

  margin: 0;

}

#custom-html-st img {

  vertical-align: middle;

}

#custom-html-st .carousel-inner > .item > a > img,

#custom-html-st .carousel-inner > .item > img,

#custom-html-st .img-responsive,

#custom-html-st .thumbnail a > img,

#custom-html-st .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-st .img-rounded {

  border-radius: 6px;

}

#custom-html-st .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-st .img-circle {

  border-radius: 50%;

}

#custom-html-st hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-st .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-st .sr-only-focusable:active,

#custom-html-st .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-st [role=button] {

  cursor: pointer;

}

#custom-html-st .h1,

#custom-html-st .h2,

#custom-html-st .h3,

#custom-html-st .h4,

#custom-html-st .h5,

#custom-html-st .h6,

#custom-html-st h1,

#custom-html-st h2,

#custom-html-st h3,

#custom-html-st h4,

#custom-html-st h5,

#custom-html-st h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-st .h1 .small,

#custom-html-st .h1 small,

#custom-html-st .h2 .small,

#custom-html-st .h2 small,

#custom-html-st .h3 .small,

#custom-html-st .h3 small,

#custom-html-st .h4 .small,

#custom-html-st .h4 small,

#custom-html-st .h5 .small,

#custom-html-st .h5 small,

#custom-html-st .h6 .small,

#custom-html-st .h6 small,

#custom-html-st h1 .small,

#custom-html-st h1 small,

#custom-html-st h2 .small,

#custom-html-st h2 small,

#custom-html-st h3 .small,

#custom-html-st h3 small,

#custom-html-st h4 .small,

#custom-html-st h4 small,

#custom-html-st h5 .small,

#custom-html-st h5 small,

#custom-html-st h6 .small,

#custom-html-st h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-st .h1,

#custom-html-st .h2,

#custom-html-st .h3,

#custom-html-st h1,

#custom-html-st h2,

#custom-html-st h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-st .h1 .small,

#custom-html-st .h1 small,

#custom-html-st .h2 .small,

#custom-html-st .h2 small,

#custom-html-st .h3 .small,

#custom-html-st .h3 small,

#custom-html-st h1 .small,

#custom-html-st h1 small,

#custom-html-st h2 .small,

#custom-html-st h2 small,

#custom-html-st h3 .small,

#custom-html-st h3 small {

  font-size: 65%;

}

#custom-html-st .h4,

#custom-html-st .h5,

#custom-html-st .h6,

#custom-html-st h4,

#custom-html-st h5,

#custom-html-st h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-st .h4 .small,

#custom-html-st .h4 small,

#custom-html-st .h5 .small,

#custom-html-st .h5 small,

#custom-html-st .h6 .small,

#custom-html-st .h6 small,

#custom-html-st h4 .small,

#custom-html-st h4 small,

#custom-html-st h5 .small,

#custom-html-st h5 small,

#custom-html-st h6 .small,

#custom-html-st h6 small {

  font-size: 75%;

}

#custom-html-st .h1,

#custom-html-st h1 {

  font-size: 36px;

}

#custom-html-st .h2,

#custom-html-st h2 {

  font-size: 30px;

}

#custom-html-st .h3,

#custom-html-st h3 {

  font-size: 24px;

}

#custom-html-st .h4,

#custom-html-st h4 {

  font-size: 18px;

}

#custom-html-st .h5,

#custom-html-st h5 {

  font-size: 14px;

}

#custom-html-st .h6,

#custom-html-st h6 {

  font-size: 12px;

}

#custom-html-st p {

  margin: 0 0 10px;

}

#custom-html-st .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-st .lead {

    font-size: 21px;

  }

}

#custom-html-st .small,

#custom-html-st small {

  font-size: 85%;

}

#custom-html-st .mark,

#custom-html-st mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-st .text-left {

  text-align: left;

}

#custom-html-st .text-right {

  text-align: right;

}

#custom-html-st .text-center {

  text-align: center;

}

#custom-html-st .text-justify {

  text-align: justify;

}

#custom-html-st .text-nowrap {

  white-space: nowrap;

}

#custom-html-st .text-lowercase {

  text-transform: lowercase;

}

#custom-html-st .text-uppercase {

  text-transform: uppercase;

}

#custom-html-st .text-capitalize {

  text-transform: capitalize;

}

#custom-html-st .text-muted {

  color: #777777;

}

#custom-html-st .text-primary {

  color: #000000;

}

#custom-html-st a.text-primary:focus,

#custom-html-st a.text-primary:hover {

  color: #000000;

}

#custom-html-st .text-success {

  color: #3c763d;

}

#custom-html-st a.text-success:focus,

#custom-html-st a.text-success:hover {

  color: #2b542c;

}

#custom-html-st .text-info {

  color: #31708f;

}

#custom-html-st a.text-info:focus,

#custom-html-st a.text-info:hover {

  color: #000000;

}

#custom-html-st .text-warning {

  color: #8a6d3b;

}

#custom-html-st a.text-warning:focus,

#custom-html-st a.text-warning:hover {

  color: #66512c;

}

#custom-html-st .text-danger {

  color: #a94442;

}

#custom-html-st a.text-danger:focus,

#custom-html-st a.text-danger:hover {

  color: #843534;

}

#custom-html-st .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-st a.bg-primary:focus,

#custom-html-st a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-st .bg-success {

  background-color: #dff0d8;

}

#custom-html-st a.bg-success:focus,

#custom-html-st a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-st .bg-info {

  background-color: #d9edf7;

}

#custom-html-st a.bg-info:focus,

#custom-html-st a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-st .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-st a.bg-warning:focus,

#custom-html-st a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-st .bg-danger {

  background-color: #f2dede;

}

#custom-html-st a.bg-danger:focus,

#custom-html-st a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-st .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-st ol,

#custom-html-st ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-st ol ol,

#custom-html-st ol ul,

#custom-html-st ul ol,

#custom-html-st ul ul {

  margin-bottom: 0;

}

#custom-html-st .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-st .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-st .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-st dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-st dd,

#custom-html-st dt {

  line-height: 1.42857143;

}

#custom-html-st dt {

  font-weight: 700;

}

#custom-html-st dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-st .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-st .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-st abbr[data-original-title],

#custom-html-st abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-st .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-st blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-st blockquote ol:last-child,

#custom-html-st blockquote p:last-child,

#custom-html-st blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-st blockquote .small,

#custom-html-st blockquote footer,

#custom-html-st blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-st blockquote .small:before,

#custom-html-st blockquote footer:before,

#custom-html-st blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-st .blockquote-reverse,

#custom-html-st blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-st .blockquote-reverse .small:before,

#custom-html-st .blockquote-reverse footer:before,

#custom-html-st .blockquote-reverse small:before,

#custom-html-st blockquote.pull-right .small:before,

#custom-html-st blockquote.pull-right footer:before,

#custom-html-st blockquote.pull-right small:before {

  content: '';

}

#custom-html-st .blockquote-reverse .small:after,

#custom-html-st .blockquote-reverse footer:after,

#custom-html-st .blockquote-reverse small:after,

#custom-html-st blockquote.pull-right .small:after,

#custom-html-st blockquote.pull-right footer:after,

#custom-html-st blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-st address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-st code,

#custom-html-st kbd,

#custom-html-st pre,

#custom-html-st samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-st code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-st kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-st kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-st pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-st pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-st .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-st .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-st .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-st .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-st .container {

    width: 1170px;

  }

}

#custom-html-st .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-st .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-st .col-lg-1,

#custom-html-st .col-lg-10,

#custom-html-st .col-lg-11,

#custom-html-st .col-lg-12,

#custom-html-st .col-lg-2,

#custom-html-st .col-lg-3,

#custom-html-st .col-lg-4,

#custom-html-st .col-lg-5,

#custom-html-st .col-lg-6,

#custom-html-st .col-lg-7,

#custom-html-st .col-lg-8,

#custom-html-st .col-lg-9,

#custom-html-st .col-md-1,

#custom-html-st .col-md-10,

#custom-html-st .col-md-11,

#custom-html-st .col-md-12,

#custom-html-st .col-md-2,

#custom-html-st .col-md-3,

#custom-html-st .col-md-4,

#custom-html-st .col-md-5,

#custom-html-st .col-md-6,

#custom-html-st .col-md-7,

#custom-html-st .col-md-8,

#custom-html-st .col-md-9,

#custom-html-st .col-sm-1,

#custom-html-st .col-sm-10,

#custom-html-st .col-sm-11,

#custom-html-st .col-sm-12,

#custom-html-st .col-sm-2,

#custom-html-st .col-sm-3,

#custom-html-st .col-sm-4,

#custom-html-st .col-sm-5,

#custom-html-st .col-sm-6,

#custom-html-st .col-sm-7,

#custom-html-st .col-sm-8,

#custom-html-st .col-sm-9,

#custom-html-st .col-xs-1,

#custom-html-st .col-xs-10,

#custom-html-st .col-xs-11,

#custom-html-st .col-xs-12,

#custom-html-st .col-xs-2,

#custom-html-st .col-xs-3,

#custom-html-st .col-xs-4,

#custom-html-st .col-xs-5,

#custom-html-st .col-xs-6,

#custom-html-st .col-xs-7,

#custom-html-st .col-xs-8,

#custom-html-st .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-st .col-xs-1,

#custom-html-st .col-xs-10,

#custom-html-st .col-xs-11,

#custom-html-st .col-xs-12,

#custom-html-st .col-xs-2,

#custom-html-st .col-xs-3,

#custom-html-st .col-xs-4,

#custom-html-st .col-xs-5,

#custom-html-st .col-xs-6,

#custom-html-st .col-xs-7,

#custom-html-st .col-xs-8,

#custom-html-st .col-xs-9 {

  float: left;

}

#custom-html-st .col-xs-12 {

  width: 100%;

}

#custom-html-st .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-st .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-st .col-xs-9 {

  width: 75%;

}

#custom-html-st .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-st .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-st .col-xs-6 {

  width: 50%;

}

#custom-html-st .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-st .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-st .col-xs-3 {

  width: 25%;

}

#custom-html-st .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-st .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-st .col-xs-pull-12 {

  right: 100%;

}

#custom-html-st .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-st .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-st .col-xs-pull-9 {

  right: 75%;

}

#custom-html-st .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-st .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-st .col-xs-pull-6 {

  right: 50%;

}

#custom-html-st .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-st .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-st .col-xs-pull-3 {

  right: 25%;

}

#custom-html-st .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-st .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-st .col-xs-pull-0 {

  right: auto;

}

#custom-html-st .col-xs-push-12 {

  left: 100%;

}

#custom-html-st .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-st .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-st .col-xs-push-9 {

  left: 75%;

}

#custom-html-st .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-st .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-st .col-xs-push-6 {

  left: 50%;

}

#custom-html-st .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-st .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-st .col-xs-push-3 {

  left: 25%;

}

#custom-html-st .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-st .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-st .col-xs-push-0 {

  left: auto;

}

#custom-html-st .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-st .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-st .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-st .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-st .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-st .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-st .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-st .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-st .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-st .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-st .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-st .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-st .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-st .col-sm-1,

  #custom-html-st .col-sm-10,

  #custom-html-st .col-sm-11,

  #custom-html-st .col-sm-12,

  #custom-html-st .col-sm-2,

  #custom-html-st .col-sm-3,

  #custom-html-st .col-sm-4,

  #custom-html-st .col-sm-5,

  #custom-html-st .col-sm-6,

  #custom-html-st .col-sm-7,

  #custom-html-st .col-sm-8,

  #custom-html-st .col-sm-9 {

    float: left;

  }

  #custom-html-st .col-sm-12 {

    width: 100%;

  }

  #custom-html-st .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-st .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-st .col-sm-9 {

    width: 75%;

  }

  #custom-html-st .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-st .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-st .col-sm-6 {

    width: 50%;

  }

  #custom-html-st .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-st .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-st .col-sm-3 {

    width: 25%;

  }

  #custom-html-st .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-st .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-st .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-st .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-st .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-st .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-st .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-st .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-st .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-st .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-st .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-st .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-st .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-st .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-st .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-st .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-st .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-st .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-st .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-st .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-st .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-st .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-st .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-st .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-st .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-st .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-st .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-st .col-sm-push-0 {

    left: auto;

  }

  #custom-html-st .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-st .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-st .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-st .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-st .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-st .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-st .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-st .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-st .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-st .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-st .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-st .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-st .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-st .col-md-1,

  #custom-html-st .col-md-10,

  #custom-html-st .col-md-11,

  #custom-html-st .col-md-12,

  #custom-html-st .col-md-2,

  #custom-html-st .col-md-3,

  #custom-html-st .col-md-4,

  #custom-html-st .col-md-5,

  #custom-html-st .col-md-6,

  #custom-html-st .col-md-7,

  #custom-html-st .col-md-8,

  #custom-html-st .col-md-9 {

    float: left;

  }

  #custom-html-st .col-md-12 {

    width: 100%;

  }

  #custom-html-st .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-st .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-st .col-md-9 {

    width: 75%;

  }

  #custom-html-st .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-st .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-st .col-md-6 {

    width: 50%;

  }

  #custom-html-st .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-st .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-st .col-md-3 {

    width: 25%;

  }

  #custom-html-st .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-st .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-st .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-st .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-st .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-st .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-st .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-st .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-st .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-st .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-st .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-st .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-st .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-st .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-st .col-md-pull-0 {

    right: auto;

  }

  #custom-html-st .col-md-push-12 {

    left: 100%;

  }

  #custom-html-st .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-st .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-st .col-md-push-9 {

    left: 75%;

  }

  #custom-html-st .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-st .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-st .col-md-push-6 {

    left: 50%;

  }

  #custom-html-st .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-st .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-st .col-md-push-3 {

    left: 25%;

  }

  #custom-html-st .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-st .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-st .col-md-push-0 {

    left: auto;

  }

  #custom-html-st .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-st .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-st .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-st .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-st .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-st .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-st .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-st .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-st .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-st .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-st .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-st .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-st .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-st .col-lg-1,

  #custom-html-st .col-lg-10,

  #custom-html-st .col-lg-11,

  #custom-html-st .col-lg-12,

  #custom-html-st .col-lg-2,

  #custom-html-st .col-lg-3,

  #custom-html-st .col-lg-4,

  #custom-html-st .col-lg-5,

  #custom-html-st .col-lg-6,

  #custom-html-st .col-lg-7,

  #custom-html-st .col-lg-8,

  #custom-html-st .col-lg-9 {

    float: left;

  }

  #custom-html-st .col-lg-12 {

    width: 100%;

  }

  #custom-html-st .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-st .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-st .col-lg-9 {

    width: 75%;

  }

  #custom-html-st .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-st .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-st .col-lg-6 {

    width: 50%;

  }

  #custom-html-st .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-st .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-st .col-lg-3 {

    width: 25%;

  }

  #custom-html-st .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-st .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-st .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-st .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-st .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-st .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-st .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-st .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-st .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-st .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-st .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-st .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-st .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-st .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-st .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-st .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-st .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-st .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-st .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-st .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-st .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-st .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-st .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-st .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-st .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-st .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-st .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-st .col-lg-push-0 {

    left: auto;

  }

  #custom-html-st .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-st .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-st .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-st .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-st .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-st .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-st .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-st .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-st .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-st .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-st .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-st .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-st .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-st table {

  background-color: transparent;

}

#custom-html-st caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-st th {

  text-align: left;

}

#custom-html-st .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-st .table > tbody > tr > td,

#custom-html-st .table > tbody > tr > th,

#custom-html-st .table > tfoot > tr > td,

#custom-html-st .table > tfoot > tr > th,

#custom-html-st .table > thead > tr > td,

#custom-html-st .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-st .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-st .table > caption + thead > tr:first-child > td,

#custom-html-st .table > caption + thead > tr:first-child > th,

#custom-html-st .table > colgroup + thead > tr:first-child > td,

#custom-html-st .table > colgroup + thead > tr:first-child > th,

#custom-html-st .table > thead:first-child > tr:first-child > td,

#custom-html-st .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-st .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-st .table .table {

  background-color: #ffffff;

}

#custom-html-st .table-condensed > tbody > tr > td,

#custom-html-st .table-condensed > tbody > tr > th,

#custom-html-st .table-condensed > tfoot > tr > td,

#custom-html-st .table-condensed > tfoot > tr > th,

#custom-html-st .table-condensed > thead > tr > td,

#custom-html-st .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-st .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-st .table-bordered > tbody > tr > td,

#custom-html-st .table-bordered > tbody > tr > th,

#custom-html-st .table-bordered > tfoot > tr > td,

#custom-html-st .table-bordered > tfoot > tr > th,

#custom-html-st .table-bordered > thead > tr > td,

#custom-html-st .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-st .table-bordered > thead > tr > td,

#custom-html-st .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-st .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-st .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-st table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-st table td[class*=col-],

#custom-html-st table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-st .table > tbody > tr.active > td,

#custom-html-st .table > tbody > tr.active > th,

#custom-html-st .table > tbody > tr > td.active,

#custom-html-st .table > tbody > tr > th.active,

#custom-html-st .table > tfoot > tr.active > td,

#custom-html-st .table > tfoot > tr.active > th,

#custom-html-st .table > tfoot > tr > td.active,

#custom-html-st .table > tfoot > tr > th.active,

#custom-html-st .table > thead > tr.active > td,

#custom-html-st .table > thead > tr.active > th,

#custom-html-st .table > thead > tr > td.active,

#custom-html-st .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-st .table-hover > tbody > tr.active:hover > td,

#custom-html-st .table-hover > tbody > tr.active:hover > th,

#custom-html-st .table-hover > tbody > tr:hover > .active,

#custom-html-st .table-hover > tbody > tr > td.active:hover,

#custom-html-st .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-st .table > tbody > tr.success > td,

#custom-html-st .table > tbody > tr.success > th,

#custom-html-st .table > tbody > tr > td.success,

#custom-html-st .table > tbody > tr > th.success,

#custom-html-st .table > tfoot > tr.success > td,

#custom-html-st .table > tfoot > tr.success > th,

#custom-html-st .table > tfoot > tr > td.success,

#custom-html-st .table > tfoot > tr > th.success,

#custom-html-st .table > thead > tr.success > td,

#custom-html-st .table > thead > tr.success > th,

#custom-html-st .table > thead > tr > td.success,

#custom-html-st .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-st .table-hover > tbody > tr.success:hover > td,

#custom-html-st .table-hover > tbody > tr.success:hover > th,

#custom-html-st .table-hover > tbody > tr:hover > .success,

#custom-html-st .table-hover > tbody > tr > td.success:hover,

#custom-html-st .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-st .table > tbody > tr.info > td,

#custom-html-st .table > tbody > tr.info > th,

#custom-html-st .table > tbody > tr > td.info,

#custom-html-st .table > tbody > tr > th.info,

#custom-html-st .table > tfoot > tr.info > td,

#custom-html-st .table > tfoot > tr.info > th,

#custom-html-st .table > tfoot > tr > td.info,

#custom-html-st .table > tfoot > tr > th.info,

#custom-html-st .table > thead > tr.info > td,

#custom-html-st .table > thead > tr.info > th,

#custom-html-st .table > thead > tr > td.info,

#custom-html-st .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-st .table-hover > tbody > tr.info:hover > td,

#custom-html-st .table-hover > tbody > tr.info:hover > th,

#custom-html-st .table-hover > tbody > tr:hover > .info,

#custom-html-st .table-hover > tbody > tr > td.info:hover,

#custom-html-st .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-st .table > tbody > tr.warning > td,

#custom-html-st .table > tbody > tr.warning > th,

#custom-html-st .table > tbody > tr > td.warning,

#custom-html-st .table > tbody > tr > th.warning,

#custom-html-st .table > tfoot > tr.warning > td,

#custom-html-st .table > tfoot > tr.warning > th,

#custom-html-st .table > tfoot > tr > td.warning,

#custom-html-st .table > tfoot > tr > th.warning,

#custom-html-st .table > thead > tr.warning > td,

#custom-html-st .table > thead > tr.warning > th,

#custom-html-st .table > thead > tr > td.warning,

#custom-html-st .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-st .table-hover > tbody > tr.warning:hover > td,

#custom-html-st .table-hover > tbody > tr.warning:hover > th,

#custom-html-st .table-hover > tbody > tr:hover > .warning,

#custom-html-st .table-hover > tbody > tr > td.warning:hover,

#custom-html-st .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-st .table > tbody > tr.danger > td,

#custom-html-st .table > tbody > tr.danger > th,

#custom-html-st .table > tbody > tr > td.danger,

#custom-html-st .table > tbody > tr > th.danger,

#custom-html-st .table > tfoot > tr.danger > td,

#custom-html-st .table > tfoot > tr.danger > th,

#custom-html-st .table > tfoot > tr > td.danger,

#custom-html-st .table > tfoot > tr > th.danger,

#custom-html-st .table > thead > tr.danger > td,

#custom-html-st .table > thead > tr.danger > th,

#custom-html-st .table > thead > tr > td.danger,

#custom-html-st .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-st .table-hover > tbody > tr.danger:hover > td,

#custom-html-st .table-hover > tbody > tr.danger:hover > th,

#custom-html-st .table-hover > tbody > tr:hover > .danger,

#custom-html-st .table-hover > tbody > tr > td.danger:hover,

#custom-html-st .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-st .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-st .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-st .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-st .table-responsive > .table > tbody > tr > td,

  #custom-html-st .table-responsive > .table > tbody > tr > th,

  #custom-html-st .table-responsive > .table > tfoot > tr > td,

  #custom-html-st .table-responsive > .table > tfoot > tr > th,

  #custom-html-st .table-responsive > .table > thead > tr > td,

  #custom-html-st .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-st .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-st .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-st .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-st .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-st .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-st .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-st .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-st .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-st .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-st .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-st .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-st .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-st .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-st .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-st .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-st .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-st .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-st fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-st legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-st label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-st input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-st input[type=checkbox],

#custom-html-st input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-st input[type=file] {

  display: block;

}

#custom-html-st input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-st select[multiple],

#custom-html-st select[size] {

  height: auto;

}

#custom-html-st input[type=checkbox]:focus,

#custom-html-st input[type=file]:focus,

#custom-html-st input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-st output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-st .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-st .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-st .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-st .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-st .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-st .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-st .form-control[disabled],

#custom-html-st .form-control[readonly],

#custom-html-st fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-st .form-control[disabled],

#custom-html-st fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-st textarea.form-control {

  height: auto;

}

#custom-html-st input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-st input[type=date].form-control,

  #custom-html-st input[type=datetime-local].form-control,

  #custom-html-st input[type=month].form-control,

  #custom-html-st input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-st .input-group-sm input[type=date],

  #custom-html-st .input-group-sm input[type=datetime-local],

  #custom-html-st .input-group-sm input[type=month],

  #custom-html-st .input-group-sm input[type=time],

  #custom-html-st input[type=date].input-sm,

  #custom-html-st input[type=datetime-local].input-sm,

  #custom-html-st input[type=month].input-sm,

  #custom-html-st input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-st .input-group-lg input[type=date],

  #custom-html-st .input-group-lg input[type=datetime-local],

  #custom-html-st .input-group-lg input[type=month],

  #custom-html-st .input-group-lg input[type=time],

  #custom-html-st input[type=date].input-lg,

  #custom-html-st input[type=datetime-local].input-lg,

  #custom-html-st input[type=month].input-lg,

  #custom-html-st input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-st .form-group {

  margin-bottom: 15px;

}

#custom-html-st .checkbox,

#custom-html-st .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-st .checkbox label,

#custom-html-st .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-st .checkbox input[type=checkbox],

#custom-html-st .checkbox-inline input[type=checkbox],

#custom-html-st .radio input[type=radio],

#custom-html-st .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-st .checkbox + .checkbox,

#custom-html-st .radio + .radio {

  margin-top: -5px;

}

#custom-html-st .checkbox-inline,

#custom-html-st .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-st .checkbox-inline + .checkbox-inline,

#custom-html-st .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-st fieldset[disabled] input[type=checkbox],

#custom-html-st fieldset[disabled] input[type=radio],

#custom-html-st input[type=checkbox].disabled,

#custom-html-st input[type=checkbox][disabled],

#custom-html-st input[type=radio].disabled,

#custom-html-st input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-st .checkbox-inline.disabled,

#custom-html-st .radio-inline.disabled,

#custom-html-st fieldset[disabled] .checkbox-inline,

#custom-html-st fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-st .checkbox.disabled label,

#custom-html-st .radio.disabled label,

#custom-html-st fieldset[disabled] .checkbox label,

#custom-html-st fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-st .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-st .form-control-static.input-lg,

#custom-html-st .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-st .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-st select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-st select[multiple].input-sm,

#custom-html-st textarea.input-sm {

  height: auto;

}

#custom-html-st .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-st .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-st .form-group-sm select[multiple].form-control,

#custom-html-st .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-st .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-st .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-st select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-st select[multiple].input-lg,

#custom-html-st textarea.input-lg {

  height: auto;

}

#custom-html-st .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-st .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-st .form-group-lg select[multiple].form-control,

#custom-html-st .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-st .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-st .has-feedback {

  position: relative;

}

#custom-html-st .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-st .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-st .form-group-lg .form-control + .form-control-feedback,

#custom-html-st .input-group-lg + .form-control-feedback,

#custom-html-st .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-st .form-group-sm .form-control + .form-control-feedback,

#custom-html-st .input-group-sm + .form-control-feedback,

#custom-html-st .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-st .has-success .checkbox,

#custom-html-st .has-success .checkbox-inline,

#custom-html-st .has-success .control-label,

#custom-html-st .has-success .help-block,

#custom-html-st .has-success .radio,

#custom-html-st .has-success .radio-inline,

#custom-html-st .has-success.checkbox label,

#custom-html-st .has-success.checkbox-inline label,

#custom-html-st .has-success.radio label,

#custom-html-st .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-st .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-st .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-st .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-st .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-st .has-warning .checkbox,

#custom-html-st .has-warning .checkbox-inline,

#custom-html-st .has-warning .control-label,

#custom-html-st .has-warning .help-block,

#custom-html-st .has-warning .radio,

#custom-html-st .has-warning .radio-inline,

#custom-html-st .has-warning.checkbox label,

#custom-html-st .has-warning.checkbox-inline label,

#custom-html-st .has-warning.radio label,

#custom-html-st .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-st .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-st .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-st .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-st .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-st .has-error .checkbox,

#custom-html-st .has-error .checkbox-inline,

#custom-html-st .has-error .control-label,

#custom-html-st .has-error .help-block,

#custom-html-st .has-error .radio,

#custom-html-st .has-error .radio-inline,

#custom-html-st .has-error.checkbox label,

#custom-html-st .has-error.checkbox-inline label,

#custom-html-st .has-error.radio label,

#custom-html-st .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-st .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-st .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-st .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-st .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-st .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-st .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-st .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-st .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-st .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-st .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-st .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-st .form-inline .input-group .form-control,

  #custom-html-st .form-inline .input-group .input-group-addon,

  #custom-html-st .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-st .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-st .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-st .form-inline .checkbox,

  #custom-html-st .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-st .form-inline .checkbox label,

  #custom-html-st .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-st .form-inline .checkbox input[type=checkbox],

  #custom-html-st .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-st .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-st .form-horizontal .checkbox,

#custom-html-st .form-horizontal .checkbox-inline,

#custom-html-st .form-horizontal .radio,

#custom-html-st .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-st .form-horizontal .checkbox,

#custom-html-st .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-st .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-st .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-st .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-st .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-st .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-st .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-st .btn.active.focus,

#custom-html-st .btn.active:focus,

#custom-html-st .btn.focus,

#custom-html-st .btn:active.focus,

#custom-html-st .btn:active:focus,

#custom-html-st .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-st .btn.focus,

#custom-html-st .btn:focus,

#custom-html-st .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-st .btn.active,

#custom-html-st .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-st .btn.disabled,

#custom-html-st .btn[disabled],

#custom-html-st fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-st a.btn.disabled,

#custom-html-st fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-st .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-st .btn-default.focus,

#custom-html-st .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-st .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-st .btn-default.active,

#custom-html-st .btn-default:active,

#custom-html-st .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-st .btn-default.active.focus,

#custom-html-st .btn-default.active:focus,

#custom-html-st .btn-default.active:hover,

#custom-html-st .btn-default:active.focus,

#custom-html-st .btn-default:active:focus,

#custom-html-st .btn-default:active:hover,

#custom-html-st .open > .dropdown-toggle.btn-default.focus,

#custom-html-st .open > .dropdown-toggle.btn-default:focus,

#custom-html-st .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-st .btn-default.active,

#custom-html-st .btn-default:active,

#custom-html-st .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-st .btn-default.disabled.focus,

#custom-html-st .btn-default.disabled:focus,

#custom-html-st .btn-default.disabled:hover,

#custom-html-st .btn-default[disabled].focus,

#custom-html-st .btn-default[disabled]:focus,

#custom-html-st .btn-default[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-default.focus,

#custom-html-st fieldset[disabled] .btn-default:focus,

#custom-html-st fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-st .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-st .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-st .btn-primary.focus,

#custom-html-st .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-st .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-st .btn-primary.active,

#custom-html-st .btn-primary:active,

#custom-html-st .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-st .btn-primary.active.focus,

#custom-html-st .btn-primary.active:focus,

#custom-html-st .btn-primary.active:hover,

#custom-html-st .btn-primary:active.focus,

#custom-html-st .btn-primary:active:focus,

#custom-html-st .btn-primary:active:hover,

#custom-html-st .open > .dropdown-toggle.btn-primary.focus,

#custom-html-st .open > .dropdown-toggle.btn-primary:focus,

#custom-html-st .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-st .btn-primary.active,

#custom-html-st .btn-primary:active,

#custom-html-st .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-st .btn-primary.disabled.focus,

#custom-html-st .btn-primary.disabled:focus,

#custom-html-st .btn-primary.disabled:hover,

#custom-html-st .btn-primary[disabled].focus,

#custom-html-st .btn-primary[disabled]:focus,

#custom-html-st .btn-primary[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-primary.focus,

#custom-html-st fieldset[disabled] .btn-primary:focus,

#custom-html-st fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-st .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-st .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-st .btn-success.focus,

#custom-html-st .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-st .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-st .btn-success.active,

#custom-html-st .btn-success:active,

#custom-html-st .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-st .btn-success.active.focus,

#custom-html-st .btn-success.active:focus,

#custom-html-st .btn-success.active:hover,

#custom-html-st .btn-success:active.focus,

#custom-html-st .btn-success:active:focus,

#custom-html-st .btn-success:active:hover,

#custom-html-st .open > .dropdown-toggle.btn-success.focus,

#custom-html-st .open > .dropdown-toggle.btn-success:focus,

#custom-html-st .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-st .btn-success.active,

#custom-html-st .btn-success:active,

#custom-html-st .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-st .btn-success.disabled.focus,

#custom-html-st .btn-success.disabled:focus,

#custom-html-st .btn-success.disabled:hover,

#custom-html-st .btn-success[disabled].focus,

#custom-html-st .btn-success[disabled]:focus,

#custom-html-st .btn-success[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-success.focus,

#custom-html-st fieldset[disabled] .btn-success:focus,

#custom-html-st fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-st .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-st .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-st .btn-info.focus,

#custom-html-st .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-st .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-st .btn-info.active,

#custom-html-st .btn-info:active,

#custom-html-st .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-st .btn-info.active.focus,

#custom-html-st .btn-info.active:focus,

#custom-html-st .btn-info.active:hover,

#custom-html-st .btn-info:active.focus,

#custom-html-st .btn-info:active:focus,

#custom-html-st .btn-info:active:hover,

#custom-html-st .open > .dropdown-toggle.btn-info.focus,

#custom-html-st .open > .dropdown-toggle.btn-info:focus,

#custom-html-st .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-st .btn-info.active,

#custom-html-st .btn-info:active,

#custom-html-st .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-st .btn-info.disabled.focus,

#custom-html-st .btn-info.disabled:focus,

#custom-html-st .btn-info.disabled:hover,

#custom-html-st .btn-info[disabled].focus,

#custom-html-st .btn-info[disabled]:focus,

#custom-html-st .btn-info[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-info.focus,

#custom-html-st fieldset[disabled] .btn-info:focus,

#custom-html-st fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-st .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-st .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-st .btn-warning.focus,

#custom-html-st .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-st .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-st .btn-warning.active,

#custom-html-st .btn-warning:active,

#custom-html-st .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-st .btn-warning.active.focus,

#custom-html-st .btn-warning.active:focus,

#custom-html-st .btn-warning.active:hover,

#custom-html-st .btn-warning:active.focus,

#custom-html-st .btn-warning:active:focus,

#custom-html-st .btn-warning:active:hover,

#custom-html-st .open > .dropdown-toggle.btn-warning.focus,

#custom-html-st .open > .dropdown-toggle.btn-warning:focus,

#custom-html-st .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-st .btn-warning.active,

#custom-html-st .btn-warning:active,

#custom-html-st .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-st .btn-warning.disabled.focus,

#custom-html-st .btn-warning.disabled:focus,

#custom-html-st .btn-warning.disabled:hover,

#custom-html-st .btn-warning[disabled].focus,

#custom-html-st .btn-warning[disabled]:focus,

#custom-html-st .btn-warning[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-warning.focus,

#custom-html-st fieldset[disabled] .btn-warning:focus,

#custom-html-st fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-st .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-st .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-st .btn-danger.focus,

#custom-html-st .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-st .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-st .btn-danger.active,

#custom-html-st .btn-danger:active,

#custom-html-st .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-st .btn-danger.active.focus,

#custom-html-st .btn-danger.active:focus,

#custom-html-st .btn-danger.active:hover,

#custom-html-st .btn-danger:active.focus,

#custom-html-st .btn-danger:active:focus,

#custom-html-st .btn-danger:active:hover,

#custom-html-st .open > .dropdown-toggle.btn-danger.focus,

#custom-html-st .open > .dropdown-toggle.btn-danger:focus,

#custom-html-st .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-st .btn-danger.active,

#custom-html-st .btn-danger:active,

#custom-html-st .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-st .btn-danger.disabled.focus,

#custom-html-st .btn-danger.disabled:focus,

#custom-html-st .btn-danger.disabled:hover,

#custom-html-st .btn-danger[disabled].focus,

#custom-html-st .btn-danger[disabled]:focus,

#custom-html-st .btn-danger[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-danger.focus,

#custom-html-st fieldset[disabled] .btn-danger:focus,

#custom-html-st fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-st .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-st .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-st .btn-link,

#custom-html-st .btn-link.active,

#custom-html-st .btn-link:active,

#custom-html-st .btn-link[disabled],

#custom-html-st fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-st .btn-link,

#custom-html-st .btn-link:active,

#custom-html-st .btn-link:focus,

#custom-html-st .btn-link:hover {

  border-color: transparent;

}

#custom-html-st .btn-link:focus,

#custom-html-st .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-st .btn-link[disabled]:focus,

#custom-html-st .btn-link[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-link:focus,

#custom-html-st fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-st .btn-group-lg > .btn,

#custom-html-st .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-st .btn-group-sm > .btn,

#custom-html-st .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-st .btn-group-xs > .btn,

#custom-html-st .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-st .btn-block {

  display: block;

  width: 100%;

}

#custom-html-st .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-st input[type=button].btn-block,

#custom-html-st input[type=reset].btn-block,

#custom-html-st input[type=submit].btn-block {

  width: 100%;

}

#custom-html-st .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-st .fade.in {

  opacity: 1;

}

#custom-html-st .collapse {

  display: none;

}

#custom-html-st .collapse.in {

  display: block;

}

#custom-html-st tr.collapse.in {

  display: table-row;

}

#custom-html-st tbody.collapse.in {

  display: table-row-group;

}

#custom-html-st .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-st .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-st .dropdown,

#custom-html-st .dropup {

  position: relative;

}

#custom-html-st .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-st .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-st .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-st .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-st .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-st .dropdown-menu > li > a:focus,

#custom-html-st .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-st .dropdown-menu > .active > a,

#custom-html-st .dropdown-menu > .active > a:focus,

#custom-html-st .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-st .dropdown-menu > .disabled > a,

#custom-html-st .dropdown-menu > .disabled > a:focus,

#custom-html-st .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-st .dropdown-menu > .disabled > a:focus,

#custom-html-st .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-st .open > .dropdown-menu {

  display: block;

}

#custom-html-st .open > a {

  outline: 0;

}

#custom-html-st .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-st .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-st .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-st .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-st .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-st .dropup .caret,

#custom-html-st .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-st .dropup .dropdown-menu,

#custom-html-st .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-st .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-st .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-st .btn-group,

#custom-html-st .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-st .btn-group-vertical > .btn,

#custom-html-st .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-st .btn-group-vertical > .btn.active,

#custom-html-st .btn-group-vertical > .btn:active,

#custom-html-st .btn-group-vertical > .btn:focus,

#custom-html-st .btn-group-vertical > .btn:hover,

#custom-html-st .btn-group > .btn.active,

#custom-html-st .btn-group > .btn:active,

#custom-html-st .btn-group > .btn:focus,

#custom-html-st .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-st .btn-group .btn + .btn,

#custom-html-st .btn-group .btn + .btn-group,

#custom-html-st .btn-group .btn-group + .btn,

#custom-html-st .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-st .btn-toolbar {

  margin-left: -5px;

}

#custom-html-st .btn-toolbar .btn,

#custom-html-st .btn-toolbar .btn-group,

#custom-html-st .btn-toolbar .input-group {

  float: left;

}

#custom-html-st .btn-toolbar > .btn,

#custom-html-st .btn-toolbar > .btn-group,

#custom-html-st .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-st .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-st .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-st .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-st .btn-group > .btn:last-child:not(:first-child),

#custom-html-st .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-st .btn-group > .btn-group {

  float: left;

}

#custom-html-st .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-st .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-st .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-st .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-st .btn-group .dropdown-toggle:active,

#custom-html-st .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-st .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-st .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-st .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-st .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-st .btn .caret {

  margin-left: 0;

}

#custom-html-st .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-st .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-st .btn-group-vertical > .btn,

#custom-html-st .btn-group-vertical > .btn-group,

#custom-html-st .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-st .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-st .btn-group-vertical > .btn + .btn,

#custom-html-st .btn-group-vertical > .btn + .btn-group,

#custom-html-st .btn-group-vertical > .btn-group + .btn,

#custom-html-st .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-st .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-st .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-st .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-st .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-st .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-st .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-st .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-st .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-st .btn-group-justified > .btn,

#custom-html-st .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-st .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-st .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-st [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-st [data-toggle=buttons] > .btn input[type=radio],

#custom-html-st [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-st [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-st .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-st .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-st .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-st .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-st .input-group-lg > .form-control,

#custom-html-st .input-group-lg > .input-group-addon,

#custom-html-st .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-st select.input-group-lg > .form-control,

#custom-html-st select.input-group-lg > .input-group-addon,

#custom-html-st select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-st select[multiple].input-group-lg > .form-control,

#custom-html-st select[multiple].input-group-lg > .input-group-addon,

#custom-html-st select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-st textarea.input-group-lg > .form-control,

#custom-html-st textarea.input-group-lg > .input-group-addon,

#custom-html-st textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-st .input-group-sm > .form-control,

#custom-html-st .input-group-sm > .input-group-addon,

#custom-html-st .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-st select.input-group-sm > .form-control,

#custom-html-st select.input-group-sm > .input-group-addon,

#custom-html-st select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-st select[multiple].input-group-sm > .form-control,

#custom-html-st select[multiple].input-group-sm > .input-group-addon,

#custom-html-st select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-st textarea.input-group-sm > .form-control,

#custom-html-st textarea.input-group-sm > .input-group-addon,

#custom-html-st textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-st .input-group .form-control,

#custom-html-st .input-group-addon,

#custom-html-st .input-group-btn {

  display: table-cell;

}

#custom-html-st .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-st .input-group-addon:not(:first-child):not(:last-child),

#custom-html-st .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-st .input-group-addon,

#custom-html-st .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-st .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-st .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-st .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-st .input-group-addon input[type=checkbox],

#custom-html-st .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-st .input-group .form-control:first-child,

#custom-html-st .input-group-addon:first-child,

#custom-html-st .input-group-btn:first-child > .btn,

#custom-html-st .input-group-btn:first-child > .btn-group > .btn,

#custom-html-st .input-group-btn:first-child > .dropdown-toggle,

#custom-html-st .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-st .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-st .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-st .input-group .form-control:last-child,

#custom-html-st .input-group-addon:last-child,

#custom-html-st .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-st .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-st .input-group-btn:last-child > .btn,

#custom-html-st .input-group-btn:last-child > .btn-group > .btn,

#custom-html-st .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-st .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-st .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-st .input-group-btn > .btn {

  position: relative;

}

#custom-html-st .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-st .input-group-btn > .btn:active,

#custom-html-st .input-group-btn > .btn:focus,

#custom-html-st .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-st .input-group-btn:first-child > .btn,

#custom-html-st .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-st .input-group-btn:last-child > .btn,

#custom-html-st .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-st .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-st .nav > li {

  position: relative;

  display: block;

}

#custom-html-st .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-st .nav > li > a:focus,

#custom-html-st .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-st .nav > li.disabled > a {

  color: #777777;

}

#custom-html-st .nav > li.disabled > a:focus,

#custom-html-st .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-st .nav .open > a,

#custom-html-st .nav .open > a:focus,

#custom-html-st .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-st .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-st .nav > li > a > img {

  max-width: none;

}

#custom-html-st .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-st .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-st .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-st .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-st .nav-tabs > li.active > a,

#custom-html-st .nav-tabs > li.active > a:focus,

#custom-html-st .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-st .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-st .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-st .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-st .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-st .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-st .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-st .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-st .nav-tabs.nav-justified > .active > a,

#custom-html-st .nav-tabs.nav-justified > .active > a:focus,

#custom-html-st .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-st .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-st .nav-tabs.nav-justified > .active > a,

  #custom-html-st .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-st .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-st .nav-pills > li {

  float: left;

}

#custom-html-st .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-st .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-st .nav-pills > li.active > a,

#custom-html-st .nav-pills > li.active > a:focus,

#custom-html-st .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-st .nav-stacked > li {

  float: none;

}

#custom-html-st .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-st .nav-justified {

  width: 100%;

}

#custom-html-st .nav-justified > li {

  float: none;

}

#custom-html-st .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-st .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-st .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-st .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-st .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-st .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-st .nav-tabs-justified > .active > a,

#custom-html-st .nav-tabs-justified > .active > a:focus,

#custom-html-st .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-st .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-st .nav-tabs-justified > .active > a,

  #custom-html-st .nav-tabs-justified > .active > a:focus,

  #custom-html-st .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-st .tab-content > .tab-pane {

  display: none;

}

#custom-html-st .tab-content > .active {

  display: block;

}

#custom-html-st .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-st .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-st .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-st .navbar-header {

    float: left;

  }

}

#custom-html-st .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-st .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-st .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-st .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-st .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-st .navbar-fixed-bottom .navbar-collapse,

  #custom-html-st .navbar-fixed-top .navbar-collapse,

  #custom-html-st .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-st .navbar-fixed-bottom .navbar-collapse,

#custom-html-st .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-st .navbar-fixed-bottom .navbar-collapse,

  #custom-html-st .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-st .container-fluid > .navbar-collapse,

#custom-html-st .container-fluid > .navbar-header,

#custom-html-st .container > .navbar-collapse,

#custom-html-st .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-st .container-fluid > .navbar-collapse,

  #custom-html-st .container-fluid > .navbar-header,

  #custom-html-st .container > .navbar-collapse,

  #custom-html-st .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-st .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-st .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-st .navbar-fixed-bottom,

#custom-html-st .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-st .navbar-fixed-bottom,

  #custom-html-st .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-st .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-st .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-st .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-st .navbar-brand:focus,

#custom-html-st .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-st .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-st .navbar > .container .navbar-brand,

  #custom-html-st .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-st .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-st .navbar-toggle:focus {

  outline: 0;

}

#custom-html-st .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-st .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-st .navbar-toggle {

    display: none;

  }

}

#custom-html-st .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-st .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-st .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-st .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-st .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-st .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-st .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-st .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-st .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-st .navbar-nav > li {

    float: left;

  }

  #custom-html-st .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-st .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-st .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-st .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-st .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-st .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-st .navbar-form .input-group .form-control,

  #custom-html-st .navbar-form .input-group .input-group-addon,

  #custom-html-st .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-st .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-st .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-st .navbar-form .checkbox,

  #custom-html-st .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-st .navbar-form .checkbox label,

  #custom-html-st .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-st .navbar-form .checkbox input[type=checkbox],

  #custom-html-st .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-st .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-st .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-st .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-st .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-st .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-st .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-st .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-st .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-st .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-st .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-st .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-st .navbar-left {

    float: left !important;

  }

  #custom-html-st .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-st .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-st .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-st .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-st .navbar-default .navbar-brand:focus,

#custom-html-st .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-st .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-st .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-st .navbar-default .navbar-nav > li > a:focus,

#custom-html-st .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-st .navbar-default .navbar-nav > .active > a,

#custom-html-st .navbar-default .navbar-nav > .active > a:focus,

#custom-html-st .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-st .navbar-default .navbar-nav > .disabled > a,

#custom-html-st .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-st .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-st .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-st .navbar-default .navbar-toggle:focus,

#custom-html-st .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-st .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-st .navbar-default .navbar-collapse,

#custom-html-st .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-st .navbar-default .navbar-nav > .open > a,

#custom-html-st .navbar-default .navbar-nav > .open > a:focus,

#custom-html-st .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-st .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-st .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-st .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-st .navbar-default .btn-link {

  color: #777777;

}

#custom-html-st .navbar-default .btn-link:focus,

#custom-html-st .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-st .navbar-default .btn-link[disabled]:focus,

#custom-html-st .navbar-default .btn-link[disabled]:hover,

#custom-html-st fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-st fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-st .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-st .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-st .navbar-inverse .navbar-brand:focus,

#custom-html-st .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-st .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-st .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-st .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-st .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-st .navbar-inverse .navbar-nav > .active > a,

#custom-html-st .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-st .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-st .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-st .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-st .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-st .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-st .navbar-inverse .navbar-toggle:focus,

#custom-html-st .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-st .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-st .navbar-inverse .navbar-collapse,

#custom-html-st .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-st .navbar-inverse .navbar-nav > .open > a,

#custom-html-st .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-st .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-st .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-st .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-st .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-st .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-st .navbar-inverse .btn-link:focus,

#custom-html-st .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-st .navbar-inverse .btn-link[disabled]:focus,

#custom-html-st .navbar-inverse .btn-link[disabled]:hover,

#custom-html-st fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-st fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-st .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-st .breadcrumb > li {

  display: inline-block;

}

#custom-html-st .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-st .breadcrumb > .active {

  color: #777777;

}

#custom-html-st .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-st .pagination > li {

  display: inline;

}

#custom-html-st .pagination > li > a,

#custom-html-st .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-st .pagination > li:first-child > a,

#custom-html-st .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-st .pagination > li:last-child > a,

#custom-html-st .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-st .pagination > li > a:focus,

#custom-html-st .pagination > li > a:hover,

#custom-html-st .pagination > li > span:focus,

#custom-html-st .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-st .pagination > .active > a,

#custom-html-st .pagination > .active > a:focus,

#custom-html-st .pagination > .active > a:hover,

#custom-html-st .pagination > .active > span,

#custom-html-st .pagination > .active > span:focus,

#custom-html-st .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-st .pagination > .disabled > a,

#custom-html-st .pagination > .disabled > a:focus,

#custom-html-st .pagination > .disabled > a:hover,

#custom-html-st .pagination > .disabled > span,

#custom-html-st .pagination > .disabled > span:focus,

#custom-html-st .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-st .pagination-lg > li > a,

#custom-html-st .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-st .pagination-lg > li:first-child > a,

#custom-html-st .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-st .pagination-lg > li:last-child > a,

#custom-html-st .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-st .pagination-sm > li > a,

#custom-html-st .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-st .pagination-sm > li:first-child > a,

#custom-html-st .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-st .pagination-sm > li:last-child > a,

#custom-html-st .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-st .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-st .pager li {

  display: inline;

}

#custom-html-st .pager li > a,

#custom-html-st .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-st .pager li > a:focus,

#custom-html-st .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-st .pager .next > a,

#custom-html-st .pager .next > span {

  float: right;

}

#custom-html-st .pager .previous > a,

#custom-html-st .pager .previous > span {

  float: left;

}

#custom-html-st .pager .disabled > a,

#custom-html-st .pager .disabled > a:focus,

#custom-html-st .pager .disabled > a:hover,

#custom-html-st .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-st .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-st a.label:focus,

#custom-html-st a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-st .label:empty {

  display: none;

}

#custom-html-st .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-st .label-default {

  background-color: #777777;

}

#custom-html-st .label-default[href]:focus,

#custom-html-st .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-st .label-primary {

  background-color: #337ab7;

}

#custom-html-st .label-primary[href]:focus,

#custom-html-st .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-st .label-success {

  background-color: #5cb85c;

}

#custom-html-st .label-success[href]:focus,

#custom-html-st .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-st .label-info {

  background-color: #5bc0de;

}

#custom-html-st .label-info[href]:focus,

#custom-html-st .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-st .label-warning {

  background-color: #f0ad4e;

}

#custom-html-st .label-warning[href]:focus,

#custom-html-st .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-st .label-danger {

  background-color: #d9534f;

}

#custom-html-st .label-danger[href]:focus,

#custom-html-st .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-st .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-st .badge:empty {

  display: none;

}

#custom-html-st .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-st .btn-group-xs > .btn .badge,

#custom-html-st .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-st a.badge:focus,

#custom-html-st a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-st .list-group-item.active > .badge,

#custom-html-st .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-st .list-group-item > .badge {

  float: right;

}

#custom-html-st .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-st .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-st .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-st .jumbotron .h1,

#custom-html-st .jumbotron h1 {

  color: inherit;

}

#custom-html-st .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-st .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-st .container .jumbotron,

#custom-html-st .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-st .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-st .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-st .container .jumbotron,

  #custom-html-st .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-st .jumbotron .h1,

  #custom-html-st .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-st .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-st .thumbnail a > img,

#custom-html-st .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-st a.thumbnail.active,

#custom-html-st a.thumbnail:focus,

#custom-html-st a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-st .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-st .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-st .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-st .alert .alert-link {

  font-weight: 700;

}

#custom-html-st .alert > p,

#custom-html-st .alert > ul {

  margin-bottom: 0;

}

#custom-html-st .alert > p + p {

  margin-top: 5px;

}

#custom-html-st .alert-dismissable,

#custom-html-st .alert-dismissible {

  padding-right: 35px;

}

#custom-html-st .alert-dismissable .close,

#custom-html-st .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-st .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-st .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-st .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-st .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-st .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-st .alert-info .alert-link {

  color: #000000;

}

#custom-html-st .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-st .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-st .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-st .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-st .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-st .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-st .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-st .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-st .progress-bar-striped,

#custom-html-st .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-st .progress-bar.active,

#custom-html-st .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-st .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-st .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-st .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-st .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-st .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-st .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-st .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-st .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-st .media {

  margin-top: 15px;

}

#custom-html-st .media:first-child {

  margin-top: 0;

}

#custom-html-st .media,

#custom-html-st .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-st .media-body {

  width: 10000px;

}

#custom-html-st .media-object {

  display: block;

}

#custom-html-st .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-st .media-right,

#custom-html-st .media > .pull-right {

  padding-left: 10px;

}

#custom-html-st .media-left,

#custom-html-st .media > .pull-left {

  padding-right: 10px;

}

#custom-html-st .media-body,

#custom-html-st .media-left,

#custom-html-st .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-st .media-middle {

  vertical-align: middle;

}

#custom-html-st .media-bottom {

  vertical-align: bottom;

}

#custom-html-st .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-st .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-st .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-st .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-st .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-st .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-st a.list-group-item,

#custom-html-st button.list-group-item {

  color: #555555;

}

#custom-html-st a.list-group-item .list-group-item-heading,

#custom-html-st button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-st a.list-group-item:focus,

#custom-html-st a.list-group-item:hover,

#custom-html-st button.list-group-item:focus,

#custom-html-st button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-st button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-st .list-group-item.disabled,

#custom-html-st .list-group-item.disabled:focus,

#custom-html-st .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-st .list-group-item.disabled .list-group-item-heading,

#custom-html-st .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-st .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-st .list-group-item.disabled .list-group-item-text,

#custom-html-st .list-group-item.disabled:focus .list-group-item-text,

#custom-html-st .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-st .list-group-item.active,

#custom-html-st .list-group-item.active:focus,

#custom-html-st .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-st .list-group-item.active .list-group-item-heading,

#custom-html-st .list-group-item.active .list-group-item-heading > .small,

#custom-html-st .list-group-item.active .list-group-item-heading > small,

#custom-html-st .list-group-item.active:focus .list-group-item-heading,

#custom-html-st .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-st .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-st .list-group-item.active:hover .list-group-item-heading,

#custom-html-st .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-st .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-st .list-group-item.active .list-group-item-text,

#custom-html-st .list-group-item.active:focus .list-group-item-text,

#custom-html-st .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-st .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-st a.list-group-item-success,

#custom-html-st button.list-group-item-success {

  color: #3c763d;

}

#custom-html-st a.list-group-item-success .list-group-item-heading,

#custom-html-st button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-st a.list-group-item-success:focus,

#custom-html-st a.list-group-item-success:hover,

#custom-html-st button.list-group-item-success:focus,

#custom-html-st button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-st a.list-group-item-success.active,

#custom-html-st a.list-group-item-success.active:focus,

#custom-html-st a.list-group-item-success.active:hover,

#custom-html-st button.list-group-item-success.active,

#custom-html-st button.list-group-item-success.active:focus,

#custom-html-st button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-st .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-st a.list-group-item-info,

#custom-html-st button.list-group-item-info {

  color: #31708f;

}

#custom-html-st a.list-group-item-info .list-group-item-heading,

#custom-html-st button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-st a.list-group-item-info:focus,

#custom-html-st a.list-group-item-info:hover,

#custom-html-st button.list-group-item-info:focus,

#custom-html-st button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-st a.list-group-item-info.active,

#custom-html-st a.list-group-item-info.active:focus,

#custom-html-st a.list-group-item-info.active:hover,

#custom-html-st button.list-group-item-info.active,

#custom-html-st button.list-group-item-info.active:focus,

#custom-html-st button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-st .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-st a.list-group-item-warning,

#custom-html-st button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-st a.list-group-item-warning .list-group-item-heading,

#custom-html-st button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-st a.list-group-item-warning:focus,

#custom-html-st a.list-group-item-warning:hover,

#custom-html-st button.list-group-item-warning:focus,

#custom-html-st button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-st a.list-group-item-warning.active,

#custom-html-st a.list-group-item-warning.active:focus,

#custom-html-st a.list-group-item-warning.active:hover,

#custom-html-st button.list-group-item-warning.active,

#custom-html-st button.list-group-item-warning.active:focus,

#custom-html-st button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-st .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-st a.list-group-item-danger,

#custom-html-st button.list-group-item-danger {

  color: #a94442;

}

#custom-html-st a.list-group-item-danger .list-group-item-heading,

#custom-html-st button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-st a.list-group-item-danger:focus,

#custom-html-st a.list-group-item-danger:hover,

#custom-html-st button.list-group-item-danger:focus,

#custom-html-st button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-st a.list-group-item-danger.active,

#custom-html-st a.list-group-item-danger.active:focus,

#custom-html-st a.list-group-item-danger.active:hover,

#custom-html-st button.list-group-item-danger.active,

#custom-html-st button.list-group-item-danger.active:focus,

#custom-html-st button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-st .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-st .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-st .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-st .panel-body {

  padding: 15px;

}

#custom-html-st .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-st .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-st .panel-title > .small,

#custom-html-st .panel-title > .small > a,

#custom-html-st .panel-title > a,

#custom-html-st .panel-title > small,

#custom-html-st .panel-title > small > a {

  color: inherit;

}

#custom-html-st .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-st .panel > .list-group,

#custom-html-st .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-st .panel > .list-group .list-group-item,

#custom-html-st .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-st .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-st .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-st .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-st .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-st .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-st .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-st .panel > .panel-collapse > .table,

#custom-html-st .panel > .table,

#custom-html-st .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-st .panel > .panel-collapse > .table caption,

#custom-html-st .panel > .table caption,

#custom-html-st .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-st .panel > .table-responsive:first-child > .table:first-child,

#custom-html-st .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-st .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-st .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-st .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-st .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-st .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-st .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-st .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-st .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-st .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-st .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-st .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-st .panel > .table-responsive:last-child > .table:last-child,

#custom-html-st .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-st .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-st .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-st .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-st .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-st .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-st .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-st .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-st .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-st .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-st .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-st .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-st .panel > .panel-body + .table,

#custom-html-st .panel > .panel-body + .table-responsive,

#custom-html-st .panel > .table + .panel-body,

#custom-html-st .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-st .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-st .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-st .panel > .table-bordered,

#custom-html-st .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-st .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-st .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-st .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-st .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-st .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-st .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-st .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-st .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-st .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-st .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-st .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-st .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-st .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-st .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-st .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-st .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-st .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-st .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-st .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-st .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-st .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-st .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-st .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-st .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-st .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-st .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-st .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-st .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-st .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-st .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-st .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-st .panel-group {

  margin-bottom: 20px;

}

#custom-html-st .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-st .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-st .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-st .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-st .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-st .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-st .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-st .panel-default {

  border-color: #dddddd;

}

#custom-html-st .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-st .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-st .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-st .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-st .panel-primary {

  border-color: #337ab7;

}

#custom-html-st .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-st .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-st .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-st .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-st .panel-success {

  border-color: #d6e9c6;

}

#custom-html-st .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-st .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-st .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-st .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-st .panel-info {

  border-color: #bce8f1;

}

#custom-html-st .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-st .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-st .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-st .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-st .panel-warning {

  border-color: #faebcc;

}

#custom-html-st .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-st .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-st .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-st .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-st .panel-danger {

  border-color: #ebccd1;

}

#custom-html-st .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-st .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-st .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-st .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-st .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-st .embed-responsive .embed-responsive-item,

#custom-html-st .embed-responsive embed,

#custom-html-st .embed-responsive iframe,

#custom-html-st .embed-responsive object,

#custom-html-st .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-st .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-st .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-st .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-st .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-st .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-st .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-st .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-st .close:focus,

#custom-html-st .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-st button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-st .modal-open {

  overflow: hidden;

}

#custom-html-st .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-st .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-st .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-st .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-st .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-st .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-st .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-st .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-st .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-st .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-st .modal-header .close {

  margin-top: -2px;

}

#custom-html-st .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-st .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-st .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-st .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-st .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-st .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-st .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-st .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-st .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-st .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-st .modal-lg {

    width: 900px;

  }

}

#custom-html-st .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-st .tooltip.in {

  opacity: 0.9;

}

#custom-html-st .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-st .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-st .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-st .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-st .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-st .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-st .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-st .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-st .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-st .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-st .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-st .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-st .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-st .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-st .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-st .popover.top {

  margin-top: -10px;

}

#custom-html-st .popover.right {

  margin-left: 10px;

}

#custom-html-st .popover.bottom {

  margin-top: 10px;

}

#custom-html-st .popover.left {

  margin-left: -10px;

}

#custom-html-st .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-st .popover-content {

  padding: 9px 14px;

}

#custom-html-st .popover > .arrow,

#custom-html-st .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-st .popover > .arrow {

  border-width: 11px;

}

#custom-html-st .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-st .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-st .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-st .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-st .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-st .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-st .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-st .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-st .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-st .carousel {

  position: relative;

}

#custom-html-st .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-st .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-st .carousel-inner > .item > a > img,

#custom-html-st .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-st .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-st .carousel-inner > .item.active.right,

  #custom-html-st .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-st .carousel-inner > .item.active.left,

  #custom-html-st .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-st .carousel-inner > .item.active,

  #custom-html-st .carousel-inner > .item.next.left,

  #custom-html-st .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-st .carousel-inner > .active,

#custom-html-st .carousel-inner > .next,

#custom-html-st .carousel-inner > .prev {

  display: block;

}

#custom-html-st .carousel-inner > .active {

  left: 0;

}

#custom-html-st .carousel-inner > .next,

#custom-html-st .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-st .carousel-inner > .next {

  left: 100%;

}

#custom-html-st .carousel-inner > .prev {

  left: -100%;

}

#custom-html-st .carousel-inner > .next.left,

#custom-html-st .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-st .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-st .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-st .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;


  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-st .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-st .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-st .carousel-control:focus,

#custom-html-st .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-st .carousel-control .glyphicon-chevron-left,

#custom-html-st .carousel-control .glyphicon-chevron-right,

#custom-html-st .carousel-control .icon-next,

#custom-html-st .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-st .carousel-control .glyphicon-chevron-left,

#custom-html-st .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-st .carousel-control .glyphicon-chevron-right,

#custom-html-st .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-st .carousel-control .icon-next,

#custom-html-st .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-st .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-st .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-st .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}


#custom-html-st .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-st .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-st .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-st .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-st .carousel-control .glyphicon-chevron-left,

  #custom-html-st .carousel-control .glyphicon-chevron-right,

  #custom-html-st .carousel-control .icon-next,

  #custom-html-st .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-st .carousel-control .glyphicon-chevron-left,

  #custom-html-st .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-st .carousel-control .glyphicon-chevron-right,

  #custom-html-st .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-st .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-st .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-st .btn-group-vertical > .btn-group:after,

#custom-html-st .btn-group-vertical > .btn-group:before,

#custom-html-st .btn-toolbar:after,

#custom-html-st .btn-toolbar:before,

#custom-html-st .clearfix:after,

#custom-html-st .clearfix:before,

#custom-html-st .container-fluid:after,

#custom-html-st .container-fluid:before,

#custom-html-st .container:after,

#custom-html-st .container:before,

#custom-html-st .dl-horizontal dd:after,

#custom-html-st .dl-horizontal dd:before,

#custom-html-st .form-horizontal .form-group:after,

#custom-html-st .form-horizontal .form-group:before,

#custom-html-st .modal-footer:after,

#custom-html-st .modal-footer:before,

#custom-html-st .modal-header:after,

#custom-html-st .modal-header:before,

#custom-html-st .nav:after,

#custom-html-st .nav:before,

#custom-html-st .navbar-collapse:after,

#custom-html-st .navbar-collapse:before,

#custom-html-st .navbar-header:after,

#custom-html-st .navbar-header:before,

#custom-html-st .navbar:after,

#custom-html-st .navbar:before,

#custom-html-st .pager:after,

#custom-html-st .pager:before,

#custom-html-st .panel-body:after,

#custom-html-st .panel-body:before,

#custom-html-st .row:after,

#custom-html-st .row:before {

  display: table;

  content: " ";

}

#custom-html-st .btn-group-vertical > .btn-group:after,

#custom-html-st .btn-toolbar:after,

#custom-html-st .clearfix:after,

#custom-html-st .container-fluid:after,

#custom-html-st .container:after,

#custom-html-st .dl-horizontal dd:after,

#custom-html-st .form-horizontal .form-group:after,

#custom-html-st .modal-footer:after,

#custom-html-st .modal-header:after,

#custom-html-st .nav:after,

#custom-html-st .navbar-collapse:after,

#custom-html-st .navbar-header:after,

#custom-html-st .navbar:after,

#custom-html-st .pager:after,

#custom-html-st .panel-body:after,

#custom-html-st .row:after {

  clear: both;

}

#custom-html-st .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-st .pull-right {

  float: right !important;

}

#custom-html-st .pull-left {

  float: left !important;

}

#custom-html-st .hide {

  display: none !important;

}

#custom-html-st .show {

  display: block !important;

}

#custom-html-st .invisible {

  visibility: hidden;

}

#custom-html-st .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-st .hidden {

  display: none !important;

}

#custom-html-st .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-st .visible-lg,

#custom-html-st .visible-md,

#custom-html-st .visible-sm,

#custom-html-st .visible-xs {

  display: none !important;

}

#custom-html-st .visible-lg-block,

#custom-html-st .visible-lg-inline,

#custom-html-st .visible-lg-inline-block,

#custom-html-st .visible-md-block,

#custom-html-st .visible-md-inline,

#custom-html-st .visible-md-inline-block,

#custom-html-st .visible-sm-block,

#custom-html-st .visible-sm-inline,

#custom-html-st .visible-sm-inline-block,

#custom-html-st .visible-xs-block,

#custom-html-st .visible-xs-inline,

#custom-html-st .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-st .visible-xs {

    display: block !important;

  }

  #custom-html-st table.visible-xs {

    display: table !important;

  }

  #custom-html-st tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-st td.visible-xs,

  #custom-html-st th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-st .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-st .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-st .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-st .visible-sm {

    display: block !important;

  }

  #custom-html-st table.visible-sm {

    display: table !important;

  }

  #custom-html-st tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-st td.visible-sm,

  #custom-html-st th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-st .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-st .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-st .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-st .visible-md {

    display: block !important;

  }

  #custom-html-st table.visible-md {

    display: table !important;

  }

  #custom-html-st tr.visible-md {

    display: table-row !important;

  }

  #custom-html-st td.visible-md,

  #custom-html-st th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-st .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-st .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-st .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-st .visible-lg {

    display: block !important;

  }

  #custom-html-st table.visible-lg {

    display: table !important;

  }

  #custom-html-st tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-st td.visible-lg,

  #custom-html-st th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-st .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-st .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-st .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-st .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-st .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-st .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-st .hidden-lg {

    display: none !important;

  }

}

#custom-html-st .visible-print {

  display: none !important;

}

@media print {

  #custom-html-st .visible-print {

    display: block !important;

  }

  #custom-html-st table.visible-print {

    display: table !important;

  }

  #custom-html-st tr.visible-print {

    display: table-row !important;

  }

  #custom-html-st td.visible-print,

  #custom-html-st th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-st .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-st .visible-print-block {

    display: block !important;

  }

}

#custom-html-st .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-st .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-st .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-st .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-st .hidden-print {

    display: none !important;

  }

}

#custom-html-st .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-st .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-st .intl-tel-input .hide {

  display: none;

}

#custom-html-st .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-st .intl-tel-input input,

#custom-html-st .intl-tel-input input[type=tel],

#custom-html-st .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-st .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-st .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-st .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-st .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-st .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-st .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-st .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-st .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-st .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-st .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-st .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-st .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-st .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-st .intl-tel-input .country-list .country-name,

#custom-html-st .intl-tel-input .country-list .dial-code,

#custom-html-st .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-st .intl-tel-input .country-list .country-name,

#custom-html-st .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-st .intl-tel-input.allow-dropdown input,

#custom-html-st .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-st .intl-tel-input.allow-dropdown input[type=text],

#custom-html-st .intl-tel-input.separate-dial-code input,

#custom-html-st .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-st .intl-tel-input.allow-dropdown .flag-container,

#custom-html-st .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-st .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-st .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-st .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-st .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-st .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-st .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-st .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-st .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-st .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-st .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-st .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-st .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-st .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-st .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-st .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-st .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-st .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-st .iti-flag {

  width: 20px;

}

#custom-html-st .iti-flag.be {

  width: 18px;

}

#custom-html-st .iti-flag.ch {

  width: 15px;

}

#custom-html-st .iti-flag.mc {

  width: 19px;

}

#custom-html-st .iti-flag.ne {

  width: 18px;

}

#custom-html-st .iti-flag.np {

  width: 13px;

}

#custom-html-st .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-st .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-st .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-st .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-st .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-st .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-st .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-st .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-st .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-st .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-st .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-st .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-st .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-st .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-st .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-st .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-st .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-st .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-st .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-st .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-st .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-st .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-st .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-st .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-st .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-st .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-st .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-st .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-st .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-st .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-st .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-st .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-st .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-st .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-st .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-st .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-st .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-st .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-st .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-st .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-st .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-st .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-st .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-st .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-st .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-st .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-st .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-st .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-st .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-st .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-st .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-st .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-st .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-st .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-st .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-st .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-st .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-st .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-st .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-st .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-st .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-st .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-st .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-st .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-st .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-st .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-st .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-st .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-st .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-st .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-st .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-st .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-st .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-st .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-st .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-st .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-st .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-st .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-st .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-st .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-st .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-st .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-st .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-st .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-st .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-st .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-st .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-st .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-st .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-st .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-st .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-st .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-st .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-st .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-st .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-st .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-st .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-st .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-st .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-st .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-st .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-st .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-st .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-st .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-st .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-st .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-st .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-st .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-st .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-st .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-st .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-st .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-st .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-st .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-st .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-st .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-st .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-st .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-st .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-st .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-st .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-st .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-st .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-st .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-st .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-st .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-st .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-st .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-st .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-st .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-st .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-st .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-st .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-st .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-st .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-st .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-st .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-st .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-st .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-st .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-st .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-st .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-st .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-st .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-st .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-st .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-st .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-st .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-st .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-st .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-st .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-st .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-st .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-st .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-st .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-st .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-st .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-st .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-st .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-st .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-st .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-st .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-st .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-st .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-st .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-st .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-st .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-st .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-st .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-st .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-st .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-st .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-st .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-st .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-st .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-st .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-st .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-st .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-st .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-st .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-st .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-st .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-st .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-st .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-st .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-st .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-st .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-st .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-st .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-st .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-st .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-st .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-st .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-st .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-st .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-st .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-st .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-st .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-st .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-st .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-st .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-st .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-st .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-st .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-st .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-st .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-st .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-st .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-st .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-st .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-st .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-st .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-st .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-st .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-st .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-st .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-st .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-st .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-st .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-st .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-st .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-st .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-st .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-st .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-st .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-st .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-st .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-st .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-st .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-st .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-st .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-st .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-st .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-st .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-st .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-st .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-st .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-st .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-st .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-st .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-st .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-st .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-st .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-st .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-st .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-st .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-st .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-st .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-st .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-st .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-st .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-st .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-st .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-st .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-st .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-st .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-st .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-st .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-st .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-st .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-st .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-st .iti-flag.np {

  background-color: transparent;

}

#custom-html-st body,

#custom-html-st button,

#custom-html-st input,

#custom-html-st select,

#custom-html-st textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-st h1,

#custom-html-st h2,

#custom-html-st h3,

#custom-html-st h4,

#custom-html-st h5,

#custom-html-st h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-st .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-st .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-st .navbar-main li.account {

  background-color: #000000;

}

#custom-html-st .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-st .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-st .navbar-main .navbar-nav > .active > a,

#custom-html-st .navbar-main .navbar-nav > .active > a:focus,

#custom-html-st .navbar-main .navbar-nav > .active > a:hover,

#custom-html-st .navbar-main .navbar-nav > .open > a,

#custom-html-st .navbar-main .navbar-nav > .open > a:focus,

#custom-html-st .navbar-main .navbar-nav > .open > a:hover,

#custom-html-st .navbar-main .navbar-nav > li > a:focus,

#custom-html-st .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-st #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-st .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-st .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-st .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-st .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-st .navbar-header {

    float: none;

  }

  #custom-html-st .navbar-left,

  #custom-html-st .navbar-right {

    float: none !important;

  }

  #custom-html-st .navbar-toggle {

    display: block;

  }

  #custom-html-st .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-st .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-st .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-st .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-st .navbar-nav > li {

    float: none;

  }

  #custom-html-st .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-st .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-st .panel {

  font-size: 0.9em;

}

#custom-html-st .list-group {

  font-size: 0.9em;

}

#custom-html-st .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-st .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-st a.list-group-item.active,

#custom-html-st a.list-group-item.active:focus,

#custom-html-st a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-st .pagination {

  font-size: 0.8em;

}

#custom-html-st .pagination > .active > a,

#custom-html-st .pagination > .active > a:focus,

#custom-html-st .pagination > .active > a:hover,

#custom-html-st .pagination > .active > span,

#custom-html-st .pagination > .active > span:focus,

#custom-html-st .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-st .dropdown-menu > li > a:focus,

#custom-html-st .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-st .label {

  border-radius: 0;

}

#custom-html-st input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-st .list-group-item {

  padding: 7px 15px;

}

#custom-html-st .panel-body {

  padding: 10px 15px;

}

#custom-html-st .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-st .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-st .btn {

  overflow: hidden;

}

#custom-html-st body,

#custom-html-st html {

  height: 100%;

}

#custom-html-st body {

  background-color: #f8f8f8;

}

#custom-html-st h1,

#custom-html-st h2,

#custom-html-st h3,

#custom-html-st h4,

#custom-html-st h5,

#custom-html-st h6 {

  font-weight: 400;

}

#custom-html-st a {

  color: #005588;

}

#custom-html-st section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-st section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-st section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-st section#header .search {

  margin: 20px 0;

}

#custom-html-st section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-st section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-st section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-st section#main-content {

  margin-bottom: 60px;

}

#custom-html-st .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-st section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-st section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-st section#footer {

    line-height: 32px;

  }

}

#custom-html-st section#footer .back-to-top {

  float: right;

}

#custom-html-st section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-st .adminreturndiv {

  display: none !important;

}

#custom-html-st .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-st .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-st .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-st .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-st .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-st .navbar-main .navbar-toggle:focus,

#custom-html-st .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-st .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-st .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-st .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-st .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-st .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-st div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-st div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-st div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-st div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-st div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-st .h1,

  #custom-html-st h1 {

    font-size: 26px;

  }

  #custom-html-st .h2,

  #custom-html-st h2 {

    font-size: 20px;

  }

  #custom-html-st .h3,

  #custom-html-st h3 {

    font-size: 16px;

  }

  #custom-html-st .h4,

  #custom-html-st h4 {

    font-size: 14px;

  }

  #custom-html-st .h5,

  #custom-html-st h5 {

    font-size: 12px;

  }

  #custom-html-st .h6,

  #custom-html-st h6 {

    font-size: 11px;

  }

  #custom-html-st div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-st .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-st .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-st .margin-10 {

  margin: 10px;

}

#custom-html-st .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-st .margin-top-5 {

  margin-top: 5px;

}

#custom-html-st .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-st .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-st .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-st .input-inline {

  display: inline-block;

}

#custom-html-st .input-inline-100 {

  width: 100px;

}

#custom-html-st .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-st .pull-md-left {

    float: left;

  }

  #custom-html-st .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-st .pull-sm-left {

    float: left;

  }

  #custom-html-st .pull-sm-right {

    float: right;

  }

  #custom-html-st .text-right-sm {

    text-align: right;

  }

}

#custom-html-st .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-st .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-st .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-st .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-st .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-st .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-st .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-st i.icon-rss {

  color: #ff6600;

}

#custom-html-st section#main-menu {

  background-color: #000000;

}

#custom-html-st section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-st section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-st section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-st section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-st section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-st section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-st section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-st section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-st section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-st section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-st section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-st section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-st section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-st .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-st .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-st .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-st .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-st .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-st .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-st .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-st .home-shortcuts li span {

  display: none;

}

#custom-html-st .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-st .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-st .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-st .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-st .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-st .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-st .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-st .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-st .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-st .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-st .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-st .client-home-panels .panel small {

  color: #888888;

}

#custom-html-st .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-st .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-st .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-st .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-st .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-st .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-st .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-st .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-st .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-st .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-st .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-st .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-st .tiles .tile a {

  text-decoration: none;

}

#custom-html-st .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-st .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-st .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-st .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-st .tiles .tile:nth-child(1),

  #custom-html-st .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-st .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-st .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-st .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-st .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-st .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-st .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-st .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-st .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-st .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-st .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-st .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-st .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-st .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-st .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-st .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-st .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-st .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-st .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-st .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-st .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-st .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-st .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-st .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-st .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-st .bg-color-red {

  background-color: #d9534f;

}

#custom-html-st .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-st .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-st .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-st .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-st .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-st .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-st .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-st .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-st .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-st .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-st .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-st .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-st .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-st .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-st .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-st .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-st ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-st ul.top-nav > li,

#custom-html-st ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-st ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-st ul.top-nav > li:active > a,

#custom-html-st ul.top-nav > li:focus > a,

#custom-html-st ul.top-nav > li:hover > a,

#custom-html-st ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-st ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-st ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-st ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-st ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-st ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-st ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-st ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-st ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-st ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-st ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-st div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-st div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-st div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-st div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-st div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-st div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-st .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-st .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-st .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-st .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-st .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-st .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-st .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-st .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-st .domain-check-availability {

  width: 100px;

}

#custom-html-st .domain-step-options {

  min-height: 300px;

}

#custom-html-st .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-st .domain-checker-available {

  color: #5cb85c;

}

#custom-html-st .domain-checker-invalid,

#custom-html-st .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-st div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-st .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-st .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-st .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-st a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-st .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-st .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-st .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-st .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-st .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-st .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-st .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-st .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-st .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-st .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-st .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-st .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-st .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-st .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-st .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-st .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-st .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-st .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-st .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-st .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-st .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-st .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-st .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-st .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-st .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-st .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-st div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-st div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-st div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-st .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-st .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-st .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-st .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-st div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-st div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-st .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-st .product-status-pending {

  background-color: #f89406;

}

#custom-html-st .product-status-active {

  background-color: #46a546;

}

#custom-html-st .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-st .product-status-cancelled,

#custom-html-st .product-status-terminated {

  background-color: #666666;

}

#custom-html-st .product-status-fraud {

  background-color: #000000;

}

#custom-html-st .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-st div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-st .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-st .ssl-inactive {

  cursor: pointer;

}

#custom-html-st .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-st div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-st .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-st .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-st .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-st .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-st .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-st .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-st .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-st .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-st .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-st .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-st .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-st .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-st .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-st .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-st .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-st .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-st .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-st .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-st .pagination > li > a,

#custom-html-st .pagination > li > span {

  color: #444444;

}

#custom-html-st .pagination > .active > a,

#custom-html-st .pagination > .active > a:focus,

#custom-html-st .pagination > .active > a:hover,

#custom-html-st .pagination > .active > span,

#custom-html-st .pagination > .active > span:focus,

#custom-html-st .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-st table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-st table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-st .table-container {

  padding: 0 0 25px 0;

}

#custom-html-st table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-st .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-st table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-st .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-st .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-st .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-st table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-st table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-st table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-st .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-st .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-st .status-pending {

  color: #d9534f;

}

#custom-html-st .status-pending.transfer {

  color: #a68500;

}

#custom-html-st .status-active,

#custom-html-st .status-completed,

#custom-html-st .status-open {

  color: #3fad46;

}

#custom-html-st .status-suspended {

  color: #f0ad4e;

}

#custom-html-st .status-customer-reply {

  color: #ff6600;

}

#custom-html-st .status-answered,

#custom-html-st .status-fraud {

  color: #000000;

}

#custom-html-st .status-expired,

#custom-html-st .status-transferred.away {

  color: #004258;

}

#custom-html-st .status-cancelled {

  color: #9fa29a;

}

#custom-html-st .status-terminated {

  color: #666666;

}

#custom-html-st .status-onhold {

  color: #224488;

}

#custom-html-st .status-inprogress {

  color: #cc0000;

}

#custom-html-st .status-closed {

  color: #888888;

}

#custom-html-st .status-paid {

  color: #498302;

}

#custom-html-st .status-unpaid {

  color: #ed3e48;

}

#custom-html-st .status-cancelled {

  color: #87939f;

}

#custom-html-st .status-collections {

  color: #9a141e;

}

#custom-html-st .status-refunded {

  color: #319fc3;

}

#custom-html-st .status-customer-reply {

  color: #ff6600;

}

#custom-html-st .status-delivered {

  color: #224488;

}

#custom-html-st .status-accepted {

  color: #498302;

}

#custom-html-st .status-dead,

#custom-html-st .status-lost {

  color: #000000;

}

#custom-html-st .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-st .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-st .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-st .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-st .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-st .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-st .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-st .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-st .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-st .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-st .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-st .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-st .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-st .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-st .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-st .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-st .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-st .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-st .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-st .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-st .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-st .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-st .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-st .ticket-reply .rating,

#custom-html-st .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-st .ticket-reply .rating span.star,

#custom-html-st .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-st .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-st .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-st .ticket-reply .rating span.star:before,

#custom-html-st .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-st .ticket-reply .rating span.star:hover:before,

#custom-html-st .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-st .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-st .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-st .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-st .ticket-reply .clear {

  clear: both;

}

#custom-html-st .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-st .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-st .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-st .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-st .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-st .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-st .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-st .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-st .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-st .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-st .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-st .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-st .popover-user-notifications ul li i.far,

#custom-html-st .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-st .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-st .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-st .popover-user-notifications ul li i.far.fa-warning,

#custom-html-st .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-st .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-st .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-st .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-st .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-st .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-st div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-st div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-st div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-st div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-st div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-st div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-st div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-st div.credit-card {

    max-width: 250px;

  }

  #custom-html-st div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-st div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-st div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-st div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-st div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-st .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-st .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-st .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-st .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-st .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-st .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-st div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-st div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-st div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-st div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-st div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-st div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-st .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-st .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-st .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-st .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-st .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-st .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-st .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-st div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-st div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-st div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-st #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-st .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-st .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-st .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-st .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-st .kb-category a small {

  color: #888888;

}

#custom-html-st .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-st .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-st .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-st .kbarticles a.admin-inline-edit,

#custom-html-st .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-st h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-st .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-st .kb-article-title h2 {

  margin: 0;

}

#custom-html-st .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-st .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-st .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-st .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-st .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-st .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-st .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-st .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-st #stepResults {

  font-size: 20px;

}

#custom-html-st #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-st #stepResults {

    font-size: 14px;

  }

  #custom-html-st #stepResults .label {

    font-size: 14px;

  }

  #custom-html-st div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-st #main-menu,

  #custom-html-st #top-nav,

  #custom-html-st .header-lined,

  #custom-html-st .sidebar {

    display: none;

  }

  #custom-html-st a[href]:after {

    content: "" !important;

  }

}

#custom-html-st h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-st h3.with-badge i,

#custom-html-st h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-st h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-st h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-st .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-st .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-st .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-st a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-st a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-st .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-st .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-st .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-st .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-st .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-st .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-st .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-st .login-popover {

  font-size: 12px;

}

#custom-html-st .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-st .login-popover hr {

  margin: 5px 0;

}

#custom-html-st tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-st tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-st .error-container {

  text-align: center;

}

#custom-html-st .error-container h1 {

  margin-top: 40px;

}

#custom-html-st .error-container .buttons {

  margin: 25px 0;

}

#custom-html-st .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-st .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-st .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-st .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-st #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-st #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-st #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-st .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-st #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-st #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-st #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-st #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-st #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-st #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-st .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-st .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-st .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-st .email-verification .btn:active,

#custom-html-st .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-st .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-st .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-st .email-verification .far,

#custom-html-st .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-st .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-st .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-st .email-verification .button {

    float: right;

  }

  #custom-html-st .email-verification .far,

  #custom-html-st .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-st .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-st .email-verification.success .far,

#custom-html-st .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-st .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-st .email-verification.failed .far,

#custom-html-st .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-st .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-st .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-st .md-editor > .md-preview,

#custom-html-st .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-st div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-st .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-st .small-font {

  font-size: 0.9em;

}

#custom-html-st .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-st .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-st .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-st .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-st .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-st .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-st .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-st .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-st .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-st .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-st .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-st .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-st .panel-heading i.fab,

#custom-html-st .panel-heading i.fal,

#custom-html-st .panel-heading i.far,

#custom-html-st .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-st .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-st .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-st .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-st .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-st .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-st .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-st .panel-sidebar .list-group-item.disabled,

#custom-html-st .panel-sidebar .list-group-item.disabled:focus,

#custom-html-st .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-st .panel-sidebar a.list-group-item:hover i.far,

#custom-html-st .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-st .panel-sidebar a.list-group-item.active,

#custom-html-st .panel-sidebar a.list-group-item.active:focus,

#custom-html-st .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-st .panel-sidebar a.list-group-item.active i,

#custom-html-st .panel-sidebar a.list-group-item.active:focus i,

#custom-html-st .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-st .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-st .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-st .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-st .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-st .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-st .store-order-container h2 {

  margin-top: 0;

}

#custom-html-st .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-st .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-st .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-st .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-st .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-st .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-st .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-st .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-st .store-order-container .payment-term {

    float: right;

  }

  #custom-html-st .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-st .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-st .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-st .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-st .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-st .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-st .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-st .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-st .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-st .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-st .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-st .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-st .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-st .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-st .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-st .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-st .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-st .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-st .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-st .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-st .promo-banner p {

  margin: 5px 0;

}

#custom-html-st .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-st .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-st .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-st .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-st .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-st .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-st .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-st .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-st .promo-banner-slim {

  padding: 10px;

}

#custom-html-st .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-st .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-st .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-st .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-st .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-st .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-st .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-st .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-st .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-st .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-st .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-st .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-st .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-st .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-st .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-st .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-st .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-st .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-st .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-st .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-st .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-st .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-st .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-st .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-st .panel-mc-sso .btn,

#custom-html-st .panel-mc-sso .form-control,

#custom-html-st .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-st .panel-mc-sso small {

  display: block;

}

#custom-html-st .social-signin-btns {

  text-align: center;

}

#custom-html-st .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-st .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-st .btn-social i.far,

#custom-html-st .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-facebook.active,

#custom-html-st .btn-facebook:active,

#custom-html-st .btn-facebook:focus,

#custom-html-st .btn-facebook:hover,

#custom-html-st .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-facebook.active,

#custom-html-st .btn-facebook:active,

#custom-html-st .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-st .btn-facebook.disabled,

#custom-html-st .btn-facebook.disabled.active,

#custom-html-st .btn-facebook.disabled:active,

#custom-html-st .btn-facebook.disabled:focus,

#custom-html-st .btn-facebook.disabled:hover,

#custom-html-st .btn-facebook[disabled],

#custom-html-st .btn-facebook[disabled].active,

#custom-html-st .btn-facebook[disabled]:active,

#custom-html-st .btn-facebook[disabled]:focus,

#custom-html-st .btn-facebook[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-facebook,

#custom-html-st fieldset[disabled] .btn-facebook.active,

#custom-html-st fieldset[disabled] .btn-facebook:active,

#custom-html-st fieldset[disabled] .btn-facebook:focus,

#custom-html-st fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-google.active,

#custom-html-st .btn-google:active,

#custom-html-st .btn-google:focus,

#custom-html-st .btn-google:hover,

#custom-html-st .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-google.active,

#custom-html-st .btn-google:active,

#custom-html-st .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-st .btn-google-plus.disabled.active,

#custom-html-st .btn-google-plus.disabled:active,

#custom-html-st .btn-google-plus.disabled:focus,

#custom-html-st .btn-google-plus[disabled].active,

#custom-html-st .btn-google-plus[disabled]:active,

#custom-html-st .btn-google-plus[disabled]:focus,

#custom-html-st .btn-google-plus[disabled]:hover,

#custom-html-st .btn-google.disabled,

#custom-html-st .btn-google.disabled:hover,

#custom-html-st .btn-google[disabled],

#custom-html-st fieldset[disabled] .btn-google,

#custom-html-st fieldset[disabled] .btn-google-plus.active,

#custom-html-st fieldset[disabled] .btn-google-plus:active,

#custom-html-st fieldset[disabled] .btn-google-plus:focus,

#custom-html-st fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-twitter.active,

#custom-html-st .btn-twitter:active,

#custom-html-st .btn-twitter:focus,

#custom-html-st .btn-twitter:hover,

#custom-html-st .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .btn-twitter.active,

#custom-html-st .btn-twitter:active,

#custom-html-st .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-st .btn-twitter.disabled,

#custom-html-st .btn-twitter.disabled.active,

#custom-html-st .btn-twitter.disabled:active,

#custom-html-st .btn-twitter.disabled:focus,

#custom-html-st .btn-twitter.disabled:hover,

#custom-html-st .btn-twitter[disabled],

#custom-html-st .btn-twitter[disabled].active,

#custom-html-st .btn-twitter[disabled]:active,

#custom-html-st .btn-twitter[disabled]:focus,

#custom-html-st .btn-twitter[disabled]:hover,

#custom-html-st fieldset[disabled] .btn-twitter,

#custom-html-st fieldset[disabled] .btn-twitter.active,

#custom-html-st fieldset[disabled] .btn-twitter:active,

#custom-html-st fieldset[disabled] .btn-twitter:focus,

#custom-html-st fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-st .providerPreLinking {

  min-height: 52px;

}

#custom-html-st .providerLinkingFeedback {

  display: none;

}

#custom-html-st #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-st #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-st #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-st #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-st .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-st #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-st #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-st #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-st #registration .field,

#custom-html-st #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-st #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-st #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-st #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-st #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-st #registration textarea.field {

  height: auto;

}

#custom-html-st #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-st #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-st #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-st #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-st #registration .field[disabled],

#custom-html-st #registration .field[readonly],

#custom-html-st #registration .form-control[disabled],

#custom-html-st #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-st #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-st .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-st .upgrade .product-to-be-upgraded h4,

#custom-html-st .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-st .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-st .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-st .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-st .upgrade .products .product .current,

#custom-html-st .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-st .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-st .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-st .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-st .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-st .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-st .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-st .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-st .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-st .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-st .upgrade .products .far,

#custom-html-st .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-st .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-st .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-st .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-st .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-st .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-st .alert .alert-text {

  margin-left: 56px;

}

#custom-html-st .intl-tel-input {

  width: 100%;

}

#custom-html-st .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-st .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .bootstrap-switch input[type=checkbox],

#custom-html-st .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-st .bootstrap-switch input[type=checkbox].form-control,

#custom-html-st .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-st .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-st .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-st .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-st .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-st .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-st .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-st .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-st .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-st .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-st .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-st .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-st .md-editor .md-footer,

#custom-html-st .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-st .md-editor > .md-header {

  margin: 0;

}

#custom-html-st .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-st .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-st .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-st .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-st .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-st .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-st .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-st .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-input,

#custom-html-st .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-st .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-st .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-st .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-st .md-editor.md-fullscreen-mode .btn.active,

#custom-html-st .md-editor.md-fullscreen-mode .btn:active,

#custom-html-st .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-st .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-st .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-st .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-st .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-st table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-st table.dataTable td,

#custom-html-st table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-st table.dataTable td.dataTables_empty,

#custom-html-st table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-st table.dataTable.nowrap td,

#custom-html-st table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-st div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-st div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-st div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-st div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-st div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-st div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-st div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-st div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-st div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-st table.dataTable thead > tr > td.sorting,

#custom-html-st table.dataTable thead > tr > td.sorting_asc,

#custom-html-st table.dataTable thead > tr > td.sorting_desc,

#custom-html-st table.dataTable thead > tr > th.sorting,

#custom-html-st table.dataTable thead > tr > th.sorting_asc,

#custom-html-st table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-st table.dataTable thead > tr > td:active,

#custom-html-st table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-st table.dataTable thead .sorting,

#custom-html-st table.dataTable thead .sorting_asc,

#custom-html-st table.dataTable thead .sorting_asc_disabled,

#custom-html-st table.dataTable thead .sorting_desc,

#custom-html-st table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-st table.dataTable thead .sorting:after,

#custom-html-st table.dataTable thead .sorting_asc:after,

#custom-html-st table.dataTable thead .sorting_asc_disabled:after,

#custom-html-st table.dataTable thead .sorting_desc:after,

#custom-html-st table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-st table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-st table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-st table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-st table.dataTable thead .sorting_asc_disabled:after,

#custom-html-st table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-st div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-st div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-st div.dataTables_scrollBody table thead .sorting:after,

#custom-html-st div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-st div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-st div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-st div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-st div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-st div.dataTables_wrapper div.dataTables_filter,

  #custom-html-st div.dataTables_wrapper div.dataTables_info,

  #custom-html-st div.dataTables_wrapper div.dataTables_length,

  #custom-html-st div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-st table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-st table.dataTable.table-condensed .sorting:after,

#custom-html-st table.dataTable.table-condensed .sorting_asc:after,

#custom-html-st table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-st table.table-bordered.dataTable td,

#custom-html-st table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-st table.table-bordered.dataTable td:last-child,

#custom-html-st table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-st table.table-bordered.dataTable tbody td,

#custom-html-st table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-st div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-st div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-st div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-st div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-st table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-st table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-st table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-st table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-st table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-st table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-st table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-st table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-st table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-st table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-st table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-st table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-st table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-st table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-st table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-st table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-st table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-st table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-st div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-st div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-st div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-st div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-st div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-st div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-st div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-st div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-st .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-st .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-st .multiselect-container > li {

  padding: 0;

}

#custom-html-st .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-st .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-st .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-st .multiselect-container > li > a {

  padding: 0;

}

#custom-html-st .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-st .multiselect-container > li > a > label.checkbox,

#custom-html-st .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-st .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-st .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-st .form-inline .multiselect-container label.checkbox,

#custom-html-st .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-st .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-st .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7wRimslj {

  padding-top: 45px;

  padding-bottom: 15px;

  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");

}

.cid-sl7wRimslj P {

  color: #767676;

}

.cid-sl7wRimslj H1 {

  color: #ffffff;

}

.cid-sl7wRimslj .mbr-text,

.cid-sl7wRimslj .mbr-section-btn {

  color: #ffffff;

}

.cid-sl7wRimslj h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3b7cS2j2 .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3b7cS2j2 .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3b7cS2j2 .divider-top::before,

.cid-sF3b7cS2j2 .divider-bottom::before,

.cid-sF3b7cS2j2 .divider-top::after,

.cid-sF3b7cS2j2 .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3b7cS2j2 .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3b7cS2j2 .divider-triangles::before {

  top: -50px;

}

.cid-sF3b7cS2j2 .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3b7cS2j2 .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3b7cS2j2 .divider-multitriangles::before,

.cid-sF3b7cS2j2 .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3b7cS2j2 .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-rXVjdH8Hr4 {

  background-color: #ffffff;

}

.cid-rXVjdH8Hr4 h1 {

  color: #616161;

}

.cid-rXVjdH8Hr4 h2,

.cid-rXVjdH8Hr4 h3,

.cid-rXVjdH8Hr4 p {

  color: #767676;

}

.cid-rXVjdH8Hr4 .mbr-section-subtitle {

  font-style: italic;

}

.cid-sF3bNZC4vc .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3bNZC4vc .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3bNZC4vc .divider-top::before,

.cid-sF3bNZC4vc .divider-bottom::before,

.cid-sF3bNZC4vc .divider-top::after,

.cid-sF3bNZC4vc .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3bNZC4vc .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3bNZC4vc .divider-triangles::before {

  top: -50px;

}

.cid-sF3bNZC4vc .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3bNZC4vc .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3bNZC4vc .divider-multitriangles::before,

.cid-sF3bNZC4vc .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3bNZC4vc .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-s889yIUYCn {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s889yIUYCn h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s889yIUYCn p {

  color: #767676;

  text-align: left;

}

.cid-s889yIUYCn .card-box {

  padding-top: 2rem;

}

.cid-s889yIUYCn .card-wrapper {

  height: 100%;

}

.cid-svDyTzoC6p {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDyTzoC6p .content {

    text-align: center;

  }

  .cid-svDyTzoC6p .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDyTzoC6p .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDyTzoC6p .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDyTzoC6p .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDyTzoC6p .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDyTzoC6p .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDyTzoC6p .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDyTzoC6p .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDyTzoC6p .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDyTzoC6p .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDyTzoC6p .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDyTzoC6p .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDyTzoC6p .copyright > p {

  text-align: left;

}

.cid-svDyTzoC6p H5 {

  color: #000000;

}

.cid-svGGuET8nJ .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGGuET8nJ .my-float {

  margin-top: 16px;

}

.cid-svGGuET8nJ P {

  color: #232323;

}

.cid-svGGuET8nJ DIV {

  color: #ffffff;

}

.cid-svGGuET8nJ H10 {

  color: #767676;

}

.cid-svGGuET8nJ .hidden {

  display: none;

}

#custom-html-s8 {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-s8 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-s8 body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-s8 article,

#custom-html-s8 aside,

#custom-html-s8 details,

#custom-html-s8 figcaption,

#custom-html-s8 figure,

#custom-html-s8 footer,

#custom-html-s8 header,

#custom-html-s8 hgroup,

#custom-html-s8 main,

#custom-html-s8 menu,

#custom-html-s8 nav,

#custom-html-s8 section,

#custom-html-s8 summary {

  display: block;

}

#custom-html-s8 audio,

#custom-html-s8 canvas,

#custom-html-s8 progress,

#custom-html-s8 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-s8 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-s8 [hidden],

#custom-html-s8 template {

  display: none;

}

#custom-html-s8 a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-s8 a:active,

#custom-html-s8 a:hover {

  outline: 0;

}

#custom-html-s8 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-s8 b,

#custom-html-s8 strong {

  font-weight: 700;

}

#custom-html-s8 dfn {

  font-style: italic;

}

#custom-html-s8 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-s8 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-s8 small {

  font-size: 80%;

}

#custom-html-s8 sub,

#custom-html-s8 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-s8 sup {

  top: -0.5em;

}

#custom-html-s8 sub {

  bottom: -0.25em;

}

#custom-html-s8 img {

  border: 0;

  vertical-align: middle;

}

#custom-html-s8 svg:not(:root) {

  overflow: hidden;

}

#custom-html-s8 figure {

  margin: 0;

}

#custom-html-s8 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-s8 pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-s8 code,

#custom-html-s8 kbd,

#custom-html-s8 pre,

#custom-html-s8 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-s8 button,

#custom-html-s8 input,

#custom-html-s8 optgroup,

#custom-html-s8 select,

#custom-html-s8 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-s8 button {

  overflow: visible;

}

#custom-html-s8 button,

#custom-html-s8 select {

  text-transform: none;

}

#custom-html-s8 button,

#custom-html-s8 html input[type=button],

#custom-html-s8 input[type=reset],

#custom-html-s8 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-s8 button[disabled],

#custom-html-s8 html input[disabled] {

  cursor: default;

}

#custom-html-s8 button::-moz-focus-inner,

#custom-html-s8 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-s8 input {

  line-height: normal;

}

#custom-html-s8 input[type=checkbox],

#custom-html-s8 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-s8 input[type=number]::-webkit-inner-spin-button,

#custom-html-s8 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-s8 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-s8 input[type=search]::-webkit-search-cancel-button,

#custom-html-s8 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-s8 fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-s8 legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-s8 textarea {

  overflow: auto;

}

#custom-html-s8 optgroup {

  font-weight: 700;

}

#custom-html-s8 table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-s8 td,

#custom-html-s8 th {

  padding: 0;

}

@media print {

  #custom-html-s8 *,

  #custom-html-s8 :after,

  #custom-html-s8 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-s8 a,

  #custom-html-s8 a:visited {

    text-decoration: underline;

  }

  #custom-html-s8 a[href]:after {

    content: "" !important;

  }

  #custom-html-s8 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-s8 a[href^="#"]:after,

  #custom-html-s8 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-s8 blockquote,

  #custom-html-s8 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-s8 thead {

    display: table-header-group;

  }

  #custom-html-s8 img,

  #custom-html-s8 tr {

    page-break-inside: avoid;

  }

  #custom-html-s8 img {

    max-width: 100% !important;

  }

  #custom-html-s8 h2,

  #custom-html-s8 h3,

  #custom-html-s8 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-s8 h2,

  #custom-html-s8 h3 {

    page-break-after: avoid;

  }

  #custom-html-s8 .navbar {

    display: none;

  }

  #custom-html-s8 .btn > .caret,

  #custom-html-s8 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-s8 .label {

    border: 1px solid #000000;

  }

  #custom-html-s8 .table {

    border-collapse: collapse !important;

  }

  #custom-html-s8 .table td,

  #custom-html-s8 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-s8 .table-bordered td,

  #custom-html-s8 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-s8 .visible-print {

    display: block !important;

  }

  #custom-html-s8 table.visible-print {

    display: table !important;

  }

  #custom-html-s8 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-s8 td.visible-print,

  #custom-html-s8 th.visible-print {

    display: table-cell !important;

  }

  #custom-html-s8 .visible-print-block {

    display: block !important;

  }

  #custom-html-s8 .visible-print-inline {

    display: inline !important;

  }

  #custom-html-s8 .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-s8 .hidden-print {

    display: none !important;

  }

  #custom-html-s8 #main-menu,

  #custom-html-s8 #top-nav,

  #custom-html-s8 .header-lined,

  #custom-html-s8 .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-s8 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-s8 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-s8 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-s8 .glyphicon-eur:before,

#custom-html-s8 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-s8 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-s8 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-s8 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-s8 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-s8 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-s8 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-s8 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-s8 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-s8 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-s8 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-s8 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-s8 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-s8 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-s8 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-s8 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-s8 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-s8 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-s8 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-s8 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-s8 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-s8 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-s8 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-s8 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-s8 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-s8 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-s8 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-s8 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-s8 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-s8 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-s8 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-s8 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-s8 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-s8 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-s8 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-s8 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-s8 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-s8 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-s8 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-s8 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-s8 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-s8 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-s8 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-s8 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-s8 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-s8 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-s8 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-s8 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-s8 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-s8 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-s8 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-s8 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-s8 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-s8 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-s8 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-s8 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-s8 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-s8 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-s8 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-s8 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-s8 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-s8 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-s8 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-s8 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-s8 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-s8 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-s8 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-s8 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-s8 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-s8 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-s8 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-s8 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-s8 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-s8 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-s8 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-s8 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-s8 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-s8 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-s8 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-s8 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-s8 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-s8 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-s8 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-s8 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-s8 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-s8 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-s8 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-s8 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-s8 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-s8 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-s8 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-s8 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-s8 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-s8 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-s8 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-s8 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-s8 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-s8 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-s8 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-s8 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-s8 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-s8 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-s8 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-s8 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-s8 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-s8 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-s8 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-s8 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-s8 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-s8 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-s8 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-s8 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-s8 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-s8 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-s8 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-s8 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-s8 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-s8 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-s8 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-s8 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-s8 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-s8 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-s8 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-s8 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-s8 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-s8 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-s8 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-s8 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-s8 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-s8 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-s8 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-s8 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-s8 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-s8 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-s8 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-s8 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-s8 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-s8 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-s8 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-s8 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-s8 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-s8 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-s8 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-s8 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-s8 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-s8 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-s8 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-s8 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-s8 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-s8 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-s8 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-s8 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-s8 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-s8 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-s8 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-s8 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-s8 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-s8 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-s8 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-s8 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-s8 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-s8 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-s8 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-s8 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-s8 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-s8 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-s8 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-s8 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-s8 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-s8 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-s8 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-s8 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-s8 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-s8 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-s8 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-s8 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-s8 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-s8 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-s8 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-s8 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-s8 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-s8 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-s8 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-s8 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-s8 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-s8 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-s8 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-s8 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-s8 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-s8 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-s8 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-s8 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-s8 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-s8 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-s8 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-s8 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-s8 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-s8 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-s8 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-s8 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-s8 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-s8 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-s8 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-s8 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-s8 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-s8 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-s8 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-s8 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-s8 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-s8 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-s8 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-s8 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-s8 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-s8 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-s8 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-s8 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-s8 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-s8 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-s8 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-s8 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-s8 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-s8 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-s8 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-s8 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-s8 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-s8 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-s8 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-s8 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-s8 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-s8 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-s8 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-s8 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-s8 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-s8 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-s8 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-s8 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-s8 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-s8 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-s8 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-s8 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-s8 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-s8 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-s8 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-s8 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-s8 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-s8 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-s8 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-s8 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-s8 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-s8 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-s8 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-s8 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-s8 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-s8 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-s8 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-s8 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-s8 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-s8 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-s8 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-s8 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-s8 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-s8 :after,

#custom-html-s8 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-s8 button,

#custom-html-s8 input,

#custom-html-s8 select,

#custom-html-s8 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-s8 a:focus,

#custom-html-s8 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-s8 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-s8 .carousel-inner > .item > a > img,

#custom-html-s8 .carousel-inner > .item > img,

#custom-html-s8 .img-responsive,

#custom-html-s8 .thumbnail a > img,

#custom-html-s8 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-s8 .img-rounded {

  border-radius: 6px;

}

#custom-html-s8 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-s8 .img-circle {

  border-radius: 50%;

}

#custom-html-s8 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-s8 .sr-only-focusable:active,

#custom-html-s8 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-s8 [role=button] {

  cursor: pointer;

}

#custom-html-s8 .h1,

#custom-html-s8 .h2,

#custom-html-s8 .h3,

#custom-html-s8 .h4,

#custom-html-s8 .h5,

#custom-html-s8 .h6,

#custom-html-s8 h1,

#custom-html-s8 h2,

#custom-html-s8 h3,

#custom-html-s8 h4,

#custom-html-s8 h5,

#custom-html-s8 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-s8 .h1 .small,

#custom-html-s8 .h1 small,

#custom-html-s8 .h2 .small,

#custom-html-s8 .h2 small,

#custom-html-s8 .h3 .small,

#custom-html-s8 .h3 small,

#custom-html-s8 .h4 .small,

#custom-html-s8 .h4 small,

#custom-html-s8 .h5 .small,

#custom-html-s8 .h5 small,

#custom-html-s8 .h6 .small,

#custom-html-s8 .h6 small,

#custom-html-s8 h1 .small,

#custom-html-s8 h1 small,

#custom-html-s8 h2 .small,

#custom-html-s8 h2 small,

#custom-html-s8 h3 .small,

#custom-html-s8 h3 small,

#custom-html-s8 h4 .small,

#custom-html-s8 h4 small,

#custom-html-s8 h5 .small,

#custom-html-s8 h5 small,

#custom-html-s8 h6 .small,

#custom-html-s8 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-s8 .h1,

#custom-html-s8 .h2,

#custom-html-s8 .h3,

#custom-html-s8 h1,

#custom-html-s8 h2,

#custom-html-s8 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-s8 .h1 .small,

#custom-html-s8 .h1 small,

#custom-html-s8 .h2 .small,

#custom-html-s8 .h2 small,

#custom-html-s8 .h3 .small,

#custom-html-s8 .h3 small,

#custom-html-s8 h1 .small,

#custom-html-s8 h1 small,

#custom-html-s8 h2 .small,

#custom-html-s8 h2 small,

#custom-html-s8 h3 .small,

#custom-html-s8 h3 small {

  font-size: 65%;

}

#custom-html-s8 .h4,

#custom-html-s8 .h5,

#custom-html-s8 .h6,

#custom-html-s8 h4,

#custom-html-s8 h5,

#custom-html-s8 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-s8 .h4 .small,

#custom-html-s8 .h4 small,

#custom-html-s8 .h5 .small,

#custom-html-s8 .h5 small,

#custom-html-s8 .h6 .small,

#custom-html-s8 .h6 small,

#custom-html-s8 h4 .small,

#custom-html-s8 h4 small,

#custom-html-s8 h5 .small,

#custom-html-s8 h5 small,

#custom-html-s8 h6 .small,

#custom-html-s8 h6 small {

  font-size: 75%;

}

#custom-html-s8 .h1,

#custom-html-s8 h1 {

  font-size: 36px;

}

#custom-html-s8 .h2,

#custom-html-s8 h2 {

  font-size: 30px;

}

#custom-html-s8 .h3,

#custom-html-s8 h3 {

  font-size: 24px;

}

#custom-html-s8 .h4,

#custom-html-s8 h4 {

  font-size: 18px;

}

#custom-html-s8 .h5,

#custom-html-s8 h5 {

  font-size: 14px;

}

#custom-html-s8 .h6,

#custom-html-s8 h6 {

  font-size: 12px;

}

#custom-html-s8 p {

  margin: 0 0 10px;

}

#custom-html-s8 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-s8 .lead {

    font-size: 21px;

  }

  #custom-html-s8 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-s8 .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-s8 .container {

    width: 750px;

  }

  #custom-html-s8 .col-sm-1,

  #custom-html-s8 .col-sm-10,

  #custom-html-s8 .col-sm-11,

  #custom-html-s8 .col-sm-12,

  #custom-html-s8 .col-sm-2,

  #custom-html-s8 .col-sm-3,

  #custom-html-s8 .col-sm-4,

  #custom-html-s8 .col-sm-5,

  #custom-html-s8 .col-sm-6,

  #custom-html-s8 .col-sm-7,

  #custom-html-s8 .col-sm-8,

  #custom-html-s8 .col-sm-9 {

    float: left;

  }

  #custom-html-s8 .col-sm-12 {

    width: 100%;

  }

  #custom-html-s8 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-s8 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-s8 .col-sm-9 {

    width: 75%;

  }

  #custom-html-s8 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-s8 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-s8 .col-sm-6 {

    width: 50%;

  }

  #custom-html-s8 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-s8 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-s8 .col-sm-3 {

    width: 25%;

  }

  #custom-html-s8 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-s8 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-s8 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-s8 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-s8 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-s8 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-s8 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-s8 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-s8 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-s8 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-s8 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-s8 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-s8 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-s8 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-s8 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-s8 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-s8 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-s8 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-s8 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-s8 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-s8 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-s8 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-s8 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-s8 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-s8 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-s8 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-s8 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-s8 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-s8 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-s8 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-s8 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-s8 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-s8 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-s8 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-s8 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-s8 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-s8 .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-s8 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-s8 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-s8 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-s8 .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-s8 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s8 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-s8 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-s8 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-s8 .form-inline .input-group .form-control,

  #custom-html-s8 .form-inline .input-group .input-group-addon,

  #custom-html-s8 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-s8 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-s8 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s8 .form-inline .checkbox,

  #custom-html-s8 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s8 .form-inline .checkbox label,

  #custom-html-s8 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-s8 .form-inline .checkbox input[type=checkbox],

  #custom-html-s8 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-s8 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-s8 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-s8 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-s8 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-s8 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-s8 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-s8 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-s8 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-s8 .nav-tabs.nav-justified > .active > a,

  #custom-html-s8 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-s8 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-s8 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-s8 .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-s8 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-s8 .nav-tabs-justified > .active > a,

  #custom-html-s8 .nav-tabs-justified > .active > a:focus,

  #custom-html-s8 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-s8 .navbar {

    border-radius: 4px;

  }

  #custom-html-s8 .navbar-header {

    float: left;

  }

  #custom-html-s8 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-s8 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-s8 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-s8 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-s8 .navbar-fixed-top .navbar-collapse,

  #custom-html-s8 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-s8 .container-fluid > .navbar-collapse,

  #custom-html-s8 .container-fluid > .navbar-header,

  #custom-html-s8 .container > .navbar-collapse,

  #custom-html-s8 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-s8 .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-s8 .navbar-fixed-bottom,

  #custom-html-s8 .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-s8 .navbar > .container .navbar-brand,

  #custom-html-s8 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-s8 .navbar-toggle {

    display: none;

  }

  #custom-html-s8 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-s8 .navbar-nav > li {

    float: left;

  }

  #custom-html-s8 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-s8 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s8 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-s8 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-s8 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-s8 .navbar-form .input-group .form-control,

  #custom-html-s8 .navbar-form .input-group .input-group-addon,

  #custom-html-s8 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-s8 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-s8 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s8 .navbar-form .checkbox,

  #custom-html-s8 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s8 .navbar-form .checkbox label,

  #custom-html-s8 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-s8 .navbar-form .checkbox input[type=checkbox],

  #custom-html-s8 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-s8 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-s8 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-s8 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-s8 .navbar-left {

    float: left !important;

  }

  #custom-html-s8 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-s8 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-s8 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-s8 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-s8 .modal-sm {

    width: 300px;

  }

  #custom-html-s8 .pull-sm-left {

    float: left;

  }

  #custom-html-s8 .pull-sm-right {

    float: right;

  }

  #custom-html-s8 .text-right-sm {

    text-align: right;

  }

  #custom-html-s8 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-s8 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-s8 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-s8 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-s8 .email-verification .button {

    float: right;

  }

  #custom-html-s8 .email-verification .far,

  #custom-html-s8 .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-s8 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-s8 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-s8 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-s8 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-s8 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-s8 .small,

#custom-html-s8 small {

  font-size: 85%;

}

#custom-html-s8 .mark,

#custom-html-s8 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-s8 .text-left {

  text-align: left;

}

#custom-html-s8 .text-right {

  text-align: right;

}

#custom-html-s8 .text-center {

  text-align: center;

}

#custom-html-s8 .text-justify {

  text-align: justify;

}

#custom-html-s8 .text-nowrap {

  white-space: nowrap;

}

#custom-html-s8 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-s8 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-s8 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-s8 .text-muted {

  color: #777777;

}

#custom-html-s8 .text-primary {

  color: #000000;

}

#custom-html-s8 a.text-primary:focus,

#custom-html-s8 a.text-primary:hover {

  color: #000000;

}

#custom-html-s8 .text-success {

  color: #3c763d;

}

#custom-html-s8 a.text-success:focus,

#custom-html-s8 a.text-success:hover {

  color: #2b542c;

}

#custom-html-s8 .text-info {

  color: #31708f;

}

#custom-html-s8 a.text-info:focus,

#custom-html-s8 a.text-info:hover {

  color: #000000;

}

#custom-html-s8 .text-warning {

  color: #8a6d3b;

}

#custom-html-s8 a.text-warning:focus,

#custom-html-s8 a.text-warning:hover {

  color: #66512c;

}

#custom-html-s8 .text-danger {

  color: #a94442;

}

#custom-html-s8 a.text-danger:focus,

#custom-html-s8 a.text-danger:hover {

  color: #843534;

}

#custom-html-s8 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-s8 a.bg-primary:focus,

#custom-html-s8 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-s8 .bg-success {

  background-color: #dff0d8;

}

#custom-html-s8 a.bg-success:focus,

#custom-html-s8 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-s8 .bg-info {

  background-color: #d9edf7;

}

#custom-html-s8 a.bg-info:focus,

#custom-html-s8 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-s8 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-s8 a.bg-warning:focus,

#custom-html-s8 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-s8 .bg-danger {

  background-color: #f2dede;

}

#custom-html-s8 a.bg-danger:focus,

#custom-html-s8 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-s8 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-s8 ol,

#custom-html-s8 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-s8 ol ol,

#custom-html-s8 ol ul,

#custom-html-s8 ul ol,

#custom-html-s8 ul ul {

  margin-bottom: 0;

}

#custom-html-s8 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-s8 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-s8 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-s8 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-s8 dd,

#custom-html-s8 dt {

  line-height: 1.42857143;

}

#custom-html-s8 dt {

  font-weight: 700;

}

#custom-html-s8 dd {

  margin-left: 0;

}

#custom-html-s8 abbr[data-original-title],

#custom-html-s8 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-s8 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-s8 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-s8 blockquote ol:last-child,

#custom-html-s8 blockquote p:last-child,

#custom-html-s8 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-s8 blockquote .small,

#custom-html-s8 blockquote footer,

#custom-html-s8 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-s8 blockquote .small:before,

#custom-html-s8 blockquote footer:before,

#custom-html-s8 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-s8 .blockquote-reverse,

#custom-html-s8 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-s8 .blockquote-reverse .small:before,

#custom-html-s8 .blockquote-reverse footer:before,

#custom-html-s8 .blockquote-reverse small:before,

#custom-html-s8 blockquote.pull-right .small:before,

#custom-html-s8 blockquote.pull-right footer:before,

#custom-html-s8 blockquote.pull-right small:before {

  content: '';

}

#custom-html-s8 .blockquote-reverse .small:after,

#custom-html-s8 .blockquote-reverse footer:after,

#custom-html-s8 .blockquote-reverse small:after,

#custom-html-s8 blockquote.pull-right .small:after,

#custom-html-s8 blockquote.pull-right footer:after,

#custom-html-s8 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-s8 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-s8 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-s8 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-s8 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s8 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-s8 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-s8 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-s8 .container {

    width: 970px;

  }

  #custom-html-s8 .col-md-1,

  #custom-html-s8 .col-md-10,

  #custom-html-s8 .col-md-11,

  #custom-html-s8 .col-md-12,

  #custom-html-s8 .col-md-2,

  #custom-html-s8 .col-md-3,

  #custom-html-s8 .col-md-4,

  #custom-html-s8 .col-md-5,

  #custom-html-s8 .col-md-6,

  #custom-html-s8 .col-md-7,

  #custom-html-s8 .col-md-8,

  #custom-html-s8 .col-md-9 {

    float: left;

  }

  #custom-html-s8 .col-md-12 {

    width: 100%;

  }

  #custom-html-s8 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-s8 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-s8 .col-md-9 {

    width: 75%;

  }

  #custom-html-s8 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-s8 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-s8 .col-md-6 {

    width: 50%;

  }

  #custom-html-s8 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-s8 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-s8 .col-md-3 {

    width: 25%;

  }

  #custom-html-s8 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-s8 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-s8 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-s8 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-s8 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-s8 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-s8 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-s8 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-s8 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-s8 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-s8 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-s8 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-s8 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-s8 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-s8 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-s8 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-s8 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-s8 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-s8 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-s8 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-s8 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-s8 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-s8 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-s8 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-s8 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-s8 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-s8 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-s8 .col-md-push-0 {

    left: auto;

  }

  #custom-html-s8 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-s8 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-s8 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-s8 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-s8 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-s8 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-s8 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-s8 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-s8 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-s8 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-s8 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-s8 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-s8 .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-s8 .modal-lg {

    width: 900px;

  }

  #custom-html-s8 .pull-md-left {

    float: left;

  }

  #custom-html-s8 .pull-md-right {

    float: right;

  }

  #custom-html-s8 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-s8 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-s8 .container {

    width: 1170px;

  }

  #custom-html-s8 .col-lg-1,

  #custom-html-s8 .col-lg-10,

  #custom-html-s8 .col-lg-11,

  #custom-html-s8 .col-lg-12,

  #custom-html-s8 .col-lg-2,

  #custom-html-s8 .col-lg-3,

  #custom-html-s8 .col-lg-4,

  #custom-html-s8 .col-lg-5,

  #custom-html-s8 .col-lg-6,

  #custom-html-s8 .col-lg-7,

  #custom-html-s8 .col-lg-8,

  #custom-html-s8 .col-lg-9 {

    float: left;

  }

  #custom-html-s8 .col-lg-12 {

    width: 100%;

  }

  #custom-html-s8 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-s8 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-s8 .col-lg-9 {

    width: 75%;

  }

  #custom-html-s8 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-s8 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-s8 .col-lg-6 {

    width: 50%;

  }

  #custom-html-s8 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-s8 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-s8 .col-lg-3 {

    width: 25%;

  }

  #custom-html-s8 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-s8 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-s8 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-s8 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-s8 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-s8 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-s8 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-s8 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-s8 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-s8 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-s8 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-s8 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-s8 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-s8 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-s8 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-s8 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-s8 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-s8 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-s8 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-s8 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-s8 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-s8 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-s8 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-s8 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-s8 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-s8 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-s8 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-s8 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-s8 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-s8 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-s8 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-s8 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-s8 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-s8 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-s8 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-s8 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-s8 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-s8 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-s8 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-s8 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-s8 .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-s8 .visible-lg {

    display: block !important;

  }

  #custom-html-s8 table.visible-lg {

    display: table !important;

  }

  #custom-html-s8 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-s8 td.visible-lg,

  #custom-html-s8 th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-s8 .visible-lg-block {

    display: block !important;

  }

  #custom-html-s8 .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-s8 .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-s8 .hidden-lg {

    display: none !important;

  }

  #custom-html-s8 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-s8 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-s8 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-s8 .col-lg-1,

#custom-html-s8 .col-lg-10,

#custom-html-s8 .col-lg-11,

#custom-html-s8 .col-lg-12,

#custom-html-s8 .col-lg-2,

#custom-html-s8 .col-lg-3,

#custom-html-s8 .col-lg-4,

#custom-html-s8 .col-lg-5,

#custom-html-s8 .col-lg-6,

#custom-html-s8 .col-lg-7,

#custom-html-s8 .col-lg-8,

#custom-html-s8 .col-lg-9,

#custom-html-s8 .col-md-1,

#custom-html-s8 .col-md-10,

#custom-html-s8 .col-md-11,

#custom-html-s8 .col-md-12,

#custom-html-s8 .col-md-2,

#custom-html-s8 .col-md-3,

#custom-html-s8 .col-md-4,

#custom-html-s8 .col-md-5,

#custom-html-s8 .col-md-6,

#custom-html-s8 .col-md-7,

#custom-html-s8 .col-md-8,

#custom-html-s8 .col-md-9,

#custom-html-s8 .col-sm-1,

#custom-html-s8 .col-sm-10,

#custom-html-s8 .col-sm-11,

#custom-html-s8 .col-sm-12,

#custom-html-s8 .col-sm-2,

#custom-html-s8 .col-sm-3,

#custom-html-s8 .col-sm-4,

#custom-html-s8 .col-sm-5,

#custom-html-s8 .col-sm-6,

#custom-html-s8 .col-sm-7,

#custom-html-s8 .col-sm-8,

#custom-html-s8 .col-sm-9,

#custom-html-s8 .col-xs-1,

#custom-html-s8 .col-xs-10,

#custom-html-s8 .col-xs-11,

#custom-html-s8 .col-xs-12,

#custom-html-s8 .col-xs-2,

#custom-html-s8 .col-xs-3,

#custom-html-s8 .col-xs-4,

#custom-html-s8 .col-xs-5,

#custom-html-s8 .col-xs-6,

#custom-html-s8 .col-xs-7,

#custom-html-s8 .col-xs-8,

#custom-html-s8 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-s8 .col-xs-1,

#custom-html-s8 .col-xs-10,

#custom-html-s8 .col-xs-11,

#custom-html-s8 .col-xs-12,

#custom-html-s8 .col-xs-2,

#custom-html-s8 .col-xs-3,

#custom-html-s8 .col-xs-4,

#custom-html-s8 .col-xs-5,

#custom-html-s8 .col-xs-6,

#custom-html-s8 .col-xs-7,

#custom-html-s8 .col-xs-8,

#custom-html-s8 .col-xs-9 {

  float: left;

}

#custom-html-s8 .col-xs-12 {

  width: 100%;

}

#custom-html-s8 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-s8 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-s8 .col-xs-9 {

  width: 75%;

}

#custom-html-s8 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-s8 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-s8 .col-xs-6 {

  width: 50%;

}

#custom-html-s8 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-s8 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-s8 .col-xs-3 {

  width: 25%;

}

#custom-html-s8 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-s8 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-s8 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-s8 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-s8 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-s8 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-s8 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-s8 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-s8 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-s8 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-s8 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-s8 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-s8 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-s8 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-s8 .col-xs-pull-0 {

  right: auto;

}

#custom-html-s8 .col-xs-push-12 {

  left: 100%;

}

#custom-html-s8 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-s8 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-s8 .col-xs-push-9 {

  left: 75%;

}

#custom-html-s8 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-s8 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-s8 .col-xs-push-6 {

  left: 50%;

}

#custom-html-s8 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-s8 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-s8 .col-xs-push-3 {

  left: 25%;

}

#custom-html-s8 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-s8 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-s8 .col-xs-push-0 {

  left: auto;

}

#custom-html-s8 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-s8 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-s8 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-s8 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-s8 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-s8 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-s8 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-s8 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-s8 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-s8 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-s8 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-s8 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-s8 .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-s8 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-s8 th {

  text-align: left;

}

#custom-html-s8 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-s8 .table > tbody > tr > td,

#custom-html-s8 .table > tbody > tr > th,

#custom-html-s8 .table > tfoot > tr > td,

#custom-html-s8 .table > tfoot > tr > th,

#custom-html-s8 .table > thead > tr > td,

#custom-html-s8 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-s8 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-s8 .table > caption + thead > tr:first-child > td,

#custom-html-s8 .table > caption + thead > tr:first-child > th,

#custom-html-s8 .table > colgroup + thead > tr:first-child > td,

#custom-html-s8 .table > colgroup + thead > tr:first-child > th,

#custom-html-s8 .table > thead:first-child > tr:first-child > td,

#custom-html-s8 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-s8 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-s8 .table .table {

  background-color: #ffffff;

}

#custom-html-s8 .table-condensed > tbody > tr > td,

#custom-html-s8 .table-condensed > tbody > tr > th,

#custom-html-s8 .table-condensed > tfoot > tr > td,

#custom-html-s8 .table-condensed > tfoot > tr > th,

#custom-html-s8 .table-condensed > thead > tr > td,

#custom-html-s8 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-s8 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-s8 .table-bordered > tbody > tr > td,

#custom-html-s8 .table-bordered > tbody > tr > th,

#custom-html-s8 .table-bordered > tfoot > tr > td,

#custom-html-s8 .table-bordered > tfoot > tr > th,

#custom-html-s8 .table-bordered > thead > tr > td,

#custom-html-s8 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-s8 .table-bordered > thead > tr > td,

#custom-html-s8 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-s8 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-s8 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-s8 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-s8 table td[class*=col-],

#custom-html-s8 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-s8 .table > tbody > tr.active > td,

#custom-html-s8 .table > tbody > tr.active > th,

#custom-html-s8 .table > tbody > tr > td.active,

#custom-html-s8 .table > tbody > tr > th.active,

#custom-html-s8 .table > tfoot > tr.active > td,

#custom-html-s8 .table > tfoot > tr.active > th,

#custom-html-s8 .table > tfoot > tr > td.active,

#custom-html-s8 .table > tfoot > tr > th.active,

#custom-html-s8 .table > thead > tr.active > td,

#custom-html-s8 .table > thead > tr.active > th,

#custom-html-s8 .table > thead > tr > td.active,

#custom-html-s8 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-s8 .table-hover > tbody > tr.active:hover > td,

#custom-html-s8 .table-hover > tbody > tr.active:hover > th,

#custom-html-s8 .table-hover > tbody > tr:hover > .active,

#custom-html-s8 .table-hover > tbody > tr > td.active:hover,

#custom-html-s8 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-s8 .table > tbody > tr.success > td,

#custom-html-s8 .table > tbody > tr.success > th,

#custom-html-s8 .table > tbody > tr > td.success,

#custom-html-s8 .table > tbody > tr > th.success,

#custom-html-s8 .table > tfoot > tr.success > td,

#custom-html-s8 .table > tfoot > tr.success > th,

#custom-html-s8 .table > tfoot > tr > td.success,

#custom-html-s8 .table > tfoot > tr > th.success,

#custom-html-s8 .table > thead > tr.success > td,

#custom-html-s8 .table > thead > tr.success > th,

#custom-html-s8 .table > thead > tr > td.success,

#custom-html-s8 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-s8 .table-hover > tbody > tr.success:hover > td,

#custom-html-s8 .table-hover > tbody > tr.success:hover > th,

#custom-html-s8 .table-hover > tbody > tr:hover > .success,

#custom-html-s8 .table-hover > tbody > tr > td.success:hover,

#custom-html-s8 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-s8 .table > tbody > tr.info > td,

#custom-html-s8 .table > tbody > tr.info > th,

#custom-html-s8 .table > tbody > tr > td.info,

#custom-html-s8 .table > tbody > tr > th.info,

#custom-html-s8 .table > tfoot > tr.info > td,

#custom-html-s8 .table > tfoot > tr.info > th,

#custom-html-s8 .table > tfoot > tr > td.info,

#custom-html-s8 .table > tfoot > tr > th.info,

#custom-html-s8 .table > thead > tr.info > td,

#custom-html-s8 .table > thead > tr.info > th,

#custom-html-s8 .table > thead > tr > td.info,

#custom-html-s8 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-s8 .table-hover > tbody > tr.info:hover > td,

#custom-html-s8 .table-hover > tbody > tr.info:hover > th,

#custom-html-s8 .table-hover > tbody > tr:hover > .info,

#custom-html-s8 .table-hover > tbody > tr > td.info:hover,

#custom-html-s8 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-s8 .table > tbody > tr.warning > td,

#custom-html-s8 .table > tbody > tr.warning > th,

#custom-html-s8 .table > tbody > tr > td.warning,

#custom-html-s8 .table > tbody > tr > th.warning,

#custom-html-s8 .table > tfoot > tr.warning > td,

#custom-html-s8 .table > tfoot > tr.warning > th,

#custom-html-s8 .table > tfoot > tr > td.warning,

#custom-html-s8 .table > tfoot > tr > th.warning,

#custom-html-s8 .table > thead > tr.warning > td,

#custom-html-s8 .table > thead > tr.warning > th,

#custom-html-s8 .table > thead > tr > td.warning,

#custom-html-s8 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-s8 .table-hover > tbody > tr.warning:hover > td,

#custom-html-s8 .table-hover > tbody > tr.warning:hover > th,

#custom-html-s8 .table-hover > tbody > tr:hover > .warning,

#custom-html-s8 .table-hover > tbody > tr > td.warning:hover,

#custom-html-s8 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-s8 .table > tbody > tr.danger > td,

#custom-html-s8 .table > tbody > tr.danger > th,

#custom-html-s8 .table > tbody > tr > td.danger,

#custom-html-s8 .table > tbody > tr > th.danger,

#custom-html-s8 .table > tfoot > tr.danger > td,

#custom-html-s8 .table > tfoot > tr.danger > th,

#custom-html-s8 .table > tfoot > tr > td.danger,

#custom-html-s8 .table > tfoot > tr > th.danger,

#custom-html-s8 .table > thead > tr.danger > td,

#custom-html-s8 .table > thead > tr.danger > th,

#custom-html-s8 .table > thead > tr > td.danger,

#custom-html-s8 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-s8 .table-hover > tbody > tr.danger:hover > td,

#custom-html-s8 .table-hover > tbody > tr.danger:hover > th,

#custom-html-s8 .table-hover > tbody > tr:hover > .danger,

#custom-html-s8 .table-hover > tbody > tr > td.danger:hover,

#custom-html-s8 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-s8 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-s8 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-s8 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-s8 .table-responsive > .table > tbody > tr > td,

  #custom-html-s8 .table-responsive > .table > tbody > tr > th,

  #custom-html-s8 .table-responsive > .table > tfoot > tr > td,

  #custom-html-s8 .table-responsive > .table > tfoot > tr > th,

  #custom-html-s8 .table-responsive > .table > thead > tr > td,

  #custom-html-s8 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-s8 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-s8 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-s8 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-s8 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-s8 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-s8 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-s8 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-s8 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-s8 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-s8 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-s8 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-s8 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-s8 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-s8 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-s8 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-s8 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-s8 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-s8 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-s8 div.dataTables_wrapper div.dataTables_info,

  #custom-html-s8 div.dataTables_wrapper div.dataTables_length,

  #custom-html-s8 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-s8 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-s8 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-s8 input[type=file] {

  display: block;

}

#custom-html-s8 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-s8 select[multiple],

#custom-html-s8 select[size] {

  height: auto;

}

#custom-html-s8 input[type=checkbox]:focus,

#custom-html-s8 input[type=file]:focus,

#custom-html-s8 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-s8 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-s8 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-s8 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-s8 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-s8 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-s8 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-s8 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-s8 .form-control[disabled],

#custom-html-s8 .form-control[readonly],

#custom-html-s8 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-s8 .form-control[disabled],

#custom-html-s8 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-s8 textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-s8 input[type=date].form-control,

  #custom-html-s8 input[type=datetime-local].form-control,

  #custom-html-s8 input[type=month].form-control,

  #custom-html-s8 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-s8 .input-group-sm input[type=date],

  #custom-html-s8 .input-group-sm input[type=datetime-local],

  #custom-html-s8 .input-group-sm input[type=month],

  #custom-html-s8 .input-group-sm input[type=time],

  #custom-html-s8 input[type=date].input-sm,

  #custom-html-s8 input[type=datetime-local].input-sm,

  #custom-html-s8 input[type=month].input-sm,

  #custom-html-s8 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-s8 .input-group-lg input[type=date],

  #custom-html-s8 .input-group-lg input[type=datetime-local],

  #custom-html-s8 .input-group-lg input[type=month],

  #custom-html-s8 .input-group-lg input[type=time],

  #custom-html-s8 input[type=date].input-lg,

  #custom-html-s8 input[type=datetime-local].input-lg,

  #custom-html-s8 input[type=month].input-lg,

  #custom-html-s8 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-s8 .form-group {

  margin-bottom: 15px;

}

#custom-html-s8 .checkbox,

#custom-html-s8 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-s8 .checkbox label,

#custom-html-s8 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-s8 .checkbox input[type=checkbox],

#custom-html-s8 .checkbox-inline input[type=checkbox],

#custom-html-s8 .radio input[type=radio],

#custom-html-s8 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-s8 .checkbox + .checkbox,

#custom-html-s8 .radio + .radio {

  margin-top: -5px;

}

#custom-html-s8 .checkbox-inline,

#custom-html-s8 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-s8 .checkbox-inline + .checkbox-inline,

#custom-html-s8 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-s8 fieldset[disabled] input[type=checkbox],

#custom-html-s8 fieldset[disabled] input[type=radio],

#custom-html-s8 input[type=checkbox].disabled,

#custom-html-s8 input[type=checkbox][disabled],

#custom-html-s8 input[type=radio].disabled,

#custom-html-s8 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-s8 .checkbox-inline.disabled,

#custom-html-s8 .radio-inline.disabled,

#custom-html-s8 fieldset[disabled] .checkbox-inline,

#custom-html-s8 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-s8 .checkbox.disabled label,

#custom-html-s8 .radio.disabled label,

#custom-html-s8 fieldset[disabled] .checkbox label,

#custom-html-s8 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-s8 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-s8 .form-control-static.input-lg,

#custom-html-s8 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-s8 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s8 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-s8 select[multiple].input-sm,

#custom-html-s8 textarea.input-sm {

  height: auto;

}

#custom-html-s8 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s8 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-s8 .form-group-sm select[multiple].form-control,

#custom-html-s8 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-s8 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s8 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s8 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-s8 select[multiple].input-lg,

#custom-html-s8 textarea.input-lg {

  height: auto;

}

#custom-html-s8 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s8 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-s8 .form-group-lg select[multiple].form-control,

#custom-html-s8 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-s8 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-s8 .has-feedback {

  position: relative;

}

#custom-html-s8 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-s8 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-s8 .form-group-lg .form-control + .form-control-feedback,

#custom-html-s8 .input-group-lg + .form-control-feedback,

#custom-html-s8 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-s8 .form-group-sm .form-control + .form-control-feedback,

#custom-html-s8 .input-group-sm + .form-control-feedback,

#custom-html-s8 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-s8 .has-success .checkbox,

#custom-html-s8 .has-success .checkbox-inline,

#custom-html-s8 .has-success .control-label,

#custom-html-s8 .has-success .help-block,

#custom-html-s8 .has-success .radio,

#custom-html-s8 .has-success .radio-inline,

#custom-html-s8 .has-success.checkbox label,

#custom-html-s8 .has-success.checkbox-inline label,

#custom-html-s8 .has-success.radio label,

#custom-html-s8 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-s8 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-s8 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-s8 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-s8 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-s8 .has-warning .checkbox,

#custom-html-s8 .has-warning .checkbox-inline,

#custom-html-s8 .has-warning .control-label,

#custom-html-s8 .has-warning .help-block,

#custom-html-s8 .has-warning .radio,

#custom-html-s8 .has-warning .radio-inline,

#custom-html-s8 .has-warning.checkbox label,

#custom-html-s8 .has-warning.checkbox-inline label,

#custom-html-s8 .has-warning.radio label,

#custom-html-s8 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-s8 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-s8 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-s8 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-s8 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-s8 .has-error .checkbox,

#custom-html-s8 .has-error .checkbox-inline,

#custom-html-s8 .has-error .control-label,

#custom-html-s8 .has-error .help-block,

#custom-html-s8 .has-error .radio,

#custom-html-s8 .has-error .radio-inline,

#custom-html-s8 .has-error.checkbox label,

#custom-html-s8 .has-error.checkbox-inline label,

#custom-html-s8 .has-error.radio label,

#custom-html-s8 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-s8 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-s8 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-s8 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-s8 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-s8 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-s8 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-s8 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-s8 .form-horizontal .checkbox,

#custom-html-s8 .form-horizontal .checkbox-inline,

#custom-html-s8 .form-horizontal .radio,

#custom-html-s8 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-s8 .form-horizontal .checkbox,

#custom-html-s8 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-s8 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-s8 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-s8 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-s8 .btn.active.focus,

#custom-html-s8 .btn.active:focus,

#custom-html-s8 .btn.focus,

#custom-html-s8 .btn:active.focus,

#custom-html-s8 .btn:active:focus,

#custom-html-s8 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-s8 .btn.focus,

#custom-html-s8 .btn:focus,

#custom-html-s8 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-s8 .btn.active,

#custom-html-s8 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-s8 .btn.disabled,

#custom-html-s8 .btn[disabled],

#custom-html-s8 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-s8 a.btn.disabled,

#custom-html-s8 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-s8 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-s8 .btn-default.focus,

#custom-html-s8 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-s8 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-s8 .btn-default.active,

#custom-html-s8 .btn-default:active,

#custom-html-s8 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-s8 .btn-default.active.focus,

#custom-html-s8 .btn-default.active:focus,

#custom-html-s8 .btn-default.active:hover,

#custom-html-s8 .btn-default:active.focus,

#custom-html-s8 .btn-default:active:focus,

#custom-html-s8 .btn-default:active:hover,

#custom-html-s8 .open > .dropdown-toggle.btn-default.focus,

#custom-html-s8 .open > .dropdown-toggle.btn-default:focus,

#custom-html-s8 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-s8 .btn-default.disabled.focus,

#custom-html-s8 .btn-default.disabled:focus,

#custom-html-s8 .btn-default.disabled:hover,

#custom-html-s8 .btn-default[disabled].focus,

#custom-html-s8 .btn-default[disabled]:focus,

#custom-html-s8 .btn-default[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-default.focus,

#custom-html-s8 fieldset[disabled] .btn-default:focus,

#custom-html-s8 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-s8 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-s8 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-s8 .btn-primary.focus,

#custom-html-s8 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-s8 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-s8 .btn-primary.active,

#custom-html-s8 .btn-primary:active,

#custom-html-s8 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-s8 .btn-primary.active.focus,

#custom-html-s8 .btn-primary.active:focus,

#custom-html-s8 .btn-primary.active:hover,

#custom-html-s8 .btn-primary:active.focus,

#custom-html-s8 .btn-primary:active:focus,

#custom-html-s8 .btn-primary:active:hover,

#custom-html-s8 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-s8 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-s8 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-s8 .btn-primary.disabled.focus,

#custom-html-s8 .btn-primary.disabled:focus,

#custom-html-s8 .btn-primary.disabled:hover,

#custom-html-s8 .btn-primary[disabled].focus,

#custom-html-s8 .btn-primary[disabled]:focus,

#custom-html-s8 .btn-primary[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-primary.focus,

#custom-html-s8 fieldset[disabled] .btn-primary:focus,

#custom-html-s8 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-s8 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-s8 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-s8 .btn-success.focus,

#custom-html-s8 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-s8 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-s8 .btn-success.active,

#custom-html-s8 .btn-success:active,

#custom-html-s8 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-s8 .btn-success.active.focus,

#custom-html-s8 .btn-success.active:focus,

#custom-html-s8 .btn-success.active:hover,

#custom-html-s8 .btn-success:active.focus,

#custom-html-s8 .btn-success:active:focus,

#custom-html-s8 .btn-success:active:hover,

#custom-html-s8 .open > .dropdown-toggle.btn-success.focus,

#custom-html-s8 .open > .dropdown-toggle.btn-success:focus,

#custom-html-s8 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-s8 .btn-success.disabled.focus,

#custom-html-s8 .btn-success.disabled:focus,

#custom-html-s8 .btn-success.disabled:hover,

#custom-html-s8 .btn-success[disabled].focus,

#custom-html-s8 .btn-success[disabled]:focus,

#custom-html-s8 .btn-success[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-success.focus,

#custom-html-s8 fieldset[disabled] .btn-success:focus,

#custom-html-s8 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-s8 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-s8 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-s8 .btn-info.focus,

#custom-html-s8 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-s8 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-s8 .btn-info.active,

#custom-html-s8 .btn-info:active,

#custom-html-s8 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-s8 .btn-info.active.focus,

#custom-html-s8 .btn-info.active:focus,

#custom-html-s8 .btn-info.active:hover,

#custom-html-s8 .btn-info:active.focus,

#custom-html-s8 .btn-info:active:focus,


#custom-html-s8 .btn-info:active:hover,

#custom-html-s8 .open > .dropdown-toggle.btn-info.focus,

#custom-html-s8 .open > .dropdown-toggle.btn-info:focus,

#custom-html-s8 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-s8 .btn-info.disabled.focus,

#custom-html-s8 .btn-info.disabled:focus,

#custom-html-s8 .btn-info.disabled:hover,

#custom-html-s8 .btn-info[disabled].focus,

#custom-html-s8 .btn-info[disabled]:focus,

#custom-html-s8 .btn-info[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-info.focus,

#custom-html-s8 fieldset[disabled] .btn-info:focus,

#custom-html-s8 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-s8 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-s8 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-s8 .btn-warning.focus,

#custom-html-s8 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-s8 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-s8 .btn-warning.active,

#custom-html-s8 .btn-warning:active,

#custom-html-s8 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-s8 .btn-warning.active.focus,

#custom-html-s8 .btn-warning.active:focus,

#custom-html-s8 .btn-warning.active:hover,

#custom-html-s8 .btn-warning:active.focus,

#custom-html-s8 .btn-warning:active:focus,

#custom-html-s8 .btn-warning:active:hover,

#custom-html-s8 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-s8 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-s8 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-s8 .btn-warning.disabled.focus,

#custom-html-s8 .btn-warning.disabled:focus,

#custom-html-s8 .btn-warning.disabled:hover,

#custom-html-s8 .btn-warning[disabled].focus,

#custom-html-s8 .btn-warning[disabled]:focus,

#custom-html-s8 .btn-warning[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-warning.focus,

#custom-html-s8 fieldset[disabled] .btn-warning:focus,

#custom-html-s8 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-s8 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-s8 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-s8 .btn-danger.focus,

#custom-html-s8 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-s8 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-s8 .btn-danger.active,

#custom-html-s8 .btn-danger:active,

#custom-html-s8 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-s8 .btn-danger.active.focus,

#custom-html-s8 .btn-danger.active:focus,

#custom-html-s8 .btn-danger.active:hover,

#custom-html-s8 .btn-danger:active.focus,

#custom-html-s8 .btn-danger:active:focus,

#custom-html-s8 .btn-danger:active:hover,

#custom-html-s8 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-s8 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-s8 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-s8 .btn-danger.disabled.focus,

#custom-html-s8 .btn-danger.disabled:focus,

#custom-html-s8 .btn-danger.disabled:hover,

#custom-html-s8 .btn-danger[disabled].focus,

#custom-html-s8 .btn-danger[disabled]:focus,

#custom-html-s8 .btn-danger[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-danger.focus,

#custom-html-s8 fieldset[disabled] .btn-danger:focus,

#custom-html-s8 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-s8 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-s8 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-s8 .btn-link,

#custom-html-s8 .btn-link.active,

#custom-html-s8 .btn-link:active,

#custom-html-s8 .btn-link[disabled],

#custom-html-s8 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s8 .btn-link,

#custom-html-s8 .btn-link:active,

#custom-html-s8 .btn-link:focus,

#custom-html-s8 .btn-link:hover {

  border-color: transparent;

}

#custom-html-s8 .btn-link:focus,

#custom-html-s8 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-s8 .btn-link[disabled]:focus,

#custom-html-s8 .btn-link[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-link:focus,

#custom-html-s8 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-s8 .btn-group-lg > .btn,

#custom-html-s8 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s8 .btn-group-sm > .btn,

#custom-html-s8 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s8 .btn-group-xs > .btn,

#custom-html-s8 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s8 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-s8 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-s8 input[type=button].btn-block,

#custom-html-s8 input[type=reset].btn-block,

#custom-html-s8 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-s8 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-s8 .fade.in {

  opacity: 1;

}

#custom-html-s8 .collapse {

  display: none;

}

#custom-html-s8 .collapse.in {

  display: block;

}

#custom-html-s8 tr.collapse.in {

  display: table-row;

}

#custom-html-s8 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-s8 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-s8 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-s8 .dropdown,

#custom-html-s8 .dropup {

  position: relative;

}

#custom-html-s8 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-s8 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-s8 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-s8 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-s8 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-s8 .dropdown-menu > li > a:focus,

#custom-html-s8 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-s8 .dropdown-menu > .active > a,

#custom-html-s8 .dropdown-menu > .active > a:focus,

#custom-html-s8 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-s8 .dropdown-menu > .disabled > a,

#custom-html-s8 .dropdown-menu > .disabled > a:focus,

#custom-html-s8 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-s8 .dropdown-menu > .disabled > a:focus,

#custom-html-s8 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-s8 .open > .dropdown-menu {

  display: block;

}

#custom-html-s8 .open > a {

  outline: 0;

}

#custom-html-s8 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-s8 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-s8 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-s8 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-s8 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-s8 .dropup .caret,

#custom-html-s8 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-s8 .dropup .dropdown-menu,

#custom-html-s8 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-s8 .btn-group,

#custom-html-s8 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-s8 .btn-group-vertical > .btn,

#custom-html-s8 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-s8 .btn-group-vertical > .btn.active,

#custom-html-s8 .btn-group-vertical > .btn:active,

#custom-html-s8 .btn-group-vertical > .btn:focus,

#custom-html-s8 .btn-group-vertical > .btn:hover,

#custom-html-s8 .btn-group > .btn.active,

#custom-html-s8 .btn-group > .btn:active,

#custom-html-s8 .btn-group > .btn:focus,

#custom-html-s8 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-s8 .btn-group .btn + .btn,

#custom-html-s8 .btn-group .btn + .btn-group,

#custom-html-s8 .btn-group .btn-group + .btn,

#custom-html-s8 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-s8 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-s8 .btn-toolbar .btn,

#custom-html-s8 .btn-toolbar .btn-group,

#custom-html-s8 .btn-toolbar .input-group {

  float: left;

}

#custom-html-s8 .btn-toolbar > .btn,

#custom-html-s8 .btn-toolbar > .btn-group,

#custom-html-s8 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-s8 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-s8 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-s8 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-s8 .btn-group > .btn:last-child:not(:first-child),

#custom-html-s8 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s8 .btn-group > .btn-group {

  float: left;

}

#custom-html-s8 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-s8 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-s8 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-s8 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s8 .btn-group .dropdown-toggle:active,

#custom-html-s8 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-s8 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-s8 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-s8 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-s8 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s8 .btn .caret {

  margin-left: 0;

}

#custom-html-s8 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-s8 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-s8 .btn-group-vertical > .btn,

#custom-html-s8 .btn-group-vertical > .btn-group,

#custom-html-s8 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-s8 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-s8 .btn-group-vertical > .btn + .btn,

#custom-html-s8 .btn-group-vertical > .btn + .btn-group,

#custom-html-s8 .btn-group-vertical > .btn-group + .btn,

#custom-html-s8 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-s8 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-s8 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s8 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s8 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-s8 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-s8 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s8 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s8 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-s8 .btn-group-justified > .btn,

#custom-html-s8 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-s8 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-s8 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-s8 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-s8 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-s8 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-s8 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-s8 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-s8 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-s8 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-s8 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-s8 .input-group-lg > .form-control,

#custom-html-s8 .input-group-lg > .input-group-addon,

#custom-html-s8 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s8 select.input-group-lg > .form-control,

#custom-html-s8 select.input-group-lg > .input-group-addon,

#custom-html-s8 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-s8 select[multiple].input-group-lg > .form-control,

#custom-html-s8 select[multiple].input-group-lg > .input-group-addon,

#custom-html-s8 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-s8 textarea.input-group-lg > .form-control,

#custom-html-s8 textarea.input-group-lg > .input-group-addon,

#custom-html-s8 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-s8 .input-group-sm > .form-control,

#custom-html-s8 .input-group-sm > .input-group-addon,

#custom-html-s8 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s8 select.input-group-sm > .form-control,

#custom-html-s8 select.input-group-sm > .input-group-addon,

#custom-html-s8 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-s8 select[multiple].input-group-sm > .form-control,

#custom-html-s8 select[multiple].input-group-sm > .input-group-addon,

#custom-html-s8 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-s8 textarea.input-group-sm > .form-control,

#custom-html-s8 textarea.input-group-sm > .input-group-addon,

#custom-html-s8 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-s8 .input-group .form-control,

#custom-html-s8 .input-group-addon,

#custom-html-s8 .input-group-btn {

  display: table-cell;

}

#custom-html-s8 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-s8 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-s8 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-s8 .input-group-addon,

#custom-html-s8 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-s8 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-s8 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-s8 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-s8 .input-group-addon input[type=checkbox],

#custom-html-s8 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-s8 .input-group .form-control:first-child,

#custom-html-s8 .input-group-addon:first-child,

#custom-html-s8 .input-group-btn:first-child > .btn,

#custom-html-s8 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-s8 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-s8 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-s8 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-s8 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-s8 .input-group .form-control:last-child,

#custom-html-s8 .input-group-addon:last-child,

#custom-html-s8 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-s8 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-s8 .input-group-btn:last-child > .btn,

#custom-html-s8 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-s8 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s8 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-s8 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-s8 .input-group-btn > .btn {

  position: relative;

}

#custom-html-s8 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-s8 .input-group-btn > .btn:active,

#custom-html-s8 .input-group-btn > .btn:focus,

#custom-html-s8 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-s8 .input-group-btn:first-child > .btn,

#custom-html-s8 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-s8 .input-group-btn:last-child > .btn,

#custom-html-s8 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-s8 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-s8 .nav > li {

  position: relative;

  display: block;

}

#custom-html-s8 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-s8 .nav > li > a:focus,

#custom-html-s8 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-s8 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-s8 .nav > li.disabled > a:focus,

#custom-html-s8 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-s8 .nav .open > a,

#custom-html-s8 .nav .open > a:focus,

#custom-html-s8 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-s8 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-s8 .nav > li > a > img {

  max-width: none;

}

#custom-html-s8 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-s8 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-s8 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-s8 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-s8 .nav-tabs > li.active > a,

#custom-html-s8 .nav-tabs > li.active > a:focus,

#custom-html-s8 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-s8 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-s8 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-s8 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-s8 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-s8 .nav-tabs.nav-justified > .active > a,

#custom-html-s8 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-s8 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-s8 .nav-pills > li {

  float: left;

}

#custom-html-s8 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-s8 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-s8 .nav-pills > li.active > a,

#custom-html-s8 .nav-pills > li.active > a:focus,

#custom-html-s8 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-s8 .nav-stacked > li {

  float: none;

}

#custom-html-s8 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-s8 .nav-justified {

  width: 100%;

}

#custom-html-s8 .nav-justified > li {

  float: none;

}

#custom-html-s8 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-s8 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-s8 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-s8 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-s8 .nav-tabs-justified > .active > a,

#custom-html-s8 .nav-tabs-justified > .active > a:focus,

#custom-html-s8 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-s8 .tab-content > .tab-pane {

  display: none;

}

#custom-html-s8 .tab-content > .active {

  display: block;

}

#custom-html-s8 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s8 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-s8 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-s8 .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-s8 .navbar-fixed-bottom .navbar-collapse,

#custom-html-s8 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-s8 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-s8 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-s8 .container-fluid > .navbar-collapse,

#custom-html-s8 .container-fluid > .navbar-header,

#custom-html-s8 .container > .navbar-collapse,

#custom-html-s8 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-s8 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-s8 .navbar-fixed-bottom,

#custom-html-s8 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-s8 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-s8 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-s8 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-s8 .navbar-brand:focus,

#custom-html-s8 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-s8 .navbar-brand > img {

  display: block;

}

#custom-html-s8 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-s8 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-s8 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-s8 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-s8 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-s8 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-s8 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-s8 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-s8 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-s8 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-s8 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-s8 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-s8 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-s8 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-s8 .visible-xs {

    display: block !important;

  }

  #custom-html-s8 table.visible-xs {

    display: table !important;

  }

  #custom-html-s8 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-s8 td.visible-xs,

  #custom-html-s8 th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-s8 .visible-xs-block {

    display: block !important;

  }

  #custom-html-s8 .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-s8 .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-s8 .hidden-xs {

    display: none !important;

  }

  #custom-html-s8 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-s8 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-s8 section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-s8 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-s8 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-s8 .home-shortcuts li:last-child {

    border: 0;

  }


  #custom-html-s8 .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-s8 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-s8 .tiles .tile:nth-child(1),

  #custom-html-s8 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-s8 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-s8 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-s8 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-s8 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-s8 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-s8 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-s8 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-s8 .promo-banner form {

    text-align: center;

  }

}

#custom-html-s8 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-s8 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s8 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s8 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-s8 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-s8 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-s8 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-s8 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-s8 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-s8 .navbar-default .navbar-brand:focus,

#custom-html-s8 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-s8 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-s8 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-s8 .navbar-default .navbar-nav > li > a:focus,

#custom-html-s8 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-s8 .navbar-default .navbar-nav > .active > a,

#custom-html-s8 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-s8 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-s8 .navbar-default .navbar-nav > .disabled > a,

#custom-html-s8 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-s8 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-s8 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-s8 .navbar-default .navbar-toggle:focus,

#custom-html-s8 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-s8 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-s8 .navbar-default .navbar-collapse,

#custom-html-s8 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-s8 .navbar-default .navbar-nav > .open > a,

#custom-html-s8 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-s8 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-s8 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-s8 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-s8 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-s8 .navbar-default .btn-link:focus,

#custom-html-s8 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-s8 .navbar-default .btn-link[disabled]:focus,

#custom-html-s8 .navbar-default .btn-link[disabled]:hover,

#custom-html-s8 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-s8 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-s8 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-s8 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-s8 .navbar-inverse .navbar-brand:focus,

#custom-html-s8 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-s8 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-s8 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-s8 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-s8 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-s8 .navbar-inverse .navbar-nav > .active > a,

#custom-html-s8 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-s8 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-s8 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-s8 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-s8 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-s8 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-s8 .navbar-inverse .navbar-toggle:focus,

#custom-html-s8 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-s8 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-s8 .navbar-inverse .navbar-collapse,

#custom-html-s8 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-s8 .navbar-inverse .navbar-nav > .open > a,

#custom-html-s8 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-s8 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-s8 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-s8 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-s8 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-s8 .navbar-inverse .btn-link:focus,

#custom-html-s8 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-s8 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-s8 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-s8 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-s8 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-s8 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-s8 .breadcrumb > li {

  display: inline-block;

}

#custom-html-s8 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-s8 .breadcrumb > .active {

  color: #777777;

}

#custom-html-s8 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-s8 .pagination > li {

  display: inline;

}

#custom-html-s8 .pagination > li > a,

#custom-html-s8 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-s8 .pagination > li:first-child > a,

#custom-html-s8 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s8 .pagination > li:last-child > a,

#custom-html-s8 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-s8 .pagination > li > a:focus,

#custom-html-s8 .pagination > li > a:hover,

#custom-html-s8 .pagination > li > span:focus,

#custom-html-s8 .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-s8 .pagination > .active > a,

#custom-html-s8 .pagination > .active > a:focus,

#custom-html-s8 .pagination > .active > a:hover,

#custom-html-s8 .pagination > .active > span,

#custom-html-s8 .pagination > .active > span:focus,

#custom-html-s8 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-s8 .pagination > .disabled > a,

#custom-html-s8 .pagination > .disabled > a:focus,

#custom-html-s8 .pagination > .disabled > a:hover,

#custom-html-s8 .pagination > .disabled > span,

#custom-html-s8 .pagination > .disabled > span:focus,

#custom-html-s8 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-s8 .pagination-lg > li > a,

#custom-html-s8 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-s8 .pagination-lg > li:first-child > a,

#custom-html-s8 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-s8 .pagination-lg > li:last-child > a,

#custom-html-s8 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-s8 .pagination-sm > li > a,

#custom-html-s8 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s8 .pagination-sm > li:first-child > a,

#custom-html-s8 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s8 .pagination-sm > li:last-child > a,

#custom-html-s8 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-s8 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-s8 .pager li {

  display: inline;

}

#custom-html-s8 .pager li > a,

#custom-html-s8 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-s8 .pager li > a:focus,

#custom-html-s8 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-s8 .pager .next > a,

#custom-html-s8 .pager .next > span {

  float: right;

}

#custom-html-s8 .pager .previous > a,

#custom-html-s8 .pager .previous > span {

  float: left;

}

#custom-html-s8 .pager .disabled > a,

#custom-html-s8 .pager .disabled > a:focus,

#custom-html-s8 .pager .disabled > a:hover,

#custom-html-s8 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-s8 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-s8 a.label:focus,

#custom-html-s8 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-s8 .label:empty {

  display: none;

}

#custom-html-s8 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-s8 .label-default {

  background-color: #777777;

}

#custom-html-s8 .label-default[href]:focus,

#custom-html-s8 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-s8 .label-primary {

  background-color: #337ab7;

}

#custom-html-s8 .label-primary[href]:focus,

#custom-html-s8 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-s8 .label-success {

  background-color: #5cb85c;

}

#custom-html-s8 .label-success[href]:focus,

#custom-html-s8 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-s8 .label-info {

  background-color: #5bc0de;

}

#custom-html-s8 .label-info[href]:focus,

#custom-html-s8 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-s8 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-s8 .label-warning[href]:focus,

#custom-html-s8 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-s8 .label-danger {

  background-color: #d9534f;

}

#custom-html-s8 .label-danger[href]:focus,

#custom-html-s8 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-s8 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-s8 .badge:empty {

  display: none;

}

#custom-html-s8 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-s8 .btn-group-xs > .btn .badge,

#custom-html-s8 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-s8 a.badge:focus,

#custom-html-s8 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-s8 .list-group-item.active > .badge,

#custom-html-s8 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-s8 .list-group-item > .badge {

  float: right;

}

#custom-html-s8 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-s8 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-s8 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-s8 .jumbotron .h1,

#custom-html-s8 .jumbotron h1 {

  color: inherit;

}

#custom-html-s8 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-s8 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-s8 .container .jumbotron,

#custom-html-s8 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-s8 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-s8 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-s8 .container .jumbotron,

  #custom-html-s8 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-s8 .jumbotron .h1,

  #custom-html-s8 .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-s8 .carousel-control .glyphicon-chevron-left,

  #custom-html-s8 .carousel-control .glyphicon-chevron-right,

  #custom-html-s8 .carousel-control .icon-next,

  #custom-html-s8 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-s8 .carousel-control .glyphicon-chevron-left,

  #custom-html-s8 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-s8 .carousel-control .glyphicon-chevron-right,

  #custom-html-s8 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-s8 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-s8 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-s8 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-s8 .thumbnail a > img,

#custom-html-s8 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-s8 a.thumbnail.active,

#custom-html-s8 a.thumbnail:focus,

#custom-html-s8 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-s8 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-s8 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-s8 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-s8 .alert .alert-link {

  font-weight: 700;

}

#custom-html-s8 .alert > p,

#custom-html-s8 .alert > ul {

  margin-bottom: 0;

}

#custom-html-s8 .alert > p + p {

  margin-top: 5px;

}

#custom-html-s8 .alert-dismissable,

#custom-html-s8 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-s8 .alert-dismissable .close,

#custom-html-s8 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-s8 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-s8 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-s8 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-s8 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-s8 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-s8 .alert-info .alert-link {

  color: #000000;

}

#custom-html-s8 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-s8 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-s8 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-s8 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-s8 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-s8 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-s8 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-s8 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-s8 .progress-bar-striped,

#custom-html-s8 .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-s8 .progress-bar.active,

#custom-html-s8 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-s8 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-s8 .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s8 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-s8 .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s8 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-s8 .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s8 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-s8 .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s8 .media {

  margin-top: 15px;

}

#custom-html-s8 .media:first-child {

  margin-top: 0;

}

#custom-html-s8 .media,

#custom-html-s8 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-s8 .media-body {

  width: 10000px;

}

#custom-html-s8 .media-object {

  display: block;

}

#custom-html-s8 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-s8 .media-right,

#custom-html-s8 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-s8 .media-left,

#custom-html-s8 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-s8 .media-body,

#custom-html-s8 .media-left,

#custom-html-s8 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-s8 .media-middle {

  vertical-align: middle;

}

#custom-html-s8 .media-bottom {

  vertical-align: bottom;

}

#custom-html-s8 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-s8 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-s8 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-s8 .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-s8 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-s8 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s8 a.list-group-item,

#custom-html-s8 button.list-group-item {

  color: #555555;

}

#custom-html-s8 a.list-group-item .list-group-item-heading,

#custom-html-s8 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-s8 a.list-group-item:focus,

#custom-html-s8 a.list-group-item:hover,

#custom-html-s8 button.list-group-item:focus,

#custom-html-s8 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-s8 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-s8 .list-group-item.disabled,

#custom-html-s8 .list-group-item.disabled:focus,

#custom-html-s8 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-s8 .list-group-item.disabled .list-group-item-heading,

#custom-html-s8 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-s8 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-s8 .list-group-item.disabled .list-group-item-text,

#custom-html-s8 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-s8 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-s8 .list-group-item.active,

#custom-html-s8 .list-group-item.active:focus,

#custom-html-s8 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-s8 .list-group-item.active .list-group-item-heading,

#custom-html-s8 .list-group-item.active .list-group-item-heading > .small,

#custom-html-s8 .list-group-item.active .list-group-item-heading > small,

#custom-html-s8 .list-group-item.active:focus .list-group-item-heading,

#custom-html-s8 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-s8 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-s8 .list-group-item.active:hover .list-group-item-heading,

#custom-html-s8 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-s8 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-s8 .list-group-item.active .list-group-item-text,

#custom-html-s8 .list-group-item.active:focus .list-group-item-text,

#custom-html-s8 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-s8 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-s8 a.list-group-item-success,

#custom-html-s8 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-s8 a.list-group-item-success .list-group-item-heading,

#custom-html-s8 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-s8 a.list-group-item-success:focus,

#custom-html-s8 a.list-group-item-success:hover,

#custom-html-s8 button.list-group-item-success:focus,

#custom-html-s8 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-s8 a.list-group-item-success.active,

#custom-html-s8 a.list-group-item-success.active:focus,

#custom-html-s8 a.list-group-item-success.active:hover,

#custom-html-s8 button.list-group-item-success.active,

#custom-html-s8 button.list-group-item-success.active:focus,

#custom-html-s8 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-s8 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-s8 a.list-group-item-info,

#custom-html-s8 button.list-group-item-info {

  color: #31708f;

}

#custom-html-s8 a.list-group-item-info .list-group-item-heading,

#custom-html-s8 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-s8 a.list-group-item-info:focus,

#custom-html-s8 a.list-group-item-info:hover,

#custom-html-s8 button.list-group-item-info:focus,

#custom-html-s8 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-s8 a.list-group-item-info.active,

#custom-html-s8 a.list-group-item-info.active:focus,

#custom-html-s8 a.list-group-item-info.active:hover,

#custom-html-s8 button.list-group-item-info.active,

#custom-html-s8 button.list-group-item-info.active:focus,

#custom-html-s8 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-s8 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-s8 a.list-group-item-warning,

#custom-html-s8 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-s8 a.list-group-item-warning .list-group-item-heading,

#custom-html-s8 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-s8 a.list-group-item-warning:focus,

#custom-html-s8 a.list-group-item-warning:hover,

#custom-html-s8 button.list-group-item-warning:focus,

#custom-html-s8 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-s8 a.list-group-item-warning.active,

#custom-html-s8 a.list-group-item-warning.active:focus,

#custom-html-s8 a.list-group-item-warning.active:hover,

#custom-html-s8 button.list-group-item-warning.active,

#custom-html-s8 button.list-group-item-warning.active:focus,

#custom-html-s8 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-s8 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-s8 a.list-group-item-danger,

#custom-html-s8 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-s8 a.list-group-item-danger .list-group-item-heading,

#custom-html-s8 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-s8 a.list-group-item-danger:focus,

#custom-html-s8 a.list-group-item-danger:hover,

#custom-html-s8 button.list-group-item-danger:focus,

#custom-html-s8 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-s8 a.list-group-item-danger.active,

#custom-html-s8 a.list-group-item-danger.active:focus,

#custom-html-s8 a.list-group-item-danger.active:hover,

#custom-html-s8 button.list-group-item-danger.active,

#custom-html-s8 button.list-group-item-danger.active:focus,

#custom-html-s8 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-s8 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-s8 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-s8 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-s8 .panel-body {

  padding: 10px 15px;

}

#custom-html-s8 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-s8 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-s8 .panel-title > .small,

#custom-html-s8 .panel-title > .small > a,

#custom-html-s8 .panel-title > a,

#custom-html-s8 .panel-title > small,

#custom-html-s8 .panel-title > small > a {

  color: inherit;

}

#custom-html-s8 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s8 .panel > .list-group,

#custom-html-s8 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-s8 .panel > .list-group .list-group-item,

#custom-html-s8 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-s8 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-s8 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-s8 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s8 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s8 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-s8 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-s8 .panel > .panel-collapse > .table,

#custom-html-s8 .panel > .table,

#custom-html-s8 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-s8 .panel > .panel-collapse > .table caption,

#custom-html-s8 .panel > .table caption,

#custom-html-s8 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-s8 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-s8 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-s8 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-s8 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-s8 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-s8 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-s8 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-s8 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-s8 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-s8 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-s8 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-s8 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-s8 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-s8 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-s8 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-s8 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-s8 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-s8 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-s8 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-s8 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-s8 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-s8 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-s8 .panel > .panel-body + .table,

#custom-html-s8 .panel > .panel-body + .table-responsive,

#custom-html-s8 .panel > .table + .panel-body,

#custom-html-s8 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-s8 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-s8 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-s8 .panel > .table-bordered,

#custom-html-s8 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-s8 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-s8 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-s8 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-s8 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-s8 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-s8 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-s8 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-s8 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-s8 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-s8 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-s8 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-s8 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-s8 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-s8 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-s8 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-s8 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-s8 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-s8 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-s8 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-s8 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-s8 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-s8 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-s8 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-s8 .panel-group {

  margin-bottom: 20px;

}

#custom-html-s8 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-s8 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-s8 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-s8 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-s8 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-s8 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-s8 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-s8 .panel-default {

  border-color: #dddddd;

}

#custom-html-s8 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-s8 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-s8 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-s8 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-s8 .panel-primary {

  border-color: #337ab7;

}

#custom-html-s8 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-s8 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-s8 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-s8 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-s8 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-s8 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-s8 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-s8 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-s8 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-s8 .panel-info {

  border-color: #bce8f1;

}

#custom-html-s8 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-s8 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-s8 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-s8 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-s8 .panel-warning {

  border-color: #faebcc;

}

#custom-html-s8 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-s8 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-s8 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-s8 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-s8 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-s8 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-s8 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-s8 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-s8 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-s8 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-s8 .embed-responsive .embed-responsive-item,

#custom-html-s8 .embed-responsive embed,

#custom-html-s8 .embed-responsive iframe,

#custom-html-s8 .embed-responsive object,

#custom-html-s8 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-s8 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-s8 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-s8 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-s8 .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-s8 .well-lg {

  padding: 24px;

  border-radius: 6px;

}


#custom-html-s8 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-s8 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-s8 .close:focus,

#custom-html-s8 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-s8 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-s8 .modal-open {

  overflow: hidden;

}

#custom-html-s8 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-s8 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-s8 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-s8 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-s8 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-s8 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-s8 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-s8 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-s8 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-s8 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-s8 .modal-header .close {

  margin-top: -2px;

}

#custom-html-s8 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-s8 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-s8 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-s8 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-s8 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-s8 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-s8 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-s8 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-s8 .tooltip.in {

  opacity: 0.9;

}

#custom-html-s8 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-s8 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-s8 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-s8 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-s8 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-s8 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-s8 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-s8 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-s8 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-s8 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-s8 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-s8 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-s8 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-s8 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-s8 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-s8 .popover.top {

  margin-top: -10px;

}

#custom-html-s8 .popover.right {

  margin-left: 10px;

}

#custom-html-s8 .popover.bottom {

  margin-top: 10px;

}

#custom-html-s8 .popover.left {

  margin-left: -10px;

}

#custom-html-s8 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-s8 .popover-content {

  padding: 9px 14px;

}

#custom-html-s8 .popover > .arrow,

#custom-html-s8 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-s8 .popover > .arrow {

  border-width: 11px;

}

#custom-html-s8 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-s8 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-s8 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-s8 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-s8 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-s8 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-s8 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-s8 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-s8 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-s8 .carousel {

  position: relative;

}

#custom-html-s8 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-s8 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-s8 .carousel-inner > .item > a > img,

#custom-html-s8 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-s8 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-s8 .carousel-inner > .item.active.right,

  #custom-html-s8 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-s8 .carousel-inner > .item.active.left,

  #custom-html-s8 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-s8 .carousel-inner > .item.active,

  #custom-html-s8 .carousel-inner > .item.next.left,

  #custom-html-s8 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-s8 .carousel-inner > .active,

#custom-html-s8 .carousel-inner > .next,

#custom-html-s8 .carousel-inner > .prev {

  display: block;

}

#custom-html-s8 .carousel-inner > .active {

  left: 0;

}

#custom-html-s8 .carousel-inner > .next,

#custom-html-s8 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-s8 .carousel-inner > .next {

  left: 100%;

}

#custom-html-s8 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-s8 .carousel-inner > .next.left,

#custom-html-s8 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-s8 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-s8 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-s8 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-s8 .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-s8 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-s8 .carousel-control:focus,

#custom-html-s8 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-s8 .carousel-control .glyphicon-chevron-left,

#custom-html-s8 .carousel-control .glyphicon-chevron-right,

#custom-html-s8 .carousel-control .icon-next,

#custom-html-s8 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-s8 .carousel-control .glyphicon-chevron-left,

#custom-html-s8 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-s8 .carousel-control .glyphicon-chevron-right,

#custom-html-s8 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-s8 .carousel-control .icon-next,

#custom-html-s8 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-s8 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-s8 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-s8 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-s8 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-s8 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-s8 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-s8 .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-s8 .btn-group-vertical > .btn-group:after,

#custom-html-s8 .btn-group-vertical > .btn-group:before,

#custom-html-s8 .btn-toolbar:after,

#custom-html-s8 .btn-toolbar:before,

#custom-html-s8 .clearfix:after,

#custom-html-s8 .clearfix:before,

#custom-html-s8 .container-fluid:after,

#custom-html-s8 .container-fluid:before,

#custom-html-s8 .container:after,

#custom-html-s8 .container:before,

#custom-html-s8 .dl-horizontal dd:after,

#custom-html-s8 .dl-horizontal dd:before,

#custom-html-s8 .form-horizontal .form-group:after,

#custom-html-s8 .form-horizontal .form-group:before,

#custom-html-s8 .modal-footer:after,

#custom-html-s8 .modal-footer:before,

#custom-html-s8 .modal-header:after,

#custom-html-s8 .modal-header:before,

#custom-html-s8 .nav:after,

#custom-html-s8 .nav:before,

#custom-html-s8 .navbar-collapse:after,

#custom-html-s8 .navbar-collapse:before,

#custom-html-s8 .navbar-header:after,

#custom-html-s8 .navbar-header:before,

#custom-html-s8 .navbar:after,

#custom-html-s8 .navbar:before,

#custom-html-s8 .pager:after,

#custom-html-s8 .pager:before,

#custom-html-s8 .panel-body:after,

#custom-html-s8 .panel-body:before,

#custom-html-s8 .row:after,

#custom-html-s8 .row:before {

  display: table;

  content: " ";

}

#custom-html-s8 .btn-group-vertical > .btn-group:after,

#custom-html-s8 .btn-toolbar:after,

#custom-html-s8 .clearfix:after,

#custom-html-s8 .container-fluid:after,

#custom-html-s8 .container:after,

#custom-html-s8 .dl-horizontal dd:after,

#custom-html-s8 .form-horizontal .form-group:after,

#custom-html-s8 .modal-footer:after,

#custom-html-s8 .modal-header:after,

#custom-html-s8 .nav:after,

#custom-html-s8 .navbar-collapse:after,

#custom-html-s8 .navbar-header:after,

#custom-html-s8 .navbar:after,

#custom-html-s8 .pager:after,

#custom-html-s8 .panel-body:after,

#custom-html-s8 .row:after {

  clear: both;

}

#custom-html-s8 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-s8 .pull-right {

  float: right !important;

}

#custom-html-s8 .pull-left {

  float: left !important;

}

#custom-html-s8 .hide {

  display: none !important;

}

#custom-html-s8 .show {

  display: block !important;

}

#custom-html-s8 .invisible {

  visibility: hidden;

}

#custom-html-s8 .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-s8 .hidden {

  display: none !important;

}

#custom-html-s8 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-s8 .visible-lg,

#custom-html-s8 .visible-md,

#custom-html-s8 .visible-sm,

#custom-html-s8 .visible-xs {

  display: none !important;

}

#custom-html-s8 .visible-lg-block,

#custom-html-s8 .visible-lg-inline,

#custom-html-s8 .visible-lg-inline-block,

#custom-html-s8 .visible-md-block,

#custom-html-s8 .visible-md-inline,

#custom-html-s8 .visible-md-inline-block,

#custom-html-s8 .visible-sm-block,

#custom-html-s8 .visible-sm-inline,

#custom-html-s8 .visible-sm-inline-block,

#custom-html-s8 .visible-xs-block,

#custom-html-s8 .visible-xs-inline,

#custom-html-s8 .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-s8 .visible-sm {

    display: block !important;

  }

  #custom-html-s8 table.visible-sm {

    display: table !important;

  }

  #custom-html-s8 tr.visible-sm {


    display: table-row !important;

  }

  #custom-html-s8 td.visible-sm,

  #custom-html-s8 th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-s8 .visible-sm-block {

    display: block !important;

  }

  #custom-html-s8 .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-s8 .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-s8 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-s8 .visible-md {

    display: block !important;

  }

  #custom-html-s8 table.visible-md {

    display: table !important;

  }

  #custom-html-s8 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-s8 td.visible-md,

  #custom-html-s8 th.visible-md {

    display: table-cell !important;

  }

  #custom-html-s8 .visible-md-block {

    display: block !important;

  }

  #custom-html-s8 .visible-md-inline {

    display: inline !important;

  }

  #custom-html-s8 .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-s8 .hidden-md {

    display: none !important;

  }

}

#custom-html-s8 .visible-print {

  display: none !important;

}

#custom-html-s8 .visible-print-block {

  display: none !important;

}

#custom-html-s8 .visible-print-inline {

  display: none !important;

}

#custom-html-s8 .visible-print-inline-block {

  display: none !important;

}

#custom-html-s8 .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-s8 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-s8 .intl-tel-input .hide {

  display: none;

}

#custom-html-s8 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-s8 .intl-tel-input input,

#custom-html-s8 .intl-tel-input input[type=tel],

#custom-html-s8 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-s8 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-s8 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-s8 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-s8 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-s8 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-s8 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-s8 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-s8 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-s8 .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-s8 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-s8 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-s8 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-s8 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-s8 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-s8 .intl-tel-input .country-list .country-name,

#custom-html-s8 .intl-tel-input .country-list .dial-code,

#custom-html-s8 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-s8 .intl-tel-input .country-list .country-name,

#custom-html-s8 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-s8 .intl-tel-input.allow-dropdown input,

#custom-html-s8 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-s8 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-s8 .intl-tel-input.separate-dial-code input,

#custom-html-s8 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-s8 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-s8 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-s8 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-s8 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-s8 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-s8 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-s8 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-s8 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-s8 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-s8 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-s8 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-s8 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-s8 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-s8 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-s8 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-s8 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-s8 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-s8 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-s8 .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-s8 .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-s8 .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-s8 .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-s8 .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-s8 .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-s8 .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-s8 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-s8 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-s8 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-s8 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-s8 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-s8 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-s8 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-s8 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-s8 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-s8 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-s8 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-s8 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-s8 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-s8 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-s8 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-s8 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-s8 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-s8 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-s8 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-s8 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-s8 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-s8 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-s8 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-s8 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-s8 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-s8 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-s8 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-s8 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-s8 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-s8 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-s8 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-s8 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-s8 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-s8 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-s8 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-s8 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-s8 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-s8 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-s8 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-s8 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-s8 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-s8 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-s8 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-s8 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-s8 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-s8 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-s8 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-s8 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-s8 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-s8 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-s8 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-s8 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-s8 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-s8 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-s8 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-s8 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-s8 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-s8 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-s8 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-s8 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-s8 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-s8 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-s8 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-s8 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-s8 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-s8 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-s8 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-s8 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-s8 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-s8 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-s8 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-s8 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-s8 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-s8 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-s8 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-s8 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-s8 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-s8 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-s8 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-s8 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-s8 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-s8 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-s8 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-s8 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-s8 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-s8 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-s8 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-s8 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-s8 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-s8 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-s8 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-s8 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-s8 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-s8 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-s8 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-s8 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-s8 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-s8 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-s8 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-s8 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-s8 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-s8 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-s8 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-s8 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-s8 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-s8 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-s8 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-s8 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-s8 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-s8 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-s8 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-s8 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-s8 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-s8 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-s8 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-s8 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-s8 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-s8 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-s8 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-s8 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-s8 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-s8 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-s8 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-s8 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-s8 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-s8 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-s8 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-s8 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-s8 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-s8 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-s8 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-s8 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-s8 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-s8 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-s8 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-s8 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-s8 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-s8 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-s8 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-s8 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-s8 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-s8 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-s8 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-s8 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-s8 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-s8 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-s8 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-s8 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-s8 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-s8 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-s8 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-s8 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-s8 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-s8 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-s8 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-s8 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-s8 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-s8 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-s8 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-s8 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-s8 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-s8 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-s8 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-s8 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-s8 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-s8 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-s8 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-s8 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-s8 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-s8 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-s8 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-s8 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-s8 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-s8 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-s8 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-s8 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-s8 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-s8 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-s8 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-s8 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-s8 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-s8 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-s8 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-s8 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-s8 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-s8 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-s8 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-s8 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-s8 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-s8 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-s8 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-s8 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-s8 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-s8 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-s8 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-s8 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-s8 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-s8 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-s8 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-s8 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-s8 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-s8 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-s8 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-s8 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-s8 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-s8 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-s8 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-s8 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-s8 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-s8 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-s8 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-s8 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-s8 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-s8 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-s8 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-s8 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-s8 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-s8 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-s8 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-s8 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-s8 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-s8 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-s8 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-s8 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-s8 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-s8 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-s8 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-s8 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-s8 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-s8 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-s8 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-s8 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-s8 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-s8 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-s8 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-s8 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-s8 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-s8 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-s8 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-s8 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-s8 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-s8 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-s8 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-s8 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-s8 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-s8 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-s8 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-s8 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-s8 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-s8 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-s8 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-s8 body,

#custom-html-s8 button,

#custom-html-s8 input,

#custom-html-s8 select,

#custom-html-s8 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-s8 h1,

#custom-html-s8 h2,

#custom-html-s8 h3,

#custom-html-s8 h4,

#custom-html-s8 h5,

#custom-html-s8 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-s8 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-s8 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-s8 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-s8 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-s8 .navbar-main .navbar-nav > .active > a,

#custom-html-s8 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-s8 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-s8 .navbar-main .navbar-nav > .open > a,

#custom-html-s8 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-s8 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-s8 .navbar-main .navbar-nav > li > a:focus,

#custom-html-s8 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-s8 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-s8 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-s8 .navbar-header {

    float: none;

  }

  #custom-html-s8 .navbar-left,

  #custom-html-s8 .navbar-right {

    float: none !important;

  }

  #custom-html-s8 .navbar-toggle {

    display: block;

  }

  #custom-html-s8 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-s8 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-s8 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-s8 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-s8 .navbar-nav > li {

    float: none;

  }

  #custom-html-s8 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-s8 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-s8 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-s8 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-s8 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-s8 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-s8 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-s8 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-s8 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-s8 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-s8 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-s8 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-s8 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-s8 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-s8 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-s8 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-s8 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-s8 a.list-group-item.active,

#custom-html-s8 a.list-group-item.active:focus,

#custom-html-s8 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-s8 .dropdown-menu > li > a:focus,

#custom-html-s8 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-s8 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-s8 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-s8 body,

#custom-html-s8 html {

  height: 100%;

}

#custom-html-s8 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-s8 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-s8 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-s8 section#header .search {

  margin: 20px 0;

}

#custom-html-s8 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-s8 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-s8 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-s8 section#main-content {

  margin-bottom: 60px;

}

#custom-html-s8 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-s8 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-s8 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-s8 section#footer {

    line-height: 32px;

  }

}

#custom-html-s8 section#footer .back-to-top {

  float: right;

}

#custom-html-s8 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-s8 .adminreturndiv {

  display: none !important;

}

#custom-html-s8 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-s8 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-s8 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-s8 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-s8 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-s8 .navbar-main .navbar-toggle:focus,

#custom-html-s8 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-s8 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-s8 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-s8 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-s8 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-s8 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-s8 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-s8 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-s8 .h1,

  #custom-html-s8 h1 {

    font-size: 26px;

  }

  #custom-html-s8 .h2,

  #custom-html-s8 h2 {

    font-size: 20px;

  }

  #custom-html-s8 .h3,

  #custom-html-s8 h3 {

    font-size: 16px;

  }

  #custom-html-s8 .h4,

  #custom-html-s8 h4 {

    font-size: 14px;

  }

  #custom-html-s8 .h5,

  #custom-html-s8 h5 {

    font-size: 12px;

  }

  #custom-html-s8 .h6,

  #custom-html-s8 h6 {

    font-size: 11px;

  }

  #custom-html-s8 div.header-lined small {

    display: none;

  }

  #custom-html-s8 .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-s8 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-s8 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-s8 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-s8 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-s8 div.credit-card {

    max-width: 250px;

  }

  #custom-html-s8 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-s8 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-s8 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-s8 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-s8 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-s8 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-s8 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-s8 .margin-10 {

  margin: 10px;

}

#custom-html-s8 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-s8 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-s8 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-s8 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-s8 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-s8 .input-inline {

  display: inline-block;

}

#custom-html-s8 .input-inline-100 {

  width: 100px;

}

#custom-html-s8 .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-s8 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-s8 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-s8 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-s8 i.icon-rss {

  color: #ff6600;

}

#custom-html-s8 section#main-menu {

  background-color: #000000;

}

#custom-html-s8 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-s8 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-s8 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-s8 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-s8 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-s8 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-s8 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-s8 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-s8 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-s8 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-s8 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-s8 section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-s8 .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-s8 .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-s8 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-s8 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-s8 .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-s8 #stepResults {

    font-size: 14px;

  }

  #custom-html-s8 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-s8 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-s8 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-s8 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-s8 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-s8 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-s8 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-s8 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-s8 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-s8 .home-shortcuts li span {

  display: none;

}

#custom-html-s8 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-s8 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-s8 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-s8 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-s8 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-s8 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-s8 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-s8 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-s8 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-s8 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-s8 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-s8 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-s8 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-s8 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-s8 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-s8 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s8 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-s8 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-s8 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-s8 .tiles .tile a {

  text-decoration: none;

}

#custom-html-s8 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-s8 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-s8 .tiles .tile:last-child {

  border: 0;

}

#custom-html-s8 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-s8 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-s8 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-s8 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-s8 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-s8 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-s8 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-s8 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-s8 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-s8 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-s8 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-s8 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-s8 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-s8 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-s8 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-s8 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-s8 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-s8 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-s8 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-s8 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-s8 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-s8 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-s8 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-s8 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-s8 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-s8 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-s8 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-s8 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-s8 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-s8 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-s8 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-s8 .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-s8 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-s8 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-s8 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-s8 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-s8 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-s8 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-s8 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-s8 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-s8 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-s8 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-s8 ul.top-nav > li,

#custom-html-s8 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-s8 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-s8 ul.top-nav > li:active > a,

#custom-html-s8 ul.top-nav > li:focus > a,

#custom-html-s8 ul.top-nav > li:hover > a,

#custom-html-s8 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-s8 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-s8 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-s8 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-s8 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-s8 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-s8 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-s8 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-s8 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-s8 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-s8 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-s8 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-s8 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-s8 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-s8 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-s8 .domain-check-availability {

  width: 100px;

}

#custom-html-s8 .domain-step-options {

  min-height: 300px;

}

#custom-html-s8 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-s8 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-s8 .domain-checker-invalid,

#custom-html-s8 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-s8 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-s8 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-s8 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-s8 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-s8 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-s8 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-s8 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-s8 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-s8 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-s8 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-s8 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-s8 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-s8 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-s8 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-s8 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-s8 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-s8 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-s8 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-s8 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-s8 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-s8 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-s8 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-s8 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-s8 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-s8 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-s8 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-s8 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-s8 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-s8 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-s8 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-s8 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-s8 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-s8 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-s8 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-s8 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-s8 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-s8 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-s8 div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-s8 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-s8 .product-status-pending {

  background-color: #f89406;

}

#custom-html-s8 .product-status-active {

  background-color: #46a546;

}

#custom-html-s8 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-s8 .product-status-cancelled,

#custom-html-s8 .product-status-terminated {

  background-color: #666666;

}

#custom-html-s8 .product-status-fraud {

  background-color: #000000;

}

#custom-html-s8 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-s8 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-s8 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-s8 .ssl-inactive {

  cursor: pointer;

}

#custom-html-s8 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-s8 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-s8 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-s8 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-s8 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-s8 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-s8 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-s8 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-s8 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-s8 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-s8 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-s8 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-s8 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-s8 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-s8 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-s8 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-s8 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-s8 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-s8 .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-s8 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-s8 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-s8 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-s8 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-s8 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-s8 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-s8 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-s8 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-s8 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-s8 .status-pending {

  color: #d9534f;

}

#custom-html-s8 .status-pending.transfer {

  color: #a68500;

}

#custom-html-s8 .status-active,

#custom-html-s8 .status-completed,

#custom-html-s8 .status-open {

  color: #3fad46;

}

#custom-html-s8 .status-suspended {

  color: #f0ad4e;

}

#custom-html-s8 .status-customer-reply {

  color: #ff6600;

}

#custom-html-s8 .status-answered,

#custom-html-s8 .status-fraud {

  color: #000000;

}

#custom-html-s8 .status-expired,

#custom-html-s8 .status-transferred.away {

  color: #004258;

}

#custom-html-s8 .status-cancelled {

  color: #87939f;

}

#custom-html-s8 .status-terminated {

  color: #666666;

}

#custom-html-s8 .status-onhold {

  color: #224488;

}

#custom-html-s8 .status-inprogress {

  color: #cc0000;

}

#custom-html-s8 .status-closed {

  color: #888888;

}

#custom-html-s8 .status-paid {

  color: #498302;

}

#custom-html-s8 .status-unpaid {

  color: #ed3e48;

}

#custom-html-s8 .status-collections {

  color: #9a141e;

}

#custom-html-s8 .status-refunded {

  color: #319fc3;

}

#custom-html-s8 .status-delivered {

  color: #224488;

}

#custom-html-s8 .status-accepted {

  color: #498302;

}

#custom-html-s8 .status-dead,

#custom-html-s8 .status-lost {

  color: #000000;

}

#custom-html-s8 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-s8 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-s8 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-s8 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-s8 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-s8 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-s8 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-s8 .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-s8 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-s8 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-s8 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-s8 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-s8 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-s8 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-s8 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-s8 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-s8 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-s8 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-s8 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-s8 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-s8 .ticket-reply .rating,

#custom-html-s8 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-s8 .ticket-reply .rating span.star,

#custom-html-s8 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-s8 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-s8 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-s8 .ticket-reply .rating span.star:before,

#custom-html-s8 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-s8 .ticket-reply .rating span.star:hover:before,

#custom-html-s8 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-s8 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-s8 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-s8 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-s8 .ticket-reply .clear {

  clear: both;

}

#custom-html-s8 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-s8 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-s8 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-s8 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-s8 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-s8 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-s8 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-s8 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-s8 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-s8 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-s8 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-s8 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-s8 .popover-user-notifications ul li i.far,

#custom-html-s8 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-s8 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-s8 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-s8 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-s8 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-s8 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-s8 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-s8 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-s8 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-s8 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-s8 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-s8 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-s8 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-s8 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-s8 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-s8 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-s8 div.credit-card div.end {

  clear: both;

}

#custom-html-s8 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-s8 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-s8 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-s8 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-s8 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-s8 .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-s8 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-s8 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-s8 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-s8 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-s8 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-s8 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-s8 .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-s8 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-s8 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-s8 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-s8 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-s8 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-s8 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-s8 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-s8 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-s8 .kb-category a small {

  color: #888888;

}

#custom-html-s8 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-s8 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-s8 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-s8 .kbarticles a.admin-inline-edit,

#custom-html-s8 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-s8 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-s8 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-s8 .kb-article-title h2 {

  margin: 0;

}

#custom-html-s8 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-s8 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-s8 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-s8 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-s8 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-s8 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-s8 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-s8 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-s8 #stepResults {

  font-size: 20px;

}

#custom-html-s8 #stepResults .label {

  font-size: 20px;

}

#custom-html-s8 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-s8 h3.with-badge i,

#custom-html-s8 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-s8 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-s8 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-s8 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-s8 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-s8 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-s8 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-s8 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-s8 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-s8 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-s8 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-s8 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-s8 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-s8 .login-popover {

  font-size: 12px;

}

#custom-html-s8 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-s8 .login-popover hr {

  margin: 5px 0;

}

#custom-html-s8 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-s8 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-s8 .error-container {

  text-align: center;

}

#custom-html-s8 .error-container h1 {

  margin-top: 40px;

}

#custom-html-s8 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-s8 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-s8 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-s8 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-s8 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-s8 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-s8 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-s8 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-s8 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-s8 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-s8 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-s8 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-s8 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-s8 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-s8 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-s8 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-s8 .email-verification .btn:active,

#custom-html-s8 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-s8 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-s8 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-s8 .email-verification .far,

#custom-html-s8 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-s8 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-s8 .email-verification.success .far,

#custom-html-s8 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-s8 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-s8 .email-verification.failed .far,

#custom-html-s8 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-s8 .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-s8 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-s8 .md-editor > .md-preview,

#custom-html-s8 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-s8 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s8 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-s8 .small-font {

  font-size: 0.9em;

}

#custom-html-s8 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-s8 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-s8 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-s8 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-s8 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-s8 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-s8 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-s8 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-s8 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-s8 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-s8 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-s8 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-s8 .panel-heading i.fab,

#custom-html-s8 .panel-heading i.fal,

#custom-html-s8 .panel-heading i.far,

#custom-html-s8 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-s8 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-s8 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-s8 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-s8 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-s8 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-s8 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-s8 .panel-sidebar .list-group-item.disabled,

#custom-html-s8 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-s8 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-s8 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-s8 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-s8 .panel-sidebar a.list-group-item.active,

#custom-html-s8 .panel-sidebar a.list-group-item.active:focus,

#custom-html-s8 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-s8 .panel-sidebar a.list-group-item.active i,

#custom-html-s8 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-s8 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-s8 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-s8 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-s8 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-s8 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-s8 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-s8 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-s8 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-s8 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-s8 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-s8 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-s8 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-s8 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-s8 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-s8 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-s8 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-s8 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-s8 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-s8 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-s8 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-s8 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-s8 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-s8 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-s8 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-s8 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-s8 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-s8 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-s8 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-s8 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-s8 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-s8 .promo-banner p {

  margin: 5px 0;

}

#custom-html-s8 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-s8 .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-s8 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-s8 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-s8 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-s8 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-s8 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-s8 .promo-banner-slim {

  padding: 10px;

}

#custom-html-s8 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-s8 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-s8 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-s8 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-s8 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-s8 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-s8 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-s8 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-s8 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-s8 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-s8 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-s8 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-s8 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-s8 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-s8 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-s8 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-s8 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-s8 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-s8 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-s8 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-s8 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-s8 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-s8 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-s8 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-s8 .panel-mc-sso .btn,

#custom-html-s8 .panel-mc-sso .form-control,

#custom-html-s8 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-s8 .panel-mc-sso small {

  display: block;

}

#custom-html-s8 .social-signin-btns {

  text-align: center;

}

#custom-html-s8 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-s8 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-s8 .btn-social i.far,

#custom-html-s8 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-facebook.active,

#custom-html-s8 .btn-facebook:active,

#custom-html-s8 .btn-facebook:focus,

#custom-html-s8 .btn-facebook:hover,

#custom-html-s8 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-facebook.active,

#custom-html-s8 .btn-facebook:active,

#custom-html-s8 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-s8 .btn-facebook.disabled,

#custom-html-s8 .btn-facebook.disabled.active,

#custom-html-s8 .btn-facebook.disabled:active,

#custom-html-s8 .btn-facebook.disabled:focus,

#custom-html-s8 .btn-facebook.disabled:hover,

#custom-html-s8 .btn-facebook[disabled],

#custom-html-s8 .btn-facebook[disabled].active,

#custom-html-s8 .btn-facebook[disabled]:active,

#custom-html-s8 .btn-facebook[disabled]:focus,

#custom-html-s8 .btn-facebook[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-facebook,

#custom-html-s8 fieldset[disabled] .btn-facebook.active,

#custom-html-s8 fieldset[disabled] .btn-facebook:active,

#custom-html-s8 fieldset[disabled] .btn-facebook:focus,

#custom-html-s8 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-google.active,

#custom-html-s8 .btn-google:active,

#custom-html-s8 .btn-google:focus,

#custom-html-s8 .btn-google:hover,

#custom-html-s8 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-google.active,

#custom-html-s8 .btn-google:active,

#custom-html-s8 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-s8 .btn-google-plus.disabled.active,

#custom-html-s8 .btn-google-plus.disabled:active,

#custom-html-s8 .btn-google-plus.disabled:focus,

#custom-html-s8 .btn-google-plus[disabled].active,

#custom-html-s8 .btn-google-plus[disabled]:active,

#custom-html-s8 .btn-google-plus[disabled]:focus,

#custom-html-s8 .btn-google-plus[disabled]:hover,

#custom-html-s8 .btn-google.disabled,

#custom-html-s8 .btn-google.disabled:hover,

#custom-html-s8 .btn-google[disabled],

#custom-html-s8 fieldset[disabled] .btn-google,

#custom-html-s8 fieldset[disabled] .btn-google-plus.active,

#custom-html-s8 fieldset[disabled] .btn-google-plus:active,

#custom-html-s8 fieldset[disabled] .btn-google-plus:focus,

#custom-html-s8 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-twitter.active,

#custom-html-s8 .btn-twitter:active,

#custom-html-s8 .btn-twitter:focus,

#custom-html-s8 .btn-twitter:hover,

#custom-html-s8 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-twitter.active,

#custom-html-s8 .btn-twitter:active,

#custom-html-s8 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-s8 .btn-twitter.disabled,

#custom-html-s8 .btn-twitter.disabled.active,

#custom-html-s8 .btn-twitter.disabled:active,

#custom-html-s8 .btn-twitter.disabled:focus,

#custom-html-s8 .btn-twitter.disabled:hover,

#custom-html-s8 .btn-twitter[disabled],

#custom-html-s8 .btn-twitter[disabled].active,

#custom-html-s8 .btn-twitter[disabled]:active,

#custom-html-s8 .btn-twitter[disabled]:focus,

#custom-html-s8 .btn-twitter[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-twitter,

#custom-html-s8 fieldset[disabled] .btn-twitter.active,

#custom-html-s8 fieldset[disabled] .btn-twitter:active,

#custom-html-s8 fieldset[disabled] .btn-twitter:focus,

#custom-html-s8 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .providerPreLinking {

  min-height: 52px;

}

#custom-html-s8 .providerLinkingFeedback {

  display: none;

}

#custom-html-s8 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-s8 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-s8 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-s8 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-s8 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-s8 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-s8 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-s8 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-s8 #registration .field,

#custom-html-s8 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-s8 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-s8 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-s8 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-s8 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s8 #registration textarea.field {

  height: auto;

}

#custom-html-s8 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-s8 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-s8 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-s8 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-s8 #registration .field[disabled],

#custom-html-s8 #registration .field[readonly],

#custom-html-s8 #registration .form-control[disabled],

#custom-html-s8 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-s8 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-s8 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-s8 .upgrade .product-to-be-upgraded h4,

#custom-html-s8 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-s8 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-s8 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-s8 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-s8 .upgrade .products .product .current,

#custom-html-s8 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-s8 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-s8 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-s8 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-s8 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-s8 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-s8 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-s8 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-s8 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-s8 .upgrade .products .far,

#custom-html-s8 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-s8 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-s8 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-s8 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-s8 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-s8 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-s8 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .bootstrap-switch input[type=checkbox],

#custom-html-s8 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-s8 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-s8 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-s8 .md-editor .md-footer,

#custom-html-s8 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-s8 .md-editor > .md-header {

  margin: 0;

}

#custom-html-s8 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-s8 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-s8 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-s8 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-s8 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-s8 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-s8 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-s8 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-input,

#custom-html-s8 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-s8 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-s8 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-s8 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-s8 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-s8 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-s8 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-s8 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-s8 table.dataTable td,

#custom-html-s8 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-s8 table.dataTable td.dataTables_empty,

#custom-html-s8 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-s8 table.dataTable.nowrap td,

#custom-html-s8 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-s8 table.dataTable thead > tr > td.sorting,

#custom-html-s8 table.dataTable thead > tr > td.sorting_asc,

#custom-html-s8 table.dataTable thead > tr > td.sorting_desc,

#custom-html-s8 table.dataTable thead > tr > th.sorting,

#custom-html-s8 table.dataTable thead > tr > th.sorting_asc,

#custom-html-s8 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-s8 table.dataTable thead > tr > td:active,

#custom-html-s8 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-s8 table.dataTable thead .sorting,

#custom-html-s8 table.dataTable thead .sorting_asc,

#custom-html-s8 table.dataTable thead .sorting_asc_disabled,

#custom-html-s8 table.dataTable thead .sorting_desc,

#custom-html-s8 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-s8 table.dataTable thead .sorting:after,

#custom-html-s8 table.dataTable thead .sorting_asc:after,

#custom-html-s8 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-s8 table.dataTable thead .sorting_desc:after,

#custom-html-s8 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-s8 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-s8 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-s8 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-s8 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-s8 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-s8 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-s8 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-s8 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-s8 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-s8 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-s8 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-s8 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-s8 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-s8 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-s8 table.dataTable.table-condensed .sorting:after,

#custom-html-s8 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-s8 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-s8 table.table-bordered.dataTable td,

#custom-html-s8 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-s8 table.table-bordered.dataTable td:last-child,

#custom-html-s8 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-s8 table.table-bordered.dataTable tbody td,

#custom-html-s8 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-s8 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-s8 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-s8 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-s8 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-s8 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-s8 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-s8 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-s8 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-s8 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-s8 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-s8 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-s8 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-s8 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-s8 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-s8 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-s8 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-s8 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-s8 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-s8 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-s8 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-s8 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-s8 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-s8 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-s8 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-s8 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-s8 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-s8 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-s8 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-s8 .multiselect-container > li {

  padding: 0;

}

#custom-html-s8 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-s8 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-s8 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-s8 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-s8 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-s8 .multiselect-container > li > a > label.checkbox,

#custom-html-s8 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-s8 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-s8 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s8 .form-inline .multiselect-container label.checkbox,

#custom-html-s8 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-s8 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-s8 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-s8 html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-s8 body {

  margin: 0;

}

#custom-html-s8 article,

#custom-html-s8 aside,

#custom-html-s8 details,

#custom-html-s8 figcaption,

#custom-html-s8 figure,

#custom-html-s8 footer,

#custom-html-s8 header,

#custom-html-s8 hgroup,

#custom-html-s8 main,

#custom-html-s8 menu,

#custom-html-s8 nav,

#custom-html-s8 section,

#custom-html-s8 summary {

  display: block;

}

#custom-html-s8 audio,

#custom-html-s8 canvas,

#custom-html-s8 progress,

#custom-html-s8 video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-s8 audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-s8 [hidden],

#custom-html-s8 template {

  display: none;

}

#custom-html-s8 a {

  background-color: transparent;

}

#custom-html-s8 a:active,

#custom-html-s8 a:hover {

  outline: 0;

}

#custom-html-s8 abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-s8 b,

#custom-html-s8 strong {

  font-weight: 700;

}

#custom-html-s8 dfn {

  font-style: italic;

}

#custom-html-s8 h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-s8 mark {

  color: #000;

  background: #ffff00;

}

#custom-html-s8 small {

  font-size: 80%;

}

#custom-html-s8 sub,

#custom-html-s8 sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-s8 sup {

  top: -0.5em;

}

#custom-html-s8 sub {

  bottom: -0.25em;

}

#custom-html-s8 img {

  border: 0;

}

#custom-html-s8 svg:not(:root) {

  overflow: hidden;

}

#custom-html-s8 figure {

  margin: 1em 40px;

}

#custom-html-s8 hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-s8 pre {

  overflow: auto;

}

#custom-html-s8 code,

#custom-html-s8 kbd,

#custom-html-s8 pre,

#custom-html-s8 samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-s8 button,

#custom-html-s8 input,

#custom-html-s8 optgroup,

#custom-html-s8 select,

#custom-html-s8 textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-s8 button {

  overflow: visible;

}

#custom-html-s8 button,

#custom-html-s8 select {

  text-transform: none;

}

#custom-html-s8 button,

#custom-html-s8 html input[type=button],

#custom-html-s8 input[type=reset],

#custom-html-s8 input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-s8 button[disabled],

#custom-html-s8 html input[disabled] {

  cursor: default;

}

#custom-html-s8 button::-moz-focus-inner,

#custom-html-s8 input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-s8 input {

  line-height: normal;

}

#custom-html-s8 input[type=checkbox],

#custom-html-s8 input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-s8 input[type=number]::-webkit-inner-spin-button,


#custom-html-s8 input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-s8 input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-s8 input[type=search]::-webkit-search-cancel-button,

#custom-html-s8 input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-s8 fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-s8 legend {

  padding: 0;

  border: 0;

}

#custom-html-s8 textarea {

  overflow: auto;

}

#custom-html-s8 optgroup {

  font-weight: 700;

}

#custom-html-s8 table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-s8 td,

#custom-html-s8 th {

  padding: 0;

}

@media print {

  #custom-html-s8 *,

  #custom-html-s8 :after,

  #custom-html-s8 :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-s8 a,

  #custom-html-s8 a:visited {

    text-decoration: underline;

  }

  #custom-html-s8 a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-s8 abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-s8 a[href^="#"]:after,

  #custom-html-s8 a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-s8 blockquote,

  #custom-html-s8 pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-s8 thead {

    display: table-header-group;

  }

  #custom-html-s8 img,

  #custom-html-s8 tr {

    page-break-inside: avoid;

  }

  #custom-html-s8 img {

    max-width: 100% !important;

  }

  #custom-html-s8 h2,

  #custom-html-s8 h3,

  #custom-html-s8 p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-s8 h2,

  #custom-html-s8 h3 {

    page-break-after: avoid;

  }

  #custom-html-s8 .navbar {

    display: none;

  }

  #custom-html-s8 .btn > .caret,

  #custom-html-s8 .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-s8 .label {

    border: 1px solid #000000;

  }

  #custom-html-s8 .table {

    border-collapse: collapse !important;

  }

  #custom-html-s8 .table td,

  #custom-html-s8 .table th {

    background-color: #ffffff !important;

  }

  #custom-html-s8 .table-bordered td,

  #custom-html-s8 .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-s8 .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-s8 .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-s8 .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-s8 .glyphicon-eur:before,

#custom-html-s8 .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-s8 .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-s8 .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-s8 .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-s8 .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-s8 .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-s8 .glyphicon-music:before {

  content: "\e002";

}

#custom-html-s8 .glyphicon-search:before {

  content: "\e003";

}

#custom-html-s8 .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-s8 .glyphicon-star:before {

  content: "\e006";

}

#custom-html-s8 .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-s8 .glyphicon-user:before {

  content: "\e008";

}

#custom-html-s8 .glyphicon-film:before {

  content: "\e009";

}

#custom-html-s8 .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-s8 .glyphicon-th:before {

  content: "\e011";

}

#custom-html-s8 .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-s8 .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-s8 .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-s8 .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-s8 .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-s8 .glyphicon-off:before {

  content: "\e017";

}

#custom-html-s8 .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-s8 .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-s8 .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-s8 .glyphicon-home:before {

  content: "\e021";

}

#custom-html-s8 .glyphicon-file:before {

  content: "\e022";

}

#custom-html-s8 .glyphicon-time:before {

  content: "\e023";

}

#custom-html-s8 .glyphicon-road:before {

  content: "\e024";

}

#custom-html-s8 .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-s8 .glyphicon-download:before {

  content: "\e026";

}

#custom-html-s8 .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-s8 .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-s8 .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-s8 .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-s8 .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-s8 .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-s8 .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-s8 .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-s8 .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-s8 .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-s8 .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-s8 .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-s8 .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-s8 .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-s8 .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-s8 .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-s8 .glyphicon-book:before {

  content: "\e043";

}

#custom-html-s8 .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-s8 .glyphicon-print:before {

  content: "\e045";

}

#custom-html-s8 .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-s8 .glyphicon-font:before {

  content: "\e047";

}

#custom-html-s8 .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-s8 .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-s8 .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-s8 .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-s8 .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-s8 .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-s8 .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-s8 .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-s8 .glyphicon-list:before {

  content: "\e056";

}

#custom-html-s8 .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-s8 .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-s8 .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-s8 .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-s8 .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-s8 .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-s8 .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-s8 .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-s8 .glyphicon-share:before {

  content: "\e066";

}

#custom-html-s8 .glyphicon-check:before {

  content: "\e067";

}

#custom-html-s8 .glyphicon-move:before {

  content: "\e068";

}

#custom-html-s8 .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-s8 .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-s8 .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-s8 .glyphicon-play:before {

  content: "\e072";

}

#custom-html-s8 .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-s8 .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-s8 .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-s8 .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-s8 .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-s8 .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-s8 .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-s8 .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-s8 .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-s8 .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-s8 .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-s8 .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-s8 .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-s8 .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-s8 .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-s8 .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-s8 .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-s8 .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-s8 .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-s8 .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-s8 .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-s8 .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-s8 .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-s8 .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-s8 .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-s8 .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-s8 .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-s8 .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-s8 .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-s8 .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-s8 .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-s8 .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-s8 .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-s8 .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-s8 .glyphicon-random:before {

  content: "\e110";

}

#custom-html-s8 .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-s8 .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-s8 .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-s8 .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-s8 .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-s8 .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-s8 .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-s8 .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-s8 .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-s8 .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-s8 .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-s8 .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-s8 .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-s8 .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-s8 .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-s8 .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-s8 .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-s8 .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-s8 .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-s8 .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-s8 .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-s8 .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-s8 .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-s8 .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-s8 .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-s8 .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-s8 .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-s8 .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-s8 .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-s8 .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-s8 .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-s8 .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-s8 .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-s8 .glyphicon-link:before {

  content: "\e144";

}

#custom-html-s8 .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-s8 .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-s8 .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-s8 .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-s8 .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-s8 .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-s8 .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-s8 .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-s8 .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-s8 .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-s8 .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-s8 .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-s8 .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-s8 .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-s8 .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-s8 .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-s8 .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-s8 .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-s8 .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-s8 .glyphicon-record:before {

  content: "\e165";

}

#custom-html-s8 .glyphicon-save:before {

  content: "\e166";

}

#custom-html-s8 .glyphicon-open:before {

  content: "\e167";

}

#custom-html-s8 .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-s8 .glyphicon-import:before {

  content: "\e169";

}

#custom-html-s8 .glyphicon-export:before {

  content: "\e170";

}

#custom-html-s8 .glyphicon-send:before {

  content: "\e171";

}

#custom-html-s8 .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-s8 .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-s8 .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-s8 .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-s8 .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-s8 .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-s8 .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-s8 .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-s8 .glyphicon-header:before {

  content: "\e180";

}

#custom-html-s8 .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-s8 .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-s8 .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-s8 .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-s8 .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-s8 .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-s8 .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-s8 .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-s8 .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-s8 .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-s8 .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-s8 .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-s8 .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-s8 .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-s8 .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-s8 .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-s8 .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-s8 .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-s8 .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-s8 .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-s8 .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-s8 .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-s8 .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-s8 .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-s8 .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-s8 .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-s8 .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-s8 .glyphicon-king:before {

  content: "\e211";

}

#custom-html-s8 .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-s8 .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-s8 .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-s8 .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-s8 .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-s8 .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-s8 .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-s8 .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-s8 .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-s8 .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-s8 .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-s8 .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-s8 .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-s8 .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-s8 .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-s8 .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-s8 .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-s8 .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-s8 .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-s8 .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-s8 .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-s8 .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-s8 .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-s8 .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-s8 .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-s8 .glyphicon-education:before {

  content: "\e233";

}

#custom-html-s8 .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-s8 .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-s8 .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-s8 .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-s8 .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-s8 .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-s8 .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-s8 .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-s8 .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-s8 .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-s8 .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-s8 .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-s8 .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-s8 .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-s8 .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-s8 .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-s8 .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-s8 .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-s8 .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-s8 .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-s8 .glyphicon-console:before {

  content: "\e254";

}

#custom-html-s8 .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-s8 .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-s8 .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-s8 .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-s8 .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-s8 .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-s8 * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-s8 :after,

#custom-html-s8 :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-s8 html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-s8 body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-s8 button,

#custom-html-s8 input,

#custom-html-s8 select,

#custom-html-s8 textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-s8 a {

  color: #000;

  text-decoration: none;

}

#custom-html-s8 a:focus,

#custom-html-s8 a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-s8 a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-s8 figure {

  margin: 0;

}

#custom-html-s8 img {

  vertical-align: middle;

}

#custom-html-s8 .carousel-inner > .item > a > img,

#custom-html-s8 .carousel-inner > .item > img,

#custom-html-s8 .img-responsive,

#custom-html-s8 .thumbnail a > img,

#custom-html-s8 .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-s8 .img-rounded {

  border-radius: 6px;

}

#custom-html-s8 .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-s8 .img-circle {

  border-radius: 50%;

}

#custom-html-s8 hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-s8 .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-s8 .sr-only-focusable:active,

#custom-html-s8 .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-s8 [role=button] {

  cursor: pointer;

}

#custom-html-s8 .h1,

#custom-html-s8 .h2,

#custom-html-s8 .h3,

#custom-html-s8 .h4,

#custom-html-s8 .h5,

#custom-html-s8 .h6,

#custom-html-s8 h1,

#custom-html-s8 h2,

#custom-html-s8 h3,

#custom-html-s8 h4,

#custom-html-s8 h5,

#custom-html-s8 h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-s8 .h1 .small,

#custom-html-s8 .h1 small,

#custom-html-s8 .h2 .small,

#custom-html-s8 .h2 small,

#custom-html-s8 .h3 .small,

#custom-html-s8 .h3 small,

#custom-html-s8 .h4 .small,

#custom-html-s8 .h4 small,

#custom-html-s8 .h5 .small,

#custom-html-s8 .h5 small,

#custom-html-s8 .h6 .small,

#custom-html-s8 .h6 small,

#custom-html-s8 h1 .small,

#custom-html-s8 h1 small,

#custom-html-s8 h2 .small,

#custom-html-s8 h2 small,

#custom-html-s8 h3 .small,

#custom-html-s8 h3 small,

#custom-html-s8 h4 .small,

#custom-html-s8 h4 small,

#custom-html-s8 h5 .small,

#custom-html-s8 h5 small,

#custom-html-s8 h6 .small,

#custom-html-s8 h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-s8 .h1,

#custom-html-s8 .h2,

#custom-html-s8 .h3,

#custom-html-s8 h1,

#custom-html-s8 h2,

#custom-html-s8 h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-s8 .h1 .small,

#custom-html-s8 .h1 small,

#custom-html-s8 .h2 .small,

#custom-html-s8 .h2 small,

#custom-html-s8 .h3 .small,

#custom-html-s8 .h3 small,

#custom-html-s8 h1 .small,

#custom-html-s8 h1 small,

#custom-html-s8 h2 .small,

#custom-html-s8 h2 small,

#custom-html-s8 h3 .small,

#custom-html-s8 h3 small {

  font-size: 65%;

}

#custom-html-s8 .h4,

#custom-html-s8 .h5,

#custom-html-s8 .h6,

#custom-html-s8 h4,

#custom-html-s8 h5,

#custom-html-s8 h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-s8 .h4 .small,

#custom-html-s8 .h4 small,

#custom-html-s8 .h5 .small,

#custom-html-s8 .h5 small,

#custom-html-s8 .h6 .small,

#custom-html-s8 .h6 small,

#custom-html-s8 h4 .small,

#custom-html-s8 h4 small,

#custom-html-s8 h5 .small,

#custom-html-s8 h5 small,

#custom-html-s8 h6 .small,

#custom-html-s8 h6 small {

  font-size: 75%;

}

#custom-html-s8 .h1,

#custom-html-s8 h1 {

  font-size: 36px;

}

#custom-html-s8 .h2,

#custom-html-s8 h2 {

  font-size: 30px;

}

#custom-html-s8 .h3,

#custom-html-s8 h3 {

  font-size: 24px;

}

#custom-html-s8 .h4,

#custom-html-s8 h4 {

  font-size: 18px;

}

#custom-html-s8 .h5,

#custom-html-s8 h5 {

  font-size: 14px;

}

#custom-html-s8 .h6,

#custom-html-s8 h6 {

  font-size: 12px;

}

#custom-html-s8 p {

  margin: 0 0 10px;

}

#custom-html-s8 .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-s8 .lead {

    font-size: 21px;

  }

}

#custom-html-s8 .small,

#custom-html-s8 small {

  font-size: 85%;

}

#custom-html-s8 .mark,

#custom-html-s8 mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-s8 .text-left {

  text-align: left;

}

#custom-html-s8 .text-right {

  text-align: right;

}

#custom-html-s8 .text-center {

  text-align: center;

}

#custom-html-s8 .text-justify {

  text-align: justify;

}

#custom-html-s8 .text-nowrap {

  white-space: nowrap;

}

#custom-html-s8 .text-lowercase {

  text-transform: lowercase;

}

#custom-html-s8 .text-uppercase {

  text-transform: uppercase;

}

#custom-html-s8 .text-capitalize {

  text-transform: capitalize;

}

#custom-html-s8 .text-muted {

  color: #777777;

}

#custom-html-s8 .text-primary {

  color: #000000;

}

#custom-html-s8 a.text-primary:focus,

#custom-html-s8 a.text-primary:hover {

  color: #000000;

}

#custom-html-s8 .text-success {

  color: #3c763d;

}

#custom-html-s8 a.text-success:focus,

#custom-html-s8 a.text-success:hover {

  color: #2b542c;

}

#custom-html-s8 .text-info {

  color: #31708f;

}

#custom-html-s8 a.text-info:focus,

#custom-html-s8 a.text-info:hover {

  color: #000000;

}

#custom-html-s8 .text-warning {

  color: #8a6d3b;

}

#custom-html-s8 a.text-warning:focus,

#custom-html-s8 a.text-warning:hover {

  color: #66512c;

}

#custom-html-s8 .text-danger {

  color: #a94442;

}

#custom-html-s8 a.text-danger:focus,

#custom-html-s8 a.text-danger:hover {

  color: #843534;

}

#custom-html-s8 .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-s8 a.bg-primary:focus,

#custom-html-s8 a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-s8 .bg-success {

  background-color: #dff0d8;

}

#custom-html-s8 a.bg-success:focus,

#custom-html-s8 a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-s8 .bg-info {

  background-color: #d9edf7;

}

#custom-html-s8 a.bg-info:focus,

#custom-html-s8 a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-s8 .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-s8 a.bg-warning:focus,

#custom-html-s8 a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-s8 .bg-danger {

  background-color: #f2dede;

}

#custom-html-s8 a.bg-danger:focus,

#custom-html-s8 a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-s8 .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-s8 ol,

#custom-html-s8 ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-s8 ol ol,

#custom-html-s8 ol ul,

#custom-html-s8 ul ol,

#custom-html-s8 ul ul {

  margin-bottom: 0;

}

#custom-html-s8 .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-s8 .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-s8 .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-s8 dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-s8 dd,

#custom-html-s8 dt {

  line-height: 1.42857143;

}

#custom-html-s8 dt {

  font-weight: 700;

}

#custom-html-s8 dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-s8 .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-s8 .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-s8 abbr[data-original-title],

#custom-html-s8 abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-s8 .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-s8 blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-s8 blockquote ol:last-child,

#custom-html-s8 blockquote p:last-child,

#custom-html-s8 blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-s8 blockquote .small,

#custom-html-s8 blockquote footer,

#custom-html-s8 blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-s8 blockquote .small:before,

#custom-html-s8 blockquote footer:before,

#custom-html-s8 blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-s8 .blockquote-reverse,

#custom-html-s8 blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-s8 .blockquote-reverse .small:before,

#custom-html-s8 .blockquote-reverse footer:before,

#custom-html-s8 .blockquote-reverse small:before,

#custom-html-s8 blockquote.pull-right .small:before,

#custom-html-s8 blockquote.pull-right footer:before,

#custom-html-s8 blockquote.pull-right small:before {

  content: '';

}

#custom-html-s8 .blockquote-reverse .small:after,

#custom-html-s8 .blockquote-reverse footer:after,

#custom-html-s8 .blockquote-reverse small:after,

#custom-html-s8 blockquote.pull-right .small:after,

#custom-html-s8 blockquote.pull-right footer:after,

#custom-html-s8 blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-s8 address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-s8 code,

#custom-html-s8 kbd,

#custom-html-s8 pre,

#custom-html-s8 samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-s8 code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-s8 kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-s8 kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s8 pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-s8 pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-s8 .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-s8 .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-s8 .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-s8 .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-s8 .container {

    width: 1170px;

  }

}

#custom-html-s8 .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-s8 .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-s8 .col-lg-1,

#custom-html-s8 .col-lg-10,

#custom-html-s8 .col-lg-11,

#custom-html-s8 .col-lg-12,

#custom-html-s8 .col-lg-2,

#custom-html-s8 .col-lg-3,

#custom-html-s8 .col-lg-4,

#custom-html-s8 .col-lg-5,

#custom-html-s8 .col-lg-6,

#custom-html-s8 .col-lg-7,

#custom-html-s8 .col-lg-8,

#custom-html-s8 .col-lg-9,

#custom-html-s8 .col-md-1,

#custom-html-s8 .col-md-10,

#custom-html-s8 .col-md-11,

#custom-html-s8 .col-md-12,

#custom-html-s8 .col-md-2,

#custom-html-s8 .col-md-3,

#custom-html-s8 .col-md-4,

#custom-html-s8 .col-md-5,

#custom-html-s8 .col-md-6,

#custom-html-s8 .col-md-7,

#custom-html-s8 .col-md-8,

#custom-html-s8 .col-md-9,

#custom-html-s8 .col-sm-1,

#custom-html-s8 .col-sm-10,

#custom-html-s8 .col-sm-11,

#custom-html-s8 .col-sm-12,

#custom-html-s8 .col-sm-2,

#custom-html-s8 .col-sm-3,

#custom-html-s8 .col-sm-4,

#custom-html-s8 .col-sm-5,

#custom-html-s8 .col-sm-6,

#custom-html-s8 .col-sm-7,

#custom-html-s8 .col-sm-8,

#custom-html-s8 .col-sm-9,

#custom-html-s8 .col-xs-1,

#custom-html-s8 .col-xs-10,

#custom-html-s8 .col-xs-11,

#custom-html-s8 .col-xs-12,

#custom-html-s8 .col-xs-2,

#custom-html-s8 .col-xs-3,

#custom-html-s8 .col-xs-4,

#custom-html-s8 .col-xs-5,

#custom-html-s8 .col-xs-6,

#custom-html-s8 .col-xs-7,

#custom-html-s8 .col-xs-8,

#custom-html-s8 .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-s8 .col-xs-1,

#custom-html-s8 .col-xs-10,

#custom-html-s8 .col-xs-11,

#custom-html-s8 .col-xs-12,

#custom-html-s8 .col-xs-2,

#custom-html-s8 .col-xs-3,

#custom-html-s8 .col-xs-4,

#custom-html-s8 .col-xs-5,

#custom-html-s8 .col-xs-6,

#custom-html-s8 .col-xs-7,

#custom-html-s8 .col-xs-8,

#custom-html-s8 .col-xs-9 {

  float: left;

}

#custom-html-s8 .col-xs-12 {

  width: 100%;

}

#custom-html-s8 .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-s8 .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-s8 .col-xs-9 {

  width: 75%;

}

#custom-html-s8 .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-s8 .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-s8 .col-xs-6 {

  width: 50%;

}

#custom-html-s8 .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-s8 .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-s8 .col-xs-3 {

  width: 25%;

}

#custom-html-s8 .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-s8 .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-s8 .col-xs-pull-12 {

  right: 100%;

}

#custom-html-s8 .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-s8 .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-s8 .col-xs-pull-9 {

  right: 75%;

}

#custom-html-s8 .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-s8 .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-s8 .col-xs-pull-6 {

  right: 50%;

}

#custom-html-s8 .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-s8 .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-s8 .col-xs-pull-3 {

  right: 25%;

}

#custom-html-s8 .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-s8 .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-s8 .col-xs-pull-0 {

  right: auto;

}

#custom-html-s8 .col-xs-push-12 {

  left: 100%;

}

#custom-html-s8 .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-s8 .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-s8 .col-xs-push-9 {

  left: 75%;

}

#custom-html-s8 .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-s8 .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-s8 .col-xs-push-6 {

  left: 50%;

}

#custom-html-s8 .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-s8 .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-s8 .col-xs-push-3 {

  left: 25%;

}

#custom-html-s8 .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-s8 .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-s8 .col-xs-push-0 {

  left: auto;

}

#custom-html-s8 .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-s8 .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-s8 .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-s8 .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-s8 .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-s8 .col-xs-offset-7 {

  margin-left: 58.33333333%;

}


#custom-html-s8 .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-s8 .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-s8 .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-s8 .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-s8 .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-s8 .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-s8 .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-s8 .col-sm-1,

  #custom-html-s8 .col-sm-10,

  #custom-html-s8 .col-sm-11,

  #custom-html-s8 .col-sm-12,

  #custom-html-s8 .col-sm-2,

  #custom-html-s8 .col-sm-3,

  #custom-html-s8 .col-sm-4,

  #custom-html-s8 .col-sm-5,

  #custom-html-s8 .col-sm-6,

  #custom-html-s8 .col-sm-7,

  #custom-html-s8 .col-sm-8,

  #custom-html-s8 .col-sm-9 {

    float: left;

  }

  #custom-html-s8 .col-sm-12 {

    width: 100%;

  }

  #custom-html-s8 .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-s8 .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-s8 .col-sm-9 {

    width: 75%;

  }

  #custom-html-s8 .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-s8 .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-s8 .col-sm-6 {

    width: 50%;

  }

  #custom-html-s8 .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-s8 .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-s8 .col-sm-3 {

    width: 25%;

  }

  #custom-html-s8 .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-s8 .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-s8 .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-s8 .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-s8 .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-s8 .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-s8 .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-s8 .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-s8 .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-s8 .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-s8 .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-s8 .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-s8 .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-s8 .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-s8 .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-s8 .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-s8 .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-s8 .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-s8 .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-s8 .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-s8 .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-s8 .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-s8 .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-s8 .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-s8 .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-s8 .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-s8 .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-s8 .col-sm-push-0 {

    left: auto;

  }

  #custom-html-s8 .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-s8 .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-s8 .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-s8 .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-s8 .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-s8 .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-s8 .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-s8 .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-s8 .col-sm-offset-4 {


    margin-left: 33.33333333%;

  }

  #custom-html-s8 .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-s8 .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-s8 .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-s8 .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-s8 .col-md-1,

  #custom-html-s8 .col-md-10,

  #custom-html-s8 .col-md-11,

  #custom-html-s8 .col-md-12,

  #custom-html-s8 .col-md-2,

  #custom-html-s8 .col-md-3,

  #custom-html-s8 .col-md-4,

  #custom-html-s8 .col-md-5,

  #custom-html-s8 .col-md-6,

  #custom-html-s8 .col-md-7,

  #custom-html-s8 .col-md-8,

  #custom-html-s8 .col-md-9 {

    float: left;

  }

  #custom-html-s8 .col-md-12 {

    width: 100%;

  }

  #custom-html-s8 .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-s8 .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-s8 .col-md-9 {

    width: 75%;

  }

  #custom-html-s8 .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-s8 .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-s8 .col-md-6 {

    width: 50%;

  }

  #custom-html-s8 .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-s8 .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-s8 .col-md-3 {

    width: 25%;

  }

  #custom-html-s8 .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-s8 .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-s8 .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-s8 .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-s8 .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-s8 .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-s8 .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-s8 .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-s8 .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-s8 .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-s8 .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-s8 .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-s8 .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-s8 .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-s8 .col-md-pull-0 {

    right: auto;

  }

  #custom-html-s8 .col-md-push-12 {

    left: 100%;

  }

  #custom-html-s8 .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-s8 .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-s8 .col-md-push-9 {

    left: 75%;

  }

  #custom-html-s8 .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-s8 .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-s8 .col-md-push-6 {

    left: 50%;

  }

  #custom-html-s8 .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-s8 .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-s8 .col-md-push-3 {

    left: 25%;

  }

  #custom-html-s8 .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-s8 .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-s8 .col-md-push-0 {

    left: auto;

  }

  #custom-html-s8 .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-s8 .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-s8 .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-s8 .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-s8 .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-s8 .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-s8 .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-s8 .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-s8 .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-s8 .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-s8 .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-s8 .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-s8 .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-s8 .col-lg-1,

  #custom-html-s8 .col-lg-10,

  #custom-html-s8 .col-lg-11,

  #custom-html-s8 .col-lg-12,

  #custom-html-s8 .col-lg-2,

  #custom-html-s8 .col-lg-3,

  #custom-html-s8 .col-lg-4,

  #custom-html-s8 .col-lg-5,

  #custom-html-s8 .col-lg-6,

  #custom-html-s8 .col-lg-7,

  #custom-html-s8 .col-lg-8,

  #custom-html-s8 .col-lg-9 {

    float: left;

  }

  #custom-html-s8 .col-lg-12 {

    width: 100%;

  }

  #custom-html-s8 .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-s8 .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-s8 .col-lg-9 {

    width: 75%;

  }

  #custom-html-s8 .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-s8 .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-s8 .col-lg-6 {

    width: 50%;

  }

  #custom-html-s8 .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-s8 .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-s8 .col-lg-3 {

    width: 25%;

  }

  #custom-html-s8 .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-s8 .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-s8 .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-s8 .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-s8 .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-s8 .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-s8 .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-s8 .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-s8 .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-s8 .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-s8 .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-s8 .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-s8 .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-s8 .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-s8 .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-s8 .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-s8 .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-s8 .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-s8 .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-s8 .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-s8 .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-s8 .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-s8 .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-s8 .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-s8 .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-s8 .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-s8 .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-s8 .col-lg-push-0 {

    left: auto;

  }

  #custom-html-s8 .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-s8 .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-s8 .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-s8 .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-s8 .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-s8 .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-s8 .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-s8 .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-s8 .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-s8 .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-s8 .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-s8 .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-s8 .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-s8 table {

  background-color: transparent;

}

#custom-html-s8 caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-s8 th {

  text-align: left;

}

#custom-html-s8 .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-s8 .table > tbody > tr > td,

#custom-html-s8 .table > tbody > tr > th,

#custom-html-s8 .table > tfoot > tr > td,

#custom-html-s8 .table > tfoot > tr > th,

#custom-html-s8 .table > thead > tr > td,

#custom-html-s8 .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-s8 .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-s8 .table > caption + thead > tr:first-child > td,

#custom-html-s8 .table > caption + thead > tr:first-child > th,

#custom-html-s8 .table > colgroup + thead > tr:first-child > td,

#custom-html-s8 .table > colgroup + thead > tr:first-child > th,

#custom-html-s8 .table > thead:first-child > tr:first-child > td,

#custom-html-s8 .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-s8 .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-s8 .table .table {

  background-color: #ffffff;

}

#custom-html-s8 .table-condensed > tbody > tr > td,

#custom-html-s8 .table-condensed > tbody > tr > th,

#custom-html-s8 .table-condensed > tfoot > tr > td,

#custom-html-s8 .table-condensed > tfoot > tr > th,

#custom-html-s8 .table-condensed > thead > tr > td,

#custom-html-s8 .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-s8 .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-s8 .table-bordered > tbody > tr > td,

#custom-html-s8 .table-bordered > tbody > tr > th,

#custom-html-s8 .table-bordered > tfoot > tr > td,

#custom-html-s8 .table-bordered > tfoot > tr > th,

#custom-html-s8 .table-bordered > thead > tr > td,

#custom-html-s8 .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-s8 .table-bordered > thead > tr > td,

#custom-html-s8 .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-s8 .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-s8 .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-s8 table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-s8 table td[class*=col-],

#custom-html-s8 table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-s8 .table > tbody > tr.active > td,

#custom-html-s8 .table > tbody > tr.active > th,

#custom-html-s8 .table > tbody > tr > td.active,

#custom-html-s8 .table > tbody > tr > th.active,

#custom-html-s8 .table > tfoot > tr.active > td,

#custom-html-s8 .table > tfoot > tr.active > th,

#custom-html-s8 .table > tfoot > tr > td.active,

#custom-html-s8 .table > tfoot > tr > th.active,

#custom-html-s8 .table > thead > tr.active > td,

#custom-html-s8 .table > thead > tr.active > th,

#custom-html-s8 .table > thead > tr > td.active,

#custom-html-s8 .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-s8 .table-hover > tbody > tr.active:hover > td,

#custom-html-s8 .table-hover > tbody > tr.active:hover > th,

#custom-html-s8 .table-hover > tbody > tr:hover > .active,

#custom-html-s8 .table-hover > tbody > tr > td.active:hover,

#custom-html-s8 .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-s8 .table > tbody > tr.success > td,

#custom-html-s8 .table > tbody > tr.success > th,

#custom-html-s8 .table > tbody > tr > td.success,

#custom-html-s8 .table > tbody > tr > th.success,

#custom-html-s8 .table > tfoot > tr.success > td,

#custom-html-s8 .table > tfoot > tr.success > th,

#custom-html-s8 .table > tfoot > tr > td.success,

#custom-html-s8 .table > tfoot > tr > th.success,

#custom-html-s8 .table > thead > tr.success > td,

#custom-html-s8 .table > thead > tr.success > th,

#custom-html-s8 .table > thead > tr > td.success,

#custom-html-s8 .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-s8 .table-hover > tbody > tr.success:hover > td,

#custom-html-s8 .table-hover > tbody > tr.success:hover > th,

#custom-html-s8 .table-hover > tbody > tr:hover > .success,

#custom-html-s8 .table-hover > tbody > tr > td.success:hover,

#custom-html-s8 .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-s8 .table > tbody > tr.info > td,

#custom-html-s8 .table > tbody > tr.info > th,

#custom-html-s8 .table > tbody > tr > td.info,

#custom-html-s8 .table > tbody > tr > th.info,

#custom-html-s8 .table > tfoot > tr.info > td,

#custom-html-s8 .table > tfoot > tr.info > th,

#custom-html-s8 .table > tfoot > tr > td.info,

#custom-html-s8 .table > tfoot > tr > th.info,

#custom-html-s8 .table > thead > tr.info > td,

#custom-html-s8 .table > thead > tr.info > th,

#custom-html-s8 .table > thead > tr > td.info,

#custom-html-s8 .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-s8 .table-hover > tbody > tr.info:hover > td,

#custom-html-s8 .table-hover > tbody > tr.info:hover > th,

#custom-html-s8 .table-hover > tbody > tr:hover > .info,

#custom-html-s8 .table-hover > tbody > tr > td.info:hover,

#custom-html-s8 .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-s8 .table > tbody > tr.warning > td,

#custom-html-s8 .table > tbody > tr.warning > th,

#custom-html-s8 .table > tbody > tr > td.warning,

#custom-html-s8 .table > tbody > tr > th.warning,

#custom-html-s8 .table > tfoot > tr.warning > td,

#custom-html-s8 .table > tfoot > tr.warning > th,

#custom-html-s8 .table > tfoot > tr > td.warning,

#custom-html-s8 .table > tfoot > tr > th.warning,

#custom-html-s8 .table > thead > tr.warning > td,

#custom-html-s8 .table > thead > tr.warning > th,

#custom-html-s8 .table > thead > tr > td.warning,

#custom-html-s8 .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-s8 .table-hover > tbody > tr.warning:hover > td,

#custom-html-s8 .table-hover > tbody > tr.warning:hover > th,

#custom-html-s8 .table-hover > tbody > tr:hover > .warning,

#custom-html-s8 .table-hover > tbody > tr > td.warning:hover,

#custom-html-s8 .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-s8 .table > tbody > tr.danger > td,

#custom-html-s8 .table > tbody > tr.danger > th,

#custom-html-s8 .table > tbody > tr > td.danger,

#custom-html-s8 .table > tbody > tr > th.danger,

#custom-html-s8 .table > tfoot > tr.danger > td,

#custom-html-s8 .table > tfoot > tr.danger > th,

#custom-html-s8 .table > tfoot > tr > td.danger,

#custom-html-s8 .table > tfoot > tr > th.danger,

#custom-html-s8 .table > thead > tr.danger > td,

#custom-html-s8 .table > thead > tr.danger > th,

#custom-html-s8 .table > thead > tr > td.danger,

#custom-html-s8 .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-s8 .table-hover > tbody > tr.danger:hover > td,

#custom-html-s8 .table-hover > tbody > tr.danger:hover > th,

#custom-html-s8 .table-hover > tbody > tr:hover > .danger,

#custom-html-s8 .table-hover > tbody > tr > td.danger:hover,

#custom-html-s8 .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-s8 .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-s8 .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-s8 .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-s8 .table-responsive > .table > tbody > tr > td,

  #custom-html-s8 .table-responsive > .table > tbody > tr > th,

  #custom-html-s8 .table-responsive > .table > tfoot > tr > td,

  #custom-html-s8 .table-responsive > .table > tfoot > tr > th,

  #custom-html-s8 .table-responsive > .table > thead > tr > td,

  #custom-html-s8 .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-s8 .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-s8 .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-s8 .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-s8 .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-s8 .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-s8 .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-s8 .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-s8 .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-s8 .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-s8 .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-s8 .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-s8 .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-s8 .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-s8 .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-s8 .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-s8 .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-s8 .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-s8 fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-s8 legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-s8 label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-s8 input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-s8 input[type=checkbox],

#custom-html-s8 input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-s8 input[type=file] {

  display: block;

}

#custom-html-s8 input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-s8 select[multiple],

#custom-html-s8 select[size] {

  height: auto;

}

#custom-html-s8 input[type=checkbox]:focus,

#custom-html-s8 input[type=file]:focus,

#custom-html-s8 input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-s8 output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-s8 .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-s8 .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-s8 .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-s8 .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-s8 .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-s8 .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-s8 .form-control[disabled],

#custom-html-s8 .form-control[readonly],

#custom-html-s8 fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-s8 .form-control[disabled],

#custom-html-s8 fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-s8 textarea.form-control {

  height: auto;

}

#custom-html-s8 input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-s8 input[type=date].form-control,

  #custom-html-s8 input[type=datetime-local].form-control,

  #custom-html-s8 input[type=month].form-control,

  #custom-html-s8 input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-s8 .input-group-sm input[type=date],

  #custom-html-s8 .input-group-sm input[type=datetime-local],

  #custom-html-s8 .input-group-sm input[type=month],

  #custom-html-s8 .input-group-sm input[type=time],

  #custom-html-s8 input[type=date].input-sm,

  #custom-html-s8 input[type=datetime-local].input-sm,

  #custom-html-s8 input[type=month].input-sm,

  #custom-html-s8 input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-s8 .input-group-lg input[type=date],

  #custom-html-s8 .input-group-lg input[type=datetime-local],

  #custom-html-s8 .input-group-lg input[type=month],

  #custom-html-s8 .input-group-lg input[type=time],

  #custom-html-s8 input[type=date].input-lg,

  #custom-html-s8 input[type=datetime-local].input-lg,

  #custom-html-s8 input[type=month].input-lg,

  #custom-html-s8 input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-s8 .form-group {

  margin-bottom: 15px;

}

#custom-html-s8 .checkbox,

#custom-html-s8 .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-s8 .checkbox label,

#custom-html-s8 .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-s8 .checkbox input[type=checkbox],

#custom-html-s8 .checkbox-inline input[type=checkbox],

#custom-html-s8 .radio input[type=radio],

#custom-html-s8 .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-s8 .checkbox + .checkbox,

#custom-html-s8 .radio + .radio {

  margin-top: -5px;

}

#custom-html-s8 .checkbox-inline,

#custom-html-s8 .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-s8 .checkbox-inline + .checkbox-inline,

#custom-html-s8 .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-s8 fieldset[disabled] input[type=checkbox],

#custom-html-s8 fieldset[disabled] input[type=radio],

#custom-html-s8 input[type=checkbox].disabled,

#custom-html-s8 input[type=checkbox][disabled],

#custom-html-s8 input[type=radio].disabled,

#custom-html-s8 input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-s8 .checkbox-inline.disabled,

#custom-html-s8 .radio-inline.disabled,

#custom-html-s8 fieldset[disabled] .checkbox-inline,

#custom-html-s8 fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-s8 .checkbox.disabled label,

#custom-html-s8 .radio.disabled label,

#custom-html-s8 fieldset[disabled] .checkbox label,

#custom-html-s8 fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-s8 .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-s8 .form-control-static.input-lg,

#custom-html-s8 .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-s8 .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s8 select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-s8 select[multiple].input-sm,

#custom-html-s8 textarea.input-sm {

  height: auto;

}

#custom-html-s8 .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s8 .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-s8 .form-group-sm select[multiple].form-control,

#custom-html-s8 .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-s8 .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s8 .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s8 select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-s8 select[multiple].input-lg,

#custom-html-s8 textarea.input-lg {

  height: auto;

}

#custom-html-s8 .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s8 .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-s8 .form-group-lg select[multiple].form-control,

#custom-html-s8 .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-s8 .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-s8 .has-feedback {

  position: relative;

}

#custom-html-s8 .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-s8 .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-s8 .form-group-lg .form-control + .form-control-feedback,

#custom-html-s8 .input-group-lg + .form-control-feedback,

#custom-html-s8 .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-s8 .form-group-sm .form-control + .form-control-feedback,

#custom-html-s8 .input-group-sm + .form-control-feedback,

#custom-html-s8 .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-s8 .has-success .checkbox,

#custom-html-s8 .has-success .checkbox-inline,

#custom-html-s8 .has-success .control-label,

#custom-html-s8 .has-success .help-block,

#custom-html-s8 .has-success .radio,

#custom-html-s8 .has-success .radio-inline,

#custom-html-s8 .has-success.checkbox label,

#custom-html-s8 .has-success.checkbox-inline label,

#custom-html-s8 .has-success.radio label,

#custom-html-s8 .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-s8 .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-s8 .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-s8 .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-s8 .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-s8 .has-warning .checkbox,

#custom-html-s8 .has-warning .checkbox-inline,

#custom-html-s8 .has-warning .control-label,

#custom-html-s8 .has-warning .help-block,

#custom-html-s8 .has-warning .radio,

#custom-html-s8 .has-warning .radio-inline,

#custom-html-s8 .has-warning.checkbox label,

#custom-html-s8 .has-warning.checkbox-inline label,

#custom-html-s8 .has-warning.radio label,

#custom-html-s8 .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-s8 .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-s8 .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-s8 .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-s8 .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-s8 .has-error .checkbox,

#custom-html-s8 .has-error .checkbox-inline,

#custom-html-s8 .has-error .control-label,

#custom-html-s8 .has-error .help-block,

#custom-html-s8 .has-error .radio,

#custom-html-s8 .has-error .radio-inline,

#custom-html-s8 .has-error.checkbox label,

#custom-html-s8 .has-error.checkbox-inline label,

#custom-html-s8 .has-error.radio label,

#custom-html-s8 .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-s8 .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-s8 .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-s8 .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-s8 .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-s8 .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-s8 .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-s8 .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-s8 .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s8 .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-s8 .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-s8 .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-s8 .form-inline .input-group .form-control,

  #custom-html-s8 .form-inline .input-group .input-group-addon,

  #custom-html-s8 .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-s8 .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-s8 .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s8 .form-inline .checkbox,

  #custom-html-s8 .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s8 .form-inline .checkbox label,

  #custom-html-s8 .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-s8 .form-inline .checkbox input[type=checkbox],

  #custom-html-s8 .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-s8 .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-s8 .form-horizontal .checkbox,

#custom-html-s8 .form-horizontal .checkbox-inline,

#custom-html-s8 .form-horizontal .radio,

#custom-html-s8 .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-s8 .form-horizontal .checkbox,

#custom-html-s8 .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-s8 .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-s8 .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-s8 .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-s8 .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-s8 .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-s8 .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-s8 .btn.active.focus,

#custom-html-s8 .btn.active:focus,

#custom-html-s8 .btn.focus,

#custom-html-s8 .btn:active.focus,

#custom-html-s8 .btn:active:focus,

#custom-html-s8 .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-s8 .btn.focus,

#custom-html-s8 .btn:focus,

#custom-html-s8 .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-s8 .btn.active,

#custom-html-s8 .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-s8 .btn.disabled,

#custom-html-s8 .btn[disabled],

#custom-html-s8 fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-s8 a.btn.disabled,

#custom-html-s8 fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-s8 .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-s8 .btn-default.focus,

#custom-html-s8 .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-s8 .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-s8 .btn-default.active,

#custom-html-s8 .btn-default:active,

#custom-html-s8 .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-s8 .btn-default.active.focus,

#custom-html-s8 .btn-default.active:focus,

#custom-html-s8 .btn-default.active:hover,

#custom-html-s8 .btn-default:active.focus,

#custom-html-s8 .btn-default:active:focus,

#custom-html-s8 .btn-default:active:hover,

#custom-html-s8 .open > .dropdown-toggle.btn-default.focus,

#custom-html-s8 .open > .dropdown-toggle.btn-default:focus,

#custom-html-s8 .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-s8 .btn-default.active,

#custom-html-s8 .btn-default:active,

#custom-html-s8 .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-s8 .btn-default.disabled.focus,

#custom-html-s8 .btn-default.disabled:focus,

#custom-html-s8 .btn-default.disabled:hover,

#custom-html-s8 .btn-default[disabled].focus,

#custom-html-s8 .btn-default[disabled]:focus,

#custom-html-s8 .btn-default[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-default.focus,

#custom-html-s8 fieldset[disabled] .btn-default:focus,

#custom-html-s8 fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-s8 .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-s8 .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-s8 .btn-primary.focus,

#custom-html-s8 .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-s8 .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-s8 .btn-primary.active,

#custom-html-s8 .btn-primary:active,

#custom-html-s8 .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-s8 .btn-primary.active.focus,

#custom-html-s8 .btn-primary.active:focus,

#custom-html-s8 .btn-primary.active:hover,

#custom-html-s8 .btn-primary:active.focus,

#custom-html-s8 .btn-primary:active:focus,

#custom-html-s8 .btn-primary:active:hover,

#custom-html-s8 .open > .dropdown-toggle.btn-primary.focus,

#custom-html-s8 .open > .dropdown-toggle.btn-primary:focus,

#custom-html-s8 .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-s8 .btn-primary.active,

#custom-html-s8 .btn-primary:active,

#custom-html-s8 .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-s8 .btn-primary.disabled.focus,

#custom-html-s8 .btn-primary.disabled:focus,

#custom-html-s8 .btn-primary.disabled:hover,

#custom-html-s8 .btn-primary[disabled].focus,

#custom-html-s8 .btn-primary[disabled]:focus,

#custom-html-s8 .btn-primary[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-primary.focus,

#custom-html-s8 fieldset[disabled] .btn-primary:focus,

#custom-html-s8 fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-s8 .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-s8 .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-s8 .btn-success.focus,

#custom-html-s8 .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-s8 .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-s8 .btn-success.active,

#custom-html-s8 .btn-success:active,

#custom-html-s8 .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-s8 .btn-success.active.focus,

#custom-html-s8 .btn-success.active:focus,

#custom-html-s8 .btn-success.active:hover,

#custom-html-s8 .btn-success:active.focus,

#custom-html-s8 .btn-success:active:focus,

#custom-html-s8 .btn-success:active:hover,

#custom-html-s8 .open > .dropdown-toggle.btn-success.focus,

#custom-html-s8 .open > .dropdown-toggle.btn-success:focus,

#custom-html-s8 .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-s8 .btn-success.active,

#custom-html-s8 .btn-success:active,

#custom-html-s8 .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-s8 .btn-success.disabled.focus,

#custom-html-s8 .btn-success.disabled:focus,

#custom-html-s8 .btn-success.disabled:hover,

#custom-html-s8 .btn-success[disabled].focus,

#custom-html-s8 .btn-success[disabled]:focus,

#custom-html-s8 .btn-success[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-success.focus,

#custom-html-s8 fieldset[disabled] .btn-success:focus,

#custom-html-s8 fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-s8 .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-s8 .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-s8 .btn-info.focus,

#custom-html-s8 .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-s8 .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-s8 .btn-info.active,

#custom-html-s8 .btn-info:active,

#custom-html-s8 .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-s8 .btn-info.active.focus,

#custom-html-s8 .btn-info.active:focus,

#custom-html-s8 .btn-info.active:hover,

#custom-html-s8 .btn-info:active.focus,

#custom-html-s8 .btn-info:active:focus,

#custom-html-s8 .btn-info:active:hover,

#custom-html-s8 .open > .dropdown-toggle.btn-info.focus,

#custom-html-s8 .open > .dropdown-toggle.btn-info:focus,

#custom-html-s8 .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-s8 .btn-info.active,

#custom-html-s8 .btn-info:active,

#custom-html-s8 .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-s8 .btn-info.disabled.focus,

#custom-html-s8 .btn-info.disabled:focus,

#custom-html-s8 .btn-info.disabled:hover,

#custom-html-s8 .btn-info[disabled].focus,

#custom-html-s8 .btn-info[disabled]:focus,

#custom-html-s8 .btn-info[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-info.focus,

#custom-html-s8 fieldset[disabled] .btn-info:focus,

#custom-html-s8 fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-s8 .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-s8 .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-s8 .btn-warning.focus,

#custom-html-s8 .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-s8 .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-s8 .btn-warning.active,

#custom-html-s8 .btn-warning:active,

#custom-html-s8 .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-s8 .btn-warning.active.focus,

#custom-html-s8 .btn-warning.active:focus,

#custom-html-s8 .btn-warning.active:hover,

#custom-html-s8 .btn-warning:active.focus,

#custom-html-s8 .btn-warning:active:focus,

#custom-html-s8 .btn-warning:active:hover,

#custom-html-s8 .open > .dropdown-toggle.btn-warning.focus,

#custom-html-s8 .open > .dropdown-toggle.btn-warning:focus,

#custom-html-s8 .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-s8 .btn-warning.active,

#custom-html-s8 .btn-warning:active,

#custom-html-s8 .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-s8 .btn-warning.disabled.focus,

#custom-html-s8 .btn-warning.disabled:focus,

#custom-html-s8 .btn-warning.disabled:hover,

#custom-html-s8 .btn-warning[disabled].focus,

#custom-html-s8 .btn-warning[disabled]:focus,

#custom-html-s8 .btn-warning[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-warning.focus,

#custom-html-s8 fieldset[disabled] .btn-warning:focus,

#custom-html-s8 fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-s8 .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-s8 .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-s8 .btn-danger.focus,

#custom-html-s8 .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-s8 .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-s8 .btn-danger.active,

#custom-html-s8 .btn-danger:active,

#custom-html-s8 .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-s8 .btn-danger.active.focus,

#custom-html-s8 .btn-danger.active:focus,

#custom-html-s8 .btn-danger.active:hover,

#custom-html-s8 .btn-danger:active.focus,

#custom-html-s8 .btn-danger:active:focus,

#custom-html-s8 .btn-danger:active:hover,

#custom-html-s8 .open > .dropdown-toggle.btn-danger.focus,

#custom-html-s8 .open > .dropdown-toggle.btn-danger:focus,

#custom-html-s8 .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-s8 .btn-danger.active,

#custom-html-s8 .btn-danger:active,

#custom-html-s8 .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-s8 .btn-danger.disabled.focus,

#custom-html-s8 .btn-danger.disabled:focus,

#custom-html-s8 .btn-danger.disabled:hover,

#custom-html-s8 .btn-danger[disabled].focus,

#custom-html-s8 .btn-danger[disabled]:focus,

#custom-html-s8 .btn-danger[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-danger.focus,

#custom-html-s8 fieldset[disabled] .btn-danger:focus,

#custom-html-s8 fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-s8 .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-s8 .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-s8 .btn-link,

#custom-html-s8 .btn-link.active,

#custom-html-s8 .btn-link:active,

#custom-html-s8 .btn-link[disabled],

#custom-html-s8 fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s8 .btn-link,

#custom-html-s8 .btn-link:active,

#custom-html-s8 .btn-link:focus,

#custom-html-s8 .btn-link:hover {

  border-color: transparent;

}

#custom-html-s8 .btn-link:focus,

#custom-html-s8 .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-s8 .btn-link[disabled]:focus,

#custom-html-s8 .btn-link[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-link:focus,

#custom-html-s8 fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-s8 .btn-group-lg > .btn,

#custom-html-s8 .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s8 .btn-group-sm > .btn,

#custom-html-s8 .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s8 .btn-group-xs > .btn,

#custom-html-s8 .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s8 .btn-block {

  display: block;

  width: 100%;

}

#custom-html-s8 .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-s8 input[type=button].btn-block,

#custom-html-s8 input[type=reset].btn-block,

#custom-html-s8 input[type=submit].btn-block {

  width: 100%;

}

#custom-html-s8 .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-s8 .fade.in {

  opacity: 1;

}

#custom-html-s8 .collapse {

  display: none;

}

#custom-html-s8 .collapse.in {

  display: block;

}

#custom-html-s8 tr.collapse.in {

  display: table-row;

}

#custom-html-s8 tbody.collapse.in {

  display: table-row-group;

}

#custom-html-s8 .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-s8 .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-s8 .dropdown,

#custom-html-s8 .dropup {

  position: relative;

}

#custom-html-s8 .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-s8 .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-s8 .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-s8 .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-s8 .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-s8 .dropdown-menu > li > a:focus,

#custom-html-s8 .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-s8 .dropdown-menu > .active > a,

#custom-html-s8 .dropdown-menu > .active > a:focus,

#custom-html-s8 .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-s8 .dropdown-menu > .disabled > a,

#custom-html-s8 .dropdown-menu > .disabled > a:focus,

#custom-html-s8 .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-s8 .dropdown-menu > .disabled > a:focus,

#custom-html-s8 .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-s8 .open > .dropdown-menu {

  display: block;

}

#custom-html-s8 .open > a {

  outline: 0;

}

#custom-html-s8 .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-s8 .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-s8 .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-s8 .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-s8 .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-s8 .dropup .caret,

#custom-html-s8 .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-s8 .dropup .dropdown-menu,

#custom-html-s8 .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-s8 .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-s8 .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-s8 .btn-group,

#custom-html-s8 .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-s8 .btn-group-vertical > .btn,

#custom-html-s8 .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-s8 .btn-group-vertical > .btn.active,

#custom-html-s8 .btn-group-vertical > .btn:active,

#custom-html-s8 .btn-group-vertical > .btn:focus,

#custom-html-s8 .btn-group-vertical > .btn:hover,

#custom-html-s8 .btn-group > .btn.active,

#custom-html-s8 .btn-group > .btn:active,

#custom-html-s8 .btn-group > .btn:focus,

#custom-html-s8 .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-s8 .btn-group .btn + .btn,

#custom-html-s8 .btn-group .btn + .btn-group,

#custom-html-s8 .btn-group .btn-group + .btn,

#custom-html-s8 .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-s8 .btn-toolbar {

  margin-left: -5px;

}

#custom-html-s8 .btn-toolbar .btn,

#custom-html-s8 .btn-toolbar .btn-group,

#custom-html-s8 .btn-toolbar .input-group {

  float: left;

}

#custom-html-s8 .btn-toolbar > .btn,

#custom-html-s8 .btn-toolbar > .btn-group,

#custom-html-s8 .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-s8 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-s8 .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-s8 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-s8 .btn-group > .btn:last-child:not(:first-child),

#custom-html-s8 .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s8 .btn-group > .btn-group {

  float: left;

}

#custom-html-s8 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-s8 .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-s8 .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-s8 .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s8 .btn-group .dropdown-toggle:active,

#custom-html-s8 .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-s8 .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-s8 .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-s8 .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-s8 .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s8 .btn .caret {

  margin-left: 0;

}

#custom-html-s8 .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-s8 .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-s8 .btn-group-vertical > .btn,

#custom-html-s8 .btn-group-vertical > .btn-group,

#custom-html-s8 .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-s8 .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-s8 .btn-group-vertical > .btn + .btn,

#custom-html-s8 .btn-group-vertical > .btn + .btn-group,

#custom-html-s8 .btn-group-vertical > .btn-group + .btn,

#custom-html-s8 .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-s8 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-s8 .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s8 .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s8 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-s8 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-s8 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s8 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s8 .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-s8 .btn-group-justified > .btn,

#custom-html-s8 .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-s8 .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-s8 .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-s8 [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-s8 [data-toggle=buttons] > .btn input[type=radio],

#custom-html-s8 [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-s8 [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-s8 .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-s8 .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-s8 .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-s8 .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-s8 .input-group-lg > .form-control,

#custom-html-s8 .input-group-lg > .input-group-addon,

#custom-html-s8 .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-s8 select.input-group-lg > .form-control,

#custom-html-s8 select.input-group-lg > .input-group-addon,

#custom-html-s8 select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-s8 select[multiple].input-group-lg > .form-control,

#custom-html-s8 select[multiple].input-group-lg > .input-group-addon,

#custom-html-s8 select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-s8 textarea.input-group-lg > .form-control,

#custom-html-s8 textarea.input-group-lg > .input-group-addon,

#custom-html-s8 textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-s8 .input-group-sm > .form-control,

#custom-html-s8 .input-group-sm > .input-group-addon,

#custom-html-s8 .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-s8 select.input-group-sm > .form-control,

#custom-html-s8 select.input-group-sm > .input-group-addon,

#custom-html-s8 select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-s8 select[multiple].input-group-sm > .form-control,

#custom-html-s8 select[multiple].input-group-sm > .input-group-addon,

#custom-html-s8 select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-s8 textarea.input-group-sm > .form-control,

#custom-html-s8 textarea.input-group-sm > .input-group-addon,

#custom-html-s8 textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-s8 .input-group .form-control,

#custom-html-s8 .input-group-addon,

#custom-html-s8 .input-group-btn {

  display: table-cell;

}

#custom-html-s8 .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-s8 .input-group-addon:not(:first-child):not(:last-child),

#custom-html-s8 .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-s8 .input-group-addon,

#custom-html-s8 .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-s8 .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-s8 .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-s8 .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-s8 .input-group-addon input[type=checkbox],

#custom-html-s8 .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-s8 .input-group .form-control:first-child,

#custom-html-s8 .input-group-addon:first-child,

#custom-html-s8 .input-group-btn:first-child > .btn,

#custom-html-s8 .input-group-btn:first-child > .btn-group > .btn,

#custom-html-s8 .input-group-btn:first-child > .dropdown-toggle,

#custom-html-s8 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-s8 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-s8 .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-s8 .input-group .form-control:last-child,

#custom-html-s8 .input-group-addon:last-child,

#custom-html-s8 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-s8 .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-s8 .input-group-btn:last-child > .btn,

#custom-html-s8 .input-group-btn:last-child > .btn-group > .btn,

#custom-html-s8 .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s8 .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-s8 .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-s8 .input-group-btn > .btn {

  position: relative;

}

#custom-html-s8 .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-s8 .input-group-btn > .btn:active,

#custom-html-s8 .input-group-btn > .btn:focus,

#custom-html-s8 .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-s8 .input-group-btn:first-child > .btn,

#custom-html-s8 .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-s8 .input-group-btn:last-child > .btn,

#custom-html-s8 .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-s8 .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-s8 .nav > li {

  position: relative;

  display: block;

}

#custom-html-s8 .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-s8 .nav > li > a:focus,

#custom-html-s8 .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-s8 .nav > li.disabled > a {

  color: #777777;

}

#custom-html-s8 .nav > li.disabled > a:focus,

#custom-html-s8 .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-s8 .nav .open > a,

#custom-html-s8 .nav .open > a:focus,

#custom-html-s8 .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-s8 .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-s8 .nav > li > a > img {

  max-width: none;

}

#custom-html-s8 .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-s8 .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-s8 .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-s8 .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-s8 .nav-tabs > li.active > a,

#custom-html-s8 .nav-tabs > li.active > a:focus,

#custom-html-s8 .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-s8 .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-s8 .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-s8 .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-s8 .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-s8 .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-s8 .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-s8 .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-s8 .nav-tabs.nav-justified > .active > a,

#custom-html-s8 .nav-tabs.nav-justified > .active > a:focus,

#custom-html-s8 .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-s8 .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-s8 .nav-tabs.nav-justified > .active > a,

  #custom-html-s8 .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-s8 .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-s8 .nav-pills > li {

  float: left;

}

#custom-html-s8 .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-s8 .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-s8 .nav-pills > li.active > a,

#custom-html-s8 .nav-pills > li.active > a:focus,

#custom-html-s8 .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-s8 .nav-stacked > li {

  float: none;

}

#custom-html-s8 .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-s8 .nav-justified {

  width: 100%;

}

#custom-html-s8 .nav-justified > li {

  float: none;

}

#custom-html-s8 .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-s8 .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-s8 .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-s8 .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-s8 .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-s8 .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-s8 .nav-tabs-justified > .active > a,

#custom-html-s8 .nav-tabs-justified > .active > a:focus,

#custom-html-s8 .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-s8 .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-s8 .nav-tabs-justified > .active > a,

  #custom-html-s8 .nav-tabs-justified > .active > a:focus,

  #custom-html-s8 .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-s8 .tab-content > .tab-pane {

  display: none;

}

#custom-html-s8 .tab-content > .active {

  display: block;

}

#custom-html-s8 .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s8 .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-s8 .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-s8 .navbar-header {

    float: left;

  }

}

#custom-html-s8 .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-s8 .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-s8 .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-s8 .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-s8 .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-s8 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-s8 .navbar-fixed-top .navbar-collapse,

  #custom-html-s8 .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-s8 .navbar-fixed-bottom .navbar-collapse,

#custom-html-s8 .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-s8 .navbar-fixed-bottom .navbar-collapse,

  #custom-html-s8 .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-s8 .container-fluid > .navbar-collapse,

#custom-html-s8 .container-fluid > .navbar-header,

#custom-html-s8 .container > .navbar-collapse,

#custom-html-s8 .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-s8 .container-fluid > .navbar-collapse,

  #custom-html-s8 .container-fluid > .navbar-header,

  #custom-html-s8 .container > .navbar-collapse,

  #custom-html-s8 .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-s8 .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-s8 .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-s8 .navbar-fixed-bottom,

#custom-html-s8 .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-s8 .navbar-fixed-bottom,

  #custom-html-s8 .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-s8 .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-s8 .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-s8 .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-s8 .navbar-brand:focus,

#custom-html-s8 .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-s8 .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-s8 .navbar > .container .navbar-brand,

  #custom-html-s8 .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-s8 .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-s8 .navbar-toggle:focus {

  outline: 0;

}

#custom-html-s8 .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-s8 .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-s8 .navbar-toggle {

    display: none;

  }

}

#custom-html-s8 .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-s8 .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-s8 .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-s8 .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-s8 .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-s8 .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-s8 .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-s8 .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-s8 .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-s8 .navbar-nav > li {

    float: left;

  }

  #custom-html-s8 .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-s8 .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-s8 .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s8 .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-s8 .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-s8 .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-s8 .navbar-form .input-group .form-control,

  #custom-html-s8 .navbar-form .input-group .input-group-addon,

  #custom-html-s8 .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-s8 .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-s8 .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s8 .navbar-form .checkbox,

  #custom-html-s8 .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-s8 .navbar-form .checkbox label,

  #custom-html-s8 .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-s8 .navbar-form .checkbox input[type=checkbox],

  #custom-html-s8 .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-s8 .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-s8 .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-s8 .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-s8 .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-s8 .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s8 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-s8 .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-s8 .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-s8 .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-s8 .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-s8 .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-s8 .navbar-left {

    float: left !important;

  }

  #custom-html-s8 .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-s8 .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-s8 .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-s8 .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-s8 .navbar-default .navbar-brand:focus,

#custom-html-s8 .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-s8 .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-s8 .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-s8 .navbar-default .navbar-nav > li > a:focus,

#custom-html-s8 .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-s8 .navbar-default .navbar-nav > .active > a,

#custom-html-s8 .navbar-default .navbar-nav > .active > a:focus,

#custom-html-s8 .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-s8 .navbar-default .navbar-nav > .disabled > a,

#custom-html-s8 .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-s8 .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-s8 .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-s8 .navbar-default .navbar-toggle:focus,

#custom-html-s8 .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-s8 .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-s8 .navbar-default .navbar-collapse,

#custom-html-s8 .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-s8 .navbar-default .navbar-nav > .open > a,

#custom-html-s8 .navbar-default .navbar-nav > .open > a:focus,

#custom-html-s8 .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-s8 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-s8 .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-s8 .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-s8 .navbar-default .btn-link {

  color: #777777;

}

#custom-html-s8 .navbar-default .btn-link:focus,

#custom-html-s8 .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-s8 .navbar-default .btn-link[disabled]:focus,

#custom-html-s8 .navbar-default .btn-link[disabled]:hover,

#custom-html-s8 fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-s8 fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-s8 .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-s8 .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-s8 .navbar-inverse .navbar-brand:focus,

#custom-html-s8 .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-s8 .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-s8 .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-s8 .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-s8 .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-s8 .navbar-inverse .navbar-nav > .active > a,

#custom-html-s8 .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-s8 .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-s8 .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-s8 .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-s8 .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-s8 .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-s8 .navbar-inverse .navbar-toggle:focus,

#custom-html-s8 .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-s8 .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-s8 .navbar-inverse .navbar-collapse,

#custom-html-s8 .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-s8 .navbar-inverse .navbar-nav > .open > a,

#custom-html-s8 .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-s8 .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-s8 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-s8 .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-s8 .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-s8 .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-s8 .navbar-inverse .btn-link:focus,

#custom-html-s8 .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-s8 .navbar-inverse .btn-link[disabled]:focus,

#custom-html-s8 .navbar-inverse .btn-link[disabled]:hover,

#custom-html-s8 fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-s8 fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-s8 .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-s8 .breadcrumb > li {

  display: inline-block;

}

#custom-html-s8 .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-s8 .breadcrumb > .active {

  color: #777777;

}

#custom-html-s8 .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-s8 .pagination > li {

  display: inline;

}

#custom-html-s8 .pagination > li > a,

#custom-html-s8 .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-s8 .pagination > li:first-child > a,

#custom-html-s8 .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s8 .pagination > li:last-child > a,

#custom-html-s8 .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-s8 .pagination > li > a:focus,

#custom-html-s8 .pagination > li > a:hover,

#custom-html-s8 .pagination > li > span:focus,

#custom-html-s8 .pagination > li > span:hover {


  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-s8 .pagination > .active > a,

#custom-html-s8 .pagination > .active > a:focus,

#custom-html-s8 .pagination > .active > a:hover,

#custom-html-s8 .pagination > .active > span,

#custom-html-s8 .pagination > .active > span:focus,

#custom-html-s8 .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-s8 .pagination > .disabled > a,

#custom-html-s8 .pagination > .disabled > a:focus,

#custom-html-s8 .pagination > .disabled > a:hover,

#custom-html-s8 .pagination > .disabled > span,

#custom-html-s8 .pagination > .disabled > span:focus,

#custom-html-s8 .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-s8 .pagination-lg > li > a,

#custom-html-s8 .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-s8 .pagination-lg > li:first-child > a,

#custom-html-s8 .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-s8 .pagination-lg > li:last-child > a,

#custom-html-s8 .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-s8 .pagination-sm > li > a,

#custom-html-s8 .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s8 .pagination-sm > li:first-child > a,

#custom-html-s8 .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s8 .pagination-sm > li:last-child > a,

#custom-html-s8 .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-s8 .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-s8 .pager li {

  display: inline;

}

#custom-html-s8 .pager li > a,

#custom-html-s8 .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-s8 .pager li > a:focus,

#custom-html-s8 .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-s8 .pager .next > a,

#custom-html-s8 .pager .next > span {

  float: right;

}

#custom-html-s8 .pager .previous > a,

#custom-html-s8 .pager .previous > span {

  float: left;

}

#custom-html-s8 .pager .disabled > a,

#custom-html-s8 .pager .disabled > a:focus,

#custom-html-s8 .pager .disabled > a:hover,

#custom-html-s8 .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-s8 .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-s8 a.label:focus,

#custom-html-s8 a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-s8 .label:empty {

  display: none;

}

#custom-html-s8 .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-s8 .label-default {

  background-color: #777777;

}

#custom-html-s8 .label-default[href]:focus,

#custom-html-s8 .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-s8 .label-primary {

  background-color: #337ab7;

}

#custom-html-s8 .label-primary[href]:focus,

#custom-html-s8 .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-s8 .label-success {

  background-color: #5cb85c;

}

#custom-html-s8 .label-success[href]:focus,

#custom-html-s8 .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-s8 .label-info {

  background-color: #5bc0de;

}

#custom-html-s8 .label-info[href]:focus,

#custom-html-s8 .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-s8 .label-warning {

  background-color: #f0ad4e;

}

#custom-html-s8 .label-warning[href]:focus,

#custom-html-s8 .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-s8 .label-danger {

  background-color: #d9534f;

}

#custom-html-s8 .label-danger[href]:focus,

#custom-html-s8 .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-s8 .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-s8 .badge:empty {

  display: none;

}

#custom-html-s8 .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-s8 .btn-group-xs > .btn .badge,

#custom-html-s8 .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-s8 a.badge:focus,

#custom-html-s8 a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-s8 .list-group-item.active > .badge,

#custom-html-s8 .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-s8 .list-group-item > .badge {

  float: right;

}

#custom-html-s8 .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-s8 .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-s8 .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-s8 .jumbotron .h1,

#custom-html-s8 .jumbotron h1 {

  color: inherit;

}

#custom-html-s8 .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-s8 .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-s8 .container .jumbotron,

#custom-html-s8 .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-s8 .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-s8 .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-s8 .container .jumbotron,

  #custom-html-s8 .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-s8 .jumbotron .h1,

  #custom-html-s8 .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-s8 .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-s8 .thumbnail a > img,

#custom-html-s8 .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-s8 a.thumbnail.active,

#custom-html-s8 a.thumbnail:focus,

#custom-html-s8 a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-s8 .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-s8 .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-s8 .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-s8 .alert .alert-link {

  font-weight: 700;

}

#custom-html-s8 .alert > p,

#custom-html-s8 .alert > ul {

  margin-bottom: 0;

}

#custom-html-s8 .alert > p + p {

  margin-top: 5px;

}

#custom-html-s8 .alert-dismissable,

#custom-html-s8 .alert-dismissible {

  padding-right: 35px;

}

#custom-html-s8 .alert-dismissable .close,

#custom-html-s8 .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-s8 .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-s8 .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-s8 .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-s8 .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-s8 .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-s8 .alert-info .alert-link {

  color: #000000;

}

#custom-html-s8 .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-s8 .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-s8 .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-s8 .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-s8 .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-s8 .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-s8 .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-s8 .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-s8 .progress-bar-striped,

#custom-html-s8 .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-s8 .progress-bar.active,

#custom-html-s8 .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-s8 .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-s8 .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s8 .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-s8 .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s8 .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-s8 .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s8 .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-s8 .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-s8 .media {

  margin-top: 15px;

}

#custom-html-s8 .media:first-child {

  margin-top: 0;

}

#custom-html-s8 .media,

#custom-html-s8 .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-s8 .media-body {

  width: 10000px;

}

#custom-html-s8 .media-object {

  display: block;

}

#custom-html-s8 .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-s8 .media-right,

#custom-html-s8 .media > .pull-right {

  padding-left: 10px;

}

#custom-html-s8 .media-left,

#custom-html-s8 .media > .pull-left {

  padding-right: 10px;

}

#custom-html-s8 .media-body,

#custom-html-s8 .media-left,

#custom-html-s8 .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-s8 .media-middle {

  vertical-align: middle;

}

#custom-html-s8 .media-bottom {

  vertical-align: bottom;

}

#custom-html-s8 .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-s8 .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-s8 .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-s8 .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-s8 .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-s8 .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s8 a.list-group-item,

#custom-html-s8 button.list-group-item {

  color: #555555;

}

#custom-html-s8 a.list-group-item .list-group-item-heading,

#custom-html-s8 button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-s8 a.list-group-item:focus,

#custom-html-s8 a.list-group-item:hover,

#custom-html-s8 button.list-group-item:focus,

#custom-html-s8 button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-s8 button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-s8 .list-group-item.disabled,

#custom-html-s8 .list-group-item.disabled:focus,

#custom-html-s8 .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-s8 .list-group-item.disabled .list-group-item-heading,

#custom-html-s8 .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-s8 .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-s8 .list-group-item.disabled .list-group-item-text,

#custom-html-s8 .list-group-item.disabled:focus .list-group-item-text,

#custom-html-s8 .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-s8 .list-group-item.active,

#custom-html-s8 .list-group-item.active:focus,

#custom-html-s8 .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-s8 .list-group-item.active .list-group-item-heading,

#custom-html-s8 .list-group-item.active .list-group-item-heading > .small,

#custom-html-s8 .list-group-item.active .list-group-item-heading > small,

#custom-html-s8 .list-group-item.active:focus .list-group-item-heading,

#custom-html-s8 .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-s8 .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-s8 .list-group-item.active:hover .list-group-item-heading,

#custom-html-s8 .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-s8 .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-s8 .list-group-item.active .list-group-item-text,

#custom-html-s8 .list-group-item.active:focus .list-group-item-text,

#custom-html-s8 .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-s8 .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-s8 a.list-group-item-success,

#custom-html-s8 button.list-group-item-success {

  color: #3c763d;

}

#custom-html-s8 a.list-group-item-success .list-group-item-heading,

#custom-html-s8 button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-s8 a.list-group-item-success:focus,

#custom-html-s8 a.list-group-item-success:hover,

#custom-html-s8 button.list-group-item-success:focus,

#custom-html-s8 button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-s8 a.list-group-item-success.active,

#custom-html-s8 a.list-group-item-success.active:focus,

#custom-html-s8 a.list-group-item-success.active:hover,

#custom-html-s8 button.list-group-item-success.active,

#custom-html-s8 button.list-group-item-success.active:focus,

#custom-html-s8 button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-s8 .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-s8 a.list-group-item-info,

#custom-html-s8 button.list-group-item-info {

  color: #31708f;

}

#custom-html-s8 a.list-group-item-info .list-group-item-heading,

#custom-html-s8 button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-s8 a.list-group-item-info:focus,

#custom-html-s8 a.list-group-item-info:hover,

#custom-html-s8 button.list-group-item-info:focus,

#custom-html-s8 button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-s8 a.list-group-item-info.active,

#custom-html-s8 a.list-group-item-info.active:focus,

#custom-html-s8 a.list-group-item-info.active:hover,

#custom-html-s8 button.list-group-item-info.active,

#custom-html-s8 button.list-group-item-info.active:focus,

#custom-html-s8 button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-s8 .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-s8 a.list-group-item-warning,

#custom-html-s8 button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-s8 a.list-group-item-warning .list-group-item-heading,

#custom-html-s8 button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-s8 a.list-group-item-warning:focus,

#custom-html-s8 a.list-group-item-warning:hover,

#custom-html-s8 button.list-group-item-warning:focus,

#custom-html-s8 button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-s8 a.list-group-item-warning.active,

#custom-html-s8 a.list-group-item-warning.active:focus,

#custom-html-s8 a.list-group-item-warning.active:hover,

#custom-html-s8 button.list-group-item-warning.active,

#custom-html-s8 button.list-group-item-warning.active:focus,

#custom-html-s8 button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-s8 .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-s8 a.list-group-item-danger,

#custom-html-s8 button.list-group-item-danger {

  color: #a94442;

}

#custom-html-s8 a.list-group-item-danger .list-group-item-heading,

#custom-html-s8 button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-s8 a.list-group-item-danger:focus,

#custom-html-s8 a.list-group-item-danger:hover,

#custom-html-s8 button.list-group-item-danger:focus,

#custom-html-s8 button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-s8 a.list-group-item-danger.active,

#custom-html-s8 a.list-group-item-danger.active:focus,

#custom-html-s8 a.list-group-item-danger.active:hover,

#custom-html-s8 button.list-group-item-danger.active,

#custom-html-s8 button.list-group-item-danger.active:focus,

#custom-html-s8 button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-s8 .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-s8 .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-s8 .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-s8 .panel-body {

  padding: 15px;

}

#custom-html-s8 .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-s8 .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-s8 .panel-title > .small,

#custom-html-s8 .panel-title > .small > a,

#custom-html-s8 .panel-title > a,

#custom-html-s8 .panel-title > small,

#custom-html-s8 .panel-title > small > a {

  color: inherit;

}

#custom-html-s8 .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s8 .panel > .list-group,

#custom-html-s8 .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-s8 .panel > .list-group .list-group-item,

#custom-html-s8 .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-s8 .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-s8 .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-s8 .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s8 .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-s8 .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-s8 .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-s8 .panel > .panel-collapse > .table,

#custom-html-s8 .panel > .table,

#custom-html-s8 .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-s8 .panel > .panel-collapse > .table caption,

#custom-html-s8 .panel > .table caption,

#custom-html-s8 .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child,

#custom-html-s8 .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-s8 .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-s8 .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-s8 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-s8 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-s8 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-s8 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-s8 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-s8 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-s8 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-s8 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-s8 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child,

#custom-html-s8 .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-s8 .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-s8 .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-s8 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-s8 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-s8 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-s8 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-s8 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-s8 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-s8 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-s8 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-s8 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-s8 .panel > .panel-body + .table,

#custom-html-s8 .panel > .panel-body + .table-responsive,

#custom-html-s8 .panel > .table + .panel-body,

#custom-html-s8 .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-s8 .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-s8 .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-s8 .panel > .table-bordered,

#custom-html-s8 .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-s8 .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-s8 .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-s8 .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-s8 .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-s8 .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-s8 .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-s8 .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-s8 .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-s8 .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-s8 .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-s8 .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-s8 .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-s8 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-s8 .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-s8 .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-s8 .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-s8 .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-s8 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-s8 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-s8 .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-s8 .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-s8 .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-s8 .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-s8 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-s8 .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-s8 .panel-group {

  margin-bottom: 20px;

}

#custom-html-s8 .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-s8 .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-s8 .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-s8 .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-s8 .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-s8 .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-s8 .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-s8 .panel-default {

  border-color: #dddddd;

}

#custom-html-s8 .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-s8 .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-s8 .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-s8 .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-s8 .panel-primary {

  border-color: #337ab7;

}

#custom-html-s8 .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-s8 .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-s8 .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-s8 .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-s8 .panel-success {

  border-color: #d6e9c6;

}

#custom-html-s8 .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-s8 .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-s8 .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-s8 .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-s8 .panel-info {

  border-color: #bce8f1;

}

#custom-html-s8 .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-s8 .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-s8 .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-s8 .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-s8 .panel-warning {

  border-color: #faebcc;

}

#custom-html-s8 .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-s8 .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-s8 .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-s8 .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-s8 .panel-danger {

  border-color: #ebccd1;

}

#custom-html-s8 .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-s8 .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-s8 .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-s8 .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-s8 .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-s8 .embed-responsive .embed-responsive-item,

#custom-html-s8 .embed-responsive embed,

#custom-html-s8 .embed-responsive iframe,

#custom-html-s8 .embed-responsive object,

#custom-html-s8 .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-s8 .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-s8 .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-s8 .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-s8 .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-s8 .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-s8 .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-s8 .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-s8 .close:focus,

#custom-html-s8 .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-s8 button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-s8 .modal-open {

  overflow: hidden;

}

#custom-html-s8 .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-s8 .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-s8 .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-s8 .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-s8 .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-s8 .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-s8 .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-s8 .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-s8 .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-s8 .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-s8 .modal-header .close {

  margin-top: -2px;

}

#custom-html-s8 .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-s8 .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-s8 .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-s8 .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-s8 .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-s8 .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-s8 .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-s8 .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-s8 .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-s8 .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-s8 .modal-lg {

    width: 900px;

  }

}

#custom-html-s8 .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-s8 .tooltip.in {

  opacity: 0.9;

}

#custom-html-s8 .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-s8 .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-s8 .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-s8 .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-s8 .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-s8 .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-s8 .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-s8 .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-s8 .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-s8 .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-s8 .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-s8 .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-s8 .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-s8 .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-s8 .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-s8 .popover.top {

  margin-top: -10px;

}

#custom-html-s8 .popover.right {

  margin-left: 10px;

}

#custom-html-s8 .popover.bottom {

  margin-top: 10px;

}

#custom-html-s8 .popover.left {

  margin-left: -10px;

}

#custom-html-s8 .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-s8 .popover-content {

  padding: 9px 14px;

}

#custom-html-s8 .popover > .arrow,

#custom-html-s8 .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-s8 .popover > .arrow {

  border-width: 11px;

}

#custom-html-s8 .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-s8 .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-s8 .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-s8 .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-s8 .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-s8 .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-s8 .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-s8 .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-s8 .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-s8 .carousel {

  position: relative;

}

#custom-html-s8 .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-s8 .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-s8 .carousel-inner > .item > a > img,

#custom-html-s8 .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-s8 .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-s8 .carousel-inner > .item.active.right,

  #custom-html-s8 .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-s8 .carousel-inner > .item.active.left,

  #custom-html-s8 .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-s8 .carousel-inner > .item.active,

  #custom-html-s8 .carousel-inner > .item.next.left,

  #custom-html-s8 .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-s8 .carousel-inner > .active,

#custom-html-s8 .carousel-inner > .next,

#custom-html-s8 .carousel-inner > .prev {

  display: block;

}

#custom-html-s8 .carousel-inner > .active {

  left: 0;

}

#custom-html-s8 .carousel-inner > .next,

#custom-html-s8 .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-s8 .carousel-inner > .next {

  left: 100%;

}

#custom-html-s8 .carousel-inner > .prev {

  left: -100%;

}

#custom-html-s8 .carousel-inner > .next.left,

#custom-html-s8 .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-s8 .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-s8 .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-s8 .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-s8 .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-s8 .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-s8 .carousel-control:focus,

#custom-html-s8 .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-s8 .carousel-control .glyphicon-chevron-left,

#custom-html-s8 .carousel-control .glyphicon-chevron-right,

#custom-html-s8 .carousel-control .icon-next,

#custom-html-s8 .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-s8 .carousel-control .glyphicon-chevron-left,

#custom-html-s8 .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-s8 .carousel-control .glyphicon-chevron-right,

#custom-html-s8 .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-s8 .carousel-control .icon-next,

#custom-html-s8 .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-s8 .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-s8 .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-s8 .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-s8 .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-s8 .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-s8 .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-s8 .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-s8 .carousel-control .glyphicon-chevron-left,

  #custom-html-s8 .carousel-control .glyphicon-chevron-right,

  #custom-html-s8 .carousel-control .icon-next,

  #custom-html-s8 .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-s8 .carousel-control .glyphicon-chevron-left,

  #custom-html-s8 .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-s8 .carousel-control .glyphicon-chevron-right,

  #custom-html-s8 .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-s8 .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-s8 .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-s8 .btn-group-vertical > .btn-group:after,

#custom-html-s8 .btn-group-vertical > .btn-group:before,

#custom-html-s8 .btn-toolbar:after,

#custom-html-s8 .btn-toolbar:before,

#custom-html-s8 .clearfix:after,

#custom-html-s8 .clearfix:before,

#custom-html-s8 .container-fluid:after,

#custom-html-s8 .container-fluid:before,

#custom-html-s8 .container:after,

#custom-html-s8 .container:before,

#custom-html-s8 .dl-horizontal dd:after,

#custom-html-s8 .dl-horizontal dd:before,

#custom-html-s8 .form-horizontal .form-group:after,

#custom-html-s8 .form-horizontal .form-group:before,

#custom-html-s8 .modal-footer:after,

#custom-html-s8 .modal-footer:before,

#custom-html-s8 .modal-header:after,

#custom-html-s8 .modal-header:before,

#custom-html-s8 .nav:after,

#custom-html-s8 .nav:before,

#custom-html-s8 .navbar-collapse:after,

#custom-html-s8 .navbar-collapse:before,

#custom-html-s8 .navbar-header:after,

#custom-html-s8 .navbar-header:before,

#custom-html-s8 .navbar:after,

#custom-html-s8 .navbar:before,

#custom-html-s8 .pager:after,

#custom-html-s8 .pager:before,

#custom-html-s8 .panel-body:after,

#custom-html-s8 .panel-body:before,

#custom-html-s8 .row:after,

#custom-html-s8 .row:before {

  display: table;

  content: " ";

}

#custom-html-s8 .btn-group-vertical > .btn-group:after,

#custom-html-s8 .btn-toolbar:after,

#custom-html-s8 .clearfix:after,

#custom-html-s8 .container-fluid:after,

#custom-html-s8 .container:after,

#custom-html-s8 .dl-horizontal dd:after,

#custom-html-s8 .form-horizontal .form-group:after,

#custom-html-s8 .modal-footer:after,

#custom-html-s8 .modal-header:after,

#custom-html-s8 .nav:after,

#custom-html-s8 .navbar-collapse:after,

#custom-html-s8 .navbar-header:after,

#custom-html-s8 .navbar:after,

#custom-html-s8 .pager:after,

#custom-html-s8 .panel-body:after,

#custom-html-s8 .row:after {

  clear: both;

}

#custom-html-s8 .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-s8 .pull-right {

  float: right !important;

}

#custom-html-s8 .pull-left {

  float: left !important;

}

#custom-html-s8 .hide {

  display: none !important;

}

#custom-html-s8 .show {

  display: block !important;

}

#custom-html-s8 .invisible {

  visibility: hidden;

}

#custom-html-s8 .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-s8 .hidden {

  display: none !important;

}

#custom-html-s8 .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-s8 .visible-lg,

#custom-html-s8 .visible-md,

#custom-html-s8 .visible-sm,

#custom-html-s8 .visible-xs {

  display: none !important;

}

#custom-html-s8 .visible-lg-block,

#custom-html-s8 .visible-lg-inline,

#custom-html-s8 .visible-lg-inline-block,

#custom-html-s8 .visible-md-block,

#custom-html-s8 .visible-md-inline,

#custom-html-s8 .visible-md-inline-block,

#custom-html-s8 .visible-sm-block,

#custom-html-s8 .visible-sm-inline,

#custom-html-s8 .visible-sm-inline-block,

#custom-html-s8 .visible-xs-block,

#custom-html-s8 .visible-xs-inline,

#custom-html-s8 .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-s8 .visible-xs {

    display: block !important;

  }

  #custom-html-s8 table.visible-xs {

    display: table !important;

  }

  #custom-html-s8 tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-s8 td.visible-xs,

  #custom-html-s8 th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-s8 .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-s8 .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-s8 .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-s8 .visible-sm {

    display: block !important;

  }

  #custom-html-s8 table.visible-sm {

    display: table !important;

  }

  #custom-html-s8 tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-s8 td.visible-sm,

  #custom-html-s8 th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-s8 .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-s8 .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-s8 .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-s8 .visible-md {

    display: block !important;

  }

  #custom-html-s8 table.visible-md {

    display: table !important;

  }

  #custom-html-s8 tr.visible-md {

    display: table-row !important;

  }

  #custom-html-s8 td.visible-md,

  #custom-html-s8 th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-s8 .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-s8 .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-s8 .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-s8 .visible-lg {

    display: block !important;

  }

  #custom-html-s8 table.visible-lg {

    display: table !important;

  }

  #custom-html-s8 tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-s8 td.visible-lg,

  #custom-html-s8 th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-s8 .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-s8 .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-s8 .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-s8 .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-s8 .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-s8 .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-s8 .hidden-lg {

    display: none !important;

  }

}

#custom-html-s8 .visible-print {

  display: none !important;

}

@media print {

  #custom-html-s8 .visible-print {

    display: block !important;

  }

  #custom-html-s8 table.visible-print {

    display: table !important;

  }

  #custom-html-s8 tr.visible-print {

    display: table-row !important;

  }

  #custom-html-s8 td.visible-print,

  #custom-html-s8 th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-s8 .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-s8 .visible-print-block {

    display: block !important;

  }

}

#custom-html-s8 .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-s8 .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-s8 .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-s8 .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-s8 .hidden-print {

    display: none !important;

  }

}

#custom-html-s8 .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-s8 .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-s8 .intl-tel-input .hide {

  display: none;

}

#custom-html-s8 .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-s8 .intl-tel-input input,

#custom-html-s8 .intl-tel-input input[type=tel],

#custom-html-s8 .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-s8 .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-s8 .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-s8 .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-s8 .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-s8 .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-s8 .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-s8 .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-s8 .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-s8 .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-s8 .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-s8 .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-s8 .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-s8 .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-s8 .intl-tel-input .country-list .country-name,

#custom-html-s8 .intl-tel-input .country-list .dial-code,

#custom-html-s8 .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-s8 .intl-tel-input .country-list .country-name,

#custom-html-s8 .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-s8 .intl-tel-input.allow-dropdown input,

#custom-html-s8 .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-s8 .intl-tel-input.allow-dropdown input[type=text],

#custom-html-s8 .intl-tel-input.separate-dial-code input,

#custom-html-s8 .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-s8 .intl-tel-input.allow-dropdown .flag-container,

#custom-html-s8 .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-s8 .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-s8 .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-s8 .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-s8 .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-s8 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-s8 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-s8 .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-s8 .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-s8 .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-s8 .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-s8 .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-s8 .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-s8 .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-s8 .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-s8 .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-s8 .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-s8 .iti-flag {

  width: 20px;

}

#custom-html-s8 .iti-flag.be {

  width: 18px;

}

#custom-html-s8 .iti-flag.ch {

  width: 15px;

}

#custom-html-s8 .iti-flag.mc {

  width: 19px;

}

#custom-html-s8 .iti-flag.ne {

  width: 18px;

}

#custom-html-s8 .iti-flag.np {

  width: 13px;

}

#custom-html-s8 .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-s8 .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-s8 .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-s8 .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-s8 .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-s8 .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-s8 .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-s8 .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-s8 .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-s8 .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-s8 .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-s8 .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-s8 .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-s8 .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-s8 .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-s8 .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-s8 .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-s8 .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-s8 .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-s8 .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-s8 .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-s8 .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-s8 .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-s8 .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-s8 .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-s8 .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-s8 .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-s8 .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-s8 .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-s8 .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-s8 .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-s8 .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-s8 .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-s8 .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-s8 .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-s8 .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-s8 .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-s8 .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-s8 .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-s8 .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-s8 .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-s8 .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-s8 .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-s8 .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-s8 .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-s8 .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-s8 .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-s8 .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-s8 .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-s8 .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-s8 .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-s8 .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-s8 .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-s8 .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-s8 .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-s8 .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-s8 .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-s8 .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-s8 .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-s8 .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-s8 .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-s8 .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-s8 .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-s8 .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-s8 .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-s8 .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-s8 .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-s8 .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-s8 .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-s8 .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-s8 .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-s8 .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-s8 .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-s8 .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-s8 .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-s8 .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-s8 .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-s8 .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-s8 .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-s8 .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-s8 .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-s8 .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-s8 .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-s8 .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-s8 .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-s8 .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-s8 .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-s8 .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-s8 .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-s8 .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-s8 .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-s8 .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-s8 .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-s8 .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-s8 .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-s8 .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-s8 .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-s8 .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-s8 .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-s8 .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-s8 .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-s8 .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-s8 .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-s8 .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-s8 .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-s8 .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-s8 .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-s8 .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-s8 .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-s8 .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-s8 .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-s8 .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-s8 .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-s8 .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-s8 .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-s8 .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-s8 .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-s8 .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-s8 .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-s8 .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-s8 .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-s8 .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-s8 .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-s8 .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-s8 .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-s8 .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-s8 .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-s8 .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-s8 .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-s8 .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-s8 .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-s8 .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-s8 .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-s8 .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-s8 .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-s8 .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-s8 .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-s8 .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-s8 .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-s8 .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-s8 .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-s8 .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-s8 .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-s8 .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-s8 .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-s8 .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-s8 .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-s8 .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-s8 .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-s8 .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-s8 .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-s8 .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-s8 .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-s8 .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-s8 .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-s8 .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-s8 .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-s8 .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-s8 .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-s8 .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-s8 .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-s8 .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-s8 .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-s8 .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-s8 .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-s8 .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-s8 .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-s8 .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-s8 .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-s8 .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-s8 .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-s8 .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-s8 .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-s8 .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-s8 .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-s8 .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-s8 .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-s8 .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-s8 .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-s8 .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-s8 .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-s8 .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-s8 .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-s8 .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-s8 .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-s8 .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-s8 .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-s8 .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-s8 .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-s8 .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-s8 .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-s8 .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-s8 .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-s8 .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-s8 .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-s8 .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-s8 .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-s8 .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-s8 .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-s8 .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-s8 .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-s8 .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-s8 .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-s8 .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-s8 .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-s8 .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-s8 .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-s8 .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-s8 .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-s8 .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-s8 .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-s8 .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-s8 .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-s8 .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-s8 .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-s8 .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-s8 .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-s8 .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-s8 .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-s8 .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-s8 .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-s8 .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-s8 .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-s8 .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-s8 .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-s8 .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-s8 .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-s8 .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-s8 .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-s8 .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-s8 .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-s8 .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-s8 .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-s8 .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-s8 .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-s8 .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-s8 .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-s8 .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-s8 .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-s8 .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-s8 .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-s8 .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-s8 .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-s8 .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-s8 .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-s8 .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-s8 .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-s8 .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-s8 .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-s8 .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-s8 .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-s8 .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-s8 .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-s8 .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-s8 .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-s8 .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-s8 .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-s8 .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-s8 .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-s8 .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-s8 .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-s8 .iti-flag.np {

  background-color: transparent;

}

#custom-html-s8 body,

#custom-html-s8 button,

#custom-html-s8 input,

#custom-html-s8 select,

#custom-html-s8 textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-s8 h1,

#custom-html-s8 h2,

#custom-html-s8 h3,

#custom-html-s8 h4,

#custom-html-s8 h5,

#custom-html-s8 h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-s8 .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-s8 .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-s8 .navbar-main li.account {

  background-color: #000000;

}

#custom-html-s8 .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-s8 .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-s8 .navbar-main .navbar-nav > .active > a,

#custom-html-s8 .navbar-main .navbar-nav > .active > a:focus,

#custom-html-s8 .navbar-main .navbar-nav > .active > a:hover,

#custom-html-s8 .navbar-main .navbar-nav > .open > a,

#custom-html-s8 .navbar-main .navbar-nav > .open > a:focus,

#custom-html-s8 .navbar-main .navbar-nav > .open > a:hover,

#custom-html-s8 .navbar-main .navbar-nav > li > a:focus,

#custom-html-s8 .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-s8 #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-s8 .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-s8 .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-s8 .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-s8 .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-s8 .navbar-header {

    float: none;

  }

  #custom-html-s8 .navbar-left,

  #custom-html-s8 .navbar-right {

    float: none !important;

  }

  #custom-html-s8 .navbar-toggle {

    display: block;

  }

  #custom-html-s8 .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-s8 .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-s8 .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-s8 .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-s8 .navbar-nav > li {

    float: none;

  }

  #custom-html-s8 .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-s8 .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-s8 .panel {

  font-size: 0.9em;

}

#custom-html-s8 .list-group {

  font-size: 0.9em;

}

#custom-html-s8 .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-s8 .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-s8 a.list-group-item.active,

#custom-html-s8 a.list-group-item.active:focus,

#custom-html-s8 a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-s8 .pagination {

  font-size: 0.8em;

}

#custom-html-s8 .pagination > .active > a,

#custom-html-s8 .pagination > .active > a:focus,

#custom-html-s8 .pagination > .active > a:hover,

#custom-html-s8 .pagination > .active > span,

#custom-html-s8 .pagination > .active > span:focus,

#custom-html-s8 .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-s8 .dropdown-menu > li > a:focus,

#custom-html-s8 .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-s8 .label {

  border-radius: 0;

}

#custom-html-s8 input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-s8 .list-group-item {

  padding: 7px 15px;

}

#custom-html-s8 .panel-body {

  padding: 10px 15px;

}

#custom-html-s8 .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-s8 .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-s8 .btn {

  overflow: hidden;

}

#custom-html-s8 body,

#custom-html-s8 html {

  height: 100%;

}

#custom-html-s8 body {

  background-color: #f8f8f8;

}

#custom-html-s8 h1,

#custom-html-s8 h2,

#custom-html-s8 h3,

#custom-html-s8 h4,

#custom-html-s8 h5,

#custom-html-s8 h6 {

  font-weight: 400;

}

#custom-html-s8 a {

  color: #005588;

}

#custom-html-s8 section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-s8 section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-s8 section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-s8 section#header .search {

  margin: 20px 0;

}

#custom-html-s8 section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-s8 section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-s8 section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-s8 section#main-content {

  margin-bottom: 60px;

}

#custom-html-s8 .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-s8 section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-s8 section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-s8 section#footer {

    line-height: 32px;

  }

}

#custom-html-s8 section#footer .back-to-top {

  float: right;

}

#custom-html-s8 section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-s8 .adminreturndiv {

  display: none !important;

}

#custom-html-s8 .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-s8 .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-s8 .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-s8 .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-s8 .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-s8 .navbar-main .navbar-toggle:focus,

#custom-html-s8 .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-s8 .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-s8 .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-s8 .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-s8 .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-s8 .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-s8 div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-s8 div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-s8 div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-s8 div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-s8 div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-s8 .h1,

  #custom-html-s8 h1 {

    font-size: 26px;

  }

  #custom-html-s8 .h2,

  #custom-html-s8 h2 {

    font-size: 20px;

  }

  #custom-html-s8 .h3,

  #custom-html-s8 h3 {

    font-size: 16px;

  }

  #custom-html-s8 .h4,

  #custom-html-s8 h4 {

    font-size: 14px;

  }

  #custom-html-s8 .h5,

  #custom-html-s8 h5 {

    font-size: 12px;

  }

  #custom-html-s8 .h6,

  #custom-html-s8 h6 {

    font-size: 11px;

  }

  #custom-html-s8 div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-s8 .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-s8 .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-s8 .margin-10 {

  margin: 10px;

}

#custom-html-s8 .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-s8 .margin-top-5 {

  margin-top: 5px;

}

#custom-html-s8 .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-s8 .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-s8 .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-s8 .input-inline {

  display: inline-block;

}

#custom-html-s8 .input-inline-100 {

  width: 100px;

}

#custom-html-s8 .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-s8 .pull-md-left {

    float: left;

  }

  #custom-html-s8 .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-s8 .pull-sm-left {

    float: left;

  }

  #custom-html-s8 .pull-sm-right {

    float: right;

  }

  #custom-html-s8 .text-right-sm {

    text-align: right;

  }

}

#custom-html-s8 .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-s8 .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-s8 .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-s8 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-s8 .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-s8 .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-s8 .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-s8 i.icon-rss {

  color: #ff6600;

}

#custom-html-s8 section#main-menu {

  background-color: #000000;

}

#custom-html-s8 section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-s8 section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-s8 section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-s8 section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-s8 section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-s8 section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-s8 section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-s8 section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-s8 section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-s8 section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-s8 section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-s8 section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-s8 section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-s8 .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-s8 .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-s8 .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-s8 .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-s8 .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-s8 .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-s8 .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-s8 .home-shortcuts li span {

  display: none;

}

#custom-html-s8 .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-s8 .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-s8 .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-s8 .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-s8 .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-s8 .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-s8 .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-s8 .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-s8 .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-s8 .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-s8 .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-s8 .client-home-panels .panel small {

  color: #888888;

}

#custom-html-s8 .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-s8 .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-s8 .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-s8 .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-s8 .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-s8 .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-s8 .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-s8 .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-s8 .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s8 .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-s8 .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-s8 .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-s8 .tiles .tile a {

  text-decoration: none;

}

#custom-html-s8 .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-s8 .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-s8 .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-s8 .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-s8 .tiles .tile:nth-child(1),

  #custom-html-s8 .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-s8 .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-s8 .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-s8 .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-s8 .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-s8 .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-s8 .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-s8 .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-s8 .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-s8 .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-s8 .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-s8 .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-s8 .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-s8 .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-s8 .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-s8 .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-s8 .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-s8 .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-s8 .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-s8 .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-s8 .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-s8 .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-s8 .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-s8 .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-s8 .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-s8 .bg-color-red {

  background-color: #d9534f;

}

#custom-html-s8 .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-s8 .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-s8 .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-s8 .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-s8 .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-s8 .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-s8 .bg-color-teal {

  background-color: #00aba9;

}


#custom-html-s8 .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-s8 .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-s8 .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-s8 .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-s8 .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-s8 .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-s8 .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-s8 .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-s8 .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-s8 ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-s8 ul.top-nav > li,

#custom-html-s8 ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-s8 ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-s8 ul.top-nav > li:active > a,

#custom-html-s8 ul.top-nav > li:focus > a,

#custom-html-s8 ul.top-nav > li:hover > a,

#custom-html-s8 ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-s8 ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-s8 ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-s8 ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-s8 ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-s8 ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-s8 ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-s8 ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-s8 ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-s8 ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-s8 ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-s8 div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-s8 div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-s8 div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-s8 div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-s8 div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-s8 div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-s8 .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-s8 .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-s8 .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-s8 .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-s8 .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-s8 .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-s8 .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-s8 .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-s8 .domain-check-availability {

  width: 100px;

}

#custom-html-s8 .domain-step-options {

  min-height: 300px;

}

#custom-html-s8 .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-s8 .domain-checker-available {

  color: #5cb85c;

}

#custom-html-s8 .domain-checker-invalid,

#custom-html-s8 .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-s8 div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-s8 .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-s8 .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-s8 .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-s8 a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-s8 .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-s8 .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-s8 .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-s8 .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-s8 .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-s8 .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-s8 .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-s8 .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-s8 .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-s8 .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-s8 .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-s8 .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-s8 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-s8 .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-s8 .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-s8 .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-s8 .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-s8 .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-s8 .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-s8 .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-s8 .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-s8 .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-s8 .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-s8 .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-s8 .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-s8 .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-s8 div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-s8 div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-s8 div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-s8 .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-s8 .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-s8 .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-s8 .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-s8 div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-s8 div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-s8 .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-s8 .product-status-pending {

  background-color: #f89406;

}

#custom-html-s8 .product-status-active {

  background-color: #46a546;

}

#custom-html-s8 .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-s8 .product-status-cancelled,

#custom-html-s8 .product-status-terminated {

  background-color: #666666;

}

#custom-html-s8 .product-status-fraud {

  background-color: #000000;

}

#custom-html-s8 .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-s8 div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-s8 .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-s8 .ssl-inactive {

  cursor: pointer;

}

#custom-html-s8 .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-s8 .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-s8 .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-s8 .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-s8 .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-s8 .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-s8 .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-s8 .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-s8 .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-s8 .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-s8 .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-s8 .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-s8 .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-s8 .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-s8 .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-s8 .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-s8 .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-s8 .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-s8 .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-s8 .pagination > li > a,

#custom-html-s8 .pagination > li > span {

  color: #444444;

}

#custom-html-s8 .pagination > .active > a,

#custom-html-s8 .pagination > .active > a:focus,

#custom-html-s8 .pagination > .active > a:hover,

#custom-html-s8 .pagination > .active > span,

#custom-html-s8 .pagination > .active > span:focus,

#custom-html-s8 .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-s8 table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-s8 .table-container {

  padding: 0 0 25px 0;

}

#custom-html-s8 table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-s8 .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-s8 table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-s8 .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-s8 .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-s8 .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-s8 table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-s8 table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-s8 table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-s8 .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-s8 .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-s8 .status-pending {

  color: #d9534f;

}

#custom-html-s8 .status-pending.transfer {

  color: #a68500;

}

#custom-html-s8 .status-active,

#custom-html-s8 .status-completed,

#custom-html-s8 .status-open {

  color: #3fad46;

}

#custom-html-s8 .status-suspended {

  color: #f0ad4e;

}

#custom-html-s8 .status-customer-reply {

  color: #ff6600;

}

#custom-html-s8 .status-answered,

#custom-html-s8 .status-fraud {

  color: #000000;

}

#custom-html-s8 .status-expired,

#custom-html-s8 .status-transferred.away {

  color: #004258;

}

#custom-html-s8 .status-cancelled {

  color: #9fa29a;

}

#custom-html-s8 .status-terminated {

  color: #666666;

}

#custom-html-s8 .status-onhold {

  color: #224488;

}

#custom-html-s8 .status-inprogress {

  color: #cc0000;

}

#custom-html-s8 .status-closed {

  color: #888888;

}

#custom-html-s8 .status-paid {

  color: #498302;

}

#custom-html-s8 .status-unpaid {

  color: #ed3e48;

}

#custom-html-s8 .status-cancelled {

  color: #87939f;

}

#custom-html-s8 .status-collections {

  color: #9a141e;

}

#custom-html-s8 .status-refunded {

  color: #319fc3;

}

#custom-html-s8 .status-customer-reply {

  color: #ff6600;

}

#custom-html-s8 .status-delivered {

  color: #224488;

}

#custom-html-s8 .status-accepted {

  color: #498302;

}

#custom-html-s8 .status-dead,

#custom-html-s8 .status-lost {

  color: #000000;

}

#custom-html-s8 .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-s8 .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-s8 .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-s8 .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-s8 .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-s8 .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-s8 .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-s8 .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-s8 .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-s8 .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-s8 .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-s8 .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-s8 .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-s8 .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-s8 .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-s8 .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-s8 .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-s8 .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-s8 .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-s8 .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-s8 .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-s8 .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-s8 .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-s8 .ticket-reply .rating,

#custom-html-s8 .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-s8 .ticket-reply .rating span.star,

#custom-html-s8 .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-s8 .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-s8 .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-s8 .ticket-reply .rating span.star:before,

#custom-html-s8 .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-s8 .ticket-reply .rating span.star:hover:before,

#custom-html-s8 .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-s8 .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-s8 .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-s8 .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-s8 .ticket-reply .clear {

  clear: both;

}

#custom-html-s8 .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-s8 .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-s8 .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-s8 .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-s8 .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-s8 .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-s8 .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-s8 .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-s8 .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-s8 .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-s8 .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-s8 .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-s8 .popover-user-notifications ul li i.far,

#custom-html-s8 .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-s8 .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-s8 .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-s8 .popover-user-notifications ul li i.far.fa-warning,

#custom-html-s8 .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-s8 .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-s8 .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-s8 .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-s8 .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-s8 .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-s8 div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-s8 div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-s8 div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-s8 div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-s8 div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-s8 div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-s8 div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-s8 div.credit-card {

    max-width: 250px;

  }

  #custom-html-s8 div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-s8 div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-s8 div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-s8 div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-s8 div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-s8 .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-s8 .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-s8 .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-s8 .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-s8 .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-s8 .invoice-summary-table td.total-row {

  background-color: #efefef;


  font-weight: 700;

}

#custom-html-s8 div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-s8 div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-s8 div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-s8 div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-s8 div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-s8 div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-s8 .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-s8 .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-s8 .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-s8 .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-s8 .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-s8 .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-s8 .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-s8 div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-s8 div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-s8 div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-s8 #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-s8 .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-s8 .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-s8 .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-s8 .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-s8 .kb-category a small {

  color: #888888;

}

#custom-html-s8 .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-s8 .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-s8 .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-s8 .kbarticles a.admin-inline-edit,

#custom-html-s8 .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-s8 h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-s8 .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-s8 .kb-article-title h2 {

  margin: 0;

}

#custom-html-s8 .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-s8 .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-s8 .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-s8 .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-s8 .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-s8 .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-s8 .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-s8 .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-s8 #stepResults {

  font-size: 20px;

}

#custom-html-s8 #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-s8 #stepResults {

    font-size: 14px;

  }

  #custom-html-s8 #stepResults .label {

    font-size: 14px;

  }

  #custom-html-s8 div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-s8 #main-menu,

  #custom-html-s8 #top-nav,

  #custom-html-s8 .header-lined,

  #custom-html-s8 .sidebar {

    display: none;

  }

  #custom-html-s8 a[href]:after {

    content: "" !important;

  }

}

#custom-html-s8 h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-s8 h3.with-badge i,

#custom-html-s8 h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-s8 h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-s8 h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-s8 .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-s8 .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-s8 .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-s8 a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-s8 a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-s8 .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-s8 .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-s8 .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-s8 .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-s8 .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-s8 .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-s8 .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-s8 .login-popover {

  font-size: 12px;

}

#custom-html-s8 .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-s8 .login-popover hr {

  margin: 5px 0;

}

#custom-html-s8 tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-s8 tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-s8 .error-container {

  text-align: center;

}

#custom-html-s8 .error-container h1 {

  margin-top: 40px;

}

#custom-html-s8 .error-container .buttons {

  margin: 25px 0;

}

#custom-html-s8 .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-s8 .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-s8 .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-s8 .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-s8 #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-s8 #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-s8 #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-s8 .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-s8 #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-s8 #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-s8 #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-s8 #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-s8 #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-s8 #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-s8 .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-s8 .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-s8 .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-s8 .email-verification .btn:active,

#custom-html-s8 .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-s8 .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-s8 .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-s8 .email-verification .far,

#custom-html-s8 .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-s8 .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-s8 .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-s8 .email-verification .button {

    float: right;

  }

  #custom-html-s8 .email-verification .far,

  #custom-html-s8 .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-s8 .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-s8 .email-verification.success .far,

#custom-html-s8 .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-s8 .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-s8 .email-verification.failed .far,

#custom-html-s8 .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-s8 .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-s8 .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-s8 .md-editor > .md-preview,

#custom-html-s8 .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-s8 div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s8 .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-s8 .small-font {

  font-size: 0.9em;

}

#custom-html-s8 .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-s8 .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-s8 .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-s8 .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-s8 .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-s8 .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-s8 .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-s8 .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-s8 .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-s8 .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-s8 .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-s8 .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-s8 .panel-heading i.fab,

#custom-html-s8 .panel-heading i.fal,

#custom-html-s8 .panel-heading i.far,

#custom-html-s8 .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-s8 .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-s8 .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-s8 .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-s8 .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-s8 .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-s8 .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-s8 .panel-sidebar .list-group-item.disabled,

#custom-html-s8 .panel-sidebar .list-group-item.disabled:focus,

#custom-html-s8 .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-s8 .panel-sidebar a.list-group-item:hover i.far,

#custom-html-s8 .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-s8 .panel-sidebar a.list-group-item.active,

#custom-html-s8 .panel-sidebar a.list-group-item.active:focus,

#custom-html-s8 .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-s8 .panel-sidebar a.list-group-item.active i,

#custom-html-s8 .panel-sidebar a.list-group-item.active:focus i,

#custom-html-s8 .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-s8 .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-s8 .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-s8 .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-s8 .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-s8 .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-s8 .store-order-container h2 {

  margin-top: 0;

}

#custom-html-s8 .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-s8 .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-s8 .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-s8 .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-s8 .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-s8 .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-s8 .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-s8 .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-s8 .store-order-container .payment-term {

    float: right;

  }

  #custom-html-s8 .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-s8 .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-s8 .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-s8 .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-s8 .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-s8 .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-s8 .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-s8 .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-s8 .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-s8 .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-s8 .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-s8 .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-s8 .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-s8 .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-s8 .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-s8 .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-s8 .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-s8 .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-s8 .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-s8 .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-s8 .promo-banner p {

  margin: 5px 0;

}

#custom-html-s8 .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-s8 .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-s8 .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-s8 .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-s8 .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-s8 .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-s8 .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-s8 .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-s8 .promo-banner-slim {

  padding: 10px;

}

#custom-html-s8 .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-s8 .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-s8 .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-s8 .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-s8 .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-s8 .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-s8 .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-s8 .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-s8 .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-s8 .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-s8 .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-s8 .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-s8 .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-s8 .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-s8 .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-s8 .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-s8 .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-s8 .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-s8 .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-s8 .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-s8 .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-s8 .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-s8 .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-s8 .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-s8 .panel-mc-sso .btn,

#custom-html-s8 .panel-mc-sso .form-control,

#custom-html-s8 .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-s8 .panel-mc-sso small {

  display: block;

}

#custom-html-s8 .social-signin-btns {

  text-align: center;

}

#custom-html-s8 .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-s8 .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-s8 .btn-social i.far,

#custom-html-s8 .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-facebook.active,

#custom-html-s8 .btn-facebook:active,

#custom-html-s8 .btn-facebook:focus,

#custom-html-s8 .btn-facebook:hover,

#custom-html-s8 .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-facebook.active,

#custom-html-s8 .btn-facebook:active,

#custom-html-s8 .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-s8 .btn-facebook.disabled,

#custom-html-s8 .btn-facebook.disabled.active,

#custom-html-s8 .btn-facebook.disabled:active,

#custom-html-s8 .btn-facebook.disabled:focus,

#custom-html-s8 .btn-facebook.disabled:hover,

#custom-html-s8 .btn-facebook[disabled],

#custom-html-s8 .btn-facebook[disabled].active,

#custom-html-s8 .btn-facebook[disabled]:active,

#custom-html-s8 .btn-facebook[disabled]:focus,

#custom-html-s8 .btn-facebook[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-facebook,

#custom-html-s8 fieldset[disabled] .btn-facebook.active,

#custom-html-s8 fieldset[disabled] .btn-facebook:active,

#custom-html-s8 fieldset[disabled] .btn-facebook:focus,

#custom-html-s8 fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-google.active,

#custom-html-s8 .btn-google:active,

#custom-html-s8 .btn-google:focus,

#custom-html-s8 .btn-google:hover,

#custom-html-s8 .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-google.active,

#custom-html-s8 .btn-google:active,

#custom-html-s8 .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-s8 .btn-google-plus.disabled.active,

#custom-html-s8 .btn-google-plus.disabled:active,

#custom-html-s8 .btn-google-plus.disabled:focus,

#custom-html-s8 .btn-google-plus[disabled].active,

#custom-html-s8 .btn-google-plus[disabled]:active,

#custom-html-s8 .btn-google-plus[disabled]:focus,

#custom-html-s8 .btn-google-plus[disabled]:hover,

#custom-html-s8 .btn-google.disabled,

#custom-html-s8 .btn-google.disabled:hover,

#custom-html-s8 .btn-google[disabled],

#custom-html-s8 fieldset[disabled] .btn-google,

#custom-html-s8 fieldset[disabled] .btn-google-plus.active,

#custom-html-s8 fieldset[disabled] .btn-google-plus:active,

#custom-html-s8 fieldset[disabled] .btn-google-plus:focus,

#custom-html-s8 fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-twitter.active,

#custom-html-s8 .btn-twitter:active,

#custom-html-s8 .btn-twitter:focus,

#custom-html-s8 .btn-twitter:hover,

#custom-html-s8 .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .btn-twitter.active,

#custom-html-s8 .btn-twitter:active,

#custom-html-s8 .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-s8 .btn-twitter.disabled,

#custom-html-s8 .btn-twitter.disabled.active,

#custom-html-s8 .btn-twitter.disabled:active,

#custom-html-s8 .btn-twitter.disabled:focus,

#custom-html-s8 .btn-twitter.disabled:hover,

#custom-html-s8 .btn-twitter[disabled],

#custom-html-s8 .btn-twitter[disabled].active,

#custom-html-s8 .btn-twitter[disabled]:active,

#custom-html-s8 .btn-twitter[disabled]:focus,

#custom-html-s8 .btn-twitter[disabled]:hover,

#custom-html-s8 fieldset[disabled] .btn-twitter,

#custom-html-s8 fieldset[disabled] .btn-twitter.active,

#custom-html-s8 fieldset[disabled] .btn-twitter:active,

#custom-html-s8 fieldset[disabled] .btn-twitter:focus,

#custom-html-s8 fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-s8 .providerPreLinking {

  min-height: 52px;

}

#custom-html-s8 .providerLinkingFeedback {

  display: none;

}

#custom-html-s8 #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-s8 #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-s8 #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-s8 #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-s8 .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-s8 #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-s8 #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-s8 #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-s8 #registration .field,

#custom-html-s8 #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-s8 #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-s8 #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-s8 #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-s8 #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-s8 #registration textarea.field {

  height: auto;

}

#custom-html-s8 #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-s8 #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-s8 #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-s8 #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-s8 #registration .field[disabled],

#custom-html-s8 #registration .field[readonly],

#custom-html-s8 #registration .form-control[disabled],

#custom-html-s8 #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-s8 #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-s8 .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-s8 .upgrade .product-to-be-upgraded h4,

#custom-html-s8 .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-s8 .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-s8 .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-s8 .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-s8 .upgrade .products .product .current,

#custom-html-s8 .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-s8 .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-s8 .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-s8 .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-s8 .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-s8 .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-s8 .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-s8 .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-s8 .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-s8 .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-s8 .upgrade .products .far,

#custom-html-s8 .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-s8 .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-s8 .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-s8 .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-s8 .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-s8 .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-s8 .alert .alert-text {

  margin-left: 56px;

}

#custom-html-s8 .intl-tel-input {

  width: 100%;

}

#custom-html-s8 .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-s8 .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .bootstrap-switch input[type=checkbox],

#custom-html-s8 .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-s8 .bootstrap-switch input[type=checkbox].form-control,

#custom-html-s8 .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-s8 .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-s8 .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-s8 .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-s8 .md-editor .md-footer,

#custom-html-s8 .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-s8 .md-editor > .md-header {

  margin: 0;

}

#custom-html-s8 .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-s8 .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-s8 .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-s8 .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-s8 .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-s8 .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-s8 .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-s8 .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-input,

#custom-html-s8 .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-s8 .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .btn.active,

#custom-html-s8 .md-editor.md-fullscreen-mode .btn:active,

#custom-html-s8 .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-s8 .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-s8 .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-s8 .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-s8 .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-s8 table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-s8 table.dataTable td,

#custom-html-s8 table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-s8 table.dataTable td.dataTables_empty,

#custom-html-s8 table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-s8 table.dataTable.nowrap td,

#custom-html-s8 table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-s8 div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-s8 table.dataTable thead > tr > td.sorting,

#custom-html-s8 table.dataTable thead > tr > td.sorting_asc,

#custom-html-s8 table.dataTable thead > tr > td.sorting_desc,

#custom-html-s8 table.dataTable thead > tr > th.sorting,

#custom-html-s8 table.dataTable thead > tr > th.sorting_asc,

#custom-html-s8 table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-s8 table.dataTable thead > tr > td:active,

#custom-html-s8 table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-s8 table.dataTable thead .sorting,

#custom-html-s8 table.dataTable thead .sorting_asc,

#custom-html-s8 table.dataTable thead .sorting_asc_disabled,

#custom-html-s8 table.dataTable thead .sorting_desc,

#custom-html-s8 table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-s8 table.dataTable thead .sorting:after,

#custom-html-s8 table.dataTable thead .sorting_asc:after,

#custom-html-s8 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-s8 table.dataTable thead .sorting_desc:after,

#custom-html-s8 table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-s8 table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-s8 table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-s8 table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-s8 table.dataTable thead .sorting_asc_disabled:after,

#custom-html-s8 table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-s8 div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-s8 div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-s8 div.dataTables_scrollBody table thead .sorting:after,

#custom-html-s8 div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-s8 div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-s8 div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-s8 div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-s8 div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-s8 div.dataTables_wrapper div.dataTables_filter,

  #custom-html-s8 div.dataTables_wrapper div.dataTables_info,

  #custom-html-s8 div.dataTables_wrapper div.dataTables_length,

  #custom-html-s8 div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-s8 table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-s8 table.dataTable.table-condensed .sorting:after,

#custom-html-s8 table.dataTable.table-condensed .sorting_asc:after,

#custom-html-s8 table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-s8 table.table-bordered.dataTable td,

#custom-html-s8 table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-s8 table.table-bordered.dataTable td:last-child,

#custom-html-s8 table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-s8 table.table-bordered.dataTable tbody td,

#custom-html-s8 table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-s8 div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-s8 div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-s8 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-s8 div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-s8 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-s8 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-s8 table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-s8 table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-s8 table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-s8 table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-s8 table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-s8 table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-s8 table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-s8 table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-s8 table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-s8 table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-s8 table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-s8 table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-s8 table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-s8 table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-s8 div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-s8 div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-s8 div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-s8 div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-s8 div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-s8 div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-s8 div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-s8 div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-s8 .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-s8 .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-s8 .multiselect-container > li {

  padding: 0;

}

#custom-html-s8 .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-s8 .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-s8 .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-s8 .multiselect-container > li > a {

  padding: 0;

}

#custom-html-s8 .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-s8 .multiselect-container > li > a > label.checkbox,

#custom-html-s8 .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-s8 .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-s8 .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-s8 .form-inline .multiselect-container label.checkbox,

#custom-html-s8 .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-s8 .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-s8 .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7sZtQb0P {

  padding-top: 90px;

  padding-bottom: 0px;

  background-image: url("../../../assets/images/mbr-1920x974.jpg");

}

.cid-sl7sZtQb0P P {

  color: #767676;

}

.cid-sl7sZtQb0P H1 {

  color: #ffffff;

}

.cid-sl7sZtQb0P h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF30wJTqoE .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF30wJTqoE .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #fffff;
f
}

.cid-sF30wJTqoE .divider-top::before,

.cid-sF30wJTqoE .divider-bottom::before,

.cid-sF30wJTqoE .divider-top::after,

.cid-sF30wJTqoE .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF30wJTqoE .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF30wJTqoE .divider-triangles::before {

  top: -50px;

}

.cid-sF30wJTqoE .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF30wJTqoE .divider-halfcircle::before {

  top: -50px;

}

.cid-sF30wJTqoE .divider-multitriangles::before,

.cid-sF30wJTqoE .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF30wJTqoE .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-rZzL1Zs1x1 {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-rZzL1Zs1x1 .testimonial-text {

  font-style: italic;

  font-weight: 300;

}

.cid-rZzL1Zs1x1 .mbr-author-name {

  font-weight: bold;

}

.cid-rZzL1Zs1x1 .media-container-row {

  word-wrap: break-word;

  word-break: break-word;

}

@media (max-width: 991px) {

  .cid-rZzL1Zs1x1 .mbr-figure,

  .cid-rZzL1Zs1x1 img {

    max-height: 300px;

    width: auto;

    margin: auto;

  }

  .cid-rZzL1Zs1x1 .media-content {

    padding-top: 1.5rem !important;

  }

}

.cid-sFcHgtLRoM .divider-top {

  position: relative;

  padding: 0em;

  background: #efefef;

}

.cid-sFcHgtLRoM .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sFcHgtLRoM .divider-top::before,

.cid-sFcHgtLRoM .divider-bottom::before,

.cid-sFcHgtLRoM .divider-top::after,

.cid-sFcHgtLRoM .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sFcHgtLRoM .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sFcHgtLRoM .divider-triangles::before {

  top: -50px;

}

.cid-sFcHgtLRoM .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sFcHgtLRoM .divider-halfcircle::before {

  top: -50px;

}

.cid-sFcHgtLRoM .divider-multitriangles::before,

.cid-sFcHgtLRoM .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sFcHgtLRoM .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-rY6OnYvCsn {

  padding-top: 120px;

  padding-bottom: 120px;

  background-color: #ffffff;

}

.cid-rY6OnYvCsn .carousel-item {

  justify-content: center;

  -webkit-justify-content: center;

}

.cid-rY6OnYvCsn .carousel-item.active,

.cid-rY6OnYvCsn .carousel-item-next,

.cid-rY6OnYvCsn .carousel-item-prev {

  display: flex;

}

.cid-rY6OnYvCsn .carousel-controls a {

  transition: opacity .5s;

  font-size: 2rem;

}

.cid-rY6OnYvCsn .carousel-controls a span {

  position: absolute;

  top: 180px;

  padding: 10px;

  color: #585858;

  background: #c8c6c6;

  opacity: .5;

}

.cid-rY6OnYvCsn .carousel-controls a:hover span {

  opacity: 1;

}

.cid-rY6OnYvCsn .user_image {

  width: 200px;

  height: 200px;

  margin-bottom: 1.6rem;

  overflow: hidden;

  margin: 0 auto 2rem auto;

}

.cid-rY6OnYvCsn .user_image img {

  width: 100%;

  min-width: 100%;

  min-height: 100%;

}

@media (max-width: 230px) {

  .cid-rY6OnYvCsn .user_image {

    width: 100%;

    height: auto;

  }

}

.cid-rY6OnYvCsn .user_text {

  text-align: left;

  color: #000000;

}

.cid-rY6OnYvCsn .user_name {

  color: #000000;

}

.cid-rY6OnYvCsn .user_desk {

  color: #000000;

}

.cid-sF31j1ystv .divider-top {

  position: relative;

  padding: 0em;

  background: #ffffff;

}

.cid-sF31j1ystv .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF31j1ystv .divider-top::before,

.cid-sF31j1ystv .divider-bottom::before,

.cid-sF31j1ystv .divider-top::after,

.cid-sF31j1ystv .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF31j1ystv .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF31j1ystv .divider-triangles::before {

  top: -50px;

}

.cid-sF31j1ystv .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF31j1ystv .divider-halfcircle::before {

  top: -50px;

}

.cid-sF31j1ystv .divider-multitriangles::before,

.cid-sF31j1ystv .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF31j1ystv .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-s889ovbfDu {

  padding-top: 0px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-s889ovbfDu h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-s889ovbfDu p {

  color: #767676;

  text-align: left;

}

.cid-s889ovbfDu .card-box {

  padding-top: 2rem;

}

.cid-s889ovbfDu .card-wrapper {

  height: 100%;

}

.cid-svDxQ8h3Gb {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDxQ8h3Gb .content {

    text-align: center;

  }

  .cid-svDxQ8h3Gb .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDxQ8h3Gb .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDxQ8h3Gb .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDxQ8h3Gb .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDxQ8h3Gb .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDxQ8h3Gb .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDxQ8h3Gb .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDxQ8h3Gb .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDxQ8h3Gb .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDxQ8h3Gb .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDxQ8h3Gb .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDxQ8h3Gb .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDxQ8h3Gb .copyright > p {

  text-align: left;

}

.cid-svDxQ8h3Gb H5 {

  color: #000000;

}

.cid-svGGbqE1nP .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGGbqE1nP .my-float {

  margin-top: 16px;

}

.cid-svGGbqE1nP P {

  color: #232323;

}

.cid-svGGbqE1nP DIV {

  color: #ffffff;

}

.cid-svGGbqE1nP H10 {

  color: #767676;

}

.cid-svGGbqE1nP .hidden {

  display: none;

}

#custom-html-sq {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-sq html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sq body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-sq article,

#custom-html-sq aside,

#custom-html-sq details,

#custom-html-sq figcaption,

#custom-html-sq figure,

#custom-html-sq footer,

#custom-html-sq header,

#custom-html-sq hgroup,

#custom-html-sq main,

#custom-html-sq menu,

#custom-html-sq nav,

#custom-html-sq section,

#custom-html-sq summary {

  display: block;

}

#custom-html-sq audio,

#custom-html-sq canvas,

#custom-html-sq progress,

#custom-html-sq video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sq audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sq [hidden],

#custom-html-sq template {

  display: none;

}

#custom-html-sq a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-sq a:active,

#custom-html-sq a:hover {

  outline: 0;

}

#custom-html-sq abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sq b,

#custom-html-sq strong {

  font-weight: 700;

}

#custom-html-sq dfn {

  font-style: italic;

}

#custom-html-sq h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sq mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sq small {

  font-size: 80%;

}

#custom-html-sq sub,

#custom-html-sq sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sq sup {

  top: -0.5em;

}

#custom-html-sq sub {

  bottom: -0.25em;

}

#custom-html-sq img {

  border: 0;

  vertical-align: middle;

}

#custom-html-sq svg:not(:root) {

  overflow: hidden;

}

#custom-html-sq figure {

  margin: 0;

}

#custom-html-sq hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sq pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sq code,

#custom-html-sq kbd,

#custom-html-sq pre,

#custom-html-sq samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-sq button,

#custom-html-sq input,

#custom-html-sq optgroup,

#custom-html-sq select,

#custom-html-sq textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sq button {

  overflow: visible;

}

#custom-html-sq button,

#custom-html-sq select {

  text-transform: none;

}

#custom-html-sq button,

#custom-html-sq html input[type=button],

#custom-html-sq input[type=reset],

#custom-html-sq input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sq button[disabled],

#custom-html-sq html input[disabled] {

  cursor: default;

}

#custom-html-sq button::-moz-focus-inner,

#custom-html-sq input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sq input {

  line-height: normal;

}

#custom-html-sq input[type=checkbox],

#custom-html-sq input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sq input[type=number]::-webkit-inner-spin-button,

#custom-html-sq input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sq input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-sq input[type=search]::-webkit-search-cancel-button,

#custom-html-sq input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sq fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-sq legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sq textarea {

  overflow: auto;

}

#custom-html-sq optgroup {

  font-weight: 700;

}

#custom-html-sq table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-sq td,

#custom-html-sq th {

  padding: 0;

}

@media print {

  #custom-html-sq *,

  #custom-html-sq :after,

  #custom-html-sq :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sq a,

  #custom-html-sq a:visited {

    text-decoration: underline;

  }

  #custom-html-sq a[href]:after {

    content: "" !important;

  }

  #custom-html-sq abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sq a[href^="#"]:after,

  #custom-html-sq a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sq blockquote,

  #custom-html-sq pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sq thead {

    display: table-header-group;

  }

  #custom-html-sq img,

  #custom-html-sq tr {

    page-break-inside: avoid;

  }

  #custom-html-sq img {

    max-width: 100% !important;

  }

  #custom-html-sq h2,

  #custom-html-sq h3,

  #custom-html-sq p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sq h2,

  #custom-html-sq h3 {

    page-break-after: avoid;

  }

  #custom-html-sq .navbar {

    display: none;

  }

  #custom-html-sq .btn > .caret,

  #custom-html-sq .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sq .label {

    border: 1px solid #000000;

  }

  #custom-html-sq .table {

    border-collapse: collapse !important;

  }

  #custom-html-sq .table td,

  #custom-html-sq .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sq .table-bordered td,

  #custom-html-sq .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-sq .visible-print {

    display: block !important;

  }

  #custom-html-sq table.visible-print {

    display: table !important;

  }

  #custom-html-sq tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sq td.visible-print,

  #custom-html-sq th.visible-print {

    display: table-cell !important;

  }

  #custom-html-sq .visible-print-block {

    display: block !important;

  }

  #custom-html-sq .visible-print-inline {

    display: inline !important;

  }

  #custom-html-sq .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-sq .hidden-print {

    display: none !important;

  }

  #custom-html-sq #main-menu,

  #custom-html-sq #top-nav,

  #custom-html-sq .header-lined,

  #custom-html-sq .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sq .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sq .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sq .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sq .glyphicon-eur:before,

#custom-html-sq .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sq .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sq .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sq .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sq .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sq .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sq .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sq .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sq .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sq .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sq .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sq .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sq .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sq .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sq .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sq .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sq .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sq .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sq .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sq .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sq .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sq .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sq .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sq .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sq .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sq .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sq .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sq .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sq .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sq .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sq .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sq .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sq .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sq .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sq .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sq .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sq .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sq .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sq .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sq .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sq .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sq .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sq .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sq .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sq .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sq .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sq .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sq .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sq .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sq .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sq .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sq .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sq .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sq .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sq .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sq .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sq .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sq .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sq .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sq .glyphicon-list:before {

  content: "\e056";

}

#custom-html-sq .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sq .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sq .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sq .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sq .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sq .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sq .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sq .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sq .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sq .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sq .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sq .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sq .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sq .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sq .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sq .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sq .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sq .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sq .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sq .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sq .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sq .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sq .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sq .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sq .glyphicon-minus-sign:before {

  content: "\e082";

}


#custom-html-sq .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sq .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sq .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sq .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sq .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sq .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sq .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sq .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sq .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sq .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sq .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sq .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sq .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sq .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sq .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sq .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sq .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sq .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sq .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sq .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sq .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sq .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sq .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sq .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sq .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sq .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sq .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sq .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sq .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sq .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sq .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sq .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sq .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sq .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sq .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sq .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sq .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sq .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sq .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sq .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sq .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sq .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sq .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sq .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sq .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sq .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sq .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sq .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sq .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sq .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sq .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sq .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sq .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sq .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sq .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sq .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sq .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sq .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sq .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sq .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sq .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sq .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sq .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sq .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sq .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sq .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sq .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sq .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sq .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sq .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sq .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sq .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sq .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sq .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-sq .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sq .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sq .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sq .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sq .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sq .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sq .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sq .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sq .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sq .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sq .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sq .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sq .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sq .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sq .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sq .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sq .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sq .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sq .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sq .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sq .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sq .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sq .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sq .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sq .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sq .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sq .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sq .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sq .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sq .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sq .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sq .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sq .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sq .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sq .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sq .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sq .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sq .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sq .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sq .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sq .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sq .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sq .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sq .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sq .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sq .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sq .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sq .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sq .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sq .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sq .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sq .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sq .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sq .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sq .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sq .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sq .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sq .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sq .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sq .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sq .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sq .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sq .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sq .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sq .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sq .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sq .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sq .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sq .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sq .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sq .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sq .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sq .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sq .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sq .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sq .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sq .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sq .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sq .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sq .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sq .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sq .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sq .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sq .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sq .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sq .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-sq .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sq .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sq .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sq .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sq .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sq .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sq .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sq .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sq .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sq .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sq .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sq .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sq .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sq .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sq .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sq * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sq :after,

#custom-html-sq :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sq button,

#custom-html-sq input,

#custom-html-sq select,

#custom-html-sq textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sq a:focus,

#custom-html-sq a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sq a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sq .carousel-inner > .item > a > img,

#custom-html-sq .carousel-inner > .item > img,

#custom-html-sq .img-responsive,

#custom-html-sq .thumbnail a > img,

#custom-html-sq .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sq .img-rounded {

  border-radius: 6px;

}

#custom-html-sq .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sq .img-circle {

  border-radius: 50%;

}

#custom-html-sq .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sq .sr-only-focusable:active,

#custom-html-sq .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sq [role=button] {

  cursor: pointer;

}

#custom-html-sq .h1,

#custom-html-sq .h2,

#custom-html-sq .h3,

#custom-html-sq .h4,

#custom-html-sq .h5,

#custom-html-sq .h6,

#custom-html-sq h1,

#custom-html-sq h2,

#custom-html-sq h3,

#custom-html-sq h4,

#custom-html-sq h5,

#custom-html-sq h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sq .h1 .small,

#custom-html-sq .h1 small,

#custom-html-sq .h2 .small,

#custom-html-sq .h2 small,

#custom-html-sq .h3 .small,

#custom-html-sq .h3 small,

#custom-html-sq .h4 .small,

#custom-html-sq .h4 small,

#custom-html-sq .h5 .small,

#custom-html-sq .h5 small,

#custom-html-sq .h6 .small,

#custom-html-sq .h6 small,

#custom-html-sq h1 .small,

#custom-html-sq h1 small,

#custom-html-sq h2 .small,

#custom-html-sq h2 small,

#custom-html-sq h3 .small,

#custom-html-sq h3 small,

#custom-html-sq h4 .small,

#custom-html-sq h4 small,

#custom-html-sq h5 .small,

#custom-html-sq h5 small,

#custom-html-sq h6 .small,

#custom-html-sq h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sq .h1,

#custom-html-sq .h2,

#custom-html-sq .h3,

#custom-html-sq h1,

#custom-html-sq h2,

#custom-html-sq h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sq .h1 .small,

#custom-html-sq .h1 small,

#custom-html-sq .h2 .small,

#custom-html-sq .h2 small,

#custom-html-sq .h3 .small,

#custom-html-sq .h3 small,

#custom-html-sq h1 .small,

#custom-html-sq h1 small,

#custom-html-sq h2 .small,

#custom-html-sq h2 small,

#custom-html-sq h3 .small,

#custom-html-sq h3 small {

  font-size: 65%;

}

#custom-html-sq .h4,

#custom-html-sq .h5,

#custom-html-sq .h6,

#custom-html-sq h4,

#custom-html-sq h5,

#custom-html-sq h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sq .h4 .small,

#custom-html-sq .h4 small,

#custom-html-sq .h5 .small,

#custom-html-sq .h5 small,

#custom-html-sq .h6 .small,

#custom-html-sq .h6 small,

#custom-html-sq h4 .small,

#custom-html-sq h4 small,

#custom-html-sq h5 .small,

#custom-html-sq h5 small,

#custom-html-sq h6 .small,

#custom-html-sq h6 small {

  font-size: 75%;

}

#custom-html-sq .h1,

#custom-html-sq h1 {

  font-size: 36px;

}

#custom-html-sq .h2,

#custom-html-sq h2 {

  font-size: 30px;

}

#custom-html-sq .h3,

#custom-html-sq h3 {

  font-size: 24px;

}

#custom-html-sq .h4,

#custom-html-sq h4 {

  font-size: 18px;

}

#custom-html-sq .h5,

#custom-html-sq h5 {

  font-size: 14px;

}

#custom-html-sq .h6,

#custom-html-sq h6 {

  font-size: 12px;

}

#custom-html-sq p {

  margin: 0 0 10px;

}

#custom-html-sq .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sq .lead {

    font-size: 21px;

  }

  #custom-html-sq .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sq .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-sq .container {

    width: 750px;

  }

  #custom-html-sq .col-sm-1,

  #custom-html-sq .col-sm-10,

  #custom-html-sq .col-sm-11,

  #custom-html-sq .col-sm-12,

  #custom-html-sq .col-sm-2,

  #custom-html-sq .col-sm-3,

  #custom-html-sq .col-sm-4,

  #custom-html-sq .col-sm-5,

  #custom-html-sq .col-sm-6,

  #custom-html-sq .col-sm-7,

  #custom-html-sq .col-sm-8,

  #custom-html-sq .col-sm-9 {

    float: left;

  }

  #custom-html-sq .col-sm-12 {

    width: 100%;

  }

  #custom-html-sq .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sq .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sq .col-sm-9 {

    width: 75%;

  }

  #custom-html-sq .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sq .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sq .col-sm-6 {

    width: 50%;

  }

  #custom-html-sq .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sq .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sq .col-sm-3 {

    width: 25%;

  }

  #custom-html-sq .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sq .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sq .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sq .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sq .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sq .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sq .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sq .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sq .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sq .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sq .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sq .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sq .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sq .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sq .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sq .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sq .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sq .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sq .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sq .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sq .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sq .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sq .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sq .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sq .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sq .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sq .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sq .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sq .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sq .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sq .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sq .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sq .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sq .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sq .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sq .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sq .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sq .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sq .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sq .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sq .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-sq .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sq .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sq .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sq .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sq .form-inline .input-group .form-control,

  #custom-html-sq .form-inline .input-group .input-group-addon,

  #custom-html-sq .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sq .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sq .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sq .form-inline .checkbox,

  #custom-html-sq .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sq .form-inline .checkbox label,

  #custom-html-sq .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sq .form-inline .checkbox input[type=checkbox],

  #custom-html-sq .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sq .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sq .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-sq .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-sq .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-sq .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sq .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-sq .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sq .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sq .nav-tabs.nav-justified > .active > a,

  #custom-html-sq .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sq .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sq .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sq .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-sq .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sq .nav-tabs-justified > .active > a,

  #custom-html-sq .nav-tabs-justified > .active > a:focus,

  #custom-html-sq .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sq .navbar {

    border-radius: 4px;

  }

  #custom-html-sq .navbar-header {

    float: left;

  }

  #custom-html-sq .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sq .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sq .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sq .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sq .navbar-fixed-top .navbar-collapse,

  #custom-html-sq .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-sq .container-fluid > .navbar-collapse,

  #custom-html-sq .container-fluid > .navbar-header,

  #custom-html-sq .container > .navbar-collapse,

  #custom-html-sq .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-sq .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-sq .navbar-fixed-bottom,

  #custom-html-sq .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-sq .navbar > .container .navbar-brand,

  #custom-html-sq .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-sq .navbar-toggle {

    display: none;

  }

  #custom-html-sq .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sq .navbar-nav > li {

    float: left;

  }

  #custom-html-sq .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-sq .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sq .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sq .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sq .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sq .navbar-form .input-group .form-control,

  #custom-html-sq .navbar-form .input-group .input-group-addon,

  #custom-html-sq .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sq .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sq .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sq .navbar-form .checkbox,

  #custom-html-sq .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sq .navbar-form .checkbox label,

  #custom-html-sq .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sq .navbar-form .checkbox input[type=checkbox],

  #custom-html-sq .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sq .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sq .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sq .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-sq .navbar-left {

    float: left !important;

  }

  #custom-html-sq .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sq .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-sq .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sq .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sq .modal-sm {

    width: 300px;

  }

  #custom-html-sq .pull-sm-left {

    float: left;

  }

  #custom-html-sq .pull-sm-right {

    float: right;

  }

  #custom-html-sq .text-right-sm {

    text-align: right;

  }

  #custom-html-sq .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sq .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-sq .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sq .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sq .email-verification .button {

    float: right;

  }

  #custom-html-sq .email-verification .far,

  #custom-html-sq .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-sq .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sq .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-sq .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sq .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sq .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sq .small,

#custom-html-sq small {

  font-size: 85%;

}

#custom-html-sq .mark,

#custom-html-sq mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sq .text-left {

  text-align: left;

}

#custom-html-sq .text-right {

  text-align: right;

}

#custom-html-sq .text-center {

  text-align: center;

}

#custom-html-sq .text-justify {

  text-align: justify;

}

#custom-html-sq .text-nowrap {

  white-space: nowrap;

}

#custom-html-sq .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sq .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sq .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sq .text-muted {

  color: #777777;

}

#custom-html-sq .text-primary {

  color: #000000;

}

#custom-html-sq a.text-primary:focus,

#custom-html-sq a.text-primary:hover {

  color: #000000;

}

#custom-html-sq .text-success {

  color: #3c763d;

}

#custom-html-sq a.text-success:focus,

#custom-html-sq a.text-success:hover {

  color: #2b542c;

}

#custom-html-sq .text-info {

  color: #31708f;

}

#custom-html-sq a.text-info:focus,

#custom-html-sq a.text-info:hover {

  color: #000000;

}

#custom-html-sq .text-warning {

  color: #8a6d3b;

}

#custom-html-sq a.text-warning:focus,

#custom-html-sq a.text-warning:hover {

  color: #66512c;

}

#custom-html-sq .text-danger {

  color: #a94442;

}

#custom-html-sq a.text-danger:focus,

#custom-html-sq a.text-danger:hover {

  color: #843534;

}

#custom-html-sq .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-sq a.bg-primary:focus,

#custom-html-sq a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sq .bg-success {

  background-color: #dff0d8;

}

#custom-html-sq a.bg-success:focus,

#custom-html-sq a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sq .bg-info {

  background-color: #d9edf7;

}

#custom-html-sq a.bg-info:focus,

#custom-html-sq a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sq .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sq a.bg-warning:focus,

#custom-html-sq a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sq .bg-danger {

  background-color: #f2dede;

}

#custom-html-sq a.bg-danger:focus,

#custom-html-sq a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sq .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sq ol,

#custom-html-sq ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sq ol ol,

#custom-html-sq ol ul,

#custom-html-sq ul ol,

#custom-html-sq ul ul {

  margin-bottom: 0;

}

#custom-html-sq .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sq .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sq .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sq dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sq dd,

#custom-html-sq dt {

  line-height: 1.42857143;

}

#custom-html-sq dt {

  font-weight: 700;

}

#custom-html-sq dd {

  margin-left: 0;

}

#custom-html-sq abbr[data-original-title],

#custom-html-sq abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sq .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sq blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sq blockquote ol:last-child,

#custom-html-sq blockquote p:last-child,

#custom-html-sq blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sq blockquote .small,

#custom-html-sq blockquote footer,

#custom-html-sq blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sq blockquote .small:before,

#custom-html-sq blockquote footer:before,

#custom-html-sq blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sq .blockquote-reverse,

#custom-html-sq blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sq .blockquote-reverse .small:before,

#custom-html-sq .blockquote-reverse footer:before,

#custom-html-sq .blockquote-reverse small:before,

#custom-html-sq blockquote.pull-right .small:before,

#custom-html-sq blockquote.pull-right footer:before,

#custom-html-sq blockquote.pull-right small:before {

  content: '';

}

#custom-html-sq .blockquote-reverse .small:after,

#custom-html-sq .blockquote-reverse footer:after,

#custom-html-sq .blockquote-reverse small:after,

#custom-html-sq blockquote.pull-right .small:after,

#custom-html-sq blockquote.pull-right footer:after,

#custom-html-sq blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sq address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sq code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sq kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sq kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sq pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sq .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sq .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-sq .container {

    width: 970px;

  }

  #custom-html-sq .col-md-1,

  #custom-html-sq .col-md-10,

  #custom-html-sq .col-md-11,

  #custom-html-sq .col-md-12,

  #custom-html-sq .col-md-2,

  #custom-html-sq .col-md-3,

  #custom-html-sq .col-md-4,

  #custom-html-sq .col-md-5,

  #custom-html-sq .col-md-6,

  #custom-html-sq .col-md-7,

  #custom-html-sq .col-md-8,

  #custom-html-sq .col-md-9 {

    float: left;

  }

  #custom-html-sq .col-md-12 {

    width: 100%;

  }

  #custom-html-sq .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sq .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sq .col-md-9 {

    width: 75%;

  }

  #custom-html-sq .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sq .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sq .col-md-6 {

    width: 50%;

  }

  #custom-html-sq .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sq .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sq .col-md-3 {

    width: 25%;

  }

  #custom-html-sq .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sq .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sq .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sq .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sq .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sq .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sq .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sq .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sq .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sq .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sq .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sq .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sq .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sq .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sq .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sq .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sq .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sq .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sq .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sq .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sq .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sq .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sq .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sq .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sq .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sq .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sq .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sq .col-md-push-0 {

    left: auto;

  }

  #custom-html-sq .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sq .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sq .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sq .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sq .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sq .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sq .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sq .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sq .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sq .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sq .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sq .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sq .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-sq .modal-lg {

    width: 900px;

  }

  #custom-html-sq .pull-md-left {

    float: left;

  }

  #custom-html-sq .pull-md-right {

    float: right;

  }

  #custom-html-sq h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sq .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sq .container {

    width: 1170px;

  }

  #custom-html-sq .col-lg-1,

  #custom-html-sq .col-lg-10,

  #custom-html-sq .col-lg-11,

  #custom-html-sq .col-lg-12,

  #custom-html-sq .col-lg-2,

  #custom-html-sq .col-lg-3,

  #custom-html-sq .col-lg-4,

  #custom-html-sq .col-lg-5,

  #custom-html-sq .col-lg-6,

  #custom-html-sq .col-lg-7,

  #custom-html-sq .col-lg-8,

  #custom-html-sq .col-lg-9 {

    float: left;

  }

  #custom-html-sq .col-lg-12 {

    width: 100%;

  }

  #custom-html-sq .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sq .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sq .col-lg-9 {

    width: 75%;

  }

  #custom-html-sq .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sq .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sq .col-lg-6 {

    width: 50%;

  }

  #custom-html-sq .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sq .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sq .col-lg-3 {

    width: 25%;

  }

  #custom-html-sq .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sq .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sq .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sq .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sq .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sq .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sq .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sq .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sq .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sq .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sq .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sq .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sq .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sq .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sq .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sq .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sq .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sq .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sq .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sq .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sq .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sq .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sq .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sq .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sq .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sq .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sq .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sq .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sq .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sq .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sq .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sq .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sq .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sq .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sq .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sq .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sq .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sq .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sq .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sq .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sq .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-sq .visible-lg {

    display: block !important;

  }

  #custom-html-sq table.visible-lg {

    display: table !important;

  }

  #custom-html-sq tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sq td.visible-lg,

  #custom-html-sq th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-sq .visible-lg-block {

    display: block !important;

  }

  #custom-html-sq .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-sq .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-sq .hidden-lg {

    display: none !important;

  }

  #custom-html-sq .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sq .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sq .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sq .col-lg-1,

#custom-html-sq .col-lg-10,

#custom-html-sq .col-lg-11,

#custom-html-sq .col-lg-12,

#custom-html-sq .col-lg-2,

#custom-html-sq .col-lg-3,

#custom-html-sq .col-lg-4,

#custom-html-sq .col-lg-5,

#custom-html-sq .col-lg-6,

#custom-html-sq .col-lg-7,

#custom-html-sq .col-lg-8,

#custom-html-sq .col-lg-9,

#custom-html-sq .col-md-1,

#custom-html-sq .col-md-10,

#custom-html-sq .col-md-11,

#custom-html-sq .col-md-12,

#custom-html-sq .col-md-2,

#custom-html-sq .col-md-3,

#custom-html-sq .col-md-4,

#custom-html-sq .col-md-5,

#custom-html-sq .col-md-6,

#custom-html-sq .col-md-7,

#custom-html-sq .col-md-8,

#custom-html-sq .col-md-9,

#custom-html-sq .col-sm-1,

#custom-html-sq .col-sm-10,

#custom-html-sq .col-sm-11,

#custom-html-sq .col-sm-12,

#custom-html-sq .col-sm-2,

#custom-html-sq .col-sm-3,

#custom-html-sq .col-sm-4,

#custom-html-sq .col-sm-5,

#custom-html-sq .col-sm-6,

#custom-html-sq .col-sm-7,

#custom-html-sq .col-sm-8,

#custom-html-sq .col-sm-9,

#custom-html-sq .col-xs-1,

#custom-html-sq .col-xs-10,

#custom-html-sq .col-xs-11,

#custom-html-sq .col-xs-12,

#custom-html-sq .col-xs-2,

#custom-html-sq .col-xs-3,

#custom-html-sq .col-xs-4,

#custom-html-sq .col-xs-5,

#custom-html-sq .col-xs-6,

#custom-html-sq .col-xs-7,

#custom-html-sq .col-xs-8,

#custom-html-sq .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sq .col-xs-1,

#custom-html-sq .col-xs-10,

#custom-html-sq .col-xs-11,

#custom-html-sq .col-xs-12,

#custom-html-sq .col-xs-2,

#custom-html-sq .col-xs-3,

#custom-html-sq .col-xs-4,

#custom-html-sq .col-xs-5,

#custom-html-sq .col-xs-6,

#custom-html-sq .col-xs-7,

#custom-html-sq .col-xs-8,

#custom-html-sq .col-xs-9 {

  float: left;

}

#custom-html-sq .col-xs-12 {

  width: 100%;

}

#custom-html-sq .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sq .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sq .col-xs-9 {

  width: 75%;

}

#custom-html-sq .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sq .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sq .col-xs-6 {

  width: 50%;

}

#custom-html-sq .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sq .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sq .col-xs-3 {

  width: 25%;

}

#custom-html-sq .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sq .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sq .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sq .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sq .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sq .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sq .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sq .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sq .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sq .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sq .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sq .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sq .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sq .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sq .col-xs-pull-0 {

  right: auto;

}

#custom-html-sq .col-xs-push-12 {

  left: 100%;

}

#custom-html-sq .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sq .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sq .col-xs-push-9 {

  left: 75%;

}

#custom-html-sq .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sq .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sq .col-xs-push-6 {

  left: 50%;

}

#custom-html-sq .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sq .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sq .col-xs-push-3 {

  left: 25%;

}

#custom-html-sq .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sq .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sq .col-xs-push-0 {

  left: auto;

}

#custom-html-sq .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sq .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sq .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sq .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sq .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sq .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sq .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sq .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sq .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sq .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sq .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sq .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-sq .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-sq caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sq th {

  text-align: left;

}

#custom-html-sq .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sq .table > tbody > tr > td,

#custom-html-sq .table > tbody > tr > th,

#custom-html-sq .table > tfoot > tr > td,

#custom-html-sq .table > tfoot > tr > th,

#custom-html-sq .table > thead > tr > td,

#custom-html-sq .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sq .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sq .table > caption + thead > tr:first-child > td,

#custom-html-sq .table > caption + thead > tr:first-child > th,

#custom-html-sq .table > colgroup + thead > tr:first-child > td,

#custom-html-sq .table > colgroup + thead > tr:first-child > th,

#custom-html-sq .table > thead:first-child > tr:first-child > td,

#custom-html-sq .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sq .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sq .table .table {

  background-color: #ffffff;

}

#custom-html-sq .table-condensed > tbody > tr > td,

#custom-html-sq .table-condensed > tbody > tr > th,

#custom-html-sq .table-condensed > tfoot > tr > td,

#custom-html-sq .table-condensed > tfoot > tr > th,

#custom-html-sq .table-condensed > thead > tr > td,

#custom-html-sq .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sq .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sq .table-bordered > tbody > tr > td,

#custom-html-sq .table-bordered > tbody > tr > th,

#custom-html-sq .table-bordered > tfoot > tr > td,

#custom-html-sq .table-bordered > tfoot > tr > th,

#custom-html-sq .table-bordered > thead > tr > td,

#custom-html-sq .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sq .table-bordered > thead > tr > td,

#custom-html-sq .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sq .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sq .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sq table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sq table td[class*=col-],

#custom-html-sq table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-sq .table > tbody > tr.active > td,

#custom-html-sq .table > tbody > tr.active > th,

#custom-html-sq .table > tbody > tr > td.active,

#custom-html-sq .table > tbody > tr > th.active,

#custom-html-sq .table > tfoot > tr.active > td,

#custom-html-sq .table > tfoot > tr.active > th,

#custom-html-sq .table > tfoot > tr > td.active,

#custom-html-sq .table > tfoot > tr > th.active,

#custom-html-sq .table > thead > tr.active > td,

#custom-html-sq .table > thead > tr.active > th,

#custom-html-sq .table > thead > tr > td.active,

#custom-html-sq .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sq .table-hover > tbody > tr.active:hover > td,

#custom-html-sq .table-hover > tbody > tr.active:hover > th,

#custom-html-sq .table-hover > tbody > tr:hover > .active,

#custom-html-sq .table-hover > tbody > tr > td.active:hover,

#custom-html-sq .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sq .table > tbody > tr.success > td,

#custom-html-sq .table > tbody > tr.success > th,

#custom-html-sq .table > tbody > tr > td.success,

#custom-html-sq .table > tbody > tr > th.success,

#custom-html-sq .table > tfoot > tr.success > td,

#custom-html-sq .table > tfoot > tr.success > th,

#custom-html-sq .table > tfoot > tr > td.success,

#custom-html-sq .table > tfoot > tr > th.success,

#custom-html-sq .table > thead > tr.success > td,

#custom-html-sq .table > thead > tr.success > th,

#custom-html-sq .table > thead > tr > td.success,

#custom-html-sq .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sq .table-hover > tbody > tr.success:hover > td,

#custom-html-sq .table-hover > tbody > tr.success:hover > th,

#custom-html-sq .table-hover > tbody > tr:hover > .success,

#custom-html-sq .table-hover > tbody > tr > td.success:hover,

#custom-html-sq .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sq .table > tbody > tr.info > td,

#custom-html-sq .table > tbody > tr.info > th,

#custom-html-sq .table > tbody > tr > td.info,

#custom-html-sq .table > tbody > tr > th.info,

#custom-html-sq .table > tfoot > tr.info > td,

#custom-html-sq .table > tfoot > tr.info > th,

#custom-html-sq .table > tfoot > tr > td.info,

#custom-html-sq .table > tfoot > tr > th.info,

#custom-html-sq .table > thead > tr.info > td,

#custom-html-sq .table > thead > tr.info > th,

#custom-html-sq .table > thead > tr > td.info,

#custom-html-sq .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sq .table-hover > tbody > tr.info:hover > td,

#custom-html-sq .table-hover > tbody > tr.info:hover > th,

#custom-html-sq .table-hover > tbody > tr:hover > .info,

#custom-html-sq .table-hover > tbody > tr > td.info:hover,

#custom-html-sq .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sq .table > tbody > tr.warning > td,

#custom-html-sq .table > tbody > tr.warning > th,

#custom-html-sq .table > tbody > tr > td.warning,

#custom-html-sq .table > tbody > tr > th.warning,

#custom-html-sq .table > tfoot > tr.warning > td,

#custom-html-sq .table > tfoot > tr.warning > th,

#custom-html-sq .table > tfoot > tr > td.warning,

#custom-html-sq .table > tfoot > tr > th.warning,

#custom-html-sq .table > thead > tr.warning > td,

#custom-html-sq .table > thead > tr.warning > th,

#custom-html-sq .table > thead > tr > td.warning,

#custom-html-sq .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sq .table-hover > tbody > tr.warning:hover > td,

#custom-html-sq .table-hover > tbody > tr.warning:hover > th,

#custom-html-sq .table-hover > tbody > tr:hover > .warning,

#custom-html-sq .table-hover > tbody > tr > td.warning:hover,

#custom-html-sq .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sq .table > tbody > tr.danger > td,

#custom-html-sq .table > tbody > tr.danger > th,

#custom-html-sq .table > tbody > tr > td.danger,

#custom-html-sq .table > tbody > tr > th.danger,

#custom-html-sq .table > tfoot > tr.danger > td,

#custom-html-sq .table > tfoot > tr.danger > th,

#custom-html-sq .table > tfoot > tr > td.danger,

#custom-html-sq .table > tfoot > tr > th.danger,

#custom-html-sq .table > thead > tr.danger > td,

#custom-html-sq .table > thead > tr.danger > th,

#custom-html-sq .table > thead > tr > td.danger,

#custom-html-sq .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sq .table-hover > tbody > tr.danger:hover > td,

#custom-html-sq .table-hover > tbody > tr.danger:hover > th,

#custom-html-sq .table-hover > tbody > tr:hover > .danger,

#custom-html-sq .table-hover > tbody > tr > td.danger:hover,

#custom-html-sq .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sq .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sq .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sq .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sq .table-responsive > .table > tbody > tr > td,

  #custom-html-sq .table-responsive > .table > tbody > tr > th,

  #custom-html-sq .table-responsive > .table > tfoot > tr > td,

  #custom-html-sq .table-responsive > .table > tfoot > tr > th,

  #custom-html-sq .table-responsive > .table > thead > tr > td,

  #custom-html-sq .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sq .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sq .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sq .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sq .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sq .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sq .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sq .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sq .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sq .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sq .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sq .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sq .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sq .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sq .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sq .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sq .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sq .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-sq div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sq div.dataTables_wrapper div.dataTables_info,

  #custom-html-sq div.dataTables_wrapper div.dataTables_length,

  #custom-html-sq div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-sq div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sq label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sq input[type=file] {

  display: block;

}

#custom-html-sq input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sq select[multiple],

#custom-html-sq select[size] {

  height: auto;

}

#custom-html-sq input[type=checkbox]:focus,

#custom-html-sq input[type=file]:focus,

#custom-html-sq input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sq output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sq .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sq .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sq .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sq .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sq .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sq .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sq .form-control[disabled],

#custom-html-sq .form-control[readonly],

#custom-html-sq fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sq .form-control[disabled],

#custom-html-sq fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sq textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sq input[type=date].form-control,

  #custom-html-sq input[type=datetime-local].form-control,

  #custom-html-sq input[type=month].form-control,

  #custom-html-sq input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sq .input-group-sm input[type=date],

  #custom-html-sq .input-group-sm input[type=datetime-local],

  #custom-html-sq .input-group-sm input[type=month],

  #custom-html-sq .input-group-sm input[type=time],

  #custom-html-sq input[type=date].input-sm,

  #custom-html-sq input[type=datetime-local].input-sm,

  #custom-html-sq input[type=month].input-sm,

  #custom-html-sq input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sq .input-group-lg input[type=date],

  #custom-html-sq .input-group-lg input[type=datetime-local],

  #custom-html-sq .input-group-lg input[type=month],

  #custom-html-sq .input-group-lg input[type=time],

  #custom-html-sq input[type=date].input-lg,

  #custom-html-sq input[type=datetime-local].input-lg,

  #custom-html-sq input[type=month].input-lg,

  #custom-html-sq input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sq .form-group {

  margin-bottom: 15px;

}

#custom-html-sq .checkbox,

#custom-html-sq .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sq .checkbox label,

#custom-html-sq .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sq .checkbox input[type=checkbox],

#custom-html-sq .checkbox-inline input[type=checkbox],

#custom-html-sq .radio input[type=radio],

#custom-html-sq .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sq .checkbox + .checkbox,

#custom-html-sq .radio + .radio {

  margin-top: -5px;

}

#custom-html-sq .checkbox-inline,

#custom-html-sq .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sq .checkbox-inline + .checkbox-inline,

#custom-html-sq .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sq fieldset[disabled] input[type=checkbox],

#custom-html-sq fieldset[disabled] input[type=radio],

#custom-html-sq input[type=checkbox].disabled,

#custom-html-sq input[type=checkbox][disabled],

#custom-html-sq input[type=radio].disabled,

#custom-html-sq input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sq .checkbox-inline.disabled,

#custom-html-sq .radio-inline.disabled,

#custom-html-sq fieldset[disabled] .checkbox-inline,

#custom-html-sq fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sq .checkbox.disabled label,

#custom-html-sq .radio.disabled label,

#custom-html-sq fieldset[disabled] .checkbox label,

#custom-html-sq fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sq .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sq .form-control-static.input-lg,

#custom-html-sq .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sq .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sq select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sq select[multiple].input-sm,

#custom-html-sq textarea.input-sm {

  height: auto;

}

#custom-html-sq .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sq .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sq .form-group-sm select[multiple].form-control,

#custom-html-sq .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sq .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sq .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sq select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sq select[multiple].input-lg,

#custom-html-sq textarea.input-lg {

  height: auto;

}

#custom-html-sq .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sq .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sq .form-group-lg select[multiple].form-control,

#custom-html-sq .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sq .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sq .has-feedback {

  position: relative;

}

#custom-html-sq .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sq .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sq .form-group-lg .form-control + .form-control-feedback,

#custom-html-sq .input-group-lg + .form-control-feedback,

#custom-html-sq .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sq .form-group-sm .form-control + .form-control-feedback,

#custom-html-sq .input-group-sm + .form-control-feedback,

#custom-html-sq .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sq .has-success .checkbox,

#custom-html-sq .has-success .checkbox-inline,

#custom-html-sq .has-success .control-label,

#custom-html-sq .has-success .help-block,

#custom-html-sq .has-success .radio,

#custom-html-sq .has-success .radio-inline,

#custom-html-sq .has-success.checkbox label,

#custom-html-sq .has-success.checkbox-inline label,

#custom-html-sq .has-success.radio label,

#custom-html-sq .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sq .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sq .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sq .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sq .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sq .has-warning .checkbox,

#custom-html-sq .has-warning .checkbox-inline,

#custom-html-sq .has-warning .control-label,

#custom-html-sq .has-warning .help-block,

#custom-html-sq .has-warning .radio,

#custom-html-sq .has-warning .radio-inline,

#custom-html-sq .has-warning.checkbox label,

#custom-html-sq .has-warning.checkbox-inline label,

#custom-html-sq .has-warning.radio label,

#custom-html-sq .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sq .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sq .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sq .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sq .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sq .has-error .checkbox,

#custom-html-sq .has-error .checkbox-inline,

#custom-html-sq .has-error .control-label,

#custom-html-sq .has-error .help-block,

#custom-html-sq .has-error .radio,

#custom-html-sq .has-error .radio-inline,

#custom-html-sq .has-error.checkbox label,

#custom-html-sq .has-error.checkbox-inline label,

#custom-html-sq .has-error.radio label,

#custom-html-sq .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sq .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sq .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sq .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sq .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sq .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sq .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sq .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-sq .form-horizontal .checkbox,

#custom-html-sq .form-horizontal .checkbox-inline,

#custom-html-sq .form-horizontal .radio,

#custom-html-sq .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sq .form-horizontal .checkbox,

#custom-html-sq .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sq .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sq .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-sq .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-sq .btn.active.focus,

#custom-html-sq .btn.active:focus,

#custom-html-sq .btn.focus,

#custom-html-sq .btn:active.focus,

#custom-html-sq .btn:active:focus,

#custom-html-sq .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sq .btn.focus,

#custom-html-sq .btn:focus,

#custom-html-sq .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sq .btn.active,

#custom-html-sq .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sq .btn.disabled,

#custom-html-sq .btn[disabled],

#custom-html-sq fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sq a.btn.disabled,

#custom-html-sq fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sq .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sq .btn-default.focus,

#custom-html-sq .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sq .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sq .btn-default.active,

#custom-html-sq .btn-default:active,

#custom-html-sq .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-sq .btn-default.active.focus,

#custom-html-sq .btn-default.active:focus,

#custom-html-sq .btn-default.active:hover,

#custom-html-sq .btn-default:active.focus,

#custom-html-sq .btn-default:active:focus,

#custom-html-sq .btn-default:active:hover,

#custom-html-sq .open > .dropdown-toggle.btn-default.focus,

#custom-html-sq .open > .dropdown-toggle.btn-default:focus,

#custom-html-sq .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sq .btn-default.disabled.focus,

#custom-html-sq .btn-default.disabled:focus,

#custom-html-sq .btn-default.disabled:hover,

#custom-html-sq .btn-default[disabled].focus,

#custom-html-sq .btn-default[disabled]:focus,

#custom-html-sq .btn-default[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-default.focus,

#custom-html-sq fieldset[disabled] .btn-default:focus,

#custom-html-sq fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sq .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sq .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sq .btn-primary.focus,

#custom-html-sq .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sq .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sq .btn-primary.active,

#custom-html-sq .btn-primary:active,

#custom-html-sq .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-sq .btn-primary.active.focus,

#custom-html-sq .btn-primary.active:focus,

#custom-html-sq .btn-primary.active:hover,

#custom-html-sq .btn-primary:active.focus,

#custom-html-sq .btn-primary:active:focus,

#custom-html-sq .btn-primary:active:hover,

#custom-html-sq .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sq .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sq .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sq .btn-primary.disabled.focus,

#custom-html-sq .btn-primary.disabled:focus,

#custom-html-sq .btn-primary.disabled:hover,

#custom-html-sq .btn-primary[disabled].focus,

#custom-html-sq .btn-primary[disabled]:focus,

#custom-html-sq .btn-primary[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-primary.focus,

#custom-html-sq fieldset[disabled] .btn-primary:focus,

#custom-html-sq fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sq .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sq .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sq .btn-success.focus,

#custom-html-sq .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sq .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sq .btn-success.active,

#custom-html-sq .btn-success:active,

#custom-html-sq .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-sq .btn-success.active.focus,

#custom-html-sq .btn-success.active:focus,

#custom-html-sq .btn-success.active:hover,

#custom-html-sq .btn-success:active.focus,

#custom-html-sq .btn-success:active:focus,

#custom-html-sq .btn-success:active:hover,

#custom-html-sq .open > .dropdown-toggle.btn-success.focus,

#custom-html-sq .open > .dropdown-toggle.btn-success:focus,

#custom-html-sq .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sq .btn-success.disabled.focus,

#custom-html-sq .btn-success.disabled:focus,

#custom-html-sq .btn-success.disabled:hover,

#custom-html-sq .btn-success[disabled].focus,

#custom-html-sq .btn-success[disabled]:focus,

#custom-html-sq .btn-success[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-success.focus,

#custom-html-sq fieldset[disabled] .btn-success:focus,

#custom-html-sq fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sq .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sq .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sq .btn-info.focus,

#custom-html-sq .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sq .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sq .btn-info.active,

#custom-html-sq .btn-info:active,

#custom-html-sq .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-sq .btn-info.active.focus,

#custom-html-sq .btn-info.active:focus,

#custom-html-sq .btn-info.active:hover,

#custom-html-sq .btn-info:active.focus,

#custom-html-sq .btn-info:active:focus,

#custom-html-sq .btn-info:active:hover,

#custom-html-sq .open > .dropdown-toggle.btn-info.focus,

#custom-html-sq .open > .dropdown-toggle.btn-info:focus,

#custom-html-sq .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sq .btn-info.disabled.focus,

#custom-html-sq .btn-info.disabled:focus,

#custom-html-sq .btn-info.disabled:hover,

#custom-html-sq .btn-info[disabled].focus,

#custom-html-sq .btn-info[disabled]:focus,

#custom-html-sq .btn-info[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-info.focus,

#custom-html-sq fieldset[disabled] .btn-info:focus,

#custom-html-sq fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sq .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sq .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sq .btn-warning.focus,

#custom-html-sq .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sq .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sq .btn-warning.active,

#custom-html-sq .btn-warning:active,

#custom-html-sq .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-sq .btn-warning.active.focus,

#custom-html-sq .btn-warning.active:focus,

#custom-html-sq .btn-warning.active:hover,

#custom-html-sq .btn-warning:active.focus,

#custom-html-sq .btn-warning:active:focus,

#custom-html-sq .btn-warning:active:hover,

#custom-html-sq .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sq .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sq .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sq .btn-warning.disabled.focus,

#custom-html-sq .btn-warning.disabled:focus,

#custom-html-sq .btn-warning.disabled:hover,

#custom-html-sq .btn-warning[disabled].focus,

#custom-html-sq .btn-warning[disabled]:focus,

#custom-html-sq .btn-warning[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-warning.focus,

#custom-html-sq fieldset[disabled] .btn-warning:focus,

#custom-html-sq fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sq .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sq .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sq .btn-danger.focus,

#custom-html-sq .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sq .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sq .btn-danger.active,

#custom-html-sq .btn-danger:active,

#custom-html-sq .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-sq .btn-danger.active.focus,

#custom-html-sq .btn-danger.active:focus,

#custom-html-sq .btn-danger.active:hover,

#custom-html-sq .btn-danger:active.focus,

#custom-html-sq .btn-danger:active:focus,

#custom-html-sq .btn-danger:active:hover,

#custom-html-sq .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sq .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sq .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sq .btn-danger.disabled.focus,

#custom-html-sq .btn-danger.disabled:focus,

#custom-html-sq .btn-danger.disabled:hover,

#custom-html-sq .btn-danger[disabled].focus,

#custom-html-sq .btn-danger[disabled]:focus,

#custom-html-sq .btn-danger[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-danger.focus,

#custom-html-sq fieldset[disabled] .btn-danger:focus,

#custom-html-sq fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sq .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sq .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sq .btn-link,

#custom-html-sq .btn-link.active,

#custom-html-sq .btn-link:active,

#custom-html-sq .btn-link[disabled],

#custom-html-sq fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sq .btn-link,

#custom-html-sq .btn-link:active,

#custom-html-sq .btn-link:focus,

#custom-html-sq .btn-link:hover {

  border-color: transparent;

}

#custom-html-sq .btn-link:focus,

#custom-html-sq .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sq .btn-link[disabled]:focus,

#custom-html-sq .btn-link[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-link:focus,

#custom-html-sq fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sq .btn-group-lg > .btn,

#custom-html-sq .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sq .btn-group-sm > .btn,

#custom-html-sq .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sq .btn-group-xs > .btn,

#custom-html-sq .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sq .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sq .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sq input[type=button].btn-block,

#custom-html-sq input[type=reset].btn-block,

#custom-html-sq input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sq .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sq .fade.in {

  opacity: 1;

}

#custom-html-sq .collapse {

  display: none;

}

#custom-html-sq .collapse.in {

  display: block;

}

#custom-html-sq tr.collapse.in {

  display: table-row;

}

#custom-html-sq tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sq .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-sq .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sq .dropdown,

#custom-html-sq .dropup {

  position: relative;

}

#custom-html-sq .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sq .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sq .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sq .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sq .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sq .dropdown-menu > li > a:focus,

#custom-html-sq .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sq .dropdown-menu > .active > a,

#custom-html-sq .dropdown-menu > .active > a:focus,

#custom-html-sq .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sq .dropdown-menu > .disabled > a,

#custom-html-sq .dropdown-menu > .disabled > a:focus,

#custom-html-sq .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sq .dropdown-menu > .disabled > a:focus,

#custom-html-sq .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sq .open > .dropdown-menu {

  display: block;

}

#custom-html-sq .open > a {

  outline: 0;

}

#custom-html-sq .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sq .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sq .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sq .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sq .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sq .dropup .caret,

#custom-html-sq .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sq .dropup .dropdown-menu,

#custom-html-sq .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-sq .btn-group,

#custom-html-sq .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sq .btn-group-vertical > .btn,

#custom-html-sq .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sq .btn-group-vertical > .btn.active,

#custom-html-sq .btn-group-vertical > .btn:active,

#custom-html-sq .btn-group-vertical > .btn:focus,

#custom-html-sq .btn-group-vertical > .btn:hover,

#custom-html-sq .btn-group > .btn.active,

#custom-html-sq .btn-group > .btn:active,

#custom-html-sq .btn-group > .btn:focus,

#custom-html-sq .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sq .btn-group .btn + .btn,

#custom-html-sq .btn-group .btn + .btn-group,

#custom-html-sq .btn-group .btn-group + .btn,

#custom-html-sq .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sq .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sq .btn-toolbar .btn,

#custom-html-sq .btn-toolbar .btn-group,

#custom-html-sq .btn-toolbar .input-group {

  float: left;

}

#custom-html-sq .btn-toolbar > .btn,

#custom-html-sq .btn-toolbar > .btn-group,

#custom-html-sq .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sq .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sq .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sq .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sq .btn-group > .btn:last-child:not(:first-child),

#custom-html-sq .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sq .btn-group > .btn-group {

  float: left;

}

#custom-html-sq .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sq .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sq .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sq .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sq .btn-group .dropdown-toggle:active,

#custom-html-sq .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sq .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sq .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sq .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sq .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sq .btn .caret {

  margin-left: 0;

}

#custom-html-sq .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sq .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sq .btn-group-vertical > .btn,

#custom-html-sq .btn-group-vertical > .btn-group,

#custom-html-sq .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sq .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sq .btn-group-vertical > .btn + .btn,

#custom-html-sq .btn-group-vertical > .btn + .btn-group,

#custom-html-sq .btn-group-vertical > .btn-group + .btn,

#custom-html-sq .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sq .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sq .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sq .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sq .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sq .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sq .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sq .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sq .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sq .btn-group-justified > .btn,

#custom-html-sq .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sq .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sq .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sq [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sq [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sq [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sq [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sq .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sq .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sq .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sq .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sq .input-group-lg > .form-control,

#custom-html-sq .input-group-lg > .input-group-addon,

#custom-html-sq .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sq select.input-group-lg > .form-control,

#custom-html-sq select.input-group-lg > .input-group-addon,

#custom-html-sq select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sq select[multiple].input-group-lg > .form-control,

#custom-html-sq select[multiple].input-group-lg > .input-group-addon,

#custom-html-sq select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sq textarea.input-group-lg > .form-control,

#custom-html-sq textarea.input-group-lg > .input-group-addon,

#custom-html-sq textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sq .input-group-sm > .form-control,

#custom-html-sq .input-group-sm > .input-group-addon,

#custom-html-sq .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sq select.input-group-sm > .form-control,

#custom-html-sq select.input-group-sm > .input-group-addon,

#custom-html-sq select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sq select[multiple].input-group-sm > .form-control,

#custom-html-sq select[multiple].input-group-sm > .input-group-addon,

#custom-html-sq select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sq textarea.input-group-sm > .form-control,

#custom-html-sq textarea.input-group-sm > .input-group-addon,

#custom-html-sq textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sq .input-group .form-control,

#custom-html-sq .input-group-addon,

#custom-html-sq .input-group-btn {

  display: table-cell;

}

#custom-html-sq .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sq .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sq .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sq .input-group-addon,

#custom-html-sq .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sq .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sq .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sq .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sq .input-group-addon input[type=checkbox],

#custom-html-sq .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sq .input-group .form-control:first-child,

#custom-html-sq .input-group-addon:first-child,

#custom-html-sq .input-group-btn:first-child > .btn,

#custom-html-sq .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sq .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sq .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sq .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sq .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sq .input-group .form-control:last-child,

#custom-html-sq .input-group-addon:last-child,

#custom-html-sq .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sq .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sq .input-group-btn:last-child > .btn,

#custom-html-sq .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sq .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sq .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sq .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sq .input-group-btn > .btn {

  position: relative;

}

#custom-html-sq .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sq .input-group-btn > .btn:active,

#custom-html-sq .input-group-btn > .btn:focus,

#custom-html-sq .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sq .input-group-btn:first-child > .btn,

#custom-html-sq .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sq .input-group-btn:last-child > .btn,

#custom-html-sq .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sq .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sq .nav > li {

  position: relative;

  display: block;

}

#custom-html-sq .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sq .nav > li > a:focus,

#custom-html-sq .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sq .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sq .nav > li.disabled > a:focus,

#custom-html-sq .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sq .nav .open > a,

#custom-html-sq .nav .open > a:focus,

#custom-html-sq .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sq .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sq .nav > li > a > img {

  max-width: none;

}

#custom-html-sq .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sq .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sq .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sq .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sq .nav-tabs > li.active > a,

#custom-html-sq .nav-tabs > li.active > a:focus,

#custom-html-sq .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sq .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sq .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sq .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sq .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sq .nav-tabs.nav-justified > .active > a,

#custom-html-sq .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sq .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sq .nav-pills > li {

  float: left;

}

#custom-html-sq .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sq .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sq .nav-pills > li.active > a,

#custom-html-sq .nav-pills > li.active > a:focus,

#custom-html-sq .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sq .nav-stacked > li {

  float: none;

}

#custom-html-sq .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sq .nav-justified {

  width: 100%;

}

#custom-html-sq .nav-justified > li {

  float: none;

}

#custom-html-sq .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sq .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sq .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sq .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sq .nav-tabs-justified > .active > a,

#custom-html-sq .nav-tabs-justified > .active > a:focus,

#custom-html-sq .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sq .tab-content > .tab-pane {

  display: none;

}

#custom-html-sq .tab-content > .active {

  display: block;

}

#custom-html-sq .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sq .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-sq .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sq .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-sq .navbar-fixed-bottom .navbar-collapse,

#custom-html-sq .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sq .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sq .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sq .container-fluid > .navbar-collapse,

#custom-html-sq .container-fluid > .navbar-header,

#custom-html-sq .container > .navbar-collapse,

#custom-html-sq .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sq .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-sq .navbar-fixed-bottom,

#custom-html-sq .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-sq .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sq .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sq .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sq .navbar-brand:focus,

#custom-html-sq .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sq .navbar-brand > img {

  display: block;

}

#custom-html-sq .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sq .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sq .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sq .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-sq .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sq .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sq .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sq .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sq .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sq .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sq .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sq .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-sq .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sq .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-sq .visible-xs {

    display: block !important;

  }

  #custom-html-sq table.visible-xs {

    display: table !important;

  }

  #custom-html-sq tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sq td.visible-xs,

  #custom-html-sq th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-sq .visible-xs-block {

    display: block !important;

  }

  #custom-html-sq .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-sq .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-sq .hidden-xs {

    display: none !important;

  }

  #custom-html-sq .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sq .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-sq section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-sq .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sq .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sq .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sq .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-sq .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sq .tiles .tile:nth-child(1),

  #custom-html-sq .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-sq ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sq ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sq ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-sq .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sq .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sq .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-sq .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-sq .promo-banner form {

    text-align: center;

  }

}

#custom-html-sq .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sq .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sq .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sq .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sq .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sq .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sq .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sq .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sq .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sq .navbar-default .navbar-brand:focus,

#custom-html-sq .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sq .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sq .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sq .navbar-default .navbar-nav > li > a:focus,

#custom-html-sq .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sq .navbar-default .navbar-nav > .active > a,

#custom-html-sq .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sq .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sq .navbar-default .navbar-nav > .disabled > a,

#custom-html-sq .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sq .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sq .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sq .navbar-default .navbar-toggle:focus,

#custom-html-sq .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sq .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sq .navbar-default .navbar-collapse,

#custom-html-sq .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sq .navbar-default .navbar-nav > .open > a,

#custom-html-sq .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sq .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sq .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sq .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sq .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sq .navbar-default .btn-link:focus,

#custom-html-sq .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sq .navbar-default .btn-link[disabled]:focus,

#custom-html-sq .navbar-default .btn-link[disabled]:hover,

#custom-html-sq fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sq fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sq .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sq .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sq .navbar-inverse .navbar-brand:focus,

#custom-html-sq .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sq .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sq .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sq .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sq .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sq .navbar-inverse .navbar-nav > .active > a,

#custom-html-sq .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sq .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sq .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sq .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sq .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sq .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sq .navbar-inverse .navbar-toggle:focus,

#custom-html-sq .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sq .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sq .navbar-inverse .navbar-collapse,

#custom-html-sq .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sq .navbar-inverse .navbar-nav > .open > a,

#custom-html-sq .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sq .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sq .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sq .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sq .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sq .navbar-inverse .btn-link:focus,

#custom-html-sq .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sq .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sq .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sq fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sq fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sq .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sq .breadcrumb > li {

  display: inline-block;

}

#custom-html-sq .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sq .breadcrumb > .active {

  color: #777777;

}

#custom-html-sq .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-sq .pagination > li {

  display: inline;

}

#custom-html-sq .pagination > li > a,

#custom-html-sq .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sq .pagination > li:first-child > a,

#custom-html-sq .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sq .pagination > li:last-child > a,

#custom-html-sq .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sq .pagination > li > a:focus,

#custom-html-sq .pagination > li > a:hover,

#custom-html-sq .pagination > li > span:focus,

#custom-html-sq .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sq .pagination > .active > a,

#custom-html-sq .pagination > .active > a:focus,

#custom-html-sq .pagination > .active > a:hover,

#custom-html-sq .pagination > .active > span,

#custom-html-sq .pagination > .active > span:focus,

#custom-html-sq .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sq .pagination > .disabled > a,

#custom-html-sq .pagination > .disabled > a:focus,

#custom-html-sq .pagination > .disabled > a:hover,

#custom-html-sq .pagination > .disabled > span,

#custom-html-sq .pagination > .disabled > span:focus,

#custom-html-sq .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sq .pagination-lg > li > a,

#custom-html-sq .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sq .pagination-lg > li:first-child > a,

#custom-html-sq .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sq .pagination-lg > li:last-child > a,

#custom-html-sq .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sq .pagination-sm > li > a,

#custom-html-sq .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sq .pagination-sm > li:first-child > a,

#custom-html-sq .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sq .pagination-sm > li:last-child > a,

#custom-html-sq .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sq .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sq .pager li {

  display: inline;

}

#custom-html-sq .pager li > a,

#custom-html-sq .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sq .pager li > a:focus,

#custom-html-sq .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sq .pager .next > a,

#custom-html-sq .pager .next > span {

  float: right;

}

#custom-html-sq .pager .previous > a,

#custom-html-sq .pager .previous > span {

  float: left;

}

#custom-html-sq .pager .disabled > a,

#custom-html-sq .pager .disabled > a:focus,

#custom-html-sq .pager .disabled > a:hover,

#custom-html-sq .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sq .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-sq a.label:focus,

#custom-html-sq a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sq .label:empty {

  display: none;

}

#custom-html-sq .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sq .label-default {

  background-color: #777777;

}

#custom-html-sq .label-default[href]:focus,

#custom-html-sq .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sq .label-primary {

  background-color: #337ab7;

}

#custom-html-sq .label-primary[href]:focus,

#custom-html-sq .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sq .label-success {

  background-color: #5cb85c;

}

#custom-html-sq .label-success[href]:focus,

#custom-html-sq .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sq .label-info {

  background-color: #5bc0de;

}

#custom-html-sq .label-info[href]:focus,

#custom-html-sq .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sq .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sq .label-warning[href]:focus,

#custom-html-sq .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sq .label-danger {

  background-color: #d9534f;

}

#custom-html-sq .label-danger[href]:focus,

#custom-html-sq .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sq .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sq .badge:empty {

  display: none;

}

#custom-html-sq .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sq .btn-group-xs > .btn .badge,

#custom-html-sq .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sq a.badge:focus,

#custom-html-sq a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sq .list-group-item.active > .badge,

#custom-html-sq .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sq .list-group-item > .badge {

  float: right;

}

#custom-html-sq .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sq .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sq .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sq .jumbotron .h1,

#custom-html-sq .jumbotron h1 {

  color: inherit;

}

#custom-html-sq .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sq .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sq .container .jumbotron,

#custom-html-sq .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sq .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sq .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sq .container .jumbotron,

  #custom-html-sq .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sq .jumbotron .h1,

  #custom-html-sq .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-sq .carousel-control .glyphicon-chevron-left,

  #custom-html-sq .carousel-control .glyphicon-chevron-right,

  #custom-html-sq .carousel-control .icon-next,

  #custom-html-sq .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sq .carousel-control .glyphicon-chevron-left,

  #custom-html-sq .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sq .carousel-control .glyphicon-chevron-right,

  #custom-html-sq .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sq .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sq .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sq .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sq .thumbnail a > img,

#custom-html-sq .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sq a.thumbnail.active,

#custom-html-sq a.thumbnail:focus,

#custom-html-sq a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sq .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sq .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sq .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sq .alert .alert-link {

  font-weight: 700;

}

#custom-html-sq .alert > p,

#custom-html-sq .alert > ul {

  margin-bottom: 0;

}

#custom-html-sq .alert > p + p {

  margin-top: 5px;

}

#custom-html-sq .alert-dismissable,

#custom-html-sq .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sq .alert-dismissable .close,

#custom-html-sq .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sq .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sq .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sq .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sq .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sq .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sq .alert-info .alert-link {

  color: #000000;

}

#custom-html-sq .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sq .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sq .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sq .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sq .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sq .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sq .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sq .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sq .progress-bar-striped,

#custom-html-sq .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sq .progress-bar.active,

#custom-html-sq .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sq .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sq .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sq .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sq .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sq .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sq .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sq .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sq .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sq .media {

  margin-top: 15px;

}

#custom-html-sq .media:first-child {

  margin-top: 0;

}

#custom-html-sq .media,

#custom-html-sq .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sq .media-body {

  width: 10000px;

}

#custom-html-sq .media-object {

  display: block;

}

#custom-html-sq .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sq .media-right,

#custom-html-sq .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sq .media-left,

#custom-html-sq .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sq .media-body,

#custom-html-sq .media-left,

#custom-html-sq .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sq .media-middle {

  vertical-align: middle;

}

#custom-html-sq .media-bottom {

  vertical-align: bottom;

}

#custom-html-sq .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sq .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sq .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-sq .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-sq .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sq .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sq a.list-group-item,

#custom-html-sq button.list-group-item {

  color: #555555;

}

#custom-html-sq a.list-group-item .list-group-item-heading,

#custom-html-sq button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sq a.list-group-item:focus,

#custom-html-sq a.list-group-item:hover,

#custom-html-sq button.list-group-item:focus,

#custom-html-sq button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sq button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sq .list-group-item.disabled,

#custom-html-sq .list-group-item.disabled:focus,

#custom-html-sq .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sq .list-group-item.disabled .list-group-item-heading,

#custom-html-sq .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sq .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sq .list-group-item.disabled .list-group-item-text,

#custom-html-sq .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sq .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sq .list-group-item.active,

#custom-html-sq .list-group-item.active:focus,

#custom-html-sq .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sq .list-group-item.active .list-group-item-heading,

#custom-html-sq .list-group-item.active .list-group-item-heading > .small,

#custom-html-sq .list-group-item.active .list-group-item-heading > small,

#custom-html-sq .list-group-item.active:focus .list-group-item-heading,

#custom-html-sq .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sq .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sq .list-group-item.active:hover .list-group-item-heading,

#custom-html-sq .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sq .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sq .list-group-item.active .list-group-item-text,

#custom-html-sq .list-group-item.active:focus .list-group-item-text,

#custom-html-sq .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sq .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sq a.list-group-item-success,

#custom-html-sq button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sq a.list-group-item-success .list-group-item-heading,

#custom-html-sq button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sq a.list-group-item-success:focus,

#custom-html-sq a.list-group-item-success:hover,

#custom-html-sq button.list-group-item-success:focus,

#custom-html-sq button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sq a.list-group-item-success.active,

#custom-html-sq a.list-group-item-success.active:focus,

#custom-html-sq a.list-group-item-success.active:hover,

#custom-html-sq button.list-group-item-success.active,

#custom-html-sq button.list-group-item-success.active:focus,

#custom-html-sq button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sq .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sq a.list-group-item-info,

#custom-html-sq button.list-group-item-info {

  color: #31708f;

}

#custom-html-sq a.list-group-item-info .list-group-item-heading,

#custom-html-sq button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sq a.list-group-item-info:focus,

#custom-html-sq a.list-group-item-info:hover,

#custom-html-sq button.list-group-item-info:focus,

#custom-html-sq button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sq a.list-group-item-info.active,

#custom-html-sq a.list-group-item-info.active:focus,

#custom-html-sq a.list-group-item-info.active:hover,

#custom-html-sq button.list-group-item-info.active,

#custom-html-sq button.list-group-item-info.active:focus,

#custom-html-sq button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sq .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sq a.list-group-item-warning,

#custom-html-sq button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sq a.list-group-item-warning .list-group-item-heading,

#custom-html-sq button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sq a.list-group-item-warning:focus,

#custom-html-sq a.list-group-item-warning:hover,

#custom-html-sq button.list-group-item-warning:focus,

#custom-html-sq button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sq a.list-group-item-warning.active,

#custom-html-sq a.list-group-item-warning.active:focus,

#custom-html-sq a.list-group-item-warning.active:hover,

#custom-html-sq button.list-group-item-warning.active,

#custom-html-sq button.list-group-item-warning.active:focus,

#custom-html-sq button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sq .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sq a.list-group-item-danger,

#custom-html-sq button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sq a.list-group-item-danger .list-group-item-heading,

#custom-html-sq button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sq a.list-group-item-danger:focus,

#custom-html-sq a.list-group-item-danger:hover,

#custom-html-sq button.list-group-item-danger:focus,

#custom-html-sq button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sq a.list-group-item-danger.active,

#custom-html-sq a.list-group-item-danger.active:focus,

#custom-html-sq a.list-group-item-danger.active:hover,

#custom-html-sq button.list-group-item-danger.active,

#custom-html-sq button.list-group-item-danger.active:focus,

#custom-html-sq button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sq .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sq .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sq .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-sq .panel-body {

  padding: 10px 15px;

}

#custom-html-sq .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sq .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sq .panel-title > .small,

#custom-html-sq .panel-title > .small > a,

#custom-html-sq .panel-title > a,

#custom-html-sq .panel-title > small,

#custom-html-sq .panel-title > small > a {

  color: inherit;

}

#custom-html-sq .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sq .panel > .list-group,

#custom-html-sq .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sq .panel > .list-group .list-group-item,

#custom-html-sq .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sq .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sq .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sq .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sq .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sq .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sq .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sq .panel > .panel-collapse > .table,

#custom-html-sq .panel > .table,

#custom-html-sq .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sq .panel > .panel-collapse > .table caption,

#custom-html-sq .panel > .table caption,

#custom-html-sq .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sq .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sq .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sq .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sq .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sq .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sq .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sq .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sq .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sq .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sq .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sq .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sq .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sq .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sq .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sq .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sq .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sq .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sq .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sq .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sq .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sq .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sq .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sq .panel > .panel-body + .table,

#custom-html-sq .panel > .panel-body + .table-responsive,

#custom-html-sq .panel > .table + .panel-body,

#custom-html-sq .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sq .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sq .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sq .panel > .table-bordered,

#custom-html-sq .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sq .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sq .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sq .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sq .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sq .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sq .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sq .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sq .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sq .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sq .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sq .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sq .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sq .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sq .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sq .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sq .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sq .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sq .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sq .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sq .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sq .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sq .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sq .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sq .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sq .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sq .panel-group {

  margin-bottom: 20px;

}

#custom-html-sq .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sq .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sq .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sq .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sq .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sq .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sq .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sq .panel-default {

  border-color: #dddddd;

}

#custom-html-sq .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sq .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sq .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sq .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sq .panel-primary {

  border-color: #337ab7;

}

#custom-html-sq .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sq .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sq .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sq .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sq .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sq .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sq .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sq .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sq .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sq .panel-info {

  border-color: #bce8f1;

}

#custom-html-sq .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sq .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sq .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sq .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sq .panel-warning {

  border-color: #faebcc;

}

#custom-html-sq .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sq .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sq .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sq .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-sq .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sq .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sq .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sq .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sq .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sq .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sq .embed-responsive .embed-responsive-item,

#custom-html-sq .embed-responsive embed,

#custom-html-sq .embed-responsive iframe,

#custom-html-sq .embed-responsive object,

#custom-html-sq .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sq .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sq .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sq .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sq .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sq .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sq .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sq .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sq .close:focus,

#custom-html-sq .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sq button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sq .modal-open {

  overflow: hidden;

}

#custom-html-sq .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sq .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sq .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sq .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sq .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sq .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sq .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sq .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sq .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sq .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sq .modal-header .close {

  margin-top: -2px;

}

#custom-html-sq .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sq .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sq .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sq .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sq .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sq .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sq .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-sq .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sq .tooltip.in {

  opacity: 0.9;

}

#custom-html-sq .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sq .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sq .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sq .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sq .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sq .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sq .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sq .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sq .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sq .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sq .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sq .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sq .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sq .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sq .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sq .popover.top {

  margin-top: -10px;

}

#custom-html-sq .popover.right {

  margin-left: 10px;

}

#custom-html-sq .popover.bottom {

  margin-top: 10px;

}

#custom-html-sq .popover.left {

  margin-left: -10px;

}

#custom-html-sq .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sq .popover-content {

  padding: 9px 14px;

}

#custom-html-sq .popover > .arrow,

#custom-html-sq .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sq .popover > .arrow {

  border-width: 11px;

}

#custom-html-sq .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sq .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sq .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sq .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sq .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sq .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sq .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sq .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sq .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sq .carousel {

  position: relative;

}

#custom-html-sq .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sq .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sq .carousel-inner > .item > a > img,

#custom-html-sq .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sq .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sq .carousel-inner > .item.active.right,

  #custom-html-sq .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sq .carousel-inner > .item.active.left,

  #custom-html-sq .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sq .carousel-inner > .item.active,

  #custom-html-sq .carousel-inner > .item.next.left,

  #custom-html-sq .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sq .carousel-inner > .active,

#custom-html-sq .carousel-inner > .next,

#custom-html-sq .carousel-inner > .prev {

  display: block;

}

#custom-html-sq .carousel-inner > .active {

  left: 0;

}

#custom-html-sq .carousel-inner > .next,

#custom-html-sq .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sq .carousel-inner > .next {

  left: 100%;

}

#custom-html-sq .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sq .carousel-inner > .next.left,

#custom-html-sq .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sq .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sq .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sq .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sq .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sq .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sq .carousel-control:focus,

#custom-html-sq .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sq .carousel-control .glyphicon-chevron-left,

#custom-html-sq .carousel-control .glyphicon-chevron-right,

#custom-html-sq .carousel-control .icon-next,

#custom-html-sq .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sq .carousel-control .glyphicon-chevron-left,

#custom-html-sq .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sq .carousel-control .glyphicon-chevron-right,

#custom-html-sq .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sq .carousel-control .icon-next,

#custom-html-sq .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sq .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sq .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sq .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sq .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-sq .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sq .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sq .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-sq .btn-group-vertical > .btn-group:after,

#custom-html-sq .btn-group-vertical > .btn-group:before,

#custom-html-sq .btn-toolbar:after,

#custom-html-sq .btn-toolbar:before,

#custom-html-sq .clearfix:after,

#custom-html-sq .clearfix:before,

#custom-html-sq .container-fluid:after,

#custom-html-sq .container-fluid:before,

#custom-html-sq .container:after,

#custom-html-sq .container:before,

#custom-html-sq .dl-horizontal dd:after,

#custom-html-sq .dl-horizontal dd:before,

#custom-html-sq .form-horizontal .form-group:after,

#custom-html-sq .form-horizontal .form-group:before,

#custom-html-sq .modal-footer:after,

#custom-html-sq .modal-footer:before,

#custom-html-sq .modal-header:after,

#custom-html-sq .modal-header:before,

#custom-html-sq .nav:after,

#custom-html-sq .nav:before,

#custom-html-sq .navbar-collapse:after,

#custom-html-sq .navbar-collapse:before,

#custom-html-sq .navbar-header:after,

#custom-html-sq .navbar-header:before,

#custom-html-sq .navbar:after,

#custom-html-sq .navbar:before,

#custom-html-sq .pager:after,

#custom-html-sq .pager:before,

#custom-html-sq .panel-body:after,

#custom-html-sq .panel-body:before,

#custom-html-sq .row:after,

#custom-html-sq .row:before {

  display: table;

  content: " ";

}

#custom-html-sq .btn-group-vertical > .btn-group:after,

#custom-html-sq .btn-toolbar:after,

#custom-html-sq .clearfix:after,

#custom-html-sq .container-fluid:after,

#custom-html-sq .container:after,

#custom-html-sq .dl-horizontal dd:after,

#custom-html-sq .form-horizontal .form-group:after,

#custom-html-sq .modal-footer:after,

#custom-html-sq .modal-header:after,

#custom-html-sq .nav:after,

#custom-html-sq .navbar-collapse:after,

#custom-html-sq .navbar-header:after,

#custom-html-sq .navbar:after,

#custom-html-sq .pager:after,

#custom-html-sq .panel-body:after,

#custom-html-sq .row:after {

  clear: both;

}

#custom-html-sq .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sq .pull-right {

  float: right !important;

}

#custom-html-sq .pull-left {

  float: left !important;

}

#custom-html-sq .hide {

  display: none !important;

}

#custom-html-sq .show {

  display: block !important;

}

#custom-html-sq .invisible {

  visibility: hidden;

}

#custom-html-sq .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sq .hidden {

  display: none !important;

}

#custom-html-sq .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sq .visible-lg,

#custom-html-sq .visible-md,

#custom-html-sq .visible-sm,

#custom-html-sq .visible-xs {

  display: none !important;

}

#custom-html-sq .visible-lg-block,

#custom-html-sq .visible-lg-inline,

#custom-html-sq .visible-lg-inline-block,

#custom-html-sq .visible-md-block,

#custom-html-sq .visible-md-inline,

#custom-html-sq .visible-md-inline-block,

#custom-html-sq .visible-sm-block,

#custom-html-sq .visible-sm-inline,

#custom-html-sq .visible-sm-inline-block,

#custom-html-sq .visible-xs-block,

#custom-html-sq .visible-xs-inline,

#custom-html-sq .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sq .visible-sm {

    display: block !important;

  }

  #custom-html-sq table.visible-sm {

    display: table !important;

  }

  #custom-html-sq tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sq td.visible-sm,

  #custom-html-sq th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-sq .visible-sm-block {

    display: block !important;

  }

  #custom-html-sq .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-sq .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-sq .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sq .visible-md {

    display: block !important;

  }

  #custom-html-sq table.visible-md {

    display: table !important;

  }

  #custom-html-sq tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sq td.visible-md,

  #custom-html-sq th.visible-md {

    display: table-cell !important;

  }

  #custom-html-sq .visible-md-block {

    display: block !important;

  }

  #custom-html-sq .visible-md-inline {

    display: inline !important;

  }

  #custom-html-sq .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-sq .hidden-md {

    display: none !important;

  }

}

#custom-html-sq .visible-print {

  display: none !important;

}

#custom-html-sq .visible-print-block {

  display: none !important;

}

#custom-html-sq .visible-print-inline {

  display: none !important;

}

#custom-html-sq .visible-print-inline-block {

  display: none !important;

}

#custom-html-sq .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-sq .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sq .intl-tel-input .hide {

  display: none;

}

#custom-html-sq .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sq .intl-tel-input input,

#custom-html-sq .intl-tel-input input[type=tel],

#custom-html-sq .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sq .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sq .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sq .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sq .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sq .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sq .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sq .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sq .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sq .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-sq .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sq .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sq .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sq .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sq .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sq .intl-tel-input .country-list .country-name,

#custom-html-sq .intl-tel-input .country-list .dial-code,

#custom-html-sq .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sq .intl-tel-input .country-list .country-name,

#custom-html-sq .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sq .intl-tel-input.allow-dropdown input,

#custom-html-sq .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sq .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sq .intl-tel-input.separate-dial-code input,

#custom-html-sq .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sq .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sq .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sq .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sq .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sq .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sq .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sq .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sq .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sq .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sq .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sq .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sq .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sq .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sq .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sq .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sq .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sq .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sq .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-sq .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sq .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sq .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sq .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sq .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-sq .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sq .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sq .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sq .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-sq .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sq .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sq .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sq .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sq .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sq .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sq .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sq .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sq .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sq .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sq .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sq .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sq .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sq .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sq .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sq .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sq .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sq .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sq .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sq .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sq .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sq .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sq .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sq .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sq .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sq .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sq .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sq .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sq .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sq .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sq .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sq .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sq .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sq .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sq .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sq .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sq .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sq .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sq .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sq .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sq .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-sq .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sq .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sq .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sq .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sq .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sq .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sq .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sq .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sq .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sq .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sq .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sq .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sq .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sq .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sq .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sq .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sq .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sq .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;


}

#custom-html-sq .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sq .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sq .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sq .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sq .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sq .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sq .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sq .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sq .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sq .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sq .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sq .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sq .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sq .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sq .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sq .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sq .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sq .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sq .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sq .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sq .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sq .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sq .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sq .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sq .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sq .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sq .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sq .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sq .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sq .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sq .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sq .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sq .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sq .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sq .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sq .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sq .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sq .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sq .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sq .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sq .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sq .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sq .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sq .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sq .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sq .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sq .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sq .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sq .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sq .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sq .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sq .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sq .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-sq .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sq .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sq .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sq .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sq .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sq .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sq .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sq .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sq .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sq .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sq .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sq .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sq .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sq .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sq .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sq .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sq .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sq .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sq .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sq .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sq .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sq .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sq .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sq .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sq .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sq .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sq .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sq .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sq .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sq .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sq .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sq .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sq .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sq .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sq .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sq .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sq .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sq .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sq .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sq .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sq .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sq .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sq .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sq .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sq .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sq .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sq .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sq .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sq .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sq .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sq .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sq .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sq .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sq .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sq .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sq .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sq .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sq .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sq .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sq .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sq .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sq .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sq .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sq .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sq .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sq .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sq .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sq .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sq .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sq .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sq .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sq .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sq .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sq .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sq .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sq .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sq .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sq .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sq .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sq .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sq .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sq .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sq .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sq .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sq .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sq .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sq .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sq .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sq .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sq .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sq .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sq .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sq .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sq .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sq .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sq .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sq .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sq .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sq .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sq .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sq .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sq .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sq .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sq .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sq .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sq .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sq .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sq .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sq .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sq .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sq .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sq .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sq .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sq .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sq .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sq .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sq .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sq .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sq .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sq .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sq .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sq .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sq .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sq .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sq .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sq .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sq .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sq .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sq .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sq .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sq .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sq .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sq .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sq .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sq .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sq .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sq .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sq body,

#custom-html-sq button,

#custom-html-sq input,

#custom-html-sq select,

#custom-html-sq textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sq h1,

#custom-html-sq h2,

#custom-html-sq h3,

#custom-html-sq h4,

#custom-html-sq h5,

#custom-html-sq h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-sq .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sq .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sq .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sq .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sq .navbar-main .navbar-nav > .active > a,

#custom-html-sq .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sq .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sq .navbar-main .navbar-nav > .open > a,

#custom-html-sq .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sq .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sq .navbar-main .navbar-nav > li > a:focus,

#custom-html-sq .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sq #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sq .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-sq .navbar-header {

    float: none;

  }

  #custom-html-sq .navbar-left,

  #custom-html-sq .navbar-right {

    float: none !important;

  }

  #custom-html-sq .navbar-toggle {

    display: block;

  }

  #custom-html-sq .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sq .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sq .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sq .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sq .navbar-nav > li {

    float: none;

  }

  #custom-html-sq .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sq .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-sq .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sq .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sq .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-sq ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sq ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sq ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-sq .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-sq .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sq .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sq .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sq .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sq .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-sq #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sq #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-sq .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sq a.list-group-item.active,

#custom-html-sq a.list-group-item.active:focus,

#custom-html-sq a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sq .dropdown-menu > li > a:focus,

#custom-html-sq .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sq input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sq .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sq body,

#custom-html-sq html {

  height: 100%;

}

#custom-html-sq section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sq section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sq section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sq section#header .search {

  margin: 20px 0;

}

#custom-html-sq section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sq section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sq section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sq section#main-content {

  margin-bottom: 60px;

}

#custom-html-sq .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sq section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sq section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sq section#footer {

    line-height: 32px;

  }

}

#custom-html-sq section#footer .back-to-top {

  float: right;

}

#custom-html-sq section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sq .adminreturndiv {

  display: none !important;

}

#custom-html-sq .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sq .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sq .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sq .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sq .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sq .navbar-main .navbar-toggle:focus,

#custom-html-sq .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sq .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sq .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-sq div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sq div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sq div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sq div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sq div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sq .h1,

  #custom-html-sq h1 {

    font-size: 26px;

  }

  #custom-html-sq .h2,

  #custom-html-sq h2 {

    font-size: 20px;

  }

  #custom-html-sq .h3,

  #custom-html-sq h3 {

    font-size: 16px;

  }

  #custom-html-sq .h4,

  #custom-html-sq h4 {

    font-size: 14px;

  }

  #custom-html-sq .h5,

  #custom-html-sq h5 {

    font-size: 12px;

  }

  #custom-html-sq .h6,

  #custom-html-sq h6 {

    font-size: 11px;

  }

  #custom-html-sq div.header-lined small {

    display: none;

  }

  #custom-html-sq .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-sq .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sq .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sq .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sq .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-sq div.credit-card {

    max-width: 250px;

  }

  #custom-html-sq div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sq div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sq div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sq div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sq div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-sq .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sq .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sq .margin-10 {

  margin: 10px;

}

#custom-html-sq .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sq .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sq .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sq .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sq .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sq .input-inline {

  display: inline-block;

}

#custom-html-sq .input-inline-100 {

  width: 100px;

}

#custom-html-sq .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-sq .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sq .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sq .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-sq i.icon-rss {

  color: #ff6600;

}

#custom-html-sq section#main-menu {

  background-color: #000000;

}

#custom-html-sq section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sq section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sq section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sq section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sq section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sq section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sq section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sq section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sq section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sq section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sq section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sq section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-sq .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-sq .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-sq .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sq .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sq .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-sq #stepResults {

    font-size: 14px;

  }

  #custom-html-sq #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sq div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-sq .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sq .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sq .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sq .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sq .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sq .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sq .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sq .home-shortcuts li span {

  display: none;

}

#custom-html-sq .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sq .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-sq .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sq .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sq .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sq .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sq .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sq .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sq .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sq .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sq .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sq .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sq .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sq .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sq .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sq .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sq .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sq .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sq .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sq .tiles .tile a {

  text-decoration: none;

}

#custom-html-sq .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sq .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sq .tiles .tile:last-child {

  border: 0;

}

#custom-html-sq .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sq .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sq .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sq .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sq .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sq .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sq .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sq .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sq .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sq .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sq .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sq .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sq .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sq .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sq .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sq .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sq .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sq .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sq .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sq .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sq .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sq .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sq .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sq .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sq .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sq .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sq .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sq .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sq .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sq .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sq .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sq .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sq .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sq .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sq .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sq .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sq .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sq .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sq .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sq .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sq .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sq ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sq ul.top-nav > li,

#custom-html-sq ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sq ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sq ul.top-nav > li:active > a,

#custom-html-sq ul.top-nav > li:focus > a,

#custom-html-sq ul.top-nav > li:hover > a,

#custom-html-sq ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sq ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sq ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sq ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sq ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-sq div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sq div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sq div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sq div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sq div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sq div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sq .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sq .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-sq .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sq .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-sq .domain-check-availability {

  width: 100px;

}

#custom-html-sq .domain-step-options {

  min-height: 300px;

}

#custom-html-sq .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sq .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sq .domain-checker-invalid,

#custom-html-sq .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sq div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sq .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sq .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sq .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sq a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sq .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sq .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sq .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-sq .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sq .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sq .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sq .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sq .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sq .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sq .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-sq .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sq .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sq .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sq .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sq .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sq .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sq .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sq .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sq .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sq .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sq .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sq .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sq .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sq .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sq div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sq div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sq div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sq .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sq .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sq .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sq .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sq div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sq div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-sq .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sq .product-status-pending {

  background-color: #f89406;

}

#custom-html-sq .product-status-active {

  background-color: #46a546;

}

#custom-html-sq .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sq .product-status-cancelled,

#custom-html-sq .product-status-terminated {

  background-color: #666666;

}

#custom-html-sq .product-status-fraud {

  background-color: #000000;

}

#custom-html-sq .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sq div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sq .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sq .ssl-inactive {

  cursor: pointer;

}

#custom-html-sq .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sq .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sq .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sq .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sq .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sq .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sq .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sq .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sq .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-sq .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sq .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sq .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sq .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sq .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sq .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sq table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sq .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sq table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sq .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-sq table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sq .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sq .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sq .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sq table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sq table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sq table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sq .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sq .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sq .status-pending {

  color: #d9534f;

}

#custom-html-sq .status-pending.transfer {

  color: #a68500;

}

#custom-html-sq .status-active,

#custom-html-sq .status-completed,

#custom-html-sq .status-open {

  color: #3fad46;

}

#custom-html-sq .status-suspended {

  color: #f0ad4e;

}

#custom-html-sq .status-customer-reply {

  color: #ff6600;

}

#custom-html-sq .status-answered,

#custom-html-sq .status-fraud {

  color: #000000;

}

#custom-html-sq .status-expired,

#custom-html-sq .status-transferred.away {

  color: #004258;

}

#custom-html-sq .status-cancelled {

  color: #87939f;

}

#custom-html-sq .status-terminated {

  color: #666666;

}

#custom-html-sq .status-onhold {

  color: #224488;

}

#custom-html-sq .status-inprogress {

  color: #cc0000;

}

#custom-html-sq .status-closed {

  color: #888888;

}

#custom-html-sq .status-paid {

  color: #498302;

}

#custom-html-sq .status-unpaid {

  color: #ed3e48;

}

#custom-html-sq .status-collections {

  color: #9a141e;

}

#custom-html-sq .status-refunded {

  color: #319fc3;

}

#custom-html-sq .status-delivered {

  color: #224488;

}

#custom-html-sq .status-accepted {

  color: #498302;

}

#custom-html-sq .status-dead,

#custom-html-sq .status-lost {

  color: #000000;

}

#custom-html-sq .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sq .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sq .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sq .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sq .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sq .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sq .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-sq .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-sq .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sq .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sq .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sq .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sq .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sq .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sq .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sq .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sq .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sq .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sq .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sq .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sq .ticket-reply .rating,

#custom-html-sq .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sq .ticket-reply .rating span.star,

#custom-html-sq .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sq .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sq .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sq .ticket-reply .rating span.star:before,

#custom-html-sq .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sq .ticket-reply .rating span.star:hover:before,

#custom-html-sq .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sq .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sq .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sq .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sq .ticket-reply .clear {

  clear: both;

}

#custom-html-sq .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sq .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sq .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sq .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sq .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sq .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sq .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sq .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sq .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sq .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sq .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sq .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sq .popover-user-notifications ul li i.far,

#custom-html-sq .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sq .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sq .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sq .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sq .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sq .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sq .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sq .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sq .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sq .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sq div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sq div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sq div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sq div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sq div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sq div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sq div.credit-card div.end {

  clear: both;

}

#custom-html-sq .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sq .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sq .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sq .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sq .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sq .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sq div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sq div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sq div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sq div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sq div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sq div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sq .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-sq div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sq div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sq div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sq #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sq .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sq .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sq .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sq .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sq .kb-category a small {

  color: #888888;

}

#custom-html-sq .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sq .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sq .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sq .kbarticles a.admin-inline-edit,

#custom-html-sq .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sq h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sq .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sq .kb-article-title h2 {

  margin: 0;

}

#custom-html-sq .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sq .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sq .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sq .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sq .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sq .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sq .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sq .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sq #stepResults {

  font-size: 20px;

}

#custom-html-sq #stepResults .label {

  font-size: 20px;

}

#custom-html-sq h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sq h3.with-badge i,

#custom-html-sq h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sq h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-sq .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sq .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sq a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sq a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sq .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sq .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sq .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sq .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sq .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sq .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sq .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sq .login-popover {

  font-size: 12px;

}

#custom-html-sq .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sq .login-popover hr {

  margin: 5px 0;

}

#custom-html-sq tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sq tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sq .error-container {

  text-align: center;

}

#custom-html-sq .error-container h1 {

  margin-top: 40px;

}

#custom-html-sq .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sq .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sq .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sq .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sq .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sq #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sq #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sq #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sq .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-sq #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sq #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sq #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sq #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sq .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sq .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sq .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sq .email-verification .btn:active,

#custom-html-sq .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sq .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sq .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sq .email-verification .far,

#custom-html-sq .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-sq .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sq .email-verification.success .far,

#custom-html-sq .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sq .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sq .email-verification.failed .far,

#custom-html-sq .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sq .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-sq .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sq .md-editor > .md-preview,

#custom-html-sq .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sq div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sq .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sq .small-font {

  font-size: 0.9em;

}

#custom-html-sq .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sq .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sq .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sq .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sq .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sq .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sq .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sq .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sq .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sq .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sq .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sq .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sq .panel-heading i.fab,

#custom-html-sq .panel-heading i.fal,

#custom-html-sq .panel-heading i.far,

#custom-html-sq .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sq .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sq .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sq .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sq .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sq .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sq .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sq .panel-sidebar .list-group-item.disabled,

#custom-html-sq .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sq .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sq .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sq .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sq .panel-sidebar a.list-group-item.active,

#custom-html-sq .panel-sidebar a.list-group-item.active:focus,

#custom-html-sq .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sq .panel-sidebar a.list-group-item.active i,

#custom-html-sq .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sq .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sq .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sq .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sq .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sq .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sq .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sq .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sq .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sq .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sq .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sq .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sq .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sq .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sq .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sq .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-sq .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sq .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sq .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sq .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sq .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sq .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sq .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sq .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sq .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sq .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sq .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sq .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sq .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-sq .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sq .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sq .promo-banner p {

  margin: 5px 0;

}

#custom-html-sq .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sq .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-sq .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sq .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sq .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sq .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sq .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sq .promo-banner-slim {

  padding: 10px;

}

#custom-html-sq .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sq .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sq .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sq .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sq .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sq .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sq .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sq .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sq .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sq .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sq .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sq .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sq .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sq .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sq .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sq .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sq .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sq .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sq .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sq .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sq .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sq .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sq .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sq .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sq .panel-mc-sso .btn,

#custom-html-sq .panel-mc-sso .form-control,

#custom-html-sq .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sq .panel-mc-sso small {

  display: block;

}

#custom-html-sq .social-signin-btns {

  text-align: center;

}

#custom-html-sq .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sq .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sq .btn-social i.far,

#custom-html-sq .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-facebook.active,

#custom-html-sq .btn-facebook:active,

#custom-html-sq .btn-facebook:focus,

#custom-html-sq .btn-facebook:hover,

#custom-html-sq .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-facebook.active,

#custom-html-sq .btn-facebook:active,

#custom-html-sq .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sq .btn-facebook.disabled,

#custom-html-sq .btn-facebook.disabled.active,

#custom-html-sq .btn-facebook.disabled:active,

#custom-html-sq .btn-facebook.disabled:focus,

#custom-html-sq .btn-facebook.disabled:hover,

#custom-html-sq .btn-facebook[disabled],

#custom-html-sq .btn-facebook[disabled].active,

#custom-html-sq .btn-facebook[disabled]:active,

#custom-html-sq .btn-facebook[disabled]:focus,

#custom-html-sq .btn-facebook[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-facebook,

#custom-html-sq fieldset[disabled] .btn-facebook.active,

#custom-html-sq fieldset[disabled] .btn-facebook:active,

#custom-html-sq fieldset[disabled] .btn-facebook:focus,

#custom-html-sq fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-google.active,

#custom-html-sq .btn-google:active,

#custom-html-sq .btn-google:focus,

#custom-html-sq .btn-google:hover,

#custom-html-sq .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-google.active,

#custom-html-sq .btn-google:active,

#custom-html-sq .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sq .btn-google-plus.disabled.active,

#custom-html-sq .btn-google-plus.disabled:active,

#custom-html-sq .btn-google-plus.disabled:focus,

#custom-html-sq .btn-google-plus[disabled].active,

#custom-html-sq .btn-google-plus[disabled]:active,

#custom-html-sq .btn-google-plus[disabled]:focus,

#custom-html-sq .btn-google-plus[disabled]:hover,

#custom-html-sq .btn-google.disabled,

#custom-html-sq .btn-google.disabled:hover,

#custom-html-sq .btn-google[disabled],

#custom-html-sq fieldset[disabled] .btn-google,

#custom-html-sq fieldset[disabled] .btn-google-plus.active,

#custom-html-sq fieldset[disabled] .btn-google-plus:active,

#custom-html-sq fieldset[disabled] .btn-google-plus:focus,

#custom-html-sq fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-twitter.active,

#custom-html-sq .btn-twitter:active,

#custom-html-sq .btn-twitter:focus,

#custom-html-sq .btn-twitter:hover,

#custom-html-sq .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-twitter.active,

#custom-html-sq .btn-twitter:active,

#custom-html-sq .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sq .btn-twitter.disabled,

#custom-html-sq .btn-twitter.disabled.active,

#custom-html-sq .btn-twitter.disabled:active,

#custom-html-sq .btn-twitter.disabled:focus,

#custom-html-sq .btn-twitter.disabled:hover,

#custom-html-sq .btn-twitter[disabled],

#custom-html-sq .btn-twitter[disabled].active,

#custom-html-sq .btn-twitter[disabled]:active,

#custom-html-sq .btn-twitter[disabled]:focus,

#custom-html-sq .btn-twitter[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-twitter,

#custom-html-sq fieldset[disabled] .btn-twitter.active,

#custom-html-sq fieldset[disabled] .btn-twitter:active,

#custom-html-sq fieldset[disabled] .btn-twitter:focus,

#custom-html-sq fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .providerPreLinking {

  min-height: 52px;

}

#custom-html-sq .providerLinkingFeedback {

  display: none;

}

#custom-html-sq #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sq #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sq #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sq #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sq .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sq #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sq #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sq #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sq #registration .field,

#custom-html-sq #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sq #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sq #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sq #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sq #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sq #registration textarea.field {

  height: auto;

}

#custom-html-sq #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sq #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sq #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sq #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sq #registration .field[disabled],

#custom-html-sq #registration .field[readonly],

#custom-html-sq #registration .form-control[disabled],

#custom-html-sq #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sq #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-sq .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sq .upgrade .product-to-be-upgraded h4,

#custom-html-sq .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sq .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sq .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sq .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sq .upgrade .products .product .current,

#custom-html-sq .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sq .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sq .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sq .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-sq .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sq .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sq .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sq .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sq .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sq .upgrade .products .far,

#custom-html-sq .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sq .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sq .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sq .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sq .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sq .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sq .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .bootstrap-switch input[type=checkbox],

#custom-html-sq .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sq .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sq .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sq .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sq .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sq .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sq .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sq .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sq .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sq .md-editor .md-footer,

#custom-html-sq .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sq .md-editor > .md-header {

  margin: 0;

}

#custom-html-sq .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sq .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sq .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sq .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sq .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sq .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sq .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sq .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-input,

#custom-html-sq .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sq .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sq .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sq .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sq .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sq .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sq .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sq .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sq .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sq .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sq table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sq table.dataTable td,

#custom-html-sq table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sq table.dataTable td.dataTables_empty,

#custom-html-sq table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sq table.dataTable.nowrap td,

#custom-html-sq table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sq table.dataTable thead > tr > td.sorting,

#custom-html-sq table.dataTable thead > tr > td.sorting_asc,

#custom-html-sq table.dataTable thead > tr > td.sorting_desc,

#custom-html-sq table.dataTable thead > tr > th.sorting,

#custom-html-sq table.dataTable thead > tr > th.sorting_asc,

#custom-html-sq table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sq table.dataTable thead > tr > td:active,

#custom-html-sq table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sq table.dataTable thead .sorting,

#custom-html-sq table.dataTable thead .sorting_asc,

#custom-html-sq table.dataTable thead .sorting_asc_disabled,

#custom-html-sq table.dataTable thead .sorting_desc,

#custom-html-sq table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sq table.dataTable thead .sorting:after,

#custom-html-sq table.dataTable thead .sorting_asc:after,

#custom-html-sq table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sq table.dataTable thead .sorting_desc:after,

#custom-html-sq table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sq table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sq table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sq table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sq table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sq table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sq div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sq div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sq div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sq div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sq div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sq div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sq div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sq div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-sq table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sq table.dataTable.table-condensed .sorting:after,

#custom-html-sq table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sq table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sq table.table-bordered.dataTable td,

#custom-html-sq table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sq table.table-bordered.dataTable td:last-child,

#custom-html-sq table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sq table.table-bordered.dataTable tbody td,

#custom-html-sq table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sq div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sq div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sq div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-sq div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sq table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sq table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sq table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sq table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sq table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sq table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sq table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sq table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sq table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sq table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sq table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sq table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sq table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sq table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sq table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sq div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sq div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sq div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sq div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sq div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sq div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-sq div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sq .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sq .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sq .multiselect-container > li {

  padding: 0;

}

#custom-html-sq .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sq .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sq .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sq .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sq .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sq .multiselect-container > li > a > label.checkbox,

#custom-html-sq .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sq .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sq .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sq .form-inline .multiselect-container label.checkbox,

#custom-html-sq .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sq .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sq .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-sq html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-sq body {

  margin: 0;

}

#custom-html-sq article,

#custom-html-sq aside,

#custom-html-sq details,

#custom-html-sq figcaption,

#custom-html-sq figure,

#custom-html-sq footer,

#custom-html-sq header,

#custom-html-sq hgroup,

#custom-html-sq main,

#custom-html-sq menu,

#custom-html-sq nav,

#custom-html-sq section,

#custom-html-sq summary {

  display: block;

}

#custom-html-sq audio,

#custom-html-sq canvas,

#custom-html-sq progress,

#custom-html-sq video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sq audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sq [hidden],

#custom-html-sq template {

  display: none;

}

#custom-html-sq a {

  background-color: transparent;

}

#custom-html-sq a:active,

#custom-html-sq a:hover {

  outline: 0;

}

#custom-html-sq abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sq b,

#custom-html-sq strong {

  font-weight: 700;

}

#custom-html-sq dfn {

  font-style: italic;

}

#custom-html-sq h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sq mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sq small {

  font-size: 80%;

}

#custom-html-sq sub,

#custom-html-sq sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sq sup {

  top: -0.5em;

}

#custom-html-sq sub {

  bottom: -0.25em;

}

#custom-html-sq img {

  border: 0;

}

#custom-html-sq svg:not(:root) {

  overflow: hidden;

}

#custom-html-sq figure {

  margin: 1em 40px;

}

#custom-html-sq hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sq pre {

  overflow: auto;

}

#custom-html-sq code,

#custom-html-sq kbd,

#custom-html-sq pre,

#custom-html-sq samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-sq button,

#custom-html-sq input,

#custom-html-sq optgroup,

#custom-html-sq select,

#custom-html-sq textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sq button {

  overflow: visible;

}

#custom-html-sq button,

#custom-html-sq select {

  text-transform: none;

}

#custom-html-sq button,

#custom-html-sq html input[type=button],

#custom-html-sq input[type=reset],

#custom-html-sq input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sq button[disabled],

#custom-html-sq html input[disabled] {

  cursor: default;

}

#custom-html-sq button::-moz-focus-inner,

#custom-html-sq input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sq input {

  line-height: normal;

}

#custom-html-sq input[type=checkbox],

#custom-html-sq input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-sq input[type=number]::-webkit-inner-spin-button,

#custom-html-sq input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sq input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-sq input[type=search]::-webkit-search-cancel-button,

#custom-html-sq input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sq fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-sq legend {

  padding: 0;

  border: 0;

}

#custom-html-sq textarea {

  overflow: auto;

}

#custom-html-sq optgroup {

  font-weight: 700;

}

#custom-html-sq table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-sq td,

#custom-html-sq th {

  padding: 0;

}

@media print {

  #custom-html-sq *,

  #custom-html-sq :after,

  #custom-html-sq :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sq a,

  #custom-html-sq a:visited {

    text-decoration: underline;

  }

  #custom-html-sq a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-sq abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sq a[href^="#"]:after,

  #custom-html-sq a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sq blockquote,

  #custom-html-sq pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sq thead {

    display: table-header-group;

  }

  #custom-html-sq img,

  #custom-html-sq tr {

    page-break-inside: avoid;

  }

  #custom-html-sq img {

    max-width: 100% !important;

  }

  #custom-html-sq h2,

  #custom-html-sq h3,

  #custom-html-sq p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sq h2,

  #custom-html-sq h3 {

    page-break-after: avoid;

  }

  #custom-html-sq .navbar {

    display: none;

  }

  #custom-html-sq .btn > .caret,

  #custom-html-sq .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sq .label {

    border: 1px solid #000000;

  }

  #custom-html-sq .table {

    border-collapse: collapse !important;

  }

  #custom-html-sq .table td,

  #custom-html-sq .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sq .table-bordered td,

  #custom-html-sq .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sq .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sq .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sq .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sq .glyphicon-eur:before,

#custom-html-sq .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sq .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sq .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sq .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sq .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sq .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sq .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sq .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sq .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sq .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sq .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sq .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sq .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sq .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sq .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sq .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sq .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sq .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sq .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sq .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sq .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sq .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sq .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sq .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sq .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sq .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sq .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sq .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sq .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sq .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sq .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sq .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sq .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sq .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sq .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sq .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sq .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sq .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sq .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sq .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sq .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sq .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sq .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sq .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sq .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sq .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sq .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sq .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sq .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sq .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sq .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sq .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sq .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sq .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sq .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sq .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sq .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sq .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sq .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sq .glyphicon-list:before {

  content: "\e056";

}

#custom-html-sq .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sq .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sq .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sq .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sq .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sq .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sq .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sq .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sq .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sq .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sq .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sq .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sq .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sq .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sq .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sq .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sq .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sq .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sq .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sq .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sq .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sq .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sq .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sq .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sq .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-sq .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sq .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sq .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sq .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sq .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sq .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sq .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sq .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sq .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sq .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sq .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sq .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sq .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sq .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sq .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sq .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sq .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sq .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sq .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sq .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sq .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sq .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sq .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sq .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sq .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sq .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sq .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sq .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sq .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sq .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sq .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sq .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sq .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sq .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sq .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sq .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sq .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sq .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sq .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sq .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sq .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sq .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sq .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sq .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sq .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sq .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sq .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sq .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sq .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sq .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sq .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sq .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sq .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sq .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sq .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sq .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sq .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sq .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sq .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sq .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sq .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sq .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sq .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sq .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sq .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sq .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sq .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sq .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sq .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sq .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sq .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sq .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sq .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sq .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-sq .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sq .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sq .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sq .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sq .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sq .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sq .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sq .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sq .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sq .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sq .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sq .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sq .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sq .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sq .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sq .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sq .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sq .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sq .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sq .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sq .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sq .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sq .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sq .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sq .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sq .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sq .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sq .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sq .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sq .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sq .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sq .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sq .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sq .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sq .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sq .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sq .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sq .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sq .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sq .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sq .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sq .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sq .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sq .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sq .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sq .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sq .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sq .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sq .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sq .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sq .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sq .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sq .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sq .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sq .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sq .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sq .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sq .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sq .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sq .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sq .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sq .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sq .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sq .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sq .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sq .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sq .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sq .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sq .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sq .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sq .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sq .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sq .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sq .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sq .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sq .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sq .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sq .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sq .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sq .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sq .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sq .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sq .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sq .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sq .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sq .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-sq .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sq .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sq .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sq .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sq .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sq .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sq .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sq .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sq .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sq .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sq .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sq .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sq .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sq .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sq .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sq * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sq :after,

#custom-html-sq :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sq html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sq body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-sq button,

#custom-html-sq input,

#custom-html-sq select,

#custom-html-sq textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sq a {

  color: #000;

  text-decoration: none;

}

#custom-html-sq a:focus,

#custom-html-sq a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sq a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sq figure {

  margin: 0;

}

#custom-html-sq img {

  vertical-align: middle;

}

#custom-html-sq .carousel-inner > .item > a > img,

#custom-html-sq .carousel-inner > .item > img,

#custom-html-sq .img-responsive,

#custom-html-sq .thumbnail a > img,

#custom-html-sq .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sq .img-rounded {

  border-radius: 6px;

}

#custom-html-sq .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sq .img-circle {

  border-radius: 50%;

}

#custom-html-sq hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sq .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sq .sr-only-focusable:active,

#custom-html-sq .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sq [role=button] {

  cursor: pointer;

}

#custom-html-sq .h1,

#custom-html-sq .h2,

#custom-html-sq .h3,

#custom-html-sq .h4,

#custom-html-sq .h5,

#custom-html-sq .h6,

#custom-html-sq h1,

#custom-html-sq h2,

#custom-html-sq h3,

#custom-html-sq h4,

#custom-html-sq h5,

#custom-html-sq h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sq .h1 .small,

#custom-html-sq .h1 small,

#custom-html-sq .h2 .small,

#custom-html-sq .h2 small,

#custom-html-sq .h3 .small,

#custom-html-sq .h3 small,

#custom-html-sq .h4 .small,

#custom-html-sq .h4 small,

#custom-html-sq .h5 .small,

#custom-html-sq .h5 small,

#custom-html-sq .h6 .small,

#custom-html-sq .h6 small,

#custom-html-sq h1 .small,

#custom-html-sq h1 small,

#custom-html-sq h2 .small,

#custom-html-sq h2 small,

#custom-html-sq h3 .small,

#custom-html-sq h3 small,

#custom-html-sq h4 .small,

#custom-html-sq h4 small,

#custom-html-sq h5 .small,

#custom-html-sq h5 small,

#custom-html-sq h6 .small,

#custom-html-sq h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sq .h1,

#custom-html-sq .h2,

#custom-html-sq .h3,

#custom-html-sq h1,

#custom-html-sq h2,

#custom-html-sq h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sq .h1 .small,

#custom-html-sq .h1 small,

#custom-html-sq .h2 .small,

#custom-html-sq .h2 small,

#custom-html-sq .h3 .small,

#custom-html-sq .h3 small,

#custom-html-sq h1 .small,

#custom-html-sq h1 small,

#custom-html-sq h2 .small,

#custom-html-sq h2 small,

#custom-html-sq h3 .small,

#custom-html-sq h3 small {

  font-size: 65%;

}

#custom-html-sq .h4,

#custom-html-sq .h5,

#custom-html-sq .h6,

#custom-html-sq h4,

#custom-html-sq h5,

#custom-html-sq h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sq .h4 .small,

#custom-html-sq .h4 small,

#custom-html-sq .h5 .small,

#custom-html-sq .h5 small,

#custom-html-sq .h6 .small,

#custom-html-sq .h6 small,

#custom-html-sq h4 .small,

#custom-html-sq h4 small,

#custom-html-sq h5 .small,

#custom-html-sq h5 small,

#custom-html-sq h6 .small,

#custom-html-sq h6 small {

  font-size: 75%;

}

#custom-html-sq .h1,

#custom-html-sq h1 {

  font-size: 36px;

}

#custom-html-sq .h2,

#custom-html-sq h2 {

  font-size: 30px;

}

#custom-html-sq .h3,

#custom-html-sq h3 {

  font-size: 24px;

}

#custom-html-sq .h4,

#custom-html-sq h4 {

  font-size: 18px;

}

#custom-html-sq .h5,

#custom-html-sq h5 {

  font-size: 14px;

}

#custom-html-sq .h6,

#custom-html-sq h6 {

  font-size: 12px;

}

#custom-html-sq p {

  margin: 0 0 10px;

}

#custom-html-sq .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sq .lead {

    font-size: 21px;

  }

}

#custom-html-sq .small,

#custom-html-sq small {

  font-size: 85%;

}

#custom-html-sq .mark,

#custom-html-sq mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sq .text-left {

  text-align: left;

}

#custom-html-sq .text-right {

  text-align: right;

}

#custom-html-sq .text-center {

  text-align: center;

}

#custom-html-sq .text-justify {

  text-align: justify;

}

#custom-html-sq .text-nowrap {

  white-space: nowrap;

}

#custom-html-sq .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sq .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sq .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sq .text-muted {

  color: #777777;

}

#custom-html-sq .text-primary {

  color: #000000;

}

#custom-html-sq a.text-primary:focus,

#custom-html-sq a.text-primary:hover {

  color: #000000;

}

#custom-html-sq .text-success {

  color: #3c763d;

}

#custom-html-sq a.text-success:focus,

#custom-html-sq a.text-success:hover {

  color: #2b542c;

}

#custom-html-sq .text-info {

  color: #31708f;

}

#custom-html-sq a.text-info:focus,

#custom-html-sq a.text-info:hover {

  color: #000000;

}

#custom-html-sq .text-warning {

  color: #8a6d3b;

}

#custom-html-sq a.text-warning:focus,

#custom-html-sq a.text-warning:hover {

  color: #66512c;

}

#custom-html-sq .text-danger {

  color: #a94442;

}

#custom-html-sq a.text-danger:focus,

#custom-html-sq a.text-danger:hover {

  color: #843534;

}

#custom-html-sq .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-sq a.bg-primary:focus,

#custom-html-sq a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sq .bg-success {

  background-color: #dff0d8;

}

#custom-html-sq a.bg-success:focus,

#custom-html-sq a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sq .bg-info {

  background-color: #d9edf7;

}

#custom-html-sq a.bg-info:focus,

#custom-html-sq a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sq .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sq a.bg-warning:focus,

#custom-html-sq a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sq .bg-danger {

  background-color: #f2dede;

}

#custom-html-sq a.bg-danger:focus,

#custom-html-sq a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sq .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sq ol,

#custom-html-sq ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sq ol ol,

#custom-html-sq ol ul,

#custom-html-sq ul ol,

#custom-html-sq ul ul {

  margin-bottom: 0;

}

#custom-html-sq .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sq .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sq .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sq dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sq dd,

#custom-html-sq dt {

  line-height: 1.42857143;

}

#custom-html-sq dt {

  font-weight: 700;

}

#custom-html-sq dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sq .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sq .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-sq abbr[data-original-title],

#custom-html-sq abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sq .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sq blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sq blockquote ol:last-child,

#custom-html-sq blockquote p:last-child,

#custom-html-sq blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sq blockquote .small,

#custom-html-sq blockquote footer,

#custom-html-sq blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sq blockquote .small:before,

#custom-html-sq blockquote footer:before,

#custom-html-sq blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sq .blockquote-reverse,

#custom-html-sq blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sq .blockquote-reverse .small:before,

#custom-html-sq .blockquote-reverse footer:before,

#custom-html-sq .blockquote-reverse small:before,

#custom-html-sq blockquote.pull-right .small:before,

#custom-html-sq blockquote.pull-right footer:before,

#custom-html-sq blockquote.pull-right small:before {

  content: '';

}

#custom-html-sq .blockquote-reverse .small:after,

#custom-html-sq .blockquote-reverse footer:after,

#custom-html-sq .blockquote-reverse small:after,

#custom-html-sq blockquote.pull-right .small:after,

#custom-html-sq blockquote.pull-right footer:after,

#custom-html-sq blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sq address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sq code,

#custom-html-sq kbd,

#custom-html-sq pre,

#custom-html-sq samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-sq code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sq kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sq kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sq pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sq pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sq .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sq .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-sq .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-sq .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sq .container {

    width: 1170px;

  }

}

#custom-html-sq .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sq .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sq .col-lg-1,

#custom-html-sq .col-lg-10,

#custom-html-sq .col-lg-11,

#custom-html-sq .col-lg-12,

#custom-html-sq .col-lg-2,

#custom-html-sq .col-lg-3,

#custom-html-sq .col-lg-4,

#custom-html-sq .col-lg-5,

#custom-html-sq .col-lg-6,

#custom-html-sq .col-lg-7,

#custom-html-sq .col-lg-8,

#custom-html-sq .col-lg-9,

#custom-html-sq .col-md-1,

#custom-html-sq .col-md-10,

#custom-html-sq .col-md-11,

#custom-html-sq .col-md-12,

#custom-html-sq .col-md-2,

#custom-html-sq .col-md-3,

#custom-html-sq .col-md-4,

#custom-html-sq .col-md-5,

#custom-html-sq .col-md-6,

#custom-html-sq .col-md-7,

#custom-html-sq .col-md-8,

#custom-html-sq .col-md-9,

#custom-html-sq .col-sm-1,

#custom-html-sq .col-sm-10,

#custom-html-sq .col-sm-11,

#custom-html-sq .col-sm-12,

#custom-html-sq .col-sm-2,

#custom-html-sq .col-sm-3,

#custom-html-sq .col-sm-4,

#custom-html-sq .col-sm-5,

#custom-html-sq .col-sm-6,

#custom-html-sq .col-sm-7,

#custom-html-sq .col-sm-8,

#custom-html-sq .col-sm-9,

#custom-html-sq .col-xs-1,

#custom-html-sq .col-xs-10,

#custom-html-sq .col-xs-11,

#custom-html-sq .col-xs-12,

#custom-html-sq .col-xs-2,

#custom-html-sq .col-xs-3,

#custom-html-sq .col-xs-4,

#custom-html-sq .col-xs-5,

#custom-html-sq .col-xs-6,

#custom-html-sq .col-xs-7,

#custom-html-sq .col-xs-8,

#custom-html-sq .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sq .col-xs-1,

#custom-html-sq .col-xs-10,

#custom-html-sq .col-xs-11,

#custom-html-sq .col-xs-12,

#custom-html-sq .col-xs-2,

#custom-html-sq .col-xs-3,

#custom-html-sq .col-xs-4,

#custom-html-sq .col-xs-5,

#custom-html-sq .col-xs-6,

#custom-html-sq .col-xs-7,

#custom-html-sq .col-xs-8,

#custom-html-sq .col-xs-9 {

  float: left;

}

#custom-html-sq .col-xs-12 {

  width: 100%;

}

#custom-html-sq .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sq .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sq .col-xs-9 {

  width: 75%;

}

#custom-html-sq .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sq .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sq .col-xs-6 {

  width: 50%;

}

#custom-html-sq .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sq .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sq .col-xs-3 {

  width: 25%;

}

#custom-html-sq .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sq .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sq .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sq .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sq .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sq .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sq .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sq .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sq .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sq .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sq .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sq .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sq .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sq .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sq .col-xs-pull-0 {

  right: auto;

}

#custom-html-sq .col-xs-push-12 {

  left: 100%;

}

#custom-html-sq .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sq .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sq .col-xs-push-9 {

  left: 75%;

}

#custom-html-sq .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sq .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sq .col-xs-push-6 {

  left: 50%;

}

#custom-html-sq .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sq .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sq .col-xs-push-3 {

  left: 25%;

}

#custom-html-sq .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sq .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sq .col-xs-push-0 {

  left: auto;

}

#custom-html-sq .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sq .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sq .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sq .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sq .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sq .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sq .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sq .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sq .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sq .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sq .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sq .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-sq .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sq .col-sm-1,

  #custom-html-sq .col-sm-10,

  #custom-html-sq .col-sm-11,

  #custom-html-sq .col-sm-12,

  #custom-html-sq .col-sm-2,

  #custom-html-sq .col-sm-3,

  #custom-html-sq .col-sm-4,

  #custom-html-sq .col-sm-5,

  #custom-html-sq .col-sm-6,

  #custom-html-sq .col-sm-7,

  #custom-html-sq .col-sm-8,

  #custom-html-sq .col-sm-9 {

    float: left;

  }

  #custom-html-sq .col-sm-12 {

    width: 100%;

  }

  #custom-html-sq .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sq .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sq .col-sm-9 {

    width: 75%;

  }

  #custom-html-sq .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sq .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sq .col-sm-6 {

    width: 50%;

  }

  #custom-html-sq .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sq .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sq .col-sm-3 {

    width: 25%;

  }

  #custom-html-sq .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sq .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sq .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sq .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sq .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sq .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sq .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sq .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sq .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sq .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sq .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sq .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sq .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sq .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sq .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sq .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sq .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sq .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sq .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sq .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sq .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sq .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sq .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sq .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sq .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sq .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sq .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sq .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sq .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sq .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sq .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sq .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sq .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sq .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sq .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sq .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sq .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sq .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sq .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sq .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sq .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-sq .col-md-1,

  #custom-html-sq .col-md-10,

  #custom-html-sq .col-md-11,

  #custom-html-sq .col-md-12,

  #custom-html-sq .col-md-2,

  #custom-html-sq .col-md-3,

  #custom-html-sq .col-md-4,

  #custom-html-sq .col-md-5,

  #custom-html-sq .col-md-6,

  #custom-html-sq .col-md-7,

  #custom-html-sq .col-md-8,

  #custom-html-sq .col-md-9 {

    float: left;

  }

  #custom-html-sq .col-md-12 {

    width: 100%;

  }

  #custom-html-sq .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sq .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sq .col-md-9 {

    width: 75%;

  }

  #custom-html-sq .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sq .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sq .col-md-6 {

    width: 50%;

  }

  #custom-html-sq .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sq .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sq .col-md-3 {

    width: 25%;

  }

  #custom-html-sq .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sq .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sq .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sq .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sq .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sq .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sq .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sq .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sq .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sq .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sq .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sq .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sq .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sq .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sq .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sq .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sq .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sq .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sq .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sq .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sq .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sq .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sq .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sq .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sq .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sq .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sq .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sq .col-md-push-0 {

    left: auto;

  }

  #custom-html-sq .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sq .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sq .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sq .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sq .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sq .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sq .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sq .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sq .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sq .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sq .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sq .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sq .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-sq .col-lg-1,

  #custom-html-sq .col-lg-10,

  #custom-html-sq .col-lg-11,

  #custom-html-sq .col-lg-12,

  #custom-html-sq .col-lg-2,

  #custom-html-sq .col-lg-3,

  #custom-html-sq .col-lg-4,

  #custom-html-sq .col-lg-5,

  #custom-html-sq .col-lg-6,

  #custom-html-sq .col-lg-7,

  #custom-html-sq .col-lg-8,

  #custom-html-sq .col-lg-9 {

    float: left;

  }

  #custom-html-sq .col-lg-12 {

    width: 100%;

  }

  #custom-html-sq .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sq .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sq .col-lg-9 {

    width: 75%;

  }

  #custom-html-sq .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sq .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sq .col-lg-6 {

    width: 50%;

  }

  #custom-html-sq .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sq .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sq .col-lg-3 {

    width: 25%;

  }

  #custom-html-sq .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sq .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sq .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sq .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sq .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sq .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sq .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sq .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sq .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sq .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sq .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sq .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sq .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sq .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sq .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sq .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sq .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sq .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sq .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sq .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sq .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sq .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sq .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sq .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sq .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sq .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sq .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sq .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sq .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sq .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sq .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sq .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sq .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sq .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sq .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sq .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sq .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sq .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sq .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sq .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sq .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-sq table {

  background-color: transparent;

}

#custom-html-sq caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sq th {

  text-align: left;

}

#custom-html-sq .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sq .table > tbody > tr > td,

#custom-html-sq .table > tbody > tr > th,

#custom-html-sq .table > tfoot > tr > td,

#custom-html-sq .table > tfoot > tr > th,

#custom-html-sq .table > thead > tr > td,

#custom-html-sq .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sq .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sq .table > caption + thead > tr:first-child > td,

#custom-html-sq .table > caption + thead > tr:first-child > th,

#custom-html-sq .table > colgroup + thead > tr:first-child > td,

#custom-html-sq .table > colgroup + thead > tr:first-child > th,

#custom-html-sq .table > thead:first-child > tr:first-child > td,

#custom-html-sq .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sq .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sq .table .table {

  background-color: #ffffff;

}

#custom-html-sq .table-condensed > tbody > tr > td,

#custom-html-sq .table-condensed > tbody > tr > th,

#custom-html-sq .table-condensed > tfoot > tr > td,

#custom-html-sq .table-condensed > tfoot > tr > th,

#custom-html-sq .table-condensed > thead > tr > td,

#custom-html-sq .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sq .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sq .table-bordered > tbody > tr > td,

#custom-html-sq .table-bordered > tbody > tr > th,

#custom-html-sq .table-bordered > tfoot > tr > td,

#custom-html-sq .table-bordered > tfoot > tr > th,

#custom-html-sq .table-bordered > thead > tr > td,

#custom-html-sq .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sq .table-bordered > thead > tr > td,

#custom-html-sq .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sq .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sq .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sq table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sq table td[class*=col-],

#custom-html-sq table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-sq .table > tbody > tr.active > td,

#custom-html-sq .table > tbody > tr.active > th,

#custom-html-sq .table > tbody > tr > td.active,

#custom-html-sq .table > tbody > tr > th.active,

#custom-html-sq .table > tfoot > tr.active > td,

#custom-html-sq .table > tfoot > tr.active > th,

#custom-html-sq .table > tfoot > tr > td.active,

#custom-html-sq .table > tfoot > tr > th.active,

#custom-html-sq .table > thead > tr.active > td,

#custom-html-sq .table > thead > tr.active > th,

#custom-html-sq .table > thead > tr > td.active,

#custom-html-sq .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sq .table-hover > tbody > tr.active:hover > td,

#custom-html-sq .table-hover > tbody > tr.active:hover > th,

#custom-html-sq .table-hover > tbody > tr:hover > .active,

#custom-html-sq .table-hover > tbody > tr > td.active:hover,

#custom-html-sq .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sq .table > tbody > tr.success > td,

#custom-html-sq .table > tbody > tr.success > th,

#custom-html-sq .table > tbody > tr > td.success,

#custom-html-sq .table > tbody > tr > th.success,

#custom-html-sq .table > tfoot > tr.success > td,

#custom-html-sq .table > tfoot > tr.success > th,

#custom-html-sq .table > tfoot > tr > td.success,

#custom-html-sq .table > tfoot > tr > th.success,

#custom-html-sq .table > thead > tr.success > td,

#custom-html-sq .table > thead > tr.success > th,

#custom-html-sq .table > thead > tr > td.success,

#custom-html-sq .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sq .table-hover > tbody > tr.success:hover > td,

#custom-html-sq .table-hover > tbody > tr.success:hover > th,

#custom-html-sq .table-hover > tbody > tr:hover > .success,

#custom-html-sq .table-hover > tbody > tr > td.success:hover,

#custom-html-sq .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sq .table > tbody > tr.info > td,

#custom-html-sq .table > tbody > tr.info > th,

#custom-html-sq .table > tbody > tr > td.info,

#custom-html-sq .table > tbody > tr > th.info,

#custom-html-sq .table > tfoot > tr.info > td,

#custom-html-sq .table > tfoot > tr.info > th,

#custom-html-sq .table > tfoot > tr > td.info,

#custom-html-sq .table > tfoot > tr > th.info,

#custom-html-sq .table > thead > tr.info > td,

#custom-html-sq .table > thead > tr.info > th,

#custom-html-sq .table > thead > tr > td.info,

#custom-html-sq .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sq .table-hover > tbody > tr.info:hover > td,

#custom-html-sq .table-hover > tbody > tr.info:hover > th,

#custom-html-sq .table-hover > tbody > tr:hover > .info,

#custom-html-sq .table-hover > tbody > tr > td.info:hover,

#custom-html-sq .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sq .table > tbody > tr.warning > td,

#custom-html-sq .table > tbody > tr.warning > th,

#custom-html-sq .table > tbody > tr > td.warning,

#custom-html-sq .table > tbody > tr > th.warning,

#custom-html-sq .table > tfoot > tr.warning > td,

#custom-html-sq .table > tfoot > tr.warning > th,

#custom-html-sq .table > tfoot > tr > td.warning,

#custom-html-sq .table > tfoot > tr > th.warning,

#custom-html-sq .table > thead > tr.warning > td,

#custom-html-sq .table > thead > tr.warning > th,

#custom-html-sq .table > thead > tr > td.warning,

#custom-html-sq .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sq .table-hover > tbody > tr.warning:hover > td,

#custom-html-sq .table-hover > tbody > tr.warning:hover > th,

#custom-html-sq .table-hover > tbody > tr:hover > .warning,

#custom-html-sq .table-hover > tbody > tr > td.warning:hover,

#custom-html-sq .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sq .table > tbody > tr.danger > td,

#custom-html-sq .table > tbody > tr.danger > th,

#custom-html-sq .table > tbody > tr > td.danger,

#custom-html-sq .table > tbody > tr > th.danger,

#custom-html-sq .table > tfoot > tr.danger > td,

#custom-html-sq .table > tfoot > tr.danger > th,

#custom-html-sq .table > tfoot > tr > td.danger,

#custom-html-sq .table > tfoot > tr > th.danger,

#custom-html-sq .table > thead > tr.danger > td,

#custom-html-sq .table > thead > tr.danger > th,

#custom-html-sq .table > thead > tr > td.danger,

#custom-html-sq .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sq .table-hover > tbody > tr.danger:hover > td,

#custom-html-sq .table-hover > tbody > tr.danger:hover > th,

#custom-html-sq .table-hover > tbody > tr:hover > .danger,

#custom-html-sq .table-hover > tbody > tr > td.danger:hover,

#custom-html-sq .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sq .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sq .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sq .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sq .table-responsive > .table > tbody > tr > td,

  #custom-html-sq .table-responsive > .table > tbody > tr > th,

  #custom-html-sq .table-responsive > .table > tfoot > tr > td,

  #custom-html-sq .table-responsive > .table > tfoot > tr > th,

  #custom-html-sq .table-responsive > .table > thead > tr > td,

  #custom-html-sq .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sq .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sq .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sq .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sq .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sq .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sq .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sq .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sq .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sq .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sq .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sq .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sq .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sq .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sq .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sq .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sq .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sq .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-sq fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-sq legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sq label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sq input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sq input[type=checkbox],

#custom-html-sq input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sq input[type=file] {

  display: block;

}

#custom-html-sq input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sq select[multiple],

#custom-html-sq select[size] {

  height: auto;

}

#custom-html-sq input[type=checkbox]:focus,

#custom-html-sq input[type=file]:focus,

#custom-html-sq input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sq output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sq .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sq .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sq .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sq .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sq .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sq .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sq .form-control[disabled],

#custom-html-sq .form-control[readonly],

#custom-html-sq fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sq .form-control[disabled],

#custom-html-sq fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sq textarea.form-control {

  height: auto;

}

#custom-html-sq input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sq input[type=date].form-control,

  #custom-html-sq input[type=datetime-local].form-control,

  #custom-html-sq input[type=month].form-control,

  #custom-html-sq input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sq .input-group-sm input[type=date],

  #custom-html-sq .input-group-sm input[type=datetime-local],

  #custom-html-sq .input-group-sm input[type=month],

  #custom-html-sq .input-group-sm input[type=time],

  #custom-html-sq input[type=date].input-sm,

  #custom-html-sq input[type=datetime-local].input-sm,

  #custom-html-sq input[type=month].input-sm,

  #custom-html-sq input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sq .input-group-lg input[type=date],

  #custom-html-sq .input-group-lg input[type=datetime-local],

  #custom-html-sq .input-group-lg input[type=month],

  #custom-html-sq .input-group-lg input[type=time],

  #custom-html-sq input[type=date].input-lg,

  #custom-html-sq input[type=datetime-local].input-lg,

  #custom-html-sq input[type=month].input-lg,

  #custom-html-sq input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sq .form-group {

  margin-bottom: 15px;

}

#custom-html-sq .checkbox,

#custom-html-sq .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sq .checkbox label,

#custom-html-sq .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sq .checkbox input[type=checkbox],

#custom-html-sq .checkbox-inline input[type=checkbox],

#custom-html-sq .radio input[type=radio],

#custom-html-sq .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sq .checkbox + .checkbox,

#custom-html-sq .radio + .radio {

  margin-top: -5px;

}

#custom-html-sq .checkbox-inline,

#custom-html-sq .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sq .checkbox-inline + .checkbox-inline,

#custom-html-sq .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sq fieldset[disabled] input[type=checkbox],

#custom-html-sq fieldset[disabled] input[type=radio],

#custom-html-sq input[type=checkbox].disabled,

#custom-html-sq input[type=checkbox][disabled],

#custom-html-sq input[type=radio].disabled,

#custom-html-sq input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sq .checkbox-inline.disabled,

#custom-html-sq .radio-inline.disabled,

#custom-html-sq fieldset[disabled] .checkbox-inline,

#custom-html-sq fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sq .checkbox.disabled label,

#custom-html-sq .radio.disabled label,

#custom-html-sq fieldset[disabled] .checkbox label,

#custom-html-sq fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sq .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sq .form-control-static.input-lg,

#custom-html-sq .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sq .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sq select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sq select[multiple].input-sm,

#custom-html-sq textarea.input-sm {

  height: auto;

}

#custom-html-sq .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sq .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sq .form-group-sm select[multiple].form-control,

#custom-html-sq .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sq .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sq .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sq select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sq select[multiple].input-lg,

#custom-html-sq textarea.input-lg {

  height: auto;

}

#custom-html-sq .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sq .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sq .form-group-lg select[multiple].form-control,

#custom-html-sq .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sq .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sq .has-feedback {

  position: relative;

}

#custom-html-sq .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sq .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sq .form-group-lg .form-control + .form-control-feedback,

#custom-html-sq .input-group-lg + .form-control-feedback,

#custom-html-sq .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sq .form-group-sm .form-control + .form-control-feedback,

#custom-html-sq .input-group-sm + .form-control-feedback,

#custom-html-sq .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sq .has-success .checkbox,

#custom-html-sq .has-success .checkbox-inline,

#custom-html-sq .has-success .control-label,

#custom-html-sq .has-success .help-block,

#custom-html-sq .has-success .radio,

#custom-html-sq .has-success .radio-inline,

#custom-html-sq .has-success.checkbox label,

#custom-html-sq .has-success.checkbox-inline label,

#custom-html-sq .has-success.radio label,

#custom-html-sq .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sq .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sq .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sq .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sq .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sq .has-warning .checkbox,

#custom-html-sq .has-warning .checkbox-inline,

#custom-html-sq .has-warning .control-label,

#custom-html-sq .has-warning .help-block,

#custom-html-sq .has-warning .radio,

#custom-html-sq .has-warning .radio-inline,

#custom-html-sq .has-warning.checkbox label,

#custom-html-sq .has-warning.checkbox-inline label,

#custom-html-sq .has-warning.radio label,

#custom-html-sq .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sq .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sq .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sq .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sq .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sq .has-error .checkbox,

#custom-html-sq .has-error .checkbox-inline,

#custom-html-sq .has-error .control-label,

#custom-html-sq .has-error .help-block,

#custom-html-sq .has-error .radio,

#custom-html-sq .has-error .radio-inline,

#custom-html-sq .has-error.checkbox label,

#custom-html-sq .has-error.checkbox-inline label,

#custom-html-sq .has-error.radio label,

#custom-html-sq .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sq .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sq .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sq .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sq .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sq .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-sq .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sq .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-sq .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sq .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sq .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sq .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sq .form-inline .input-group .form-control,

  #custom-html-sq .form-inline .input-group .input-group-addon,

  #custom-html-sq .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sq .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sq .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sq .form-inline .checkbox,

  #custom-html-sq .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sq .form-inline .checkbox label,

  #custom-html-sq .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sq .form-inline .checkbox input[type=checkbox],

  #custom-html-sq .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sq .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-sq .form-horizontal .checkbox,

#custom-html-sq .form-horizontal .checkbox-inline,

#custom-html-sq .form-horizontal .radio,

#custom-html-sq .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sq .form-horizontal .checkbox,

#custom-html-sq .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sq .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sq .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-sq .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-sq .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-sq .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-sq .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sq .btn.active.focus,

#custom-html-sq .btn.active:focus,

#custom-html-sq .btn.focus,

#custom-html-sq .btn:active.focus,

#custom-html-sq .btn:active:focus,

#custom-html-sq .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sq .btn.focus,

#custom-html-sq .btn:focus,

#custom-html-sq .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sq .btn.active,

#custom-html-sq .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sq .btn.disabled,

#custom-html-sq .btn[disabled],

#custom-html-sq fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sq a.btn.disabled,

#custom-html-sq fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sq .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sq .btn-default.focus,

#custom-html-sq .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sq .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sq .btn-default.active,

#custom-html-sq .btn-default:active,

#custom-html-sq .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sq .btn-default.active.focus,

#custom-html-sq .btn-default.active:focus,

#custom-html-sq .btn-default.active:hover,

#custom-html-sq .btn-default:active.focus,

#custom-html-sq .btn-default:active:focus,

#custom-html-sq .btn-default:active:hover,

#custom-html-sq .open > .dropdown-toggle.btn-default.focus,

#custom-html-sq .open > .dropdown-toggle.btn-default:focus,

#custom-html-sq .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sq .btn-default.active,

#custom-html-sq .btn-default:active,

#custom-html-sq .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-sq .btn-default.disabled.focus,

#custom-html-sq .btn-default.disabled:focus,

#custom-html-sq .btn-default.disabled:hover,

#custom-html-sq .btn-default[disabled].focus,

#custom-html-sq .btn-default[disabled]:focus,

#custom-html-sq .btn-default[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-default.focus,

#custom-html-sq fieldset[disabled] .btn-default:focus,

#custom-html-sq fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sq .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sq .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sq .btn-primary.focus,

#custom-html-sq .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sq .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sq .btn-primary.active,

#custom-html-sq .btn-primary:active,

#custom-html-sq .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sq .btn-primary.active.focus,

#custom-html-sq .btn-primary.active:focus,

#custom-html-sq .btn-primary.active:hover,

#custom-html-sq .btn-primary:active.focus,

#custom-html-sq .btn-primary:active:focus,

#custom-html-sq .btn-primary:active:hover,

#custom-html-sq .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sq .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sq .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sq .btn-primary.active,

#custom-html-sq .btn-primary:active,

#custom-html-sq .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-sq .btn-primary.disabled.focus,

#custom-html-sq .btn-primary.disabled:focus,

#custom-html-sq .btn-primary.disabled:hover,

#custom-html-sq .btn-primary[disabled].focus,

#custom-html-sq .btn-primary[disabled]:focus,

#custom-html-sq .btn-primary[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-primary.focus,

#custom-html-sq fieldset[disabled] .btn-primary:focus,

#custom-html-sq fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sq .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sq .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sq .btn-success.focus,

#custom-html-sq .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sq .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sq .btn-success.active,

#custom-html-sq .btn-success:active,

#custom-html-sq .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sq .btn-success.active.focus,

#custom-html-sq .btn-success.active:focus,

#custom-html-sq .btn-success.active:hover,

#custom-html-sq .btn-success:active.focus,

#custom-html-sq .btn-success:active:focus,

#custom-html-sq .btn-success:active:hover,

#custom-html-sq .open > .dropdown-toggle.btn-success.focus,

#custom-html-sq .open > .dropdown-toggle.btn-success:focus,

#custom-html-sq .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sq .btn-success.active,

#custom-html-sq .btn-success:active,

#custom-html-sq .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-sq .btn-success.disabled.focus,

#custom-html-sq .btn-success.disabled:focus,

#custom-html-sq .btn-success.disabled:hover,

#custom-html-sq .btn-success[disabled].focus,

#custom-html-sq .btn-success[disabled]:focus,

#custom-html-sq .btn-success[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-success.focus,

#custom-html-sq fieldset[disabled] .btn-success:focus,

#custom-html-sq fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sq .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sq .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sq .btn-info.focus,

#custom-html-sq .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sq .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sq .btn-info.active,

#custom-html-sq .btn-info:active,

#custom-html-sq .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sq .btn-info.active.focus,

#custom-html-sq .btn-info.active:focus,

#custom-html-sq .btn-info.active:hover,

#custom-html-sq .btn-info:active.focus,

#custom-html-sq .btn-info:active:focus,

#custom-html-sq .btn-info:active:hover,

#custom-html-sq .open > .dropdown-toggle.btn-info.focus,

#custom-html-sq .open > .dropdown-toggle.btn-info:focus,

#custom-html-sq .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sq .btn-info.active,

#custom-html-sq .btn-info:active,

#custom-html-sq .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-sq .btn-info.disabled.focus,

#custom-html-sq .btn-info.disabled:focus,

#custom-html-sq .btn-info.disabled:hover,

#custom-html-sq .btn-info[disabled].focus,

#custom-html-sq .btn-info[disabled]:focus,

#custom-html-sq .btn-info[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-info.focus,

#custom-html-sq fieldset[disabled] .btn-info:focus,

#custom-html-sq fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sq .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sq .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sq .btn-warning.focus,

#custom-html-sq .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sq .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sq .btn-warning.active,

#custom-html-sq .btn-warning:active,

#custom-html-sq .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sq .btn-warning.active.focus,

#custom-html-sq .btn-warning.active:focus,

#custom-html-sq .btn-warning.active:hover,

#custom-html-sq .btn-warning:active.focus,

#custom-html-sq .btn-warning:active:focus,

#custom-html-sq .btn-warning:active:hover,

#custom-html-sq .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sq .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sq .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sq .btn-warning.active,

#custom-html-sq .btn-warning:active,

#custom-html-sq .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-sq .btn-warning.disabled.focus,

#custom-html-sq .btn-warning.disabled:focus,

#custom-html-sq .btn-warning.disabled:hover,

#custom-html-sq .btn-warning[disabled].focus,

#custom-html-sq .btn-warning[disabled]:focus,

#custom-html-sq .btn-warning[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-warning.focus,

#custom-html-sq fieldset[disabled] .btn-warning:focus,

#custom-html-sq fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sq .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sq .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sq .btn-danger.focus,

#custom-html-sq .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sq .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sq .btn-danger.active,

#custom-html-sq .btn-danger:active,

#custom-html-sq .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sq .btn-danger.active.focus,

#custom-html-sq .btn-danger.active:focus,

#custom-html-sq .btn-danger.active:hover,

#custom-html-sq .btn-danger:active.focus,

#custom-html-sq .btn-danger:active:focus,

#custom-html-sq .btn-danger:active:hover,

#custom-html-sq .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sq .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sq .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sq .btn-danger.active,

#custom-html-sq .btn-danger:active,

#custom-html-sq .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-sq .btn-danger.disabled.focus,

#custom-html-sq .btn-danger.disabled:focus,

#custom-html-sq .btn-danger.disabled:hover,

#custom-html-sq .btn-danger[disabled].focus,

#custom-html-sq .btn-danger[disabled]:focus,

#custom-html-sq .btn-danger[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-danger.focus,

#custom-html-sq fieldset[disabled] .btn-danger:focus,

#custom-html-sq fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sq .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sq .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sq .btn-link,

#custom-html-sq .btn-link.active,

#custom-html-sq .btn-link:active,

#custom-html-sq .btn-link[disabled],

#custom-html-sq fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sq .btn-link,

#custom-html-sq .btn-link:active,

#custom-html-sq .btn-link:focus,

#custom-html-sq .btn-link:hover {

  border-color: transparent;

}

#custom-html-sq .btn-link:focus,

#custom-html-sq .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sq .btn-link[disabled]:focus,

#custom-html-sq .btn-link[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-link:focus,

#custom-html-sq fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sq .btn-group-lg > .btn,

#custom-html-sq .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sq .btn-group-sm > .btn,

#custom-html-sq .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sq .btn-group-xs > .btn,

#custom-html-sq .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sq .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sq .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sq input[type=button].btn-block,

#custom-html-sq input[type=reset].btn-block,

#custom-html-sq input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sq .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sq .fade.in {

  opacity: 1;

}

#custom-html-sq .collapse {

  display: none;

}

#custom-html-sq .collapse.in {

  display: block;

}

#custom-html-sq tr.collapse.in {

  display: table-row;

}

#custom-html-sq tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sq .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-sq .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sq .dropdown,

#custom-html-sq .dropup {

  position: relative;

}

#custom-html-sq .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sq .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sq .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sq .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sq .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sq .dropdown-menu > li > a:focus,

#custom-html-sq .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sq .dropdown-menu > .active > a,

#custom-html-sq .dropdown-menu > .active > a:focus,

#custom-html-sq .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sq .dropdown-menu > .disabled > a,

#custom-html-sq .dropdown-menu > .disabled > a:focus,

#custom-html-sq .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sq .dropdown-menu > .disabled > a:focus,

#custom-html-sq .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sq .open > .dropdown-menu {

  display: block;

}

#custom-html-sq .open > a {

  outline: 0;

}

#custom-html-sq .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sq .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sq .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sq .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sq .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sq .dropup .caret,

#custom-html-sq .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sq .dropup .dropdown-menu,

#custom-html-sq .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-sq .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sq .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-sq .btn-group,

#custom-html-sq .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sq .btn-group-vertical > .btn,

#custom-html-sq .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sq .btn-group-vertical > .btn.active,

#custom-html-sq .btn-group-vertical > .btn:active,

#custom-html-sq .btn-group-vertical > .btn:focus,

#custom-html-sq .btn-group-vertical > .btn:hover,

#custom-html-sq .btn-group > .btn.active,

#custom-html-sq .btn-group > .btn:active,

#custom-html-sq .btn-group > .btn:focus,

#custom-html-sq .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sq .btn-group .btn + .btn,

#custom-html-sq .btn-group .btn + .btn-group,

#custom-html-sq .btn-group .btn-group + .btn,

#custom-html-sq .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sq .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sq .btn-toolbar .btn,

#custom-html-sq .btn-toolbar .btn-group,

#custom-html-sq .btn-toolbar .input-group {

  float: left;

}

#custom-html-sq .btn-toolbar > .btn,

#custom-html-sq .btn-toolbar > .btn-group,

#custom-html-sq .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sq .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sq .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sq .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sq .btn-group > .btn:last-child:not(:first-child),

#custom-html-sq .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sq .btn-group > .btn-group {

  float: left;

}

#custom-html-sq .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sq .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sq .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sq .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sq .btn-group .dropdown-toggle:active,

#custom-html-sq .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sq .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sq .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sq .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sq .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sq .btn .caret {

  margin-left: 0;

}

#custom-html-sq .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sq .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sq .btn-group-vertical > .btn,

#custom-html-sq .btn-group-vertical > .btn-group,

#custom-html-sq .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sq .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sq .btn-group-vertical > .btn + .btn,

#custom-html-sq .btn-group-vertical > .btn + .btn-group,

#custom-html-sq .btn-group-vertical > .btn-group + .btn,

#custom-html-sq .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sq .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sq .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sq .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sq .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sq .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sq .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sq .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sq .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sq .btn-group-justified > .btn,

#custom-html-sq .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sq .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sq .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sq [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sq [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sq [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sq [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sq .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sq .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sq .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sq .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sq .input-group-lg > .form-control,

#custom-html-sq .input-group-lg > .input-group-addon,

#custom-html-sq .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sq select.input-group-lg > .form-control,

#custom-html-sq select.input-group-lg > .input-group-addon,

#custom-html-sq select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sq select[multiple].input-group-lg > .form-control,

#custom-html-sq select[multiple].input-group-lg > .input-group-addon,

#custom-html-sq select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sq textarea.input-group-lg > .form-control,

#custom-html-sq textarea.input-group-lg > .input-group-addon,

#custom-html-sq textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sq .input-group-sm > .form-control,

#custom-html-sq .input-group-sm > .input-group-addon,

#custom-html-sq .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sq select.input-group-sm > .form-control,

#custom-html-sq select.input-group-sm > .input-group-addon,

#custom-html-sq select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sq select[multiple].input-group-sm > .form-control,

#custom-html-sq select[multiple].input-group-sm > .input-group-addon,

#custom-html-sq select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sq textarea.input-group-sm > .form-control,

#custom-html-sq textarea.input-group-sm > .input-group-addon,

#custom-html-sq textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sq .input-group .form-control,

#custom-html-sq .input-group-addon,

#custom-html-sq .input-group-btn {

  display: table-cell;

}

#custom-html-sq .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sq .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sq .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sq .input-group-addon,

#custom-html-sq .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sq .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sq .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sq .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sq .input-group-addon input[type=checkbox],

#custom-html-sq .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sq .input-group .form-control:first-child,

#custom-html-sq .input-group-addon:first-child,

#custom-html-sq .input-group-btn:first-child > .btn,

#custom-html-sq .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sq .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sq .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sq .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sq .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sq .input-group .form-control:last-child,

#custom-html-sq .input-group-addon:last-child,

#custom-html-sq .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sq .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sq .input-group-btn:last-child > .btn,

#custom-html-sq .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sq .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sq .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sq .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sq .input-group-btn > .btn {

  position: relative;

}

#custom-html-sq .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sq .input-group-btn > .btn:active,

#custom-html-sq .input-group-btn > .btn:focus,

#custom-html-sq .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sq .input-group-btn:first-child > .btn,

#custom-html-sq .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sq .input-group-btn:last-child > .btn,

#custom-html-sq .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sq .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sq .nav > li {

  position: relative;

  display: block;

}

#custom-html-sq .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sq .nav > li > a:focus,

#custom-html-sq .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sq .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sq .nav > li.disabled > a:focus,

#custom-html-sq .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sq .nav .open > a,

#custom-html-sq .nav .open > a:focus,

#custom-html-sq .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sq .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sq .nav > li > a > img {

  max-width: none;

}

#custom-html-sq .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sq .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sq .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sq .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sq .nav-tabs > li.active > a,

#custom-html-sq .nav-tabs > li.active > a:focus,

#custom-html-sq .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sq .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sq .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sq .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sq .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sq .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sq .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sq .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sq .nav-tabs.nav-justified > .active > a,

#custom-html-sq .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sq .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sq .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sq .nav-tabs.nav-justified > .active > a,

  #custom-html-sq .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sq .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sq .nav-pills > li {

  float: left;

}

#custom-html-sq .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sq .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sq .nav-pills > li.active > a,

#custom-html-sq .nav-pills > li.active > a:focus,

#custom-html-sq .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sq .nav-stacked > li {

  float: none;

}

#custom-html-sq .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sq .nav-justified {

  width: 100%;

}

#custom-html-sq .nav-justified > li {

  float: none;

}

#custom-html-sq .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sq .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sq .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sq .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sq .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sq .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sq .nav-tabs-justified > .active > a,

#custom-html-sq .nav-tabs-justified > .active > a:focus,

#custom-html-sq .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sq .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sq .nav-tabs-justified > .active > a,

  #custom-html-sq .nav-tabs-justified > .active > a:focus,

  #custom-html-sq .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sq .tab-content > .tab-pane {

  display: none;

}

#custom-html-sq .tab-content > .active {

  display: block;

}

#custom-html-sq .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sq .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-sq .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-sq .navbar-header {

    float: left;

  }

}

#custom-html-sq .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sq .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-sq .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sq .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sq .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sq .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sq .navbar-fixed-top .navbar-collapse,

  #custom-html-sq .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-sq .navbar-fixed-bottom .navbar-collapse,

#custom-html-sq .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sq .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sq .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sq .container-fluid > .navbar-collapse,

#custom-html-sq .container-fluid > .navbar-header,

#custom-html-sq .container > .navbar-collapse,

#custom-html-sq .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sq .container-fluid > .navbar-collapse,

  #custom-html-sq .container-fluid > .navbar-header,

  #custom-html-sq .container > .navbar-collapse,

  #custom-html-sq .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-sq .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-sq .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-sq .navbar-fixed-bottom,

#custom-html-sq .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-sq .navbar-fixed-bottom,

  #custom-html-sq .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-sq .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sq .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sq .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sq .navbar-brand:focus,

#custom-html-sq .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sq .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-sq .navbar > .container .navbar-brand,

  #custom-html-sq .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-sq .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sq .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sq .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sq .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-sq .navbar-toggle {

    display: none;

  }

}

#custom-html-sq .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sq .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sq .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sq .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sq .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sq .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sq .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sq .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-sq .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sq .navbar-nav > li {

    float: left;

  }

  #custom-html-sq .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-sq .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-sq .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sq .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sq .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sq .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sq .navbar-form .input-group .form-control,

  #custom-html-sq .navbar-form .input-group .input-group-addon,

  #custom-html-sq .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sq .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sq .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sq .navbar-form .checkbox,

  #custom-html-sq .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sq .navbar-form .checkbox label,

  #custom-html-sq .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sq .navbar-form .checkbox input[type=checkbox],

  #custom-html-sq .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sq .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-sq .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sq .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-sq .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-sq .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sq .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sq .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sq .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sq .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sq .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-sq .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-sq .navbar-left {

    float: left !important;

  }

  #custom-html-sq .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sq .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-sq .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sq .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sq .navbar-default .navbar-brand:focus,

#custom-html-sq .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sq .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sq .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sq .navbar-default .navbar-nav > li > a:focus,

#custom-html-sq .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sq .navbar-default .navbar-nav > .active > a,

#custom-html-sq .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sq .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sq .navbar-default .navbar-nav > .disabled > a,

#custom-html-sq .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sq .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sq .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sq .navbar-default .navbar-toggle:focus,

#custom-html-sq .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sq .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sq .navbar-default .navbar-collapse,

#custom-html-sq .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sq .navbar-default .navbar-nav > .open > a,

#custom-html-sq .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sq .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sq .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-sq .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sq .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sq .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sq .navbar-default .btn-link:focus,

#custom-html-sq .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sq .navbar-default .btn-link[disabled]:focus,

#custom-html-sq .navbar-default .btn-link[disabled]:hover,

#custom-html-sq fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sq fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sq .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sq .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sq .navbar-inverse .navbar-brand:focus,

#custom-html-sq .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sq .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sq .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sq .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sq .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sq .navbar-inverse .navbar-nav > .active > a,

#custom-html-sq .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sq .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sq .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sq .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sq .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sq .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sq .navbar-inverse .navbar-toggle:focus,

#custom-html-sq .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sq .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sq .navbar-inverse .navbar-collapse,

#custom-html-sq .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sq .navbar-inverse .navbar-nav > .open > a,

#custom-html-sq .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sq .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sq .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-sq .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sq .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sq .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sq .navbar-inverse .btn-link:focus,

#custom-html-sq .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sq .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sq .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sq fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sq fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sq .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sq .breadcrumb > li {

  display: inline-block;

}

#custom-html-sq .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sq .breadcrumb > .active {

  color: #777777;

}

#custom-html-sq .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-sq .pagination > li {

  display: inline;

}

#custom-html-sq .pagination > li > a,

#custom-html-sq .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sq .pagination > li:first-child > a,

#custom-html-sq .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sq .pagination > li:last-child > a,

#custom-html-sq .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sq .pagination > li > a:focus,

#custom-html-sq .pagination > li > a:hover,

#custom-html-sq .pagination > li > span:focus,

#custom-html-sq .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sq .pagination > .active > a,

#custom-html-sq .pagination > .active > a:focus,

#custom-html-sq .pagination > .active > a:hover,

#custom-html-sq .pagination > .active > span,

#custom-html-sq .pagination > .active > span:focus,

#custom-html-sq .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-sq .pagination > .disabled > a,

#custom-html-sq .pagination > .disabled > a:focus,

#custom-html-sq .pagination > .disabled > a:hover,

#custom-html-sq .pagination > .disabled > span,

#custom-html-sq .pagination > .disabled > span:focus,

#custom-html-sq .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sq .pagination-lg > li > a,

#custom-html-sq .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sq .pagination-lg > li:first-child > a,

#custom-html-sq .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sq .pagination-lg > li:last-child > a,

#custom-html-sq .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sq .pagination-sm > li > a,

#custom-html-sq .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sq .pagination-sm > li:first-child > a,

#custom-html-sq .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sq .pagination-sm > li:last-child > a,

#custom-html-sq .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sq .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sq .pager li {

  display: inline;

}

#custom-html-sq .pager li > a,

#custom-html-sq .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sq .pager li > a:focus,

#custom-html-sq .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sq .pager .next > a,

#custom-html-sq .pager .next > span {

  float: right;

}

#custom-html-sq .pager .previous > a,

#custom-html-sq .pager .previous > span {

  float: left;

}

#custom-html-sq .pager .disabled > a,

#custom-html-sq .pager .disabled > a:focus,

#custom-html-sq .pager .disabled > a:hover,

#custom-html-sq .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sq .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-sq a.label:focus,

#custom-html-sq a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sq .label:empty {

  display: none;

}

#custom-html-sq .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sq .label-default {

  background-color: #777777;

}

#custom-html-sq .label-default[href]:focus,

#custom-html-sq .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sq .label-primary {

  background-color: #337ab7;

}

#custom-html-sq .label-primary[href]:focus,

#custom-html-sq .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sq .label-success {

  background-color: #5cb85c;

}

#custom-html-sq .label-success[href]:focus,

#custom-html-sq .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sq .label-info {

  background-color: #5bc0de;

}

#custom-html-sq .label-info[href]:focus,

#custom-html-sq .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sq .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sq .label-warning[href]:focus,

#custom-html-sq .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sq .label-danger {

  background-color: #d9534f;

}

#custom-html-sq .label-danger[href]:focus,

#custom-html-sq .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sq .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sq .badge:empty {

  display: none;

}

#custom-html-sq .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sq .btn-group-xs > .btn .badge,

#custom-html-sq .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sq a.badge:focus,

#custom-html-sq a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sq .list-group-item.active > .badge,

#custom-html-sq .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sq .list-group-item > .badge {

  float: right;

}

#custom-html-sq .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sq .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sq .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sq .jumbotron .h1,

#custom-html-sq .jumbotron h1 {

  color: inherit;

}

#custom-html-sq .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sq .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sq .container .jumbotron,

#custom-html-sq .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sq .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sq .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sq .container .jumbotron,

  #custom-html-sq .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sq .jumbotron .h1,

  #custom-html-sq .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-sq .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sq .thumbnail a > img,

#custom-html-sq .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sq a.thumbnail.active,

#custom-html-sq a.thumbnail:focus,

#custom-html-sq a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sq .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sq .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sq .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sq .alert .alert-link {

  font-weight: 700;

}

#custom-html-sq .alert > p,

#custom-html-sq .alert > ul {

  margin-bottom: 0;

}

#custom-html-sq .alert > p + p {

  margin-top: 5px;

}

#custom-html-sq .alert-dismissable,

#custom-html-sq .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sq .alert-dismissable .close,

#custom-html-sq .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sq .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sq .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sq .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sq .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sq .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sq .alert-info .alert-link {

  color: #000000;

}

#custom-html-sq .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sq .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sq .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sq .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sq .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sq .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sq .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sq .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sq .progress-bar-striped,

#custom-html-sq .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sq .progress-bar.active,

#custom-html-sq .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sq .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sq .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sq .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sq .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sq .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sq .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sq .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sq .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sq .media {

  margin-top: 15px;

}

#custom-html-sq .media:first-child {

  margin-top: 0;

}

#custom-html-sq .media,

#custom-html-sq .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sq .media-body {

  width: 10000px;

}

#custom-html-sq .media-object {

  display: block;

}

#custom-html-sq .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sq .media-right,

#custom-html-sq .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sq .media-left,

#custom-html-sq .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sq .media-body,

#custom-html-sq .media-left,

#custom-html-sq .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sq .media-middle {

  vertical-align: middle;

}

#custom-html-sq .media-bottom {

  vertical-align: bottom;

}

#custom-html-sq .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sq .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sq .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-sq .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sq .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sq .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sq a.list-group-item,

#custom-html-sq button.list-group-item {

  color: #555555;

}

#custom-html-sq a.list-group-item .list-group-item-heading,

#custom-html-sq button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sq a.list-group-item:focus,

#custom-html-sq a.list-group-item:hover,

#custom-html-sq button.list-group-item:focus,

#custom-html-sq button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sq button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sq .list-group-item.disabled,

#custom-html-sq .list-group-item.disabled:focus,

#custom-html-sq .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sq .list-group-item.disabled .list-group-item-heading,

#custom-html-sq .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sq .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sq .list-group-item.disabled .list-group-item-text,

#custom-html-sq .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sq .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sq .list-group-item.active,

#custom-html-sq .list-group-item.active:focus,

#custom-html-sq .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sq .list-group-item.active .list-group-item-heading,

#custom-html-sq .list-group-item.active .list-group-item-heading > .small,

#custom-html-sq .list-group-item.active .list-group-item-heading > small,

#custom-html-sq .list-group-item.active:focus .list-group-item-heading,

#custom-html-sq .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sq .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sq .list-group-item.active:hover .list-group-item-heading,

#custom-html-sq .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sq .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sq .list-group-item.active .list-group-item-text,

#custom-html-sq .list-group-item.active:focus .list-group-item-text,

#custom-html-sq .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sq .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sq a.list-group-item-success,

#custom-html-sq button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sq a.list-group-item-success .list-group-item-heading,

#custom-html-sq button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sq a.list-group-item-success:focus,

#custom-html-sq a.list-group-item-success:hover,

#custom-html-sq button.list-group-item-success:focus,

#custom-html-sq button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sq a.list-group-item-success.active,

#custom-html-sq a.list-group-item-success.active:focus,

#custom-html-sq a.list-group-item-success.active:hover,

#custom-html-sq button.list-group-item-success.active,

#custom-html-sq button.list-group-item-success.active:focus,

#custom-html-sq button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sq .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sq a.list-group-item-info,

#custom-html-sq button.list-group-item-info {

  color: #31708f;

}

#custom-html-sq a.list-group-item-info .list-group-item-heading,

#custom-html-sq button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sq a.list-group-item-info:focus,

#custom-html-sq a.list-group-item-info:hover,

#custom-html-sq button.list-group-item-info:focus,

#custom-html-sq button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sq a.list-group-item-info.active,

#custom-html-sq a.list-group-item-info.active:focus,

#custom-html-sq a.list-group-item-info.active:hover,

#custom-html-sq button.list-group-item-info.active,

#custom-html-sq button.list-group-item-info.active:focus,

#custom-html-sq button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sq .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sq a.list-group-item-warning,

#custom-html-sq button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sq a.list-group-item-warning .list-group-item-heading,

#custom-html-sq button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sq a.list-group-item-warning:focus,

#custom-html-sq a.list-group-item-warning:hover,

#custom-html-sq button.list-group-item-warning:focus,

#custom-html-sq button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sq a.list-group-item-warning.active,

#custom-html-sq a.list-group-item-warning.active:focus,

#custom-html-sq a.list-group-item-warning.active:hover,

#custom-html-sq button.list-group-item-warning.active,

#custom-html-sq button.list-group-item-warning.active:focus,

#custom-html-sq button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sq .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sq a.list-group-item-danger,

#custom-html-sq button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sq a.list-group-item-danger .list-group-item-heading,

#custom-html-sq button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sq a.list-group-item-danger:focus,

#custom-html-sq a.list-group-item-danger:hover,

#custom-html-sq button.list-group-item-danger:focus,

#custom-html-sq button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sq a.list-group-item-danger.active,

#custom-html-sq a.list-group-item-danger.active:focus,

#custom-html-sq a.list-group-item-danger.active:hover,

#custom-html-sq button.list-group-item-danger.active,

#custom-html-sq button.list-group-item-danger.active:focus,

#custom-html-sq button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sq .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sq .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sq .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sq .panel-body {

  padding: 15px;

}

#custom-html-sq .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sq .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sq .panel-title > .small,

#custom-html-sq .panel-title > .small > a,

#custom-html-sq .panel-title > a,

#custom-html-sq .panel-title > small,

#custom-html-sq .panel-title > small > a {

  color: inherit;

}

#custom-html-sq .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sq .panel > .list-group,

#custom-html-sq .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sq .panel > .list-group .list-group-item,

#custom-html-sq .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sq .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sq .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sq .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sq .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sq .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sq .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sq .panel > .panel-collapse > .table,

#custom-html-sq .panel > .table,

#custom-html-sq .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sq .panel > .panel-collapse > .table caption,

#custom-html-sq .panel > .table caption,

#custom-html-sq .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sq .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sq .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sq .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sq .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sq .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sq .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sq .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sq .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sq .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sq .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sq .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sq .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sq .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sq .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sq .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sq .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sq .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sq .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sq .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sq .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sq .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sq .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sq .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sq .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sq .panel > .panel-body + .table,

#custom-html-sq .panel > .panel-body + .table-responsive,

#custom-html-sq .panel > .table + .panel-body,

#custom-html-sq .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sq .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sq .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sq .panel > .table-bordered,

#custom-html-sq .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sq .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sq .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sq .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sq .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sq .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sq .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sq .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sq .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sq .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sq .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sq .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sq .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sq .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sq .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sq .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sq .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sq .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sq .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sq .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sq .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sq .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sq .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sq .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sq .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sq .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sq .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sq .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sq .panel-group {

  margin-bottom: 20px;

}

#custom-html-sq .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sq .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sq .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sq .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sq .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sq .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sq .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sq .panel-default {

  border-color: #dddddd;

}

#custom-html-sq .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sq .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sq .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sq .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sq .panel-primary {

  border-color: #337ab7;

}

#custom-html-sq .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sq .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sq .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sq .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sq .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sq .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sq .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sq .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sq .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sq .panel-info {

  border-color: #bce8f1;

}

#custom-html-sq .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sq .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sq .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sq .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sq .panel-warning {

  border-color: #faebcc;

}

#custom-html-sq .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sq .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sq .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sq .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-sq .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sq .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sq .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sq .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sq .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sq .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sq .embed-responsive .embed-responsive-item,

#custom-html-sq .embed-responsive embed,

#custom-html-sq .embed-responsive iframe,

#custom-html-sq .embed-responsive object,

#custom-html-sq .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sq .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sq .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sq .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sq .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sq .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sq .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sq .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sq .close:focus,

#custom-html-sq .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sq button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sq .modal-open {

  overflow: hidden;

}

#custom-html-sq .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sq .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sq .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sq .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sq .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sq .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sq .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sq .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sq .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sq .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sq .modal-header .close {

  margin-top: -2px;

}

#custom-html-sq .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sq .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sq .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sq .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sq .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sq .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sq .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-sq .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sq .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sq .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-sq .modal-lg {

    width: 900px;

  }

}

#custom-html-sq .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sq .tooltip.in {

  opacity: 0.9;

}

#custom-html-sq .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sq .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sq .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sq .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sq .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sq .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sq .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sq .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sq .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sq .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sq .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sq .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sq .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sq .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sq .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sq .popover.top {

  margin-top: -10px;

}

#custom-html-sq .popover.right {

  margin-left: 10px;

}

#custom-html-sq .popover.bottom {

  margin-top: 10px;

}

#custom-html-sq .popover.left {

  margin-left: -10px;

}

#custom-html-sq .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sq .popover-content {

  padding: 9px 14px;

}

#custom-html-sq .popover > .arrow,

#custom-html-sq .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sq .popover > .arrow {

  border-width: 11px;

}

#custom-html-sq .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sq .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sq .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sq .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sq .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sq .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sq .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sq .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sq .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sq .carousel {

  position: relative;

}

#custom-html-sq .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sq .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sq .carousel-inner > .item > a > img,

#custom-html-sq .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sq .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sq .carousel-inner > .item.active.right,

  #custom-html-sq .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sq .carousel-inner > .item.active.left,

  #custom-html-sq .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sq .carousel-inner > .item.active,

  #custom-html-sq .carousel-inner > .item.next.left,

  #custom-html-sq .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sq .carousel-inner > .active,

#custom-html-sq .carousel-inner > .next,

#custom-html-sq .carousel-inner > .prev {

  display: block;

}

#custom-html-sq .carousel-inner > .active {

  left: 0;

}

#custom-html-sq .carousel-inner > .next,

#custom-html-sq .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sq .carousel-inner > .next {

  left: 100%;

}

#custom-html-sq .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sq .carousel-inner > .next.left,

#custom-html-sq .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sq .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sq .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sq .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sq .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sq .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sq .carousel-control:focus,

#custom-html-sq .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sq .carousel-control .glyphicon-chevron-left,

#custom-html-sq .carousel-control .glyphicon-chevron-right,

#custom-html-sq .carousel-control .icon-next,

#custom-html-sq .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sq .carousel-control .glyphicon-chevron-left,

#custom-html-sq .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sq .carousel-control .glyphicon-chevron-right,

#custom-html-sq .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sq .carousel-control .icon-next,

#custom-html-sq .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sq .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sq .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sq .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sq .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-sq .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sq .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sq .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-sq .carousel-control .glyphicon-chevron-left,

  #custom-html-sq .carousel-control .glyphicon-chevron-right,

  #custom-html-sq .carousel-control .icon-next,

  #custom-html-sq .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sq .carousel-control .glyphicon-chevron-left,

  #custom-html-sq .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sq .carousel-control .glyphicon-chevron-right,

  #custom-html-sq .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sq .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sq .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sq .btn-group-vertical > .btn-group:after,

#custom-html-sq .btn-group-vertical > .btn-group:before,

#custom-html-sq .btn-toolbar:after,

#custom-html-sq .btn-toolbar:before,

#custom-html-sq .clearfix:after,

#custom-html-sq .clearfix:before,

#custom-html-sq .container-fluid:after,

#custom-html-sq .container-fluid:before,

#custom-html-sq .container:after,

#custom-html-sq .container:before,

#custom-html-sq .dl-horizontal dd:after,

#custom-html-sq .dl-horizontal dd:before,

#custom-html-sq .form-horizontal .form-group:after,

#custom-html-sq .form-horizontal .form-group:before,

#custom-html-sq .modal-footer:after,

#custom-html-sq .modal-footer:before,

#custom-html-sq .modal-header:after,

#custom-html-sq .modal-header:before,

#custom-html-sq .nav:after,

#custom-html-sq .nav:before,

#custom-html-sq .navbar-collapse:after,

#custom-html-sq .navbar-collapse:before,

#custom-html-sq .navbar-header:after,

#custom-html-sq .navbar-header:before,

#custom-html-sq .navbar:after,

#custom-html-sq .navbar:before,

#custom-html-sq .pager:after,

#custom-html-sq .pager:before,

#custom-html-sq .panel-body:after,

#custom-html-sq .panel-body:before,

#custom-html-sq .row:after,

#custom-html-sq .row:before {

  display: table;

  content: " ";

}

#custom-html-sq .btn-group-vertical > .btn-group:after,

#custom-html-sq .btn-toolbar:after,

#custom-html-sq .clearfix:after,

#custom-html-sq .container-fluid:after,

#custom-html-sq .container:after,

#custom-html-sq .dl-horizontal dd:after,

#custom-html-sq .form-horizontal .form-group:after,

#custom-html-sq .modal-footer:after,

#custom-html-sq .modal-header:after,

#custom-html-sq .nav:after,

#custom-html-sq .navbar-collapse:after,

#custom-html-sq .navbar-header:after,

#custom-html-sq .navbar:after,

#custom-html-sq .pager:after,

#custom-html-sq .panel-body:after,

#custom-html-sq .row:after {

  clear: both;

}

#custom-html-sq .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sq .pull-right {

  float: right !important;

}

#custom-html-sq .pull-left {

  float: left !important;

}

#custom-html-sq .hide {

  display: none !important;

}

#custom-html-sq .show {

  display: block !important;

}

#custom-html-sq .invisible {

  visibility: hidden;

}

#custom-html-sq .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sq .hidden {

  display: none !important;

}

#custom-html-sq .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sq .visible-lg,

#custom-html-sq .visible-md,

#custom-html-sq .visible-sm,

#custom-html-sq .visible-xs {

  display: none !important;

}

#custom-html-sq .visible-lg-block,

#custom-html-sq .visible-lg-inline,

#custom-html-sq .visible-lg-inline-block,

#custom-html-sq .visible-md-block,

#custom-html-sq .visible-md-inline,

#custom-html-sq .visible-md-inline-block,

#custom-html-sq .visible-sm-block,

#custom-html-sq .visible-sm-inline,

#custom-html-sq .visible-sm-inline-block,

#custom-html-sq .visible-xs-block,

#custom-html-sq .visible-xs-inline,

#custom-html-sq .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-sq .visible-xs {

    display: block !important;

  }

  #custom-html-sq table.visible-xs {

    display: table !important;

  }

  #custom-html-sq tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sq td.visible-xs,

  #custom-html-sq th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sq .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sq .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sq .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sq .visible-sm {

    display: block !important;

  }

  #custom-html-sq table.visible-sm {

    display: table !important;

  }

  #custom-html-sq tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sq td.visible-sm,

  #custom-html-sq th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sq .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sq .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sq .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sq .visible-md {

    display: block !important;

  }

  #custom-html-sq table.visible-md {

    display: table !important;

  }

  #custom-html-sq tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sq td.visible-md,

  #custom-html-sq th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sq .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sq .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sq .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sq .visible-lg {

    display: block !important;

  }

  #custom-html-sq table.visible-lg {

    display: table !important;

  }

  #custom-html-sq tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sq td.visible-lg,

  #custom-html-sq th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sq .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sq .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sq .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sq .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sq .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sq .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sq .hidden-lg {

    display: none !important;

  }

}

#custom-html-sq .visible-print {

  display: none !important;

}

@media print {

  #custom-html-sq .visible-print {

    display: block !important;

  }

  #custom-html-sq table.visible-print {

    display: table !important;

  }

  #custom-html-sq tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sq td.visible-print,

  #custom-html-sq th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-sq .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-sq .visible-print-block {

    display: block !important;

  }

}

#custom-html-sq .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-sq .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-sq .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-sq .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-sq .hidden-print {

    display: none !important;

  }

}

#custom-html-sq .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-sq .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sq .intl-tel-input .hide {

  display: none;

}

#custom-html-sq .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sq .intl-tel-input input,

#custom-html-sq .intl-tel-input input[type=tel],

#custom-html-sq .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sq .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sq .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sq .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sq .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sq .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sq .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sq .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sq .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sq .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-sq .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sq .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sq .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sq .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sq .intl-tel-input .country-list .country-name,

#custom-html-sq .intl-tel-input .country-list .dial-code,

#custom-html-sq .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sq .intl-tel-input .country-list .country-name,

#custom-html-sq .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sq .intl-tel-input.allow-dropdown input,

#custom-html-sq .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sq .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sq .intl-tel-input.separate-dial-code input,

#custom-html-sq .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sq .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sq .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sq .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sq .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sq .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sq .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sq .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sq .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sq .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sq .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sq .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sq .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sq .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sq .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sq .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sq .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sq .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sq .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sq .iti-flag {

  width: 20px;

}

#custom-html-sq .iti-flag.be {

  width: 18px;

}

#custom-html-sq .iti-flag.ch {

  width: 15px;

}

#custom-html-sq .iti-flag.mc {

  width: 19px;

}

#custom-html-sq .iti-flag.ne {

  width: 18px;

}

#custom-html-sq .iti-flag.np {

  width: 13px;

}

#custom-html-sq .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sq .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-sq .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sq .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-sq .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sq .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sq .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sq .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sq .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sq .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sq .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sq .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sq .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sq .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sq .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sq .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sq .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sq .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sq .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sq .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sq .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sq .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sq .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sq .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sq .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sq .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sq .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sq .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sq .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sq .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sq .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sq .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sq .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sq .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sq .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sq .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sq .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sq .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sq .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sq .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sq .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sq .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sq .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sq .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sq .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sq .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sq .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-sq .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sq .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sq .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sq .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sq .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sq .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sq .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sq .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sq .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sq .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sq .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sq .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sq .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sq .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sq .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sq .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sq .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sq .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-sq .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sq .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sq .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sq .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sq .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sq .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sq .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sq .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sq .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sq .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sq .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sq .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sq .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sq .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sq .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sq .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sq .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sq .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sq .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sq .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sq .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sq .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sq .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sq .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sq .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sq .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sq .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sq .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sq .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sq .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sq .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sq .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sq .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sq .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sq .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sq .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sq .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sq .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sq .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sq .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sq .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sq .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sq .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sq .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sq .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sq .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sq .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sq .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sq .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sq .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sq .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sq .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sq .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-sq .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sq .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sq .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sq .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sq .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sq .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sq .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sq .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sq .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sq .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sq .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sq .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sq .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sq .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sq .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sq .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sq .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sq .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sq .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sq .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sq .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sq .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sq .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sq .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sq .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sq .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sq .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sq .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sq .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sq .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sq .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sq .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sq .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sq .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sq .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sq .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sq .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sq .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sq .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sq .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sq .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sq .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sq .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sq .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sq .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sq .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sq .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sq .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sq .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sq .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sq .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sq .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sq .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sq .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sq .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sq .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sq .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sq .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-sq .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sq .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sq .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sq .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sq .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sq .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sq .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sq .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sq .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sq .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sq .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sq .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sq .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sq .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sq .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sq .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sq .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sq .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sq .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sq .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sq .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sq .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sq .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sq .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sq .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sq .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sq .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sq .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sq .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sq .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sq .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sq .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sq .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sq .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sq .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sq .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sq .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sq .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sq .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sq .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sq .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sq .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sq .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sq .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sq .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sq .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sq .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sq .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sq .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sq .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sq .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sq .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sq .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sq .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sq .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sq .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sq .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sq .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sq .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sq .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sq .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sq .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sq .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sq .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sq .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sq .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sq .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sq .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sq .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-sq .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sq .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sq .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sq .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sq .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sq .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sq .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sq .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sq .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sq .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sq .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sq .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sq .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sq .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sq .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sq .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sq .iti-flag.np {

  background-color: transparent;

}

#custom-html-sq body,

#custom-html-sq button,

#custom-html-sq input,

#custom-html-sq select,

#custom-html-sq textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sq h1,

#custom-html-sq h2,

#custom-html-sq h3,

#custom-html-sq h4,

#custom-html-sq h5,

#custom-html-sq h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-sq .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sq .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sq .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sq .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-sq .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sq .navbar-main .navbar-nav > .active > a,

#custom-html-sq .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sq .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sq .navbar-main .navbar-nav > .open > a,

#custom-html-sq .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sq .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sq .navbar-main .navbar-nav > li > a:focus,

#custom-html-sq .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sq #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sq .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sq .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-sq .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sq .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-sq .navbar-header {

    float: none;

  }

  #custom-html-sq .navbar-left,

  #custom-html-sq .navbar-right {

    float: none !important;

  }

  #custom-html-sq .navbar-toggle {

    display: block;

  }

  #custom-html-sq .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sq .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sq .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sq .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sq .navbar-nav > li {

    float: none;

  }

  #custom-html-sq .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sq .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-sq .panel {

  font-size: 0.9em;

}

#custom-html-sq .list-group {

  font-size: 0.9em;

}

#custom-html-sq .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-sq .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sq a.list-group-item.active,

#custom-html-sq a.list-group-item.active:focus,

#custom-html-sq a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sq .pagination {

  font-size: 0.8em;

}

#custom-html-sq .pagination > .active > a,

#custom-html-sq .pagination > .active > a:focus,

#custom-html-sq .pagination > .active > a:hover,

#custom-html-sq .pagination > .active > span,

#custom-html-sq .pagination > .active > span:focus,

#custom-html-sq .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sq .dropdown-menu > li > a:focus,

#custom-html-sq .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sq .label {

  border-radius: 0;

}

#custom-html-sq input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sq .list-group-item {

  padding: 7px 15px;

}

#custom-html-sq .panel-body {

  padding: 10px 15px;

}

#custom-html-sq .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sq .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sq .btn {

  overflow: hidden;

}

#custom-html-sq body,

#custom-html-sq html {

  height: 100%;

}

#custom-html-sq body {

  background-color: #f8f8f8;

}

#custom-html-sq h1,

#custom-html-sq h2,

#custom-html-sq h3,

#custom-html-sq h4,

#custom-html-sq h5,

#custom-html-sq h6 {

  font-weight: 400;

}

#custom-html-sq a {

  color: #005588;

}

#custom-html-sq section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sq section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sq section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sq section#header .search {

  margin: 20px 0;

}

#custom-html-sq section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sq section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sq section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sq section#main-content {

  margin-bottom: 60px;

}

#custom-html-sq .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sq section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sq section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sq section#footer {

    line-height: 32px;

  }

}

#custom-html-sq section#footer .back-to-top {

  float: right;

}

#custom-html-sq section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sq .adminreturndiv {

  display: none !important;

}

#custom-html-sq .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sq .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sq .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sq .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sq .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sq .navbar-main .navbar-toggle:focus,

#custom-html-sq .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sq .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sq .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-sq .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sq .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sq .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-sq div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sq div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sq div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sq div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sq div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sq .h1,

  #custom-html-sq h1 {

    font-size: 26px;

  }

  #custom-html-sq .h2,

  #custom-html-sq h2 {

    font-size: 20px;

  }

  #custom-html-sq .h3,

  #custom-html-sq h3 {

    font-size: 16px;

  }

  #custom-html-sq .h4,

  #custom-html-sq h4 {

    font-size: 14px;

  }

  #custom-html-sq .h5,

  #custom-html-sq h5 {

    font-size: 12px;

  }

  #custom-html-sq .h6,

  #custom-html-sq h6 {

    font-size: 11px;

  }

  #custom-html-sq div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-sq .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sq .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sq .margin-10 {

  margin: 10px;

}

#custom-html-sq .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sq .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sq .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sq .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sq .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sq .input-inline {

  display: inline-block;

}

#custom-html-sq .input-inline-100 {

  width: 100px;

}

#custom-html-sq .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-sq .pull-md-left {

    float: left;

  }

  #custom-html-sq .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-sq .pull-sm-left {

    float: left;

  }

  #custom-html-sq .pull-sm-right {

    float: right;

  }

  #custom-html-sq .text-right-sm {

    text-align: right;

  }

}

#custom-html-sq .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sq .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sq .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-sq .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-sq .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-sq .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sq .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sq i.icon-rss {

  color: #ff6600;

}

#custom-html-sq section#main-menu {

  background-color: #000000;

}

#custom-html-sq section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sq section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sq section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sq section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sq section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sq section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sq section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sq section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sq section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sq section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sq section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sq section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-sq section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-sq .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sq .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sq .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sq .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sq .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sq .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sq .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sq .home-shortcuts li span {

  display: none;

}

#custom-html-sq .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sq .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-sq .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-sq .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sq .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sq .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sq .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-sq .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sq .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sq .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sq .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sq .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sq .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sq .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sq .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sq .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sq .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sq .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sq .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sq .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sq .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sq .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sq .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sq .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sq .tiles .tile a {

  text-decoration: none;

}

#custom-html-sq .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sq .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sq .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-sq .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sq .tiles .tile:nth-child(1),

  #custom-html-sq .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-sq .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sq .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sq .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sq .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sq .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sq .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sq .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sq .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sq .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sq .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sq .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sq .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sq .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sq .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sq .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sq .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sq .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sq .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sq .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sq .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sq .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sq .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sq .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sq .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sq .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sq .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sq .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sq .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sq .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sq .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sq .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sq .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sq .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sq .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sq .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sq .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sq .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sq .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sq .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sq .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sq .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sq ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sq ul.top-nav > li,

#custom-html-sq ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sq ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sq ul.top-nav > li:active > a,

#custom-html-sq ul.top-nav > li:focus > a,

#custom-html-sq ul.top-nav > li:hover > a,

#custom-html-sq ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sq ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sq ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sq ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sq ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-sq ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sq ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sq ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-sq ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sq ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sq ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-sq div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sq div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sq div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sq div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sq div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sq div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sq .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sq .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-sq .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-sq .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sq .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-sq .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sq .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sq .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-sq .domain-check-availability {

  width: 100px;

}

#custom-html-sq .domain-step-options {

  min-height: 300px;

}

#custom-html-sq .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sq .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sq .domain-checker-invalid,

#custom-html-sq .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sq div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sq .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sq .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sq .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sq a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sq .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sq .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sq .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sq .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-sq .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sq .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sq .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sq .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sq .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sq .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sq .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sq .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-sq .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sq .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sq .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sq .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sq .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sq .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sq .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sq .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sq .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sq .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sq .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sq .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sq .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sq .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sq div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sq div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sq div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sq .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sq .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sq .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sq .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sq div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sq div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-sq .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sq .product-status-pending {

  background-color: #f89406;

}

#custom-html-sq .product-status-active {

  background-color: #46a546;

}

#custom-html-sq .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sq .product-status-cancelled,

#custom-html-sq .product-status-terminated {

  background-color: #666666;

}

#custom-html-sq .product-status-fraud {

  background-color: #000000;

}

#custom-html-sq .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sq div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sq .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sq .ssl-inactive {

  cursor: pointer;

}

#custom-html-sq .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-sq .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sq .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sq .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sq .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sq .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sq .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sq .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sq .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-sq .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sq .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sq .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sq .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-sq .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sq .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sq .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sq .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sq .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sq .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sq .pagination > li > a,

#custom-html-sq .pagination > li > span {

  color: #444444;

}

#custom-html-sq .pagination > .active > a,

#custom-html-sq .pagination > .active > a:focus,

#custom-html-sq .pagination > .active > a:hover,

#custom-html-sq .pagination > .active > span,

#custom-html-sq .pagination > .active > span:focus,

#custom-html-sq .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sq table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sq .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sq table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sq .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-sq table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sq .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sq .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sq .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sq table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sq table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sq table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sq .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sq .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sq .status-pending {

  color: #d9534f;

}

#custom-html-sq .status-pending.transfer {

  color: #a68500;

}

#custom-html-sq .status-active,

#custom-html-sq .status-completed,

#custom-html-sq .status-open {

  color: #3fad46;

}

#custom-html-sq .status-suspended {

  color: #f0ad4e;

}

#custom-html-sq .status-customer-reply {

  color: #ff6600;

}

#custom-html-sq .status-answered,

#custom-html-sq .status-fraud {

  color: #000000;

}

#custom-html-sq .status-expired,

#custom-html-sq .status-transferred.away {

  color: #004258;

}

#custom-html-sq .status-cancelled {

  color: #9fa29a;

}

#custom-html-sq .status-terminated {

  color: #666666;

}

#custom-html-sq .status-onhold {

  color: #224488;

}

#custom-html-sq .status-inprogress {

  color: #cc0000;

}

#custom-html-sq .status-closed {

  color: #888888;

}

#custom-html-sq .status-paid {

  color: #498302;

}

#custom-html-sq .status-unpaid {

  color: #ed3e48;

}

#custom-html-sq .status-cancelled {

  color: #87939f;

}

#custom-html-sq .status-collections {

  color: #9a141e;

}

#custom-html-sq .status-refunded {

  color: #319fc3;

}

#custom-html-sq .status-customer-reply {

  color: #ff6600;

}

#custom-html-sq .status-delivered {

  color: #224488;

}

#custom-html-sq .status-accepted {

  color: #498302;

}

#custom-html-sq .status-dead,

#custom-html-sq .status-lost {

  color: #000000;

}

#custom-html-sq .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sq .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sq .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sq .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sq .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sq .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sq .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-sq .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-sq .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sq .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sq .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-sq .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sq .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sq .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sq .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sq .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sq .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sq .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sq .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sq .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sq .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sq .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sq .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sq .ticket-reply .rating,

#custom-html-sq .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sq .ticket-reply .rating span.star,

#custom-html-sq .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sq .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sq .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sq .ticket-reply .rating span.star:before,

#custom-html-sq .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sq .ticket-reply .rating span.star:hover:before,

#custom-html-sq .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sq .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sq .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sq .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sq .ticket-reply .clear {

  clear: both;

}

#custom-html-sq .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sq .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sq .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sq .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sq .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sq .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sq .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sq .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sq .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sq .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sq .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sq .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sq .popover-user-notifications ul li i.far,

#custom-html-sq .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sq .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sq .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sq .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sq .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sq .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sq .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sq .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sq .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sq .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sq div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sq div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sq div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sq div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sq div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sq div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sq div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-sq div.credit-card {

    max-width: 250px;

  }

  #custom-html-sq div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sq div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sq div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sq div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sq div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-sq .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sq .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sq .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sq .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sq .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sq .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sq div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sq div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sq div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sq div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sq div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sq div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sq .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-sq .panel-actions {

    border: 0;


    box-shadow: none;

  }

  #custom-html-sq .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sq .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sq .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sq .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sq .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-sq div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sq div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sq div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sq #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sq .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sq .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sq .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sq .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sq .kb-category a small {

  color: #888888;

}

#custom-html-sq .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sq .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sq .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sq .kbarticles a.admin-inline-edit,

#custom-html-sq .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sq h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sq .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sq .kb-article-title h2 {

  margin: 0;

}

#custom-html-sq .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sq .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sq .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sq .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sq .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sq .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sq .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sq .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sq #stepResults {

  font-size: 20px;

}

#custom-html-sq #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-sq #stepResults {

    font-size: 14px;

  }

  #custom-html-sq #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sq div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-sq #main-menu,

  #custom-html-sq #top-nav,

  #custom-html-sq .header-lined,

  #custom-html-sq .sidebar {

    display: none;

  }

  #custom-html-sq a[href]:after {

    content: "" !important;

  }

}

#custom-html-sq h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sq h3.with-badge i,

#custom-html-sq h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sq h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-sq h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sq .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-sq .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sq .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sq a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sq a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sq .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sq .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sq .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sq .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sq .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sq .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sq .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sq .login-popover {

  font-size: 12px;

}

#custom-html-sq .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sq .login-popover hr {

  margin: 5px 0;

}

#custom-html-sq tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sq tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sq .error-container {

  text-align: center;

}

#custom-html-sq .error-container h1 {

  margin-top: 40px;

}

#custom-html-sq .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sq .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sq .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sq .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sq .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sq #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sq #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sq #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sq .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-sq #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sq #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-sq #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sq #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sq #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sq #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sq .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sq .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sq .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sq .email-verification .btn:active,

#custom-html-sq .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sq .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sq .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sq .email-verification .far,

#custom-html-sq .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-sq .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sq .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sq .email-verification .button {

    float: right;

  }

  #custom-html-sq .email-verification .far,

  #custom-html-sq .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-sq .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sq .email-verification.success .far,

#custom-html-sq .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sq .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sq .email-verification.failed .far,

#custom-html-sq .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sq .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-sq .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sq .md-editor > .md-preview,

#custom-html-sq .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sq div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sq .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sq .small-font {

  font-size: 0.9em;

}

#custom-html-sq .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sq .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sq .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sq .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sq .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sq .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sq .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sq .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sq .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sq .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sq .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sq .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sq .panel-heading i.fab,

#custom-html-sq .panel-heading i.fal,

#custom-html-sq .panel-heading i.far,

#custom-html-sq .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sq .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sq .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sq .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sq .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sq .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sq .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sq .panel-sidebar .list-group-item.disabled,

#custom-html-sq .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sq .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sq .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sq .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sq .panel-sidebar a.list-group-item.active,

#custom-html-sq .panel-sidebar a.list-group-item.active:focus,

#custom-html-sq .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sq .panel-sidebar a.list-group-item.active i,

#custom-html-sq .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sq .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sq .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sq .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sq .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sq .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sq .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sq .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sq .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sq .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sq .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sq .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sq .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sq .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sq .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sq .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-sq .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sq .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-sq .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sq .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sq .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sq .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sq .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sq .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sq .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sq .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sq .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sq .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sq .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sq .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sq .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sq .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-sq .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sq .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sq .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sq .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sq .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sq .promo-banner p {

  margin: 5px 0;

}

#custom-html-sq .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sq .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-sq .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sq .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sq .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sq .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sq .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sq .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sq .promo-banner-slim {

  padding: 10px;

}

#custom-html-sq .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sq .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sq .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sq .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sq .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sq .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sq .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sq .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sq .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sq .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sq .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sq .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sq .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sq .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sq .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sq .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sq .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sq .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sq .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sq .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sq .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sq .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sq .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sq .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sq .panel-mc-sso .btn,

#custom-html-sq .panel-mc-sso .form-control,

#custom-html-sq .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sq .panel-mc-sso small {

  display: block;

}

#custom-html-sq .social-signin-btns {

  text-align: center;

}

#custom-html-sq .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sq .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sq .btn-social i.far,

#custom-html-sq .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-facebook.active,

#custom-html-sq .btn-facebook:active,

#custom-html-sq .btn-facebook:focus,

#custom-html-sq .btn-facebook:hover,

#custom-html-sq .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-facebook.active,

#custom-html-sq .btn-facebook:active,

#custom-html-sq .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sq .btn-facebook.disabled,

#custom-html-sq .btn-facebook.disabled.active,

#custom-html-sq .btn-facebook.disabled:active,

#custom-html-sq .btn-facebook.disabled:focus,

#custom-html-sq .btn-facebook.disabled:hover,

#custom-html-sq .btn-facebook[disabled],

#custom-html-sq .btn-facebook[disabled].active,

#custom-html-sq .btn-facebook[disabled]:active,

#custom-html-sq .btn-facebook[disabled]:focus,

#custom-html-sq .btn-facebook[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-facebook,

#custom-html-sq fieldset[disabled] .btn-facebook.active,

#custom-html-sq fieldset[disabled] .btn-facebook:active,

#custom-html-sq fieldset[disabled] .btn-facebook:focus,

#custom-html-sq fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-google.active,

#custom-html-sq .btn-google:active,

#custom-html-sq .btn-google:focus,

#custom-html-sq .btn-google:hover,

#custom-html-sq .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-google.active,

#custom-html-sq .btn-google:active,

#custom-html-sq .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sq .btn-google-plus.disabled.active,

#custom-html-sq .btn-google-plus.disabled:active,

#custom-html-sq .btn-google-plus.disabled:focus,

#custom-html-sq .btn-google-plus[disabled].active,

#custom-html-sq .btn-google-plus[disabled]:active,

#custom-html-sq .btn-google-plus[disabled]:focus,

#custom-html-sq .btn-google-plus[disabled]:hover,

#custom-html-sq .btn-google.disabled,

#custom-html-sq .btn-google.disabled:hover,

#custom-html-sq .btn-google[disabled],

#custom-html-sq fieldset[disabled] .btn-google,

#custom-html-sq fieldset[disabled] .btn-google-plus.active,

#custom-html-sq fieldset[disabled] .btn-google-plus:active,

#custom-html-sq fieldset[disabled] .btn-google-plus:focus,

#custom-html-sq fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-twitter.active,

#custom-html-sq .btn-twitter:active,

#custom-html-sq .btn-twitter:focus,

#custom-html-sq .btn-twitter:hover,

#custom-html-sq .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .btn-twitter.active,

#custom-html-sq .btn-twitter:active,

#custom-html-sq .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sq .btn-twitter.disabled,

#custom-html-sq .btn-twitter.disabled.active,

#custom-html-sq .btn-twitter.disabled:active,

#custom-html-sq .btn-twitter.disabled:focus,

#custom-html-sq .btn-twitter.disabled:hover,

#custom-html-sq .btn-twitter[disabled],

#custom-html-sq .btn-twitter[disabled].active,

#custom-html-sq .btn-twitter[disabled]:active,

#custom-html-sq .btn-twitter[disabled]:focus,

#custom-html-sq .btn-twitter[disabled]:hover,

#custom-html-sq fieldset[disabled] .btn-twitter,

#custom-html-sq fieldset[disabled] .btn-twitter.active,

#custom-html-sq fieldset[disabled] .btn-twitter:active,

#custom-html-sq fieldset[disabled] .btn-twitter:focus,

#custom-html-sq fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sq .providerPreLinking {

  min-height: 52px;

}

#custom-html-sq .providerLinkingFeedback {

  display: none;

}

#custom-html-sq #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sq #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sq #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sq #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sq .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sq #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sq #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sq #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sq #registration .field,

#custom-html-sq #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sq #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sq #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sq #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sq #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sq #registration textarea.field {

  height: auto;

}

#custom-html-sq #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sq #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sq #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sq #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sq #registration .field[disabled],

#custom-html-sq #registration .field[readonly],

#custom-html-sq #registration .form-control[disabled],

#custom-html-sq #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sq #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-sq .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sq .upgrade .product-to-be-upgraded h4,

#custom-html-sq .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sq .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sq .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sq .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sq .upgrade .products .product .current,

#custom-html-sq .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sq .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sq .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-sq .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-sq .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sq .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sq .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sq .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sq .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sq .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sq .upgrade .products .far,

#custom-html-sq .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sq .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sq .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-sq .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sq .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sq .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sq .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sq .intl-tel-input {

  width: 100%;

}

#custom-html-sq .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sq .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .bootstrap-switch input[type=checkbox],

#custom-html-sq .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sq .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sq .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sq .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sq .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sq .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sq .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sq .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sq .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sq .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sq .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sq .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sq .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-sq .md-editor .md-footer,

#custom-html-sq .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sq .md-editor > .md-header {

  margin: 0;

}

#custom-html-sq .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sq .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sq .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sq .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sq .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sq .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sq .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sq .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-input,

#custom-html-sq .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sq .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sq .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sq .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sq .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sq .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sq .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sq .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sq .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sq .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sq .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sq table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sq table.dataTable td,

#custom-html-sq table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sq table.dataTable td.dataTables_empty,

#custom-html-sq table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sq table.dataTable.nowrap td,

#custom-html-sq table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sq div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sq table.dataTable thead > tr > td.sorting,

#custom-html-sq table.dataTable thead > tr > td.sorting_asc,

#custom-html-sq table.dataTable thead > tr > td.sorting_desc,

#custom-html-sq table.dataTable thead > tr > th.sorting,

#custom-html-sq table.dataTable thead > tr > th.sorting_asc,

#custom-html-sq table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sq table.dataTable thead > tr > td:active,

#custom-html-sq table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sq table.dataTable thead .sorting,

#custom-html-sq table.dataTable thead .sorting_asc,

#custom-html-sq table.dataTable thead .sorting_asc_disabled,

#custom-html-sq table.dataTable thead .sorting_desc,

#custom-html-sq table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sq table.dataTable thead .sorting:after,

#custom-html-sq table.dataTable thead .sorting_asc:after,

#custom-html-sq table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sq table.dataTable thead .sorting_desc:after,

#custom-html-sq table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sq table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sq table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sq table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sq table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sq table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sq div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sq div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sq div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sq div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sq div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sq div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sq div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sq div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-sq div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sq div.dataTables_wrapper div.dataTables_info,

  #custom-html-sq div.dataTables_wrapper div.dataTables_length,

  #custom-html-sq div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-sq table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sq table.dataTable.table-condensed .sorting:after,

#custom-html-sq table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sq table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sq table.table-bordered.dataTable td,

#custom-html-sq table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sq table.table-bordered.dataTable td:last-child,

#custom-html-sq table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sq table.table-bordered.dataTable tbody td,

#custom-html-sq table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sq div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sq div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sq div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-sq div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sq table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sq table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sq table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sq table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sq table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sq table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sq table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sq table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sq table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sq table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sq table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sq table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sq table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sq table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sq table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sq table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sq div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;


  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sq div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sq div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sq div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sq div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sq div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-sq div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sq div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sq .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sq .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sq .multiselect-container > li {

  padding: 0;

}

#custom-html-sq .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sq .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sq .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sq .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sq .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sq .multiselect-container > li > a > label.checkbox,

#custom-html-sq .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sq .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sq .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sq .form-inline .multiselect-container label.checkbox,

#custom-html-sq .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sq .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sq .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7tXcUU69 {

  padding-top: 60px;

  padding-bottom: 0px;

  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");

}

.cid-sl7tXcUU69 P {

  color: #767676;

}

.cid-sl7tXcUU69 h1 {

  text-shadow: 2px 2px gray;

}

.cid-sl7tXcUU69 H1 {

  color: #ffffff;

}

.cid-sl7tXcUU69 .mbr-text,

.cid-sl7tXcUU69 .mbr-section-btn {

  color: #ffffff;

}

.cid-sF33PQqz4F .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF33PQqz4F .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF33PQqz4F .divider-top::before,

.cid-sF33PQqz4F .divider-bottom::before,

.cid-sF33PQqz4F .divider-top::after,

.cid-sF33PQqz4F .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF33PQqz4F .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF33PQqz4F .divider-triangles::before {

  top: -50px;

}

.cid-sF33PQqz4F .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF33PQqz4F .divider-halfcircle::before {

  top: -50px;

}

.cid-sF33PQqz4F .divider-multitriangles::before,

.cid-sF33PQqz4F .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF33PQqz4F .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-skXxuyxfY4 {

  background-color: #efefef;

  padding-top: 45px;

  padding-bottom: 45px;

}

@media (max-width: 768px) {

  .cid-skXxuyxfY4 video {

    width: 100% !important;

  }

}

.cid-skXxuyxfY4 video {

  margin: auto;

  display: block;

}

.cid-skXxTWVP5m {

  padding-top: 15px;

  padding-bottom: 15px;

  background-color: #efefef;

}

.cid-skXxTWVP5m P {

  color: #767676;

}

.cid-sF35FhD9bi .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF35FhD9bi .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF35FhD9bi .divider-top::before,

.cid-sF35FhD9bi .divider-bottom::before,

.cid-sF35FhD9bi .divider-top::after,

.cid-sF35FhD9bi .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF35FhD9bi .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF35FhD9bi .divider-triangles::before {

  top: -50px;

}

.cid-sF35FhD9bi .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF35FhD9bi .divider-halfcircle::before {

  top: -50px;

}

.cid-sF35FhD9bi .divider-multitriangles::before,

.cid-sF35FhD9bi .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF35FhD9bi .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-saBBWWavJK {

  padding-top: 15px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-saBBWWavJK P {

  color: #767676;

}

.cid-saBBWWavJK H1 {

  color: #000000;

}

.cid-saBBWWavJK .mbr-text,

.cid-saBBWWavJK .mbr-section-btn {

  color: #efefef;

}

.cid-saBBWWavJK .modal-body {

  max-height: 50vh;

  background-image: url(https://siberianhuskywebdesignsinc.com/assets/images/bodybackground-1-2000x1455.jpeg);

  background-color: #000000;

  overflow-y: auto;

}

.cid-saBBWWavJK .modal-body img {

  max-height: 50vh;

}

.cid-saBBWWavJK .modal-content {

  max-height: 50vh;

  background-color: #000000;

}

.cid-saBBWWavJK H3 {

  color: #000000;

  text-align: left;

}

.cid-saBBWWavJK .modal-backdrop {

  background-image: url(https://siberianhuskywebdesignsinc.com/assets/images/bodybackground-1-2000x1455.jpeg);

}

.cid-28zl0A76kk {

  background-color: #ffffff;

  padding-top: 60px;

  padding-bottom: 60px;

}

@media (max-width: 768px) {

  .cid-28zl0A76kk video {

    width: 100% !important;

  }

}

.cid-28zl0A76kk video {

  margin: auto;

  display: block;

}

.cid-sF36we5TX6 .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF36we5TX6 .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF36we5TX6 .divider-top::before,

.cid-sF36we5TX6 .divider-bottom::before,

.cid-sF36we5TX6 .divider-top::after,

.cid-sF36we5TX6 .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF36we5TX6 .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF36we5TX6 .divider-triangles::before {

  top: -50px;

}

.cid-sF36we5TX6 .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF36we5TX6 .divider-halfcircle::before {

  top: -50px;

}

.cid-sF36we5TX6 .divider-multitriangles::before,

.cid-sF36we5TX6 .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF36we5TX6 .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-iCGOVegD5B {

  background-color: #efefef;

  padding-top: 60px;

  padding-bottom: 60px;

}

@media (max-width: 768px) {

  .cid-iCGOVegD5B video {

    width: 100% !important;

  }

}

.cid-iCGOVegD5B video {

  margin: auto;

  display: block;

}

.cid-sF36MJliVj .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF36MJliVj .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF36MJliVj .divider-top::before,

.cid-sF36MJliVj .divider-bottom::before,

.cid-sF36MJliVj .divider-top::after,

.cid-sF36MJliVj .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF36MJliVj .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF36MJliVj .divider-triangles::before {

  top: -50px;

}

.cid-sF36MJliVj .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF36MJliVj .divider-halfcircle::before {

  top: -50px;

}

.cid-sF36MJliVj .divider-multitriangles::before,

.cid-sF36MJliVj .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF36MJliVj .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-kLPDHmQ7Nq {

  background-color: #ffffff;

  padding-top: 60px;

  padding-bottom: 60px;

}

@media (max-width: 768px) {

  .cid-kLPDHmQ7Nq video {

    width: 100% !important;

  }

}

.cid-kLPDHmQ7Nq video {

  margin: auto;

  display: block;

}

.cid-sF37aFxJwi .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF37aFxJwi .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF37aFxJwi .divider-top::before,

.cid-sF37aFxJwi .divider-bottom::before,

.cid-sF37aFxJwi .divider-top::after,

.cid-sF37aFxJwi .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF37aFxJwi .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF37aFxJwi .divider-triangles::before {

  top: -50px;

}

.cid-sF37aFxJwi .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF37aFxJwi .divider-halfcircle::before {

  top: -50px;

}

.cid-sF37aFxJwi .divider-multitriangles::before,

.cid-sF37aFxJwi .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF37aFxJwi .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-sanLa8bXdM {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #efefef;

}

.cid-sanLa8bXdM .mbr-section-subtitle {

  color: #767676;

  font-weight: 300;

}

.cid-sanLa8bXdM .mbr-content-text {

  color: #000000;

  margin-bottom: 0;

}

.cid-sanLa8bXdM .card {

  word-wrap: break-word;

  flex-shrink: 0;

  -webkit-flex-shrink: 0;

}

.cid-sanLa8bXdM .img-text {

  width: 58px;

  height: 58px;

  font-size: 29px;

  border: 2px solid #000000;

  border-radius: 50%;

}

@media (max-width: 991px) {

  .cid-sanLa8bXdM .img-text {

    width: 48px;

    height: 48px;

    font-size: 24px;

  }

}

@media (min-width: 992px) {

  .cid-sanLa8bXdM .cards-block {

    border-top: 2px solid #000000;

  }

}

.cid-sanLa8bXdM .cards-block .card {

  border-bottom: 2px solid #000000;

  border-radius: 0;

}

.cid-sanLa8bXdM .cards-container {

  display: flex;

  -webkit-flex-direction: row;

  flex-direction: row;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: center;

  justify-content: center;

  word-break: break-word;

}

@media (max-width: 767px) {

  .cid-sanLa8bXdM .panel-item {

    flex-direction: column;

    align-items: center;

  }

  .cid-sanLa8bXdM .panel-item .card-img {

    padding: 0;

    padding-bottom: 1rem;

  }

}

.cid-sanLa8bXdM .mbr-section-title {

  color: #000000;

}

.cid-sanLa8bXdM H4 {

  color: #000000;

}

.cid-sanLa8bXdM .img-text {

  color: #000000;

}

.cid-sF375hsGQV .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF375hsGQV .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF375hsGQV .divider-top::before,

.cid-sF375hsGQV .divider-bottom::before,

.cid-sF375hsGQV .divider-top::after,

.cid-sF375hsGQV .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF375hsGQV .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF375hsGQV .divider-triangles::before {

  top: -50px;

}

.cid-sF375hsGQV .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF375hsGQV .divider-halfcircle::before {

  top: -50px;

}

.cid-sF375hsGQV .divider-multitriangles::before,

.cid-sF375hsGQV .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF375hsGQV .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-sanKgi2JaU {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-sanKgi2JaU h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-sanKgi2JaU p {

  color: #767676;

  text-align: left;

}

.cid-sanKgi2JaU .card-box {

  padding-top: 2rem;

}

.cid-sanKgi2JaU .card-wrapper {

  height: 100%;

}

.cid-svDxVQwIaR {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDxVQwIaR .content {

    text-align: center;

  }

  .cid-svDxVQwIaR .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDxVQwIaR .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDxVQwIaR .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDxVQwIaR .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDxVQwIaR .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDxVQwIaR .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDxVQwIaR .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDxVQwIaR .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDxVQwIaR .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDxVQwIaR .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDxVQwIaR .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDxVQwIaR .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDxVQwIaR .copyright > p {

  text-align: left;

}

.cid-svDxVQwIaR H5 {

  color: #000000;

}

.cid-svGGgBjPu4 .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-svGGgBjPu4 .my-float {

  margin-top: 16px;

}

.cid-svGGgBjPu4 P {

  color: #232323;

}

.cid-svGGgBjPu4 DIV {

  color: #ffffff;

}

.cid-svGGgBjPu4 H10 {

  color: #767676;

}

.cid-svGGgBjPu4 .hidden {

  display: none;

}

#custom-html-sx {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-sx html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sx body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-sx article,

#custom-html-sx aside,

#custom-html-sx details,

#custom-html-sx figcaption,

#custom-html-sx figure,

#custom-html-sx footer,

#custom-html-sx header,

#custom-html-sx hgroup,

#custom-html-sx main,

#custom-html-sx menu,

#custom-html-sx nav,

#custom-html-sx section,

#custom-html-sx summary {

  display: block;

}

#custom-html-sx audio,

#custom-html-sx canvas,

#custom-html-sx progress,

#custom-html-sx video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sx audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sx [hidden],

#custom-html-sx template {

  display: none;

}

#custom-html-sx a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-sx a:active,

#custom-html-sx a:hover {

  outline: 0;

}

#custom-html-sx abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sx b,

#custom-html-sx strong {

  font-weight: 700;

}

#custom-html-sx dfn {

  font-style: italic;

}

#custom-html-sx h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sx mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sx small {

  font-size: 80%;

}

#custom-html-sx sub,

#custom-html-sx sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sx sup {

  top: -0.5em;

}

#custom-html-sx sub {

  bottom: -0.25em;

}

#custom-html-sx img {

  border: 0;

  vertical-align: middle;

}

#custom-html-sx svg:not(:root) {

  overflow: hidden;

}

#custom-html-sx figure {

  margin: 0;

}

#custom-html-sx hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sx pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sx code,

#custom-html-sx kbd,

#custom-html-sx pre,

#custom-html-sx samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-sx button,

#custom-html-sx input,

#custom-html-sx optgroup,

#custom-html-sx select,

#custom-html-sx textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sx button {

  overflow: visible;

}

#custom-html-sx button,

#custom-html-sx select {

  text-transform: none;

}

#custom-html-sx button,

#custom-html-sx html input[type=button],

#custom-html-sx input[type=reset],

#custom-html-sx input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sx button[disabled],

#custom-html-sx html input[disabled] {

  cursor: default;

}

#custom-html-sx button::-moz-focus-inner,

#custom-html-sx input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sx input {

  line-height: normal;

}

#custom-html-sx input[type=checkbox],

#custom-html-sx input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sx input[type=number]::-webkit-inner-spin-button,

#custom-html-sx input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sx input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-sx input[type=search]::-webkit-search-cancel-button,

#custom-html-sx input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sx fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-sx legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sx textarea {

  overflow: auto;

}

#custom-html-sx optgroup {

  font-weight: 700;

}

#custom-html-sx table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-sx td,

#custom-html-sx th {

  padding: 0;

}

@media print {

  #custom-html-sx *,

  #custom-html-sx :after,

  #custom-html-sx :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sx a,

  #custom-html-sx a:visited {

    text-decoration: underline;

  }

  #custom-html-sx a[href]:after {

    content: "" !important;

  }

  #custom-html-sx abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sx a[href^="#"]:after,

  #custom-html-sx a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sx blockquote,

  #custom-html-sx pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sx thead {

    display: table-header-group;

  }

  #custom-html-sx img,

  #custom-html-sx tr {

    page-break-inside: avoid;

  }

  #custom-html-sx img {

    max-width: 100% !important;

  }

  #custom-html-sx h2,

  #custom-html-sx h3,

  #custom-html-sx p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sx h2,

  #custom-html-sx h3 {

    page-break-after: avoid;

  }

  #custom-html-sx .navbar {

    display: none;

  }

  #custom-html-sx .btn > .caret,

  #custom-html-sx .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sx .label {

    border: 1px solid #000000;

  }

  #custom-html-sx .table {

    border-collapse: collapse !important;

  }

  #custom-html-sx .table td,

  #custom-html-sx .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sx .table-bordered td,

  #custom-html-sx .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-sx .visible-print {

    display: block !important;

  }

  #custom-html-sx table.visible-print {

    display: table !important;

  }

  #custom-html-sx tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sx td.visible-print,

  #custom-html-sx th.visible-print {

    display: table-cell !important;

  }

  #custom-html-sx .visible-print-block {

    display: block !important;

  }

  #custom-html-sx .visible-print-inline {

    display: inline !important;

  }

  #custom-html-sx .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-sx .hidden-print {

    display: none !important;

  }

  #custom-html-sx #main-menu,

  #custom-html-sx #top-nav,

  #custom-html-sx .header-lined,

  #custom-html-sx .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sx .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sx .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sx .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sx .glyphicon-eur:before,

#custom-html-sx .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sx .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sx .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sx .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sx .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sx .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sx .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sx .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sx .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sx .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sx .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sx .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sx .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sx .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sx .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sx .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sx .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sx .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sx .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sx .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sx .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sx .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sx .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sx .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sx .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sx .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sx .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sx .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sx .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sx .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sx .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sx .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sx .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sx .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sx .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sx .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sx .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sx .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sx .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sx .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sx .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sx .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sx .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sx .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sx .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sx .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sx .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sx .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sx .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sx .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sx .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sx .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sx .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sx .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sx .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sx .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sx .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sx .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sx .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sx .glyphicon-list:before {

  content: "\e056";

}

#custom-html-sx .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sx .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sx .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sx .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sx .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sx .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sx .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sx .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sx .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sx .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sx .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sx .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sx .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sx .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sx .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sx .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sx .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sx .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sx .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sx .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sx .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sx .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sx .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sx .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sx .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-sx .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sx .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sx .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sx .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sx .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sx .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sx .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sx .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sx .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sx .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sx .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sx .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sx .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sx .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sx .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sx .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sx .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sx .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sx .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sx .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sx .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sx .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sx .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sx .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sx .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sx .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sx .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sx .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sx .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sx .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sx .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sx .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sx .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sx .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sx .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sx .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sx .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sx .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sx .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sx .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sx .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sx .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sx .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sx .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sx .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sx .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sx .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sx .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sx .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sx .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sx .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sx .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sx .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sx .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sx .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sx .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sx .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sx .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sx .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sx .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sx .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sx .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sx .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sx .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sx .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sx .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sx .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sx .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sx .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sx .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sx .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sx .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sx .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sx .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-sx .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sx .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sx .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sx .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sx .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sx .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sx .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sx .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sx .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sx .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sx .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sx .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sx .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sx .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sx .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sx .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sx .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sx .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sx .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sx .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sx .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sx .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sx .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sx .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sx .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sx .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sx .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sx .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sx .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sx .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sx .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sx .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sx .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sx .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sx .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sx .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sx .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sx .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sx .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sx .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sx .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sx .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sx .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sx .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sx .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sx .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sx .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sx .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sx .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sx .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sx .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sx .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sx .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sx .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sx .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sx .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sx .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sx .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sx .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sx .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sx .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sx .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sx .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sx .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sx .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sx .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sx .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sx .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sx .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sx .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sx .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sx .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sx .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sx .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sx .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sx .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sx .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sx .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sx .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sx .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sx .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sx .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sx .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sx .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sx .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sx .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-sx .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sx .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sx .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sx .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sx .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sx .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sx .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sx .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sx .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sx .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sx .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sx .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sx .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sx .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sx .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sx * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sx :after,

#custom-html-sx :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sx button,

#custom-html-sx input,

#custom-html-sx select,

#custom-html-sx textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sx a:focus,

#custom-html-sx a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sx a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sx .carousel-inner > .item > a > img,

#custom-html-sx .carousel-inner > .item > img,

#custom-html-sx .img-responsive,

#custom-html-sx .thumbnail a > img,

#custom-html-sx .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sx .img-rounded {

  border-radius: 6px;

}

#custom-html-sx .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sx .img-circle {

  border-radius: 50%;

}

#custom-html-sx .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sx .sr-only-focusable:active,

#custom-html-sx .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sx [role=button] {

  cursor: pointer;

}

#custom-html-sx .h1,

#custom-html-sx .h2,

#custom-html-sx .h3,

#custom-html-sx .h4,

#custom-html-sx .h5,

#custom-html-sx .h6,

#custom-html-sx h1,

#custom-html-sx h2,

#custom-html-sx h3,

#custom-html-sx h4,

#custom-html-sx h5,

#custom-html-sx h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sx .h1 .small,

#custom-html-sx .h1 small,

#custom-html-sx .h2 .small,

#custom-html-sx .h2 small,

#custom-html-sx .h3 .small,

#custom-html-sx .h3 small,

#custom-html-sx .h4 .small,

#custom-html-sx .h4 small,

#custom-html-sx .h5 .small,

#custom-html-sx .h5 small,

#custom-html-sx .h6 .small,

#custom-html-sx .h6 small,

#custom-html-sx h1 .small,

#custom-html-sx h1 small,

#custom-html-sx h2 .small,

#custom-html-sx h2 small,

#custom-html-sx h3 .small,

#custom-html-sx h3 small,

#custom-html-sx h4 .small,

#custom-html-sx h4 small,

#custom-html-sx h5 .small,

#custom-html-sx h5 small,

#custom-html-sx h6 .small,

#custom-html-sx h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sx .h1,

#custom-html-sx .h2,

#custom-html-sx .h3,

#custom-html-sx h1,

#custom-html-sx h2,

#custom-html-sx h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sx .h1 .small,

#custom-html-sx .h1 small,

#custom-html-sx .h2 .small,

#custom-html-sx .h2 small,

#custom-html-sx .h3 .small,

#custom-html-sx .h3 small,

#custom-html-sx h1 .small,

#custom-html-sx h1 small,

#custom-html-sx h2 .small,

#custom-html-sx h2 small,

#custom-html-sx h3 .small,

#custom-html-sx h3 small {

  font-size: 65%;

}

#custom-html-sx .h4,

#custom-html-sx .h5,

#custom-html-sx .h6,

#custom-html-sx h4,

#custom-html-sx h5,

#custom-html-sx h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sx .h4 .small,

#custom-html-sx .h4 small,

#custom-html-sx .h5 .small,

#custom-html-sx .h5 small,

#custom-html-sx .h6 .small,

#custom-html-sx .h6 small,

#custom-html-sx h4 .small,

#custom-html-sx h4 small,

#custom-html-sx h5 .small,

#custom-html-sx h5 small,

#custom-html-sx h6 .small,

#custom-html-sx h6 small {

  font-size: 75%;

}

#custom-html-sx .h1,

#custom-html-sx h1 {

  font-size: 36px;

}

#custom-html-sx .h2,

#custom-html-sx h2 {

  font-size: 30px;

}

#custom-html-sx .h3,

#custom-html-sx h3 {

  font-size: 24px;

}

#custom-html-sx .h4,

#custom-html-sx h4 {

  font-size: 18px;

}

#custom-html-sx .h5,

#custom-html-sx h5 {

  font-size: 14px;

}

#custom-html-sx .h6,

#custom-html-sx h6 {

  font-size: 12px;

}

#custom-html-sx p {

  margin: 0 0 10px;

}

#custom-html-sx .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sx .lead {

    font-size: 21px;

  }

  #custom-html-sx .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sx .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-sx .container {

    width: 750px;

  }

  #custom-html-sx .col-sm-1,

  #custom-html-sx .col-sm-10,

  #custom-html-sx .col-sm-11,

  #custom-html-sx .col-sm-12,

  #custom-html-sx .col-sm-2,

  #custom-html-sx .col-sm-3,

  #custom-html-sx .col-sm-4,

  #custom-html-sx .col-sm-5,

  #custom-html-sx .col-sm-6,

  #custom-html-sx .col-sm-7,

  #custom-html-sx .col-sm-8,

  #custom-html-sx .col-sm-9 {

    float: left;

  }

  #custom-html-sx .col-sm-12 {

    width: 100%;

  }

  #custom-html-sx .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sx .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sx .col-sm-9 {

    width: 75%;

  }

  #custom-html-sx .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sx .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sx .col-sm-6 {

    width: 50%;

  }

  #custom-html-sx .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sx .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sx .col-sm-3 {

    width: 25%;

  }

  #custom-html-sx .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sx .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sx .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sx .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sx .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sx .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sx .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sx .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sx .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sx .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sx .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sx .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sx .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sx .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sx .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sx .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sx .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sx .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sx .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sx .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sx .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sx .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sx .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sx .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sx .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sx .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sx .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sx .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sx .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sx .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sx .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sx .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sx .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sx .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sx .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sx .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sx .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sx .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sx .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sx .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sx .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-sx .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sx .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sx .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sx .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sx .form-inline .input-group .form-control,

  #custom-html-sx .form-inline .input-group .input-group-addon,

  #custom-html-sx .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sx .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sx .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sx .form-inline .checkbox,

  #custom-html-sx .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sx .form-inline .checkbox label,

  #custom-html-sx .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sx .form-inline .checkbox input[type=checkbox],

  #custom-html-sx .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sx .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sx .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-sx .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-sx .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-sx .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sx .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-sx .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sx .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sx .nav-tabs.nav-justified > .active > a,

  #custom-html-sx .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sx .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sx .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sx .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-sx .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sx .nav-tabs-justified > .active > a,

  #custom-html-sx .nav-tabs-justified > .active > a:focus,

  #custom-html-sx .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-sx .navbar {

    border-radius: 4px;

  }

  #custom-html-sx .navbar-header {

    float: left;

  }

  #custom-html-sx .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sx .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sx .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sx .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sx .navbar-fixed-top .navbar-collapse,

  #custom-html-sx .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-sx .container-fluid > .navbar-collapse,

  #custom-html-sx .container-fluid > .navbar-header,

  #custom-html-sx .container > .navbar-collapse,

  #custom-html-sx .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-sx .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-sx .navbar-fixed-bottom,

  #custom-html-sx .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-sx .navbar > .container .navbar-brand,

  #custom-html-sx .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-sx .navbar-toggle {

    display: none;

  }

  #custom-html-sx .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sx .navbar-nav > li {

    float: left;

  }

  #custom-html-sx .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-sx .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sx .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sx .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sx .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sx .navbar-form .input-group .form-control,

  #custom-html-sx .navbar-form .input-group .input-group-addon,

  #custom-html-sx .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sx .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sx .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sx .navbar-form .checkbox,

  #custom-html-sx .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sx .navbar-form .checkbox label,

  #custom-html-sx .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sx .navbar-form .checkbox input[type=checkbox],

  #custom-html-sx .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sx .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-sx .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sx .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-sx .navbar-left {

    float: left !important;

  }

  #custom-html-sx .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sx .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-sx .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sx .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sx .modal-sm {

    width: 300px;

  }

  #custom-html-sx .pull-sm-left {

    float: left;

  }

  #custom-html-sx .pull-sm-right {

    float: right;

  }

  #custom-html-sx .text-right-sm {

    text-align: right;

  }

  #custom-html-sx .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sx .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-sx .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sx .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sx .email-verification .button {

    float: right;

  }

  #custom-html-sx .email-verification .far,

  #custom-html-sx .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-sx .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sx .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-sx .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sx .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sx .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sx .small,

#custom-html-sx small {

  font-size: 85%;

}

#custom-html-sx .mark,

#custom-html-sx mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sx .text-left {

  text-align: left;

}

#custom-html-sx .text-right {

  text-align: right;

}

#custom-html-sx .text-center {

  text-align: center;

}

#custom-html-sx .text-justify {

  text-align: justify;

}

#custom-html-sx .text-nowrap {

  white-space: nowrap;

}

#custom-html-sx .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sx .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sx .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sx .text-muted {

  color: #777777;

}

#custom-html-sx .text-primary {

  color: #000000;

}

#custom-html-sx a.text-primary:focus,

#custom-html-sx a.text-primary:hover {

  color: #000000;

}

#custom-html-sx .text-success {

  color: #3c763d;

}

#custom-html-sx a.text-success:focus,

#custom-html-sx a.text-success:hover {

  color: #2b542c;

}

#custom-html-sx .text-info {

  color: #31708f;

}

#custom-html-sx a.text-info:focus,

#custom-html-sx a.text-info:hover {

  color: #000000;

}

#custom-html-sx .text-warning {

  color: #8a6d3b;

}

#custom-html-sx a.text-warning:focus,

#custom-html-sx a.text-warning:hover {

  color: #66512c;

}

#custom-html-sx .text-danger {

  color: #a94442;

}

#custom-html-sx a.text-danger:focus,

#custom-html-sx a.text-danger:hover {

  color: #843534;

}

#custom-html-sx .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-sx a.bg-primary:focus,

#custom-html-sx a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sx .bg-success {

  background-color: #dff0d8;

}

#custom-html-sx a.bg-success:focus,

#custom-html-sx a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sx .bg-info {

  background-color: #d9edf7;

}

#custom-html-sx a.bg-info:focus,

#custom-html-sx a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sx .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sx a.bg-warning:focus,

#custom-html-sx a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sx .bg-danger {

  background-color: #f2dede;

}

#custom-html-sx a.bg-danger:focus,

#custom-html-sx a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sx .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sx ol,

#custom-html-sx ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sx ol ol,

#custom-html-sx ol ul,

#custom-html-sx ul ol,

#custom-html-sx ul ul {

  margin-bottom: 0;

}

#custom-html-sx .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sx .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sx .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sx dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sx dd,

#custom-html-sx dt {

  line-height: 1.42857143;

}

#custom-html-sx dt {

  font-weight: 700;

}

#custom-html-sx dd {

  margin-left: 0;

}

#custom-html-sx abbr[data-original-title],

#custom-html-sx abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sx .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sx blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sx blockquote ol:last-child,

#custom-html-sx blockquote p:last-child,

#custom-html-sx blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sx blockquote .small,

#custom-html-sx blockquote footer,

#custom-html-sx blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sx blockquote .small:before,

#custom-html-sx blockquote footer:before,

#custom-html-sx blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sx .blockquote-reverse,

#custom-html-sx blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sx .blockquote-reverse .small:before,

#custom-html-sx .blockquote-reverse footer:before,

#custom-html-sx .blockquote-reverse small:before,

#custom-html-sx blockquote.pull-right .small:before,

#custom-html-sx blockquote.pull-right footer:before,

#custom-html-sx blockquote.pull-right small:before {

  content: '';

}

#custom-html-sx .blockquote-reverse .small:after,

#custom-html-sx .blockquote-reverse footer:after,

#custom-html-sx .blockquote-reverse small:after,

#custom-html-sx blockquote.pull-right .small:after,

#custom-html-sx blockquote.pull-right footer:after,

#custom-html-sx blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sx address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sx code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sx kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sx kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sx pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sx .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sx .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-sx .container {

    width: 970px;

  }

  #custom-html-sx .col-md-1,

  #custom-html-sx .col-md-10,

  #custom-html-sx .col-md-11,

  #custom-html-sx .col-md-12,

  #custom-html-sx .col-md-2,

  #custom-html-sx .col-md-3,

  #custom-html-sx .col-md-4,

  #custom-html-sx .col-md-5,

  #custom-html-sx .col-md-6,

  #custom-html-sx .col-md-7,

  #custom-html-sx .col-md-8,

  #custom-html-sx .col-md-9 {

    float: left;

  }

  #custom-html-sx .col-md-12 {

    width: 100%;

  }

  #custom-html-sx .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sx .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sx .col-md-9 {

    width: 75%;

  }

  #custom-html-sx .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sx .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sx .col-md-6 {

    width: 50%;

  }

  #custom-html-sx .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sx .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sx .col-md-3 {

    width: 25%;

  }

  #custom-html-sx .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sx .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sx .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sx .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sx .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sx .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sx .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sx .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sx .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sx .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sx .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sx .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sx .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sx .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sx .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sx .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sx .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sx .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sx .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sx .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sx .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sx .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sx .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sx .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sx .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sx .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sx .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sx .col-md-push-0 {

    left: auto;

  }

  #custom-html-sx .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sx .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sx .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sx .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sx .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sx .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sx .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sx .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sx .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sx .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sx .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sx .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sx .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-sx .modal-lg {

    width: 900px;

  }

  #custom-html-sx .pull-md-left {

    float: left;

  }

  #custom-html-sx .pull-md-right {

    float: right;

  }

  #custom-html-sx h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sx .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sx .container {

    width: 1170px;

  }

  #custom-html-sx .col-lg-1,

  #custom-html-sx .col-lg-10,

  #custom-html-sx .col-lg-11,

  #custom-html-sx .col-lg-12,

  #custom-html-sx .col-lg-2,

  #custom-html-sx .col-lg-3,

  #custom-html-sx .col-lg-4,

  #custom-html-sx .col-lg-5,

  #custom-html-sx .col-lg-6,

  #custom-html-sx .col-lg-7,

  #custom-html-sx .col-lg-8,

  #custom-html-sx .col-lg-9 {

    float: left;

  }

  #custom-html-sx .col-lg-12 {

    width: 100%;

  }

  #custom-html-sx .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sx .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sx .col-lg-9 {

    width: 75%;

  }

  #custom-html-sx .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sx .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sx .col-lg-6 {

    width: 50%;

  }

  #custom-html-sx .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sx .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sx .col-lg-3 {

    width: 25%;

  }

  #custom-html-sx .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sx .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sx .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sx .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sx .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sx .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sx .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sx .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sx .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sx .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sx .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sx .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sx .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sx .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sx .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sx .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sx .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sx .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sx .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sx .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sx .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sx .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sx .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sx .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sx .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sx .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sx .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sx .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sx .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sx .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sx .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sx .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sx .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sx .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sx .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sx .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sx .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sx .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sx .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sx .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sx .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-sx .visible-lg {

    display: block !important;

  }

  #custom-html-sx table.visible-lg {

    display: table !important;

  }

  #custom-html-sx tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sx td.visible-lg,

  #custom-html-sx th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-sx .visible-lg-block {

    display: block !important;

  }

  #custom-html-sx .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-sx .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-sx .hidden-lg {

    display: none !important;

  }

  #custom-html-sx .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sx .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sx .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sx .col-lg-1,

#custom-html-sx .col-lg-10,

#custom-html-sx .col-lg-11,

#custom-html-sx .col-lg-12,

#custom-html-sx .col-lg-2,

#custom-html-sx .col-lg-3,

#custom-html-sx .col-lg-4,

#custom-html-sx .col-lg-5,

#custom-html-sx .col-lg-6,

#custom-html-sx .col-lg-7,

#custom-html-sx .col-lg-8,

#custom-html-sx .col-lg-9,

#custom-html-sx .col-md-1,

#custom-html-sx .col-md-10,

#custom-html-sx .col-md-11,

#custom-html-sx .col-md-12,

#custom-html-sx .col-md-2,

#custom-html-sx .col-md-3,

#custom-html-sx .col-md-4,

#custom-html-sx .col-md-5,

#custom-html-sx .col-md-6,

#custom-html-sx .col-md-7,

#custom-html-sx .col-md-8,

#custom-html-sx .col-md-9,

#custom-html-sx .col-sm-1,

#custom-html-sx .col-sm-10,

#custom-html-sx .col-sm-11,

#custom-html-sx .col-sm-12,

#custom-html-sx .col-sm-2,

#custom-html-sx .col-sm-3,

#custom-html-sx .col-sm-4,

#custom-html-sx .col-sm-5,

#custom-html-sx .col-sm-6,

#custom-html-sx .col-sm-7,

#custom-html-sx .col-sm-8,

#custom-html-sx .col-sm-9,

#custom-html-sx .col-xs-1,

#custom-html-sx .col-xs-10,

#custom-html-sx .col-xs-11,

#custom-html-sx .col-xs-12,

#custom-html-sx .col-xs-2,

#custom-html-sx .col-xs-3,

#custom-html-sx .col-xs-4,

#custom-html-sx .col-xs-5,

#custom-html-sx .col-xs-6,

#custom-html-sx .col-xs-7,

#custom-html-sx .col-xs-8,

#custom-html-sx .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sx .col-xs-1,

#custom-html-sx .col-xs-10,

#custom-html-sx .col-xs-11,

#custom-html-sx .col-xs-12,

#custom-html-sx .col-xs-2,

#custom-html-sx .col-xs-3,

#custom-html-sx .col-xs-4,

#custom-html-sx .col-xs-5,

#custom-html-sx .col-xs-6,

#custom-html-sx .col-xs-7,

#custom-html-sx .col-xs-8,

#custom-html-sx .col-xs-9 {

  float: left;

}

#custom-html-sx .col-xs-12 {

  width: 100%;

}

#custom-html-sx .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sx .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sx .col-xs-9 {

  width: 75%;

}

#custom-html-sx .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sx .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sx .col-xs-6 {

  width: 50%;

}

#custom-html-sx .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sx .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sx .col-xs-3 {

  width: 25%;

}

#custom-html-sx .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sx .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sx .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sx .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sx .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sx .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sx .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sx .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sx .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sx .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sx .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sx .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sx .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sx .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sx .col-xs-pull-0 {

  right: auto;

}

#custom-html-sx .col-xs-push-12 {

  left: 100%;

}

#custom-html-sx .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sx .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sx .col-xs-push-9 {

  left: 75%;

}

#custom-html-sx .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sx .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sx .col-xs-push-6 {

  left: 50%;

}

#custom-html-sx .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sx .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sx .col-xs-push-3 {

  left: 25%;

}

#custom-html-sx .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sx .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sx .col-xs-push-0 {

  left: auto;

}

#custom-html-sx .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sx .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sx .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sx .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sx .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sx .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sx .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sx .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sx .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sx .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sx .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sx .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-sx .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-sx caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sx th {

  text-align: left;

}

#custom-html-sx .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sx .table > tbody > tr > td,

#custom-html-sx .table > tbody > tr > th,

#custom-html-sx .table > tfoot > tr > td,

#custom-html-sx .table > tfoot > tr > th,

#custom-html-sx .table > thead > tr > td,

#custom-html-sx .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sx .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sx .table > caption + thead > tr:first-child > td,

#custom-html-sx .table > caption + thead > tr:first-child > th,

#custom-html-sx .table > colgroup + thead > tr:first-child > td,

#custom-html-sx .table > colgroup + thead > tr:first-child > th,

#custom-html-sx .table > thead:first-child > tr:first-child > td,

#custom-html-sx .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sx .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sx .table .table {

  background-color: #ffffff;

}

#custom-html-sx .table-condensed > tbody > tr > td,

#custom-html-sx .table-condensed > tbody > tr > th,

#custom-html-sx .table-condensed > tfoot > tr > td,

#custom-html-sx .table-condensed > tfoot > tr > th,

#custom-html-sx .table-condensed > thead > tr > td,

#custom-html-sx .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sx .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sx .table-bordered > tbody > tr > td,

#custom-html-sx .table-bordered > tbody > tr > th,

#custom-html-sx .table-bordered > tfoot > tr > td,

#custom-html-sx .table-bordered > tfoot > tr > th,

#custom-html-sx .table-bordered > thead > tr > td,

#custom-html-sx .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sx .table-bordered > thead > tr > td,

#custom-html-sx .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sx .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sx .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sx table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sx table td[class*=col-],

#custom-html-sx table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-sx .table > tbody > tr.active > td,

#custom-html-sx .table > tbody > tr.active > th,

#custom-html-sx .table > tbody > tr > td.active,

#custom-html-sx .table > tbody > tr > th.active,

#custom-html-sx .table > tfoot > tr.active > td,

#custom-html-sx .table > tfoot > tr.active > th,

#custom-html-sx .table > tfoot > tr > td.active,

#custom-html-sx .table > tfoot > tr > th.active,

#custom-html-sx .table > thead > tr.active > td,

#custom-html-sx .table > thead > tr.active > th,

#custom-html-sx .table > thead > tr > td.active,

#custom-html-sx .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sx .table-hover > tbody > tr.active:hover > td,

#custom-html-sx .table-hover > tbody > tr.active:hover > th,

#custom-html-sx .table-hover > tbody > tr:hover > .active,

#custom-html-sx .table-hover > tbody > tr > td.active:hover,

#custom-html-sx .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sx .table > tbody > tr.success > td,

#custom-html-sx .table > tbody > tr.success > th,

#custom-html-sx .table > tbody > tr > td.success,

#custom-html-sx .table > tbody > tr > th.success,

#custom-html-sx .table > tfoot > tr.success > td,

#custom-html-sx .table > tfoot > tr.success > th,

#custom-html-sx .table > tfoot > tr > td.success,

#custom-html-sx .table > tfoot > tr > th.success,

#custom-html-sx .table > thead > tr.success > td,

#custom-html-sx .table > thead > tr.success > th,

#custom-html-sx .table > thead > tr > td.success,

#custom-html-sx .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sx .table-hover > tbody > tr.success:hover > td,

#custom-html-sx .table-hover > tbody > tr.success:hover > th,

#custom-html-sx .table-hover > tbody > tr:hover > .success,

#custom-html-sx .table-hover > tbody > tr > td.success:hover,

#custom-html-sx .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sx .table > tbody > tr.info > td,

#custom-html-sx .table > tbody > tr.info > th,

#custom-html-sx .table > tbody > tr > td.info,

#custom-html-sx .table > tbody > tr > th.info,

#custom-html-sx .table > tfoot > tr.info > td,

#custom-html-sx .table > tfoot > tr.info > th,

#custom-html-sx .table > tfoot > tr > td.info,

#custom-html-sx .table > tfoot > tr > th.info,

#custom-html-sx .table > thead > tr.info > td,

#custom-html-sx .table > thead > tr.info > th,

#custom-html-sx .table > thead > tr > td.info,

#custom-html-sx .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sx .table-hover > tbody > tr.info:hover > td,

#custom-html-sx .table-hover > tbody > tr.info:hover > th,

#custom-html-sx .table-hover > tbody > tr:hover > .info,

#custom-html-sx .table-hover > tbody > tr > td.info:hover,

#custom-html-sx .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sx .table > tbody > tr.warning > td,

#custom-html-sx .table > tbody > tr.warning > th,

#custom-html-sx .table > tbody > tr > td.warning,

#custom-html-sx .table > tbody > tr > th.warning,

#custom-html-sx .table > tfoot > tr.warning > td,

#custom-html-sx .table > tfoot > tr.warning > th,

#custom-html-sx .table > tfoot > tr > td.warning,

#custom-html-sx .table > tfoot > tr > th.warning,

#custom-html-sx .table > thead > tr.warning > td,

#custom-html-sx .table > thead > tr.warning > th,

#custom-html-sx .table > thead > tr > td.warning,

#custom-html-sx .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sx .table-hover > tbody > tr.warning:hover > td,

#custom-html-sx .table-hover > tbody > tr.warning:hover > th,

#custom-html-sx .table-hover > tbody > tr:hover > .warning,

#custom-html-sx .table-hover > tbody > tr > td.warning:hover,

#custom-html-sx .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sx .table > tbody > tr.danger > td,

#custom-html-sx .table > tbody > tr.danger > th,

#custom-html-sx .table > tbody > tr > td.danger,

#custom-html-sx .table > tbody > tr > th.danger,

#custom-html-sx .table > tfoot > tr.danger > td,

#custom-html-sx .table > tfoot > tr.danger > th,

#custom-html-sx .table > tfoot > tr > td.danger,

#custom-html-sx .table > tfoot > tr > th.danger,

#custom-html-sx .table > thead > tr.danger > td,

#custom-html-sx .table > thead > tr.danger > th,

#custom-html-sx .table > thead > tr > td.danger,

#custom-html-sx .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sx .table-hover > tbody > tr.danger:hover > td,

#custom-html-sx .table-hover > tbody > tr.danger:hover > th,

#custom-html-sx .table-hover > tbody > tr:hover > .danger,

#custom-html-sx .table-hover > tbody > tr > td.danger:hover,

#custom-html-sx .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sx .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sx .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sx .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sx .table-responsive > .table > tbody > tr > td,

  #custom-html-sx .table-responsive > .table > tbody > tr > th,

  #custom-html-sx .table-responsive > .table > tfoot > tr > td,

  #custom-html-sx .table-responsive > .table > tfoot > tr > th,

  #custom-html-sx .table-responsive > .table > thead > tr > td,

  #custom-html-sx .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sx .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sx .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sx .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sx .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sx .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sx .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sx .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sx .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sx .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sx .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sx .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sx .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sx .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sx .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sx .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sx .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sx .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-sx div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sx div.dataTables_wrapper div.dataTables_info,

  #custom-html-sx div.dataTables_wrapper div.dataTables_length,

  #custom-html-sx div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-sx div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sx label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sx input[type=file] {

  display: block;

}

#custom-html-sx input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sx select[multiple],

#custom-html-sx select[size] {

  height: auto;

}

#custom-html-sx input[type=checkbox]:focus,

#custom-html-sx input[type=file]:focus,

#custom-html-sx input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sx output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sx .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sx .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sx .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sx .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sx .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sx .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sx .form-control[disabled],

#custom-html-sx .form-control[readonly],

#custom-html-sx fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sx .form-control[disabled],

#custom-html-sx fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sx textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sx input[type=date].form-control,

  #custom-html-sx input[type=datetime-local].form-control,

  #custom-html-sx input[type=month].form-control,

  #custom-html-sx input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sx .input-group-sm input[type=date],

  #custom-html-sx .input-group-sm input[type=datetime-local],

  #custom-html-sx .input-group-sm input[type=month],

  #custom-html-sx .input-group-sm input[type=time],

  #custom-html-sx input[type=date].input-sm,

  #custom-html-sx input[type=datetime-local].input-sm,

  #custom-html-sx input[type=month].input-sm,

  #custom-html-sx input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sx .input-group-lg input[type=date],

  #custom-html-sx .input-group-lg input[type=datetime-local],

  #custom-html-sx .input-group-lg input[type=month],

  #custom-html-sx .input-group-lg input[type=time],

  #custom-html-sx input[type=date].input-lg,

  #custom-html-sx input[type=datetime-local].input-lg,

  #custom-html-sx input[type=month].input-lg,

  #custom-html-sx input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sx .form-group {

  margin-bottom: 15px;

}

#custom-html-sx .checkbox,

#custom-html-sx .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sx .checkbox label,

#custom-html-sx .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sx .checkbox input[type=checkbox],

#custom-html-sx .checkbox-inline input[type=checkbox],

#custom-html-sx .radio input[type=radio],

#custom-html-sx .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sx .checkbox + .checkbox,

#custom-html-sx .radio + .radio {

  margin-top: -5px;

}

#custom-html-sx .checkbox-inline,

#custom-html-sx .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sx .checkbox-inline + .checkbox-inline,

#custom-html-sx .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sx fieldset[disabled] input[type=checkbox],

#custom-html-sx fieldset[disabled] input[type=radio],

#custom-html-sx input[type=checkbox].disabled,

#custom-html-sx input[type=checkbox][disabled],

#custom-html-sx input[type=radio].disabled,

#custom-html-sx input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sx .checkbox-inline.disabled,

#custom-html-sx .radio-inline.disabled,

#custom-html-sx fieldset[disabled] .checkbox-inline,

#custom-html-sx fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sx .checkbox.disabled label,

#custom-html-sx .radio.disabled label,

#custom-html-sx fieldset[disabled] .checkbox label,

#custom-html-sx fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sx .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sx .form-control-static.input-lg,

#custom-html-sx .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sx .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sx select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sx select[multiple].input-sm,

#custom-html-sx textarea.input-sm {

  height: auto;

}

#custom-html-sx .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sx .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sx .form-group-sm select[multiple].form-control,

#custom-html-sx .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sx .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sx .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sx select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sx select[multiple].input-lg,

#custom-html-sx textarea.input-lg {

  height: auto;

}

#custom-html-sx .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sx .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sx .form-group-lg select[multiple].form-control,

#custom-html-sx .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sx .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sx .has-feedback {

  position: relative;

}

#custom-html-sx .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sx .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sx .form-group-lg .form-control + .form-control-feedback,

#custom-html-sx .input-group-lg + .form-control-feedback,

#custom-html-sx .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sx .form-group-sm .form-control + .form-control-feedback,

#custom-html-sx .input-group-sm + .form-control-feedback,

#custom-html-sx .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sx .has-success .checkbox,

#custom-html-sx .has-success .checkbox-inline,

#custom-html-sx .has-success .control-label,

#custom-html-sx .has-success .help-block,

#custom-html-sx .has-success .radio,

#custom-html-sx .has-success .radio-inline,

#custom-html-sx .has-success.checkbox label,

#custom-html-sx .has-success.checkbox-inline label,

#custom-html-sx .has-success.radio label,

#custom-html-sx .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sx .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sx .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sx .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sx .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sx .has-warning .checkbox,

#custom-html-sx .has-warning .checkbox-inline,

#custom-html-sx .has-warning .control-label,

#custom-html-sx .has-warning .help-block,

#custom-html-sx .has-warning .radio,

#custom-html-sx .has-warning .radio-inline,

#custom-html-sx .has-warning.checkbox label,

#custom-html-sx .has-warning.checkbox-inline label,

#custom-html-sx .has-warning.radio label,

#custom-html-sx .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sx .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sx .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sx .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sx .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sx .has-error .checkbox,

#custom-html-sx .has-error .checkbox-inline,

#custom-html-sx .has-error .control-label,

#custom-html-sx .has-error .help-block,

#custom-html-sx .has-error .radio,

#custom-html-sx .has-error .radio-inline,

#custom-html-sx .has-error.checkbox label,

#custom-html-sx .has-error.checkbox-inline label,

#custom-html-sx .has-error.radio label,

#custom-html-sx .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sx .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sx .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sx .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sx .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sx .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sx .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sx .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-sx .form-horizontal .checkbox,

#custom-html-sx .form-horizontal .checkbox-inline,

#custom-html-sx .form-horizontal .radio,

#custom-html-sx .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sx .form-horizontal .checkbox,

#custom-html-sx .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sx .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sx .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-sx .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-sx .btn.active.focus,

#custom-html-sx .btn.active:focus,

#custom-html-sx .btn.focus,

#custom-html-sx .btn:active.focus,

#custom-html-sx .btn:active:focus,

#custom-html-sx .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sx .btn.focus,

#custom-html-sx .btn:focus,

#custom-html-sx .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sx .btn.active,

#custom-html-sx .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sx .btn.disabled,

#custom-html-sx .btn[disabled],

#custom-html-sx fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sx a.btn.disabled,

#custom-html-sx fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sx .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sx .btn-default.focus,

#custom-html-sx .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sx .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sx .btn-default.active,

#custom-html-sx .btn-default:active,

#custom-html-sx .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-sx .btn-default.active.focus,

#custom-html-sx .btn-default.active:focus,

#custom-html-sx .btn-default.active:hover,

#custom-html-sx .btn-default:active.focus,

#custom-html-sx .btn-default:active:focus,

#custom-html-sx .btn-default:active:hover,

#custom-html-sx .open > .dropdown-toggle.btn-default.focus,

#custom-html-sx .open > .dropdown-toggle.btn-default:focus,

#custom-html-sx .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sx .btn-default.disabled.focus,

#custom-html-sx .btn-default.disabled:focus,

#custom-html-sx .btn-default.disabled:hover,

#custom-html-sx .btn-default[disabled].focus,

#custom-html-sx .btn-default[disabled]:focus,

#custom-html-sx .btn-default[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-default.focus,

#custom-html-sx fieldset[disabled] .btn-default:focus,

#custom-html-sx fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sx .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sx .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sx .btn-primary.focus,

#custom-html-sx .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sx .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sx .btn-primary.active,

#custom-html-sx .btn-primary:active,

#custom-html-sx .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-sx .btn-primary.active.focus,

#custom-html-sx .btn-primary.active:focus,

#custom-html-sx .btn-primary.active:hover,

#custom-html-sx .btn-primary:active.focus,

#custom-html-sx .btn-primary:active:focus,

#custom-html-sx .btn-primary:active:hover,

#custom-html-sx .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sx .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sx .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sx .btn-primary.disabled.focus,

#custom-html-sx .btn-primary.disabled:focus,

#custom-html-sx .btn-primary.disabled:hover,

#custom-html-sx .btn-primary[disabled].focus,

#custom-html-sx .btn-primary[disabled]:focus,

#custom-html-sx .btn-primary[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-primary.focus,

#custom-html-sx fieldset[disabled] .btn-primary:focus,

#custom-html-sx fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sx .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sx .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sx .btn-success.focus,

#custom-html-sx .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sx .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sx .btn-success.active,

#custom-html-sx .btn-success:active,

#custom-html-sx .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-sx .btn-success.active.focus,

#custom-html-sx .btn-success.active:focus,

#custom-html-sx .btn-success.active:hover,

#custom-html-sx .btn-success:active.focus,

#custom-html-sx .btn-success:active:focus,

#custom-html-sx .btn-success:active:hover,

#custom-html-sx .open > .dropdown-toggle.btn-success.focus,

#custom-html-sx .open > .dropdown-toggle.btn-success:focus,

#custom-html-sx .open > .dropdown-toggle.btn-success:hover {


  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sx .btn-success.disabled.focus,

#custom-html-sx .btn-success.disabled:focus,

#custom-html-sx .btn-success.disabled:hover,

#custom-html-sx .btn-success[disabled].focus,

#custom-html-sx .btn-success[disabled]:focus,

#custom-html-sx .btn-success[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-success.focus,

#custom-html-sx fieldset[disabled] .btn-success:focus,

#custom-html-sx fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sx .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sx .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sx .btn-info.focus,

#custom-html-sx .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sx .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sx .btn-info.active,

#custom-html-sx .btn-info:active,

#custom-html-sx .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-sx .btn-info.active.focus,

#custom-html-sx .btn-info.active:focus,

#custom-html-sx .btn-info.active:hover,

#custom-html-sx .btn-info:active.focus,

#custom-html-sx .btn-info:active:focus,

#custom-html-sx .btn-info:active:hover,

#custom-html-sx .open > .dropdown-toggle.btn-info.focus,

#custom-html-sx .open > .dropdown-toggle.btn-info:focus,

#custom-html-sx .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sx .btn-info.disabled.focus,

#custom-html-sx .btn-info.disabled:focus,

#custom-html-sx .btn-info.disabled:hover,

#custom-html-sx .btn-info[disabled].focus,

#custom-html-sx .btn-info[disabled]:focus,

#custom-html-sx .btn-info[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-info.focus,

#custom-html-sx fieldset[disabled] .btn-info:focus,

#custom-html-sx fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sx .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sx .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sx .btn-warning.focus,

#custom-html-sx .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sx .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sx .btn-warning.active,

#custom-html-sx .btn-warning:active,

#custom-html-sx .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-sx .btn-warning.active.focus,

#custom-html-sx .btn-warning.active:focus,

#custom-html-sx .btn-warning.active:hover,

#custom-html-sx .btn-warning:active.focus,

#custom-html-sx .btn-warning:active:focus,

#custom-html-sx .btn-warning:active:hover,

#custom-html-sx .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sx .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sx .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sx .btn-warning.disabled.focus,

#custom-html-sx .btn-warning.disabled:focus,

#custom-html-sx .btn-warning.disabled:hover,

#custom-html-sx .btn-warning[disabled].focus,

#custom-html-sx .btn-warning[disabled]:focus,

#custom-html-sx .btn-warning[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-warning.focus,

#custom-html-sx fieldset[disabled] .btn-warning:focus,

#custom-html-sx fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sx .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sx .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sx .btn-danger.focus,

#custom-html-sx .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sx .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sx .btn-danger.active,

#custom-html-sx .btn-danger:active,

#custom-html-sx .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-sx .btn-danger.active.focus,

#custom-html-sx .btn-danger.active:focus,

#custom-html-sx .btn-danger.active:hover,

#custom-html-sx .btn-danger:active.focus,

#custom-html-sx .btn-danger:active:focus,

#custom-html-sx .btn-danger:active:hover,

#custom-html-sx .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sx .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sx .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sx .btn-danger.disabled.focus,

#custom-html-sx .btn-danger.disabled:focus,

#custom-html-sx .btn-danger.disabled:hover,

#custom-html-sx .btn-danger[disabled].focus,

#custom-html-sx .btn-danger[disabled]:focus,

#custom-html-sx .btn-danger[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-danger.focus,

#custom-html-sx fieldset[disabled] .btn-danger:focus,

#custom-html-sx fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sx .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sx .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sx .btn-link,

#custom-html-sx .btn-link.active,

#custom-html-sx .btn-link:active,

#custom-html-sx .btn-link[disabled],

#custom-html-sx fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sx .btn-link,

#custom-html-sx .btn-link:active,

#custom-html-sx .btn-link:focus,

#custom-html-sx .btn-link:hover {

  border-color: transparent;

}

#custom-html-sx .btn-link:focus,

#custom-html-sx .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sx .btn-link[disabled]:focus,

#custom-html-sx .btn-link[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-link:focus,

#custom-html-sx fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sx .btn-group-lg > .btn,

#custom-html-sx .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sx .btn-group-sm > .btn,

#custom-html-sx .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sx .btn-group-xs > .btn,

#custom-html-sx .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sx .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sx .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sx input[type=button].btn-block,

#custom-html-sx input[type=reset].btn-block,

#custom-html-sx input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sx .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sx .fade.in {

  opacity: 1;

}

#custom-html-sx .collapse {

  display: none;

}

#custom-html-sx .collapse.in {

  display: block;

}

#custom-html-sx tr.collapse.in {

  display: table-row;

}

#custom-html-sx tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sx .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-sx .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sx .dropdown,

#custom-html-sx .dropup {

  position: relative;

}

#custom-html-sx .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sx .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sx .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sx .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sx .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sx .dropdown-menu > li > a:focus,

#custom-html-sx .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sx .dropdown-menu > .active > a,

#custom-html-sx .dropdown-menu > .active > a:focus,

#custom-html-sx .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sx .dropdown-menu > .disabled > a,

#custom-html-sx .dropdown-menu > .disabled > a:focus,

#custom-html-sx .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sx .dropdown-menu > .disabled > a:focus,

#custom-html-sx .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sx .open > .dropdown-menu {

  display: block;

}

#custom-html-sx .open > a {

  outline: 0;

}

#custom-html-sx .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sx .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sx .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sx .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sx .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sx .dropup .caret,

#custom-html-sx .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sx .dropup .dropdown-menu,

#custom-html-sx .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-sx .btn-group,

#custom-html-sx .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sx .btn-group-vertical > .btn,

#custom-html-sx .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sx .btn-group-vertical > .btn.active,

#custom-html-sx .btn-group-vertical > .btn:active,

#custom-html-sx .btn-group-vertical > .btn:focus,

#custom-html-sx .btn-group-vertical > .btn:hover,

#custom-html-sx .btn-group > .btn.active,

#custom-html-sx .btn-group > .btn:active,

#custom-html-sx .btn-group > .btn:focus,

#custom-html-sx .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sx .btn-group .btn + .btn,

#custom-html-sx .btn-group .btn + .btn-group,

#custom-html-sx .btn-group .btn-group + .btn,

#custom-html-sx .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sx .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sx .btn-toolbar .btn,

#custom-html-sx .btn-toolbar .btn-group,

#custom-html-sx .btn-toolbar .input-group {

  float: left;

}

#custom-html-sx .btn-toolbar > .btn,

#custom-html-sx .btn-toolbar > .btn-group,

#custom-html-sx .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sx .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sx .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sx .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sx .btn-group > .btn:last-child:not(:first-child),

#custom-html-sx .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sx .btn-group > .btn-group {

  float: left;

}

#custom-html-sx .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sx .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sx .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sx .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sx .btn-group .dropdown-toggle:active,

#custom-html-sx .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sx .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sx .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sx .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sx .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sx .btn .caret {

  margin-left: 0;

}

#custom-html-sx .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sx .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sx .btn-group-vertical > .btn,

#custom-html-sx .btn-group-vertical > .btn-group,

#custom-html-sx .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sx .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sx .btn-group-vertical > .btn + .btn,

#custom-html-sx .btn-group-vertical > .btn + .btn-group,

#custom-html-sx .btn-group-vertical > .btn-group + .btn,

#custom-html-sx .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sx .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sx .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sx .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sx .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sx .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sx .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sx .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sx .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sx .btn-group-justified > .btn,

#custom-html-sx .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sx .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sx .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sx [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sx [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sx [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sx [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sx .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sx .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sx .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sx .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sx .input-group-lg > .form-control,

#custom-html-sx .input-group-lg > .input-group-addon,

#custom-html-sx .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sx select.input-group-lg > .form-control,

#custom-html-sx select.input-group-lg > .input-group-addon,

#custom-html-sx select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sx select[multiple].input-group-lg > .form-control,

#custom-html-sx select[multiple].input-group-lg > .input-group-addon,

#custom-html-sx select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sx textarea.input-group-lg > .form-control,

#custom-html-sx textarea.input-group-lg > .input-group-addon,

#custom-html-sx textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sx .input-group-sm > .form-control,

#custom-html-sx .input-group-sm > .input-group-addon,

#custom-html-sx .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sx select.input-group-sm > .form-control,

#custom-html-sx select.input-group-sm > .input-group-addon,

#custom-html-sx select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sx select[multiple].input-group-sm > .form-control,

#custom-html-sx select[multiple].input-group-sm > .input-group-addon,

#custom-html-sx select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sx textarea.input-group-sm > .form-control,

#custom-html-sx textarea.input-group-sm > .input-group-addon,

#custom-html-sx textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sx .input-group .form-control,

#custom-html-sx .input-group-addon,

#custom-html-sx .input-group-btn {

  display: table-cell;

}

#custom-html-sx .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sx .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sx .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sx .input-group-addon,

#custom-html-sx .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sx .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sx .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sx .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sx .input-group-addon input[type=checkbox],

#custom-html-sx .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sx .input-group .form-control:first-child,

#custom-html-sx .input-group-addon:first-child,

#custom-html-sx .input-group-btn:first-child > .btn,

#custom-html-sx .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sx .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sx .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sx .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sx .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sx .input-group .form-control:last-child,

#custom-html-sx .input-group-addon:last-child,

#custom-html-sx .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sx .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sx .input-group-btn:last-child > .btn,

#custom-html-sx .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sx .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sx .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sx .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sx .input-group-btn > .btn {

  position: relative;

}

#custom-html-sx .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sx .input-group-btn > .btn:active,

#custom-html-sx .input-group-btn > .btn:focus,

#custom-html-sx .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sx .input-group-btn:first-child > .btn,

#custom-html-sx .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sx .input-group-btn:last-child > .btn,

#custom-html-sx .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sx .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sx .nav > li {

  position: relative;

  display: block;

}

#custom-html-sx .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sx .nav > li > a:focus,

#custom-html-sx .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sx .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sx .nav > li.disabled > a:focus,

#custom-html-sx .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sx .nav .open > a,

#custom-html-sx .nav .open > a:focus,

#custom-html-sx .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sx .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sx .nav > li > a > img {

  max-width: none;

}

#custom-html-sx .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sx .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sx .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sx .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sx .nav-tabs > li.active > a,

#custom-html-sx .nav-tabs > li.active > a:focus,

#custom-html-sx .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sx .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sx .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sx .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sx .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sx .nav-tabs.nav-justified > .active > a,

#custom-html-sx .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sx .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sx .nav-pills > li {

  float: left;

}

#custom-html-sx .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sx .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sx .nav-pills > li.active > a,

#custom-html-sx .nav-pills > li.active > a:focus,

#custom-html-sx .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sx .nav-stacked > li {

  float: none;

}

#custom-html-sx .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sx .nav-justified {

  width: 100%;

}

#custom-html-sx .nav-justified > li {

  float: none;

}

#custom-html-sx .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sx .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-sx .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sx .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sx .nav-tabs-justified > .active > a,

#custom-html-sx .nav-tabs-justified > .active > a:focus,

#custom-html-sx .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-sx .tab-content > .tab-pane {

  display: none;

}

#custom-html-sx .tab-content > .active {

  display: block;

}

#custom-html-sx .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sx .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-sx .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sx .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-sx .navbar-fixed-bottom .navbar-collapse,

#custom-html-sx .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sx .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sx .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sx .container-fluid > .navbar-collapse,

#custom-html-sx .container-fluid > .navbar-header,

#custom-html-sx .container > .navbar-collapse,

#custom-html-sx .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sx .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-sx .navbar-fixed-bottom,

#custom-html-sx .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-sx .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sx .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sx .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sx .navbar-brand:focus,

#custom-html-sx .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sx .navbar-brand > img {

  display: block;

}

#custom-html-sx .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sx .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sx .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sx .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-sx .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sx .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sx .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sx .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sx .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sx .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sx .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sx .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-sx .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sx .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-sx .visible-xs {

    display: block !important;

  }

  #custom-html-sx table.visible-xs {

    display: table !important;

  }

  #custom-html-sx tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sx td.visible-xs,

  #custom-html-sx th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-sx .visible-xs-block {

    display: block !important;

  }

  #custom-html-sx .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-sx .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-sx .hidden-xs {

    display: none !important;

  }

  #custom-html-sx .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sx .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-sx section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-sx .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sx .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sx .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sx .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-sx .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sx .tiles .tile:nth-child(1),

  #custom-html-sx .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-sx ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sx ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sx ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-sx .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sx .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sx .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-sx .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-sx .promo-banner form {

    text-align: center;

  }

}

#custom-html-sx .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sx .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sx .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sx .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sx .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sx .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sx .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sx .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sx .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sx .navbar-default .navbar-brand:focus,

#custom-html-sx .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sx .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sx .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sx .navbar-default .navbar-nav > li > a:focus,

#custom-html-sx .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sx .navbar-default .navbar-nav > .active > a,

#custom-html-sx .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sx .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sx .navbar-default .navbar-nav > .disabled > a,

#custom-html-sx .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sx .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sx .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sx .navbar-default .navbar-toggle:focus,

#custom-html-sx .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sx .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sx .navbar-default .navbar-collapse,

#custom-html-sx .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sx .navbar-default .navbar-nav > .open > a,

#custom-html-sx .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sx .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sx .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sx .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sx .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sx .navbar-default .btn-link:focus,

#custom-html-sx .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sx .navbar-default .btn-link[disabled]:focus,

#custom-html-sx .navbar-default .btn-link[disabled]:hover,

#custom-html-sx fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sx fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sx .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sx .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sx .navbar-inverse .navbar-brand:focus,

#custom-html-sx .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sx .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sx .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sx .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sx .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sx .navbar-inverse .navbar-nav > .active > a,

#custom-html-sx .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sx .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sx .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sx .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sx .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sx .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sx .navbar-inverse .navbar-toggle:focus,

#custom-html-sx .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sx .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sx .navbar-inverse .navbar-collapse,

#custom-html-sx .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sx .navbar-inverse .navbar-nav > .open > a,

#custom-html-sx .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sx .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sx .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sx .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sx .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sx .navbar-inverse .btn-link:focus,

#custom-html-sx .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sx .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sx .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sx fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sx fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sx .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sx .breadcrumb > li {

  display: inline-block;

}

#custom-html-sx .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sx .breadcrumb > .active {

  color: #777777;

}

#custom-html-sx .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-sx .pagination > li {

  display: inline;

}

#custom-html-sx .pagination > li > a,

#custom-html-sx .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sx .pagination > li:first-child > a,

#custom-html-sx .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sx .pagination > li:last-child > a,

#custom-html-sx .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sx .pagination > li > a:focus,

#custom-html-sx .pagination > li > a:hover,

#custom-html-sx .pagination > li > span:focus,

#custom-html-sx .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sx .pagination > .active > a,

#custom-html-sx .pagination > .active > a:focus,

#custom-html-sx .pagination > .active > a:hover,

#custom-html-sx .pagination > .active > span,

#custom-html-sx .pagination > .active > span:focus,

#custom-html-sx .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sx .pagination > .disabled > a,

#custom-html-sx .pagination > .disabled > a:focus,

#custom-html-sx .pagination > .disabled > a:hover,

#custom-html-sx .pagination > .disabled > span,

#custom-html-sx .pagination > .disabled > span:focus,

#custom-html-sx .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sx .pagination-lg > li > a,

#custom-html-sx .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sx .pagination-lg > li:first-child > a,

#custom-html-sx .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sx .pagination-lg > li:last-child > a,

#custom-html-sx .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sx .pagination-sm > li > a,

#custom-html-sx .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sx .pagination-sm > li:first-child > a,

#custom-html-sx .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sx .pagination-sm > li:last-child > a,

#custom-html-sx .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sx .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sx .pager li {

  display: inline;

}

#custom-html-sx .pager li > a,

#custom-html-sx .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sx .pager li > a:focus,

#custom-html-sx .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sx .pager .next > a,

#custom-html-sx .pager .next > span {

  float: right;

}

#custom-html-sx .pager .previous > a,

#custom-html-sx .pager .previous > span {

  float: left;

}

#custom-html-sx .pager .disabled > a,

#custom-html-sx .pager .disabled > a:focus,

#custom-html-sx .pager .disabled > a:hover,

#custom-html-sx .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sx .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-sx a.label:focus,

#custom-html-sx a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sx .label:empty {

  display: none;

}

#custom-html-sx .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sx .label-default {

  background-color: #777777;

}

#custom-html-sx .label-default[href]:focus,

#custom-html-sx .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sx .label-primary {

  background-color: #337ab7;

}

#custom-html-sx .label-primary[href]:focus,

#custom-html-sx .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sx .label-success {

  background-color: #5cb85c;

}

#custom-html-sx .label-success[href]:focus,

#custom-html-sx .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sx .label-info {

  background-color: #5bc0de;

}

#custom-html-sx .label-info[href]:focus,

#custom-html-sx .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sx .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sx .label-warning[href]:focus,

#custom-html-sx .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sx .label-danger {

  background-color: #d9534f;

}

#custom-html-sx .label-danger[href]:focus,

#custom-html-sx .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sx .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sx .badge:empty {

  display: none;

}

#custom-html-sx .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sx .btn-group-xs > .btn .badge,

#custom-html-sx .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sx a.badge:focus,

#custom-html-sx a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sx .list-group-item.active > .badge,

#custom-html-sx .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sx .list-group-item > .badge {

  float: right;

}

#custom-html-sx .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sx .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sx .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sx .jumbotron .h1,

#custom-html-sx .jumbotron h1 {

  color: inherit;

}

#custom-html-sx .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sx .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sx .container .jumbotron,

#custom-html-sx .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sx .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sx .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sx .container .jumbotron,

  #custom-html-sx .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sx .jumbotron .h1,

  #custom-html-sx .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-sx .carousel-control .glyphicon-chevron-left,

  #custom-html-sx .carousel-control .glyphicon-chevron-right,

  #custom-html-sx .carousel-control .icon-next,

  #custom-html-sx .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sx .carousel-control .glyphicon-chevron-left,

  #custom-html-sx .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sx .carousel-control .glyphicon-chevron-right,

  #custom-html-sx .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sx .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sx .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sx .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sx .thumbnail a > img,

#custom-html-sx .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sx a.thumbnail.active,

#custom-html-sx a.thumbnail:focus,

#custom-html-sx a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sx .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sx .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sx .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sx .alert .alert-link {

  font-weight: 700;

}

#custom-html-sx .alert > p,

#custom-html-sx .alert > ul {

  margin-bottom: 0;

}

#custom-html-sx .alert > p + p {

  margin-top: 5px;

}

#custom-html-sx .alert-dismissable,

#custom-html-sx .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sx .alert-dismissable .close,

#custom-html-sx .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sx .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sx .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sx .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sx .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sx .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sx .alert-info .alert-link {

  color: #000000;

}

#custom-html-sx .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sx .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sx .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sx .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sx .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sx .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sx .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sx .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sx .progress-bar-striped,

#custom-html-sx .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sx .progress-bar.active,

#custom-html-sx .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sx .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sx .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sx .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sx .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sx .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sx .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sx .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sx .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sx .media {

  margin-top: 15px;

}

#custom-html-sx .media:first-child {

  margin-top: 0;

}

#custom-html-sx .media,

#custom-html-sx .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sx .media-body {

  width: 10000px;

}

#custom-html-sx .media-object {

  display: block;

}

#custom-html-sx .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sx .media-right,

#custom-html-sx .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sx .media-left,

#custom-html-sx .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sx .media-body,

#custom-html-sx .media-left,

#custom-html-sx .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sx .media-middle {

  vertical-align: middle;

}

#custom-html-sx .media-bottom {

  vertical-align: bottom;

}

#custom-html-sx .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sx .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sx .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-sx .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-sx .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sx .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sx a.list-group-item,

#custom-html-sx button.list-group-item {

  color: #555555;

}

#custom-html-sx a.list-group-item .list-group-item-heading,

#custom-html-sx button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sx a.list-group-item:focus,

#custom-html-sx a.list-group-item:hover,

#custom-html-sx button.list-group-item:focus,

#custom-html-sx button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sx button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sx .list-group-item.disabled,

#custom-html-sx .list-group-item.disabled:focus,

#custom-html-sx .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sx .list-group-item.disabled .list-group-item-heading,

#custom-html-sx .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sx .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sx .list-group-item.disabled .list-group-item-text,

#custom-html-sx .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sx .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sx .list-group-item.active,

#custom-html-sx .list-group-item.active:focus,

#custom-html-sx .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sx .list-group-item.active .list-group-item-heading,

#custom-html-sx .list-group-item.active .list-group-item-heading > .small,

#custom-html-sx .list-group-item.active .list-group-item-heading > small,

#custom-html-sx .list-group-item.active:focus .list-group-item-heading,

#custom-html-sx .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sx .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sx .list-group-item.active:hover .list-group-item-heading,

#custom-html-sx .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sx .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sx .list-group-item.active .list-group-item-text,

#custom-html-sx .list-group-item.active:focus .list-group-item-text,

#custom-html-sx .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sx .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sx a.list-group-item-success,

#custom-html-sx button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sx a.list-group-item-success .list-group-item-heading,

#custom-html-sx button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sx a.list-group-item-success:focus,

#custom-html-sx a.list-group-item-success:hover,

#custom-html-sx button.list-group-item-success:focus,

#custom-html-sx button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sx a.list-group-item-success.active,

#custom-html-sx a.list-group-item-success.active:focus,

#custom-html-sx a.list-group-item-success.active:hover,

#custom-html-sx button.list-group-item-success.active,

#custom-html-sx button.list-group-item-success.active:focus,

#custom-html-sx button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sx .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sx a.list-group-item-info,

#custom-html-sx button.list-group-item-info {

  color: #31708f;

}

#custom-html-sx a.list-group-item-info .list-group-item-heading,

#custom-html-sx button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sx a.list-group-item-info:focus,

#custom-html-sx a.list-group-item-info:hover,

#custom-html-sx button.list-group-item-info:focus,

#custom-html-sx button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sx a.list-group-item-info.active,

#custom-html-sx a.list-group-item-info.active:focus,

#custom-html-sx a.list-group-item-info.active:hover,

#custom-html-sx button.list-group-item-info.active,

#custom-html-sx button.list-group-item-info.active:focus,

#custom-html-sx button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sx .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sx a.list-group-item-warning,

#custom-html-sx button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sx a.list-group-item-warning .list-group-item-heading,

#custom-html-sx button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sx a.list-group-item-warning:focus,

#custom-html-sx a.list-group-item-warning:hover,

#custom-html-sx button.list-group-item-warning:focus,

#custom-html-sx button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sx a.list-group-item-warning.active,

#custom-html-sx a.list-group-item-warning.active:focus,

#custom-html-sx a.list-group-item-warning.active:hover,

#custom-html-sx button.list-group-item-warning.active,

#custom-html-sx button.list-group-item-warning.active:focus,

#custom-html-sx button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sx .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sx a.list-group-item-danger,

#custom-html-sx button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sx a.list-group-item-danger .list-group-item-heading,

#custom-html-sx button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sx a.list-group-item-danger:focus,

#custom-html-sx a.list-group-item-danger:hover,

#custom-html-sx button.list-group-item-danger:focus,

#custom-html-sx button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sx a.list-group-item-danger.active,

#custom-html-sx a.list-group-item-danger.active:focus,

#custom-html-sx a.list-group-item-danger.active:hover,

#custom-html-sx button.list-group-item-danger.active,

#custom-html-sx button.list-group-item-danger.active:focus,

#custom-html-sx button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sx .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sx .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sx .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-sx .panel-body {

  padding: 10px 15px;

}

#custom-html-sx .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sx .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sx .panel-title > .small,

#custom-html-sx .panel-title > .small > a,

#custom-html-sx .panel-title > a,

#custom-html-sx .panel-title > small,

#custom-html-sx .panel-title > small > a {

  color: inherit;

}

#custom-html-sx .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sx .panel > .list-group,

#custom-html-sx .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sx .panel > .list-group .list-group-item,

#custom-html-sx .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sx .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sx .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sx .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sx .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sx .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sx .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sx .panel > .panel-collapse > .table,

#custom-html-sx .panel > .table,

#custom-html-sx .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sx .panel > .panel-collapse > .table caption,

#custom-html-sx .panel > .table caption,

#custom-html-sx .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sx .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sx .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sx .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sx .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sx .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sx .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sx .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sx .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sx .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sx .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sx .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sx .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sx .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sx .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sx .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sx .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sx .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sx .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sx .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sx .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sx .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sx .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sx .panel > .panel-body + .table,

#custom-html-sx .panel > .panel-body + .table-responsive,

#custom-html-sx .panel > .table + .panel-body,

#custom-html-sx .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sx .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sx .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sx .panel > .table-bordered,

#custom-html-sx .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sx .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sx .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sx .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sx .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sx .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sx .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sx .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sx .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sx .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sx .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sx .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sx .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sx .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sx .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sx .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sx .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sx .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sx .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sx .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sx .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sx .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sx .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sx .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sx .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sx .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sx .panel-group {

  margin-bottom: 20px;

}

#custom-html-sx .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sx .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sx .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sx .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sx .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sx .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sx .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sx .panel-default {

  border-color: #dddddd;

}

#custom-html-sx .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sx .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sx .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sx .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sx .panel-primary {

  border-color: #337ab7;

}

#custom-html-sx .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sx .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sx .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sx .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sx .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sx .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sx .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sx .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sx .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sx .panel-info {

  border-color: #bce8f1;

}

#custom-html-sx .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sx .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sx .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sx .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sx .panel-warning {

  border-color: #faebcc;

}

#custom-html-sx .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sx .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sx .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sx .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-sx .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sx .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sx .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sx .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sx .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sx .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sx .embed-responsive .embed-responsive-item,

#custom-html-sx .embed-responsive embed,

#custom-html-sx .embed-responsive iframe,

#custom-html-sx .embed-responsive object,

#custom-html-sx .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sx .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sx .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sx .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sx .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sx .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sx .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sx .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sx .close:focus,

#custom-html-sx .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sx button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sx .modal-open {

  overflow: hidden;

}

#custom-html-sx .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sx .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sx .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sx .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sx .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sx .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sx .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sx .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sx .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sx .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sx .modal-header .close {

  margin-top: -2px;

}

#custom-html-sx .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sx .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sx .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sx .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sx .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sx .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sx .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-sx .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sx .tooltip.in {

  opacity: 0.9;

}

#custom-html-sx .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sx .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sx .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sx .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sx .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sx .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sx .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sx .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sx .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sx .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sx .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sx .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sx .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sx .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sx .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sx .popover.top {

  margin-top: -10px;

}

#custom-html-sx .popover.right {

  margin-left: 10px;

}

#custom-html-sx .popover.bottom {

  margin-top: 10px;

}

#custom-html-sx .popover.left {

  margin-left: -10px;

}

#custom-html-sx .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sx .popover-content {

  padding: 9px 14px;

}

#custom-html-sx .popover > .arrow,

#custom-html-sx .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sx .popover > .arrow {

  border-width: 11px;

}

#custom-html-sx .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sx .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sx .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sx .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sx .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sx .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sx .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sx .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sx .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sx .carousel {

  position: relative;

}

#custom-html-sx .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sx .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sx .carousel-inner > .item > a > img,

#custom-html-sx .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sx .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sx .carousel-inner > .item.active.right,

  #custom-html-sx .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sx .carousel-inner > .item.active.left,

  #custom-html-sx .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sx .carousel-inner > .item.active,

  #custom-html-sx .carousel-inner > .item.next.left,

  #custom-html-sx .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sx .carousel-inner > .active,

#custom-html-sx .carousel-inner > .next,

#custom-html-sx .carousel-inner > .prev {

  display: block;

}

#custom-html-sx .carousel-inner > .active {

  left: 0;

}

#custom-html-sx .carousel-inner > .next,

#custom-html-sx .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sx .carousel-inner > .next {

  left: 100%;

}

#custom-html-sx .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sx .carousel-inner > .next.left,

#custom-html-sx .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sx .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sx .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sx .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sx .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sx .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sx .carousel-control:focus,

#custom-html-sx .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sx .carousel-control .glyphicon-chevron-left,

#custom-html-sx .carousel-control .glyphicon-chevron-right,

#custom-html-sx .carousel-control .icon-next,

#custom-html-sx .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sx .carousel-control .glyphicon-chevron-left,

#custom-html-sx .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sx .carousel-control .glyphicon-chevron-right,

#custom-html-sx .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sx .carousel-control .icon-next,

#custom-html-sx .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sx .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sx .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sx .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sx .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-sx .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sx .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sx .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-sx .btn-group-vertical > .btn-group:after,

#custom-html-sx .btn-group-vertical > .btn-group:before,

#custom-html-sx .btn-toolbar:after,

#custom-html-sx .btn-toolbar:before,

#custom-html-sx .clearfix:after,

#custom-html-sx .clearfix:before,

#custom-html-sx .container-fluid:after,

#custom-html-sx .container-fluid:before,

#custom-html-sx .container:after,

#custom-html-sx .container:before,

#custom-html-sx .dl-horizontal dd:after,

#custom-html-sx .dl-horizontal dd:before,

#custom-html-sx .form-horizontal .form-group:after,

#custom-html-sx .form-horizontal .form-group:before,

#custom-html-sx .modal-footer:after,

#custom-html-sx .modal-footer:before,

#custom-html-sx .modal-header:after,

#custom-html-sx .modal-header:before,

#custom-html-sx .nav:after,

#custom-html-sx .nav:before,

#custom-html-sx .navbar-collapse:after,

#custom-html-sx .navbar-collapse:before,

#custom-html-sx .navbar-header:after,

#custom-html-sx .navbar-header:before,

#custom-html-sx .navbar:after,

#custom-html-sx .navbar:before,

#custom-html-sx .pager:after,

#custom-html-sx .pager:before,

#custom-html-sx .panel-body:after,

#custom-html-sx .panel-body:before,

#custom-html-sx .row:after,

#custom-html-sx .row:before {

  display: table;

  content: " ";

}

#custom-html-sx .btn-group-vertical > .btn-group:after,

#custom-html-sx .btn-toolbar:after,

#custom-html-sx .clearfix:after,

#custom-html-sx .container-fluid:after,

#custom-html-sx .container:after,

#custom-html-sx .dl-horizontal dd:after,

#custom-html-sx .form-horizontal .form-group:after,

#custom-html-sx .modal-footer:after,

#custom-html-sx .modal-header:after,

#custom-html-sx .nav:after,

#custom-html-sx .navbar-collapse:after,

#custom-html-sx .navbar-header:after,

#custom-html-sx .navbar:after,

#custom-html-sx .pager:after,

#custom-html-sx .panel-body:after,

#custom-html-sx .row:after {

  clear: both;

}

#custom-html-sx .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sx .pull-right {

  float: right !important;

}

#custom-html-sx .pull-left {

  float: left !important;

}

#custom-html-sx .hide {

  display: none !important;

}

#custom-html-sx .show {

  display: block !important;

}

#custom-html-sx .invisible {

  visibility: hidden;

}

#custom-html-sx .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sx .hidden {

  display: none !important;

}

#custom-html-sx .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sx .visible-lg,

#custom-html-sx .visible-md,

#custom-html-sx .visible-sm,

#custom-html-sx .visible-xs {

  display: none !important;

}

#custom-html-sx .visible-lg-block,

#custom-html-sx .visible-lg-inline,

#custom-html-sx .visible-lg-inline-block,

#custom-html-sx .visible-md-block,

#custom-html-sx .visible-md-inline,

#custom-html-sx .visible-md-inline-block,

#custom-html-sx .visible-sm-block,

#custom-html-sx .visible-sm-inline,

#custom-html-sx .visible-sm-inline-block,

#custom-html-sx .visible-xs-block,

#custom-html-sx .visible-xs-inline,

#custom-html-sx .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sx .visible-sm {

    display: block !important;

  }

  #custom-html-sx table.visible-sm {

    display: table !important;

  }

  #custom-html-sx tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sx td.visible-sm,

  #custom-html-sx th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-sx .visible-sm-block {

    display: block !important;

  }

  #custom-html-sx .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-sx .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-sx .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sx .visible-md {

    display: block !important;

  }

  #custom-html-sx table.visible-md {

    display: table !important;

  }

  #custom-html-sx tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sx td.visible-md,

  #custom-html-sx th.visible-md {

    display: table-cell !important;

  }

  #custom-html-sx .visible-md-block {

    display: block !important;

  }

  #custom-html-sx .visible-md-inline {

    display: inline !important;

  }

  #custom-html-sx .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-sx .hidden-md {

    display: none !important;

  }

}

#custom-html-sx .visible-print {

  display: none !important;

}

#custom-html-sx .visible-print-block {

  display: none !important;

}

#custom-html-sx .visible-print-inline {

  display: none !important;

}

#custom-html-sx .visible-print-inline-block {

  display: none !important;

}

#custom-html-sx .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-sx .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sx .intl-tel-input .hide {

  display: none;

}

#custom-html-sx .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sx .intl-tel-input input,

#custom-html-sx .intl-tel-input input[type=tel],

#custom-html-sx .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sx .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sx .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sx .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sx .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sx .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sx .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sx .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sx .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sx .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-sx .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sx .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sx .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sx .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sx .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sx .intl-tel-input .country-list .country-name,

#custom-html-sx .intl-tel-input .country-list .dial-code,

#custom-html-sx .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sx .intl-tel-input .country-list .country-name,

#custom-html-sx .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sx .intl-tel-input.allow-dropdown input,

#custom-html-sx .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sx .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sx .intl-tel-input.separate-dial-code input,

#custom-html-sx .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sx .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sx .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sx .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sx .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sx .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sx .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sx .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sx .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sx .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sx .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sx .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sx .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sx .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sx .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sx .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sx .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sx .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sx .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-sx .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sx .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sx .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sx .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sx .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-sx .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sx .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sx .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sx .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-sx .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sx .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sx .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sx .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sx .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sx .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sx .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sx .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sx .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sx .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sx .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sx .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sx .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sx .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sx .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sx .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sx .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sx .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sx .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sx .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sx .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sx .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sx .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sx .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sx .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sx .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sx .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sx .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sx .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sx .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sx .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sx .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sx .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sx .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sx .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sx .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sx .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sx .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sx .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sx .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sx .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-sx .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sx .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sx .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sx .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sx .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sx .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sx .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sx .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sx .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sx .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sx .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sx .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sx .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sx .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sx .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sx .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sx .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sx .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-sx .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sx .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sx .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sx .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sx .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sx .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sx .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sx .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sx .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sx .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sx .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sx .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sx .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sx .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sx .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sx .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sx .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sx .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sx .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sx .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sx .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sx .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sx .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sx .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sx .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sx .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sx .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sx .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sx .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sx .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sx .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sx .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sx .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sx .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sx .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sx .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sx .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sx .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sx .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sx .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sx .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sx .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sx .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sx .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sx .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sx .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sx .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sx .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sx .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sx .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sx .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sx .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sx .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-sx .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sx .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sx .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sx .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sx .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sx .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sx .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sx .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sx .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sx .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sx .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sx .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sx .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sx .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sx .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sx .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sx .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sx .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sx .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sx .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sx .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sx .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sx .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sx .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sx .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sx .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sx .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sx .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sx .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sx .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sx .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sx .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sx .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sx .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sx .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sx .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sx .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sx .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sx .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sx .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sx .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sx .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sx .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sx .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sx .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sx .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sx .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sx .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sx .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sx .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sx .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sx .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sx .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sx .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sx .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sx .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sx .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sx .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sx .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sx .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sx .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sx .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sx .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sx .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sx .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sx .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sx .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sx .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sx .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sx .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sx .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sx .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sx .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sx .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sx .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sx .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sx .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sx .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sx .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sx .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sx .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sx .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sx .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sx .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sx .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sx .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sx .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sx .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sx .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sx .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sx .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sx .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sx .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sx .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sx .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sx .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sx .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sx .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sx .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sx .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sx .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sx .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sx .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sx .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sx .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sx .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sx .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sx .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sx .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sx .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sx .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sx .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sx .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sx .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sx .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sx .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sx .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sx .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sx .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sx .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sx .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sx .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sx .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sx .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sx .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sx .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sx .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sx .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sx .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sx .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sx .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sx .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sx .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sx .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sx .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sx .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sx .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sx body,

#custom-html-sx button,

#custom-html-sx input,

#custom-html-sx select,

#custom-html-sx textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sx h1,

#custom-html-sx h2,

#custom-html-sx h3,

#custom-html-sx h4,

#custom-html-sx h5,

#custom-html-sx h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-sx .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sx .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sx .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sx .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sx .navbar-main .navbar-nav > .active > a,

#custom-html-sx .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sx .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sx .navbar-main .navbar-nav > .open > a,

#custom-html-sx .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sx .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sx .navbar-main .navbar-nav > li > a:focus,

#custom-html-sx .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sx #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sx .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-sx .navbar-header {

    float: none;

  }

  #custom-html-sx .navbar-left,

  #custom-html-sx .navbar-right {

    float: none !important;

  }

  #custom-html-sx .navbar-toggle {

    display: block;

  }

  #custom-html-sx .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sx .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sx .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sx .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sx .navbar-nav > li {

    float: none;

  }

  #custom-html-sx .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sx .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-sx .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sx .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sx .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-sx ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sx ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sx ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-sx .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-sx .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sx .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sx .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sx .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sx .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-sx #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sx #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-sx .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sx a.list-group-item.active,

#custom-html-sx a.list-group-item.active:focus,

#custom-html-sx a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sx .dropdown-menu > li > a:focus,

#custom-html-sx .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sx input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sx .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sx body,

#custom-html-sx html {

  height: 100%;

}

#custom-html-sx section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sx section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sx section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sx section#header .search {

  margin: 20px 0;

}

#custom-html-sx section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sx section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sx section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sx section#main-content {

  margin-bottom: 60px;

}

#custom-html-sx .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sx section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sx section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sx section#footer {

    line-height: 32px;

  }

}

#custom-html-sx section#footer .back-to-top {

  float: right;

}

#custom-html-sx section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sx .adminreturndiv {

  display: none !important;

}

#custom-html-sx .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sx .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sx .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sx .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sx .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sx .navbar-main .navbar-toggle:focus,

#custom-html-sx .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sx .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sx .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-sx div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sx div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sx div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sx div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sx div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sx .h1,

  #custom-html-sx h1 {

    font-size: 26px;

  }

  #custom-html-sx .h2,

  #custom-html-sx h2 {

    font-size: 20px;

  }

  #custom-html-sx .h3,

  #custom-html-sx h3 {

    font-size: 16px;

  }

  #custom-html-sx .h4,

  #custom-html-sx h4 {

    font-size: 14px;

  }

  #custom-html-sx .h5,

  #custom-html-sx h5 {

    font-size: 12px;

  }

  #custom-html-sx .h6,

  #custom-html-sx h6 {

    font-size: 11px;

  }

  #custom-html-sx div.header-lined small {

    display: none;

  }

  #custom-html-sx .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-sx .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sx .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sx .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sx .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-sx div.credit-card {

    max-width: 250px;

  }

  #custom-html-sx div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sx div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sx div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sx div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sx div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-sx .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sx .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sx .margin-10 {

  margin: 10px;

}

#custom-html-sx .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sx .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sx .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sx .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sx .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sx .input-inline {

  display: inline-block;

}

#custom-html-sx .input-inline-100 {

  width: 100px;

}

#custom-html-sx .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-sx .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sx .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sx .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-sx i.icon-rss {

  color: #ff6600;

}

#custom-html-sx section#main-menu {

  background-color: #000000;

}

#custom-html-sx section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sx section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sx section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sx section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sx section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sx section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sx section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sx section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sx section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sx section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sx section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sx section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-sx .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-sx .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-sx .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sx .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sx .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-sx #stepResults {

    font-size: 14px;

  }

  #custom-html-sx #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sx div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-sx .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sx .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sx .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sx .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sx .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sx .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sx .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sx .home-shortcuts li span {

  display: none;

}

#custom-html-sx .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sx .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-sx .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sx .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sx .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sx .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sx .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sx .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sx .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sx .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sx .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sx .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sx .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sx .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sx .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sx .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sx .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sx .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sx .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sx .tiles .tile a {

  text-decoration: none;

}

#custom-html-sx .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sx .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sx .tiles .tile:last-child {

  border: 0;

}

#custom-html-sx .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sx .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sx .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sx .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sx .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sx .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sx .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sx .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sx .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sx .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sx .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sx .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sx .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sx .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sx .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sx .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sx .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sx .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sx .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sx .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sx .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sx .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sx .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sx .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sx .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sx .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sx .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sx .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sx .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sx .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sx .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sx .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sx .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sx .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sx .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sx .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sx .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sx .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sx .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sx .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sx .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sx ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sx ul.top-nav > li,

#custom-html-sx ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sx ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sx ul.top-nav > li:active > a,

#custom-html-sx ul.top-nav > li:focus > a,

#custom-html-sx ul.top-nav > li:hover > a,

#custom-html-sx ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sx ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sx ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sx ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sx ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-sx div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sx div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sx div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sx div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sx div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sx div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sx .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sx .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-sx .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sx .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-sx .domain-check-availability {

  width: 100px;

}

#custom-html-sx .domain-step-options {

  min-height: 300px;

}

#custom-html-sx .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sx .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sx .domain-checker-invalid,

#custom-html-sx .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sx div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sx .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sx .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sx .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sx a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sx .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sx .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sx .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-sx .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sx .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sx .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sx .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sx .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sx .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sx .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-sx .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sx .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sx .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sx .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sx .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sx .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sx .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sx .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sx .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sx .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sx .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sx .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sx .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sx .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sx div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sx div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sx div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sx .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sx .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sx .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sx .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sx div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sx div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-sx .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sx .product-status-pending {

  background-color: #f89406;

}

#custom-html-sx .product-status-active {

  background-color: #46a546;

}

#custom-html-sx .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sx .product-status-cancelled,

#custom-html-sx .product-status-terminated {

  background-color: #666666;

}

#custom-html-sx .product-status-fraud {

  background-color: #000000;

}

#custom-html-sx .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sx div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sx .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sx .ssl-inactive {

  cursor: pointer;

}

#custom-html-sx .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sx .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sx .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sx .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sx .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sx .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sx .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sx .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sx .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-sx .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sx .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sx .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sx .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sx .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sx .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sx table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sx .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sx table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sx .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-sx table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sx .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sx .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sx .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sx table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sx table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sx table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sx .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sx .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sx .status-pending {

  color: #d9534f;

}

#custom-html-sx .status-pending.transfer {

  color: #a68500;

}

#custom-html-sx .status-active,

#custom-html-sx .status-completed,

#custom-html-sx .status-open {

  color: #3fad46;

}

#custom-html-sx .status-suspended {

  color: #f0ad4e;

}

#custom-html-sx .status-customer-reply {

  color: #ff6600;

}

#custom-html-sx .status-answered,

#custom-html-sx .status-fraud {

  color: #000000;

}

#custom-html-sx .status-expired,

#custom-html-sx .status-transferred.away {

  color: #004258;

}

#custom-html-sx .status-cancelled {

  color: #87939f;

}

#custom-html-sx .status-terminated {

  color: #666666;

}

#custom-html-sx .status-onhold {

  color: #224488;

}

#custom-html-sx .status-inprogress {

  color: #cc0000;

}

#custom-html-sx .status-closed {

  color: #888888;

}

#custom-html-sx .status-paid {

  color: #498302;

}

#custom-html-sx .status-unpaid {

  color: #ed3e48;

}

#custom-html-sx .status-collections {

  color: #9a141e;

}

#custom-html-sx .status-refunded {

  color: #319fc3;

}

#custom-html-sx .status-delivered {

  color: #224488;

}

#custom-html-sx .status-accepted {

  color: #498302;

}

#custom-html-sx .status-dead,

#custom-html-sx .status-lost {

  color: #000000;

}

#custom-html-sx .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sx .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sx .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sx .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sx .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sx .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sx .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-sx .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-sx .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sx .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sx .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sx .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sx .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sx .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sx .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sx .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sx .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sx .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sx .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sx .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sx .ticket-reply .rating,

#custom-html-sx .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sx .ticket-reply .rating span.star,

#custom-html-sx .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sx .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sx .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sx .ticket-reply .rating span.star:before,

#custom-html-sx .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sx .ticket-reply .rating span.star:hover:before,

#custom-html-sx .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sx .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sx .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sx .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sx .ticket-reply .clear {

  clear: both;

}

#custom-html-sx .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sx .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sx .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sx .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sx .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sx .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sx .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sx .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sx .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sx .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sx .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sx .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sx .popover-user-notifications ul li i.far,

#custom-html-sx .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sx .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sx .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sx .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sx .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sx .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sx .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sx .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sx .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sx .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sx div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sx div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sx div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sx div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sx div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sx div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sx div.credit-card div.end {

  clear: both;

}

#custom-html-sx .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sx .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sx .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sx .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sx .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sx .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sx div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sx div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sx div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sx div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sx div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sx div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sx .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-sx div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sx div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sx div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sx #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sx .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sx .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sx .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sx .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sx .kb-category a small {

  color: #888888;

}

#custom-html-sx .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sx .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sx .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sx .kbarticles a.admin-inline-edit,

#custom-html-sx .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sx h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sx .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sx .kb-article-title h2 {

  margin: 0;

}

#custom-html-sx .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sx .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sx .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sx .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sx .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sx .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sx .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sx .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sx #stepResults {

  font-size: 20px;

}

#custom-html-sx #stepResults .label {

  font-size: 20px;

}

#custom-html-sx h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sx h3.with-badge i,

#custom-html-sx h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sx h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-sx .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sx .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sx a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sx a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sx .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sx .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sx .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sx .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sx .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sx .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sx .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sx .login-popover {

  font-size: 12px;

}

#custom-html-sx .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sx .login-popover hr {

  margin: 5px 0;

}

#custom-html-sx tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sx tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sx .error-container {

  text-align: center;

}

#custom-html-sx .error-container h1 {

  margin-top: 40px;

}

#custom-html-sx .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sx .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sx .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sx .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sx .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sx #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sx #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sx #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sx .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-sx #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sx #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sx #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sx #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sx .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sx .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sx .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sx .email-verification .btn:active,

#custom-html-sx .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sx .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sx .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sx .email-verification .far,

#custom-html-sx .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-sx .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sx .email-verification.success .far,

#custom-html-sx .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sx .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sx .email-verification.failed .far,

#custom-html-sx .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sx .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-sx .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sx .md-editor > .md-preview,

#custom-html-sx .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sx div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sx .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sx .small-font {

  font-size: 0.9em;

}

#custom-html-sx .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sx .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sx .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sx .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sx .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sx .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sx .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sx .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sx .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sx .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sx .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sx .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sx .panel-heading i.fab,

#custom-html-sx .panel-heading i.fal,

#custom-html-sx .panel-heading i.far,

#custom-html-sx .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sx .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sx .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sx .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sx .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sx .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sx .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sx .panel-sidebar .list-group-item.disabled,

#custom-html-sx .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sx .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sx .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sx .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sx .panel-sidebar a.list-group-item.active,

#custom-html-sx .panel-sidebar a.list-group-item.active:focus,

#custom-html-sx .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sx .panel-sidebar a.list-group-item.active i,

#custom-html-sx .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sx .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sx .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sx .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sx .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sx .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sx .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sx .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sx .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sx .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sx .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sx .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sx .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sx .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sx .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sx .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-sx .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sx .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sx .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sx .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sx .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sx .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sx .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sx .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sx .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sx .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sx .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sx .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sx .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-sx .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sx .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sx .promo-banner p {

  margin: 5px 0;

}

#custom-html-sx .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sx .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-sx .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sx .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sx .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sx .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sx .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sx .promo-banner-slim {

  padding: 10px;

}

#custom-html-sx .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sx .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sx .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sx .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sx .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sx .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sx .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sx .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sx .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sx .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sx .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sx .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sx .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sx .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sx .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sx .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sx .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sx .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sx .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sx .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sx .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sx .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sx .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sx .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sx .panel-mc-sso .btn,

#custom-html-sx .panel-mc-sso .form-control,

#custom-html-sx .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sx .panel-mc-sso small {

  display: block;

}

#custom-html-sx .social-signin-btns {

  text-align: center;

}

#custom-html-sx .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sx .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sx .btn-social i.far,

#custom-html-sx .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-facebook.active,

#custom-html-sx .btn-facebook:active,

#custom-html-sx .btn-facebook:focus,

#custom-html-sx .btn-facebook:hover,

#custom-html-sx .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-facebook.active,

#custom-html-sx .btn-facebook:active,

#custom-html-sx .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sx .btn-facebook.disabled,

#custom-html-sx .btn-facebook.disabled.active,

#custom-html-sx .btn-facebook.disabled:active,

#custom-html-sx .btn-facebook.disabled:focus,

#custom-html-sx .btn-facebook.disabled:hover,

#custom-html-sx .btn-facebook[disabled],

#custom-html-sx .btn-facebook[disabled].active,

#custom-html-sx .btn-facebook[disabled]:active,

#custom-html-sx .btn-facebook[disabled]:focus,

#custom-html-sx .btn-facebook[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-facebook,

#custom-html-sx fieldset[disabled] .btn-facebook.active,

#custom-html-sx fieldset[disabled] .btn-facebook:active,

#custom-html-sx fieldset[disabled] .btn-facebook:focus,

#custom-html-sx fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-google.active,

#custom-html-sx .btn-google:active,

#custom-html-sx .btn-google:focus,

#custom-html-sx .btn-google:hover,

#custom-html-sx .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-google.active,

#custom-html-sx .btn-google:active,

#custom-html-sx .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sx .btn-google-plus.disabled.active,

#custom-html-sx .btn-google-plus.disabled:active,

#custom-html-sx .btn-google-plus.disabled:focus,

#custom-html-sx .btn-google-plus[disabled].active,

#custom-html-sx .btn-google-plus[disabled]:active,

#custom-html-sx .btn-google-plus[disabled]:focus,

#custom-html-sx .btn-google-plus[disabled]:hover,

#custom-html-sx .btn-google.disabled,

#custom-html-sx .btn-google.disabled:hover,

#custom-html-sx .btn-google[disabled],

#custom-html-sx fieldset[disabled] .btn-google,

#custom-html-sx fieldset[disabled] .btn-google-plus.active,

#custom-html-sx fieldset[disabled] .btn-google-plus:active,

#custom-html-sx fieldset[disabled] .btn-google-plus:focus,

#custom-html-sx fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-twitter.active,

#custom-html-sx .btn-twitter:active,

#custom-html-sx .btn-twitter:focus,

#custom-html-sx .btn-twitter:hover,

#custom-html-sx .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-twitter.active,

#custom-html-sx .btn-twitter:active,

#custom-html-sx .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sx .btn-twitter.disabled,

#custom-html-sx .btn-twitter.disabled.active,

#custom-html-sx .btn-twitter.disabled:active,

#custom-html-sx .btn-twitter.disabled:focus,

#custom-html-sx .btn-twitter.disabled:hover,

#custom-html-sx .btn-twitter[disabled],

#custom-html-sx .btn-twitter[disabled].active,

#custom-html-sx .btn-twitter[disabled]:active,

#custom-html-sx .btn-twitter[disabled]:focus,

#custom-html-sx .btn-twitter[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-twitter,

#custom-html-sx fieldset[disabled] .btn-twitter.active,

#custom-html-sx fieldset[disabled] .btn-twitter:active,

#custom-html-sx fieldset[disabled] .btn-twitter:focus,

#custom-html-sx fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .providerPreLinking {

  min-height: 52px;

}

#custom-html-sx .providerLinkingFeedback {

  display: none;

}

#custom-html-sx #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sx #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sx #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sx #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sx .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sx #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sx #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sx #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sx #registration .field,

#custom-html-sx #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sx #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sx #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sx #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sx #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sx #registration textarea.field {

  height: auto;

}

#custom-html-sx #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sx #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sx #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sx #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sx #registration .field[disabled],

#custom-html-sx #registration .field[readonly],

#custom-html-sx #registration .form-control[disabled],

#custom-html-sx #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sx #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;


  font-size: 12px;

}

#custom-html-sx .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sx .upgrade .product-to-be-upgraded h4,

#custom-html-sx .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sx .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sx .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sx .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sx .upgrade .products .product .current,

#custom-html-sx .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sx .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sx .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sx .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-sx .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sx .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sx .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sx .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sx .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sx .upgrade .products .far,

#custom-html-sx .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sx .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sx .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sx .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sx .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sx .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sx .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .bootstrap-switch input[type=checkbox],

#custom-html-sx .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sx .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sx .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sx .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sx .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sx .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sx .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sx .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sx .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sx .md-editor .md-footer,

#custom-html-sx .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sx .md-editor > .md-header {

  margin: 0;

}

#custom-html-sx .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sx .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sx .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sx .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sx .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sx .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sx .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sx .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-input,

#custom-html-sx .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sx .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sx .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sx .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sx .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sx .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sx .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sx .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sx .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sx .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sx table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sx table.dataTable td,

#custom-html-sx table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sx table.dataTable td.dataTables_empty,

#custom-html-sx table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sx table.dataTable.nowrap td,

#custom-html-sx table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sx table.dataTable thead > tr > td.sorting,

#custom-html-sx table.dataTable thead > tr > td.sorting_asc,

#custom-html-sx table.dataTable thead > tr > td.sorting_desc,

#custom-html-sx table.dataTable thead > tr > th.sorting,

#custom-html-sx table.dataTable thead > tr > th.sorting_asc,

#custom-html-sx table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sx table.dataTable thead > tr > td:active,

#custom-html-sx table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sx table.dataTable thead .sorting,

#custom-html-sx table.dataTable thead .sorting_asc,

#custom-html-sx table.dataTable thead .sorting_asc_disabled,

#custom-html-sx table.dataTable thead .sorting_desc,

#custom-html-sx table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sx table.dataTable thead .sorting:after,

#custom-html-sx table.dataTable thead .sorting_asc:after,

#custom-html-sx table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sx table.dataTable thead .sorting_desc:after,

#custom-html-sx table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sx table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sx table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sx table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sx table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sx table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sx div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sx div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sx div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sx div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sx div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sx div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sx div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sx div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-sx table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sx table.dataTable.table-condensed .sorting:after,

#custom-html-sx table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sx table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sx table.table-bordered.dataTable td,

#custom-html-sx table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sx table.table-bordered.dataTable td:last-child,

#custom-html-sx table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sx table.table-bordered.dataTable tbody td,

#custom-html-sx table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sx div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sx div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sx div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-sx div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sx table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sx table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sx table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sx table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sx table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sx table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sx table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sx table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sx table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sx table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sx table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sx table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sx table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sx table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sx table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sx div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sx div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sx div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sx div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sx div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sx div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-sx div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sx .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sx .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sx .multiselect-container > li {

  padding: 0;

}

#custom-html-sx .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sx .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sx .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sx .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sx .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sx .multiselect-container > li > a > label.checkbox,

#custom-html-sx .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sx .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sx .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sx .form-inline .multiselect-container label.checkbox,

#custom-html-sx .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sx .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sx .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-sx html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-sx body {

  margin: 0;

}

#custom-html-sx article,

#custom-html-sx aside,

#custom-html-sx details,

#custom-html-sx figcaption,

#custom-html-sx figure,

#custom-html-sx footer,

#custom-html-sx header,

#custom-html-sx hgroup,

#custom-html-sx main,

#custom-html-sx menu,

#custom-html-sx nav,

#custom-html-sx section,

#custom-html-sx summary {

  display: block;

}

#custom-html-sx audio,

#custom-html-sx canvas,

#custom-html-sx progress,

#custom-html-sx video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-sx audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-sx [hidden],

#custom-html-sx template {

  display: none;

}

#custom-html-sx a {

  background-color: transparent;

}

#custom-html-sx a:active,

#custom-html-sx a:hover {

  outline: 0;

}

#custom-html-sx abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-sx b,

#custom-html-sx strong {

  font-weight: 700;

}

#custom-html-sx dfn {

  font-style: italic;

}

#custom-html-sx h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-sx mark {

  color: #000;

  background: #ffff00;

}

#custom-html-sx small {

  font-size: 80%;

}

#custom-html-sx sub,

#custom-html-sx sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-sx sup {

  top: -0.5em;

}

#custom-html-sx sub {

  bottom: -0.25em;

}

#custom-html-sx img {

  border: 0;

}

#custom-html-sx svg:not(:root) {

  overflow: hidden;

}

#custom-html-sx figure {

  margin: 1em 40px;

}

#custom-html-sx hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sx pre {

  overflow: auto;

}

#custom-html-sx code,

#custom-html-sx kbd,

#custom-html-sx pre,

#custom-html-sx samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-sx button,

#custom-html-sx input,

#custom-html-sx optgroup,

#custom-html-sx select,

#custom-html-sx textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-sx button {

  overflow: visible;

}

#custom-html-sx button,

#custom-html-sx select {

  text-transform: none;

}

#custom-html-sx button,

#custom-html-sx html input[type=button],

#custom-html-sx input[type=reset],

#custom-html-sx input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-sx button[disabled],

#custom-html-sx html input[disabled] {

  cursor: default;

}

#custom-html-sx button::-moz-focus-inner,

#custom-html-sx input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-sx input {

  line-height: normal;

}

#custom-html-sx input[type=checkbox],

#custom-html-sx input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-sx input[type=number]::-webkit-inner-spin-button,

#custom-html-sx input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-sx input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-sx input[type=search]::-webkit-search-cancel-button,

#custom-html-sx input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-sx fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-sx legend {

  padding: 0;

  border: 0;

}

#custom-html-sx textarea {

  overflow: auto;

}

#custom-html-sx optgroup {

  font-weight: 700;

}

#custom-html-sx table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-sx td,

#custom-html-sx th {

  padding: 0;

}

@media print {

  #custom-html-sx *,

  #custom-html-sx :after,

  #custom-html-sx :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-sx a,

  #custom-html-sx a:visited {

    text-decoration: underline;

  }

  #custom-html-sx a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-sx abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-sx a[href^="#"]:after,

  #custom-html-sx a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-sx blockquote,

  #custom-html-sx pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-sx thead {

    display: table-header-group;

  }

  #custom-html-sx img,

  #custom-html-sx tr {

    page-break-inside: avoid;

  }

  #custom-html-sx img {

    max-width: 100% !important;

  }

  #custom-html-sx h2,

  #custom-html-sx h3,

  #custom-html-sx p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-sx h2,

  #custom-html-sx h3 {

    page-break-after: avoid;

  }

  #custom-html-sx .navbar {

    display: none;

  }

  #custom-html-sx .btn > .caret,

  #custom-html-sx .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-sx .label {

    border: 1px solid #000000;

  }

  #custom-html-sx .table {

    border-collapse: collapse !important;

  }

  #custom-html-sx .table td,

  #custom-html-sx .table th {

    background-color: #ffffff !important;

  }

  #custom-html-sx .table-bordered td,

  #custom-html-sx .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-sx .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-sx .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-sx .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-sx .glyphicon-eur:before,

#custom-html-sx .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-sx .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-sx .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-sx .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-sx .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-sx .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-sx .glyphicon-music:before {

  content: "\e002";

}

#custom-html-sx .glyphicon-search:before {

  content: "\e003";

}

#custom-html-sx .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-sx .glyphicon-star:before {

  content: "\e006";

}

#custom-html-sx .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-sx .glyphicon-user:before {

  content: "\e008";

}

#custom-html-sx .glyphicon-film:before {

  content: "\e009";

}

#custom-html-sx .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-sx .glyphicon-th:before {

  content: "\e011";

}

#custom-html-sx .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-sx .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-sx .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-sx .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-sx .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-sx .glyphicon-off:before {

  content: "\e017";

}

#custom-html-sx .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-sx .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-sx .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-sx .glyphicon-home:before {

  content: "\e021";

}

#custom-html-sx .glyphicon-file:before {

  content: "\e022";

}

#custom-html-sx .glyphicon-time:before {

  content: "\e023";

}

#custom-html-sx .glyphicon-road:before {

  content: "\e024";

}

#custom-html-sx .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-sx .glyphicon-download:before {

  content: "\e026";

}

#custom-html-sx .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-sx .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-sx .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-sx .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-sx .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-sx .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-sx .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-sx .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-sx .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-sx .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-sx .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-sx .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-sx .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-sx .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-sx .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-sx .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-sx .glyphicon-book:before {

  content: "\e043";

}

#custom-html-sx .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-sx .glyphicon-print:before {

  content: "\e045";

}

#custom-html-sx .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-sx .glyphicon-font:before {

  content: "\e047";

}

#custom-html-sx .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-sx .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-sx .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-sx .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-sx .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-sx .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-sx .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-sx .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-sx .glyphicon-list:before {

  content: "\e056";

}

#custom-html-sx .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-sx .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-sx .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-sx .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-sx .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-sx .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-sx .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-sx .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-sx .glyphicon-share:before {

  content: "\e066";

}

#custom-html-sx .glyphicon-check:before {

  content: "\e067";

}

#custom-html-sx .glyphicon-move:before {

  content: "\e068";

}

#custom-html-sx .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-sx .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-sx .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-sx .glyphicon-play:before {

  content: "\e072";

}

#custom-html-sx .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-sx .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-sx .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-sx .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-sx .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-sx .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-sx .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-sx .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-sx .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-sx .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-sx .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-sx .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-sx .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-sx .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-sx .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-sx .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-sx .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-sx .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-sx .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-sx .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-sx .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-sx .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-sx .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-sx .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-sx .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-sx .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-sx .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-sx .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-sx .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-sx .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-sx .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-sx .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-sx .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-sx .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-sx .glyphicon-random:before {

  content: "\e110";

}

#custom-html-sx .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-sx .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-sx .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-sx .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-sx .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-sx .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-sx .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-sx .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-sx .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-sx .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-sx .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-sx .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-sx .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-sx .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-sx .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-sx .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-sx .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-sx .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-sx .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-sx .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-sx .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-sx .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-sx .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-sx .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-sx .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-sx .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-sx .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-sx .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-sx .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-sx .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-sx .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-sx .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-sx .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-sx .glyphicon-link:before {

  content: "\e144";

}

#custom-html-sx .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-sx .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-sx .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-sx .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-sx .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-sx .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-sx .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-sx .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-sx .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-sx .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-sx .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-sx .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-sx .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-sx .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-sx .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-sx .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-sx .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-sx .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-sx .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-sx .glyphicon-record:before {

  content: "\e165";

}

#custom-html-sx .glyphicon-save:before {

  content: "\e166";

}

#custom-html-sx .glyphicon-open:before {

  content: "\e167";

}

#custom-html-sx .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-sx .glyphicon-import:before {

  content: "\e169";

}

#custom-html-sx .glyphicon-export:before {

  content: "\e170";

}

#custom-html-sx .glyphicon-send:before {

  content: "\e171";

}

#custom-html-sx .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-sx .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-sx .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-sx .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-sx .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-sx .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-sx .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-sx .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-sx .glyphicon-header:before {

  content: "\e180";

}

#custom-html-sx .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-sx .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-sx .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-sx .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-sx .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-sx .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-sx .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-sx .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-sx .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-sx .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-sx .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-sx .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-sx .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-sx .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-sx .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-sx .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-sx .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-sx .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-sx .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-sx .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-sx .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-sx .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-sx .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-sx .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-sx .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-sx .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-sx .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-sx .glyphicon-king:before {

  content: "\e211";

}

#custom-html-sx .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-sx .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-sx .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-sx .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-sx .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-sx .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-sx .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-sx .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-sx .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-sx .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-sx .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-sx .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-sx .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-sx .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-sx .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-sx .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-sx .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-sx .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-sx .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-sx .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-sx .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-sx .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-sx .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-sx .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-sx .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-sx .glyphicon-education:before {

  content: "\e233";

}

#custom-html-sx .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-sx .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-sx .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-sx .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-sx .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-sx .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-sx .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-sx .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-sx .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-sx .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-sx .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-sx .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-sx .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-sx .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-sx .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-sx .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-sx .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-sx .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-sx .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-sx .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-sx .glyphicon-console:before {

  content: "\e254";

}

#custom-html-sx .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-sx .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-sx .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-sx .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-sx .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-sx .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-sx * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sx :after,

#custom-html-sx :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sx html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-sx body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-sx button,

#custom-html-sx input,

#custom-html-sx select,

#custom-html-sx textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-sx a {

  color: #000;

  text-decoration: none;

}

#custom-html-sx a:focus,

#custom-html-sx a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-sx a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sx figure {

  margin: 0;

}

#custom-html-sx img {

  vertical-align: middle;

}

#custom-html-sx .carousel-inner > .item > a > img,

#custom-html-sx .carousel-inner > .item > img,

#custom-html-sx .img-responsive,

#custom-html-sx .thumbnail a > img,

#custom-html-sx .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-sx .img-rounded {

  border-radius: 6px;

}

#custom-html-sx .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-sx .img-circle {

  border-radius: 50%;

}

#custom-html-sx hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-sx .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-sx .sr-only-focusable:active,

#custom-html-sx .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-sx [role=button] {

  cursor: pointer;

}

#custom-html-sx .h1,

#custom-html-sx .h2,

#custom-html-sx .h3,

#custom-html-sx .h4,

#custom-html-sx .h5,

#custom-html-sx .h6,

#custom-html-sx h1,

#custom-html-sx h2,

#custom-html-sx h3,

#custom-html-sx h4,

#custom-html-sx h5,

#custom-html-sx h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-sx .h1 .small,

#custom-html-sx .h1 small,

#custom-html-sx .h2 .small,

#custom-html-sx .h2 small,

#custom-html-sx .h3 .small,

#custom-html-sx .h3 small,

#custom-html-sx .h4 .small,

#custom-html-sx .h4 small,

#custom-html-sx .h5 .small,

#custom-html-sx .h5 small,

#custom-html-sx .h6 .small,

#custom-html-sx .h6 small,

#custom-html-sx h1 .small,

#custom-html-sx h1 small,

#custom-html-sx h2 .small,

#custom-html-sx h2 small,

#custom-html-sx h3 .small,

#custom-html-sx h3 small,

#custom-html-sx h4 .small,

#custom-html-sx h4 small,

#custom-html-sx h5 .small,

#custom-html-sx h5 small,

#custom-html-sx h6 .small,

#custom-html-sx h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-sx .h1,

#custom-html-sx .h2,

#custom-html-sx .h3,

#custom-html-sx h1,

#custom-html-sx h2,

#custom-html-sx h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-sx .h1 .small,

#custom-html-sx .h1 small,

#custom-html-sx .h2 .small,

#custom-html-sx .h2 small,

#custom-html-sx .h3 .small,

#custom-html-sx .h3 small,

#custom-html-sx h1 .small,

#custom-html-sx h1 small,

#custom-html-sx h2 .small,

#custom-html-sx h2 small,

#custom-html-sx h3 .small,

#custom-html-sx h3 small {

  font-size: 65%;

}

#custom-html-sx .h4,

#custom-html-sx .h5,

#custom-html-sx .h6,

#custom-html-sx h4,

#custom-html-sx h5,

#custom-html-sx h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sx .h4 .small,

#custom-html-sx .h4 small,

#custom-html-sx .h5 .small,

#custom-html-sx .h5 small,

#custom-html-sx .h6 .small,

#custom-html-sx .h6 small,

#custom-html-sx h4 .small,

#custom-html-sx h4 small,

#custom-html-sx h5 .small,

#custom-html-sx h5 small,

#custom-html-sx h6 .small,

#custom-html-sx h6 small {

  font-size: 75%;

}

#custom-html-sx .h1,

#custom-html-sx h1 {

  font-size: 36px;

}

#custom-html-sx .h2,

#custom-html-sx h2 {

  font-size: 30px;

}

#custom-html-sx .h3,

#custom-html-sx h3 {

  font-size: 24px;

}

#custom-html-sx .h4,

#custom-html-sx h4 {

  font-size: 18px;

}

#custom-html-sx .h5,

#custom-html-sx h5 {

  font-size: 14px;

}

#custom-html-sx .h6,

#custom-html-sx h6 {

  font-size: 12px;

}

#custom-html-sx p {

  margin: 0 0 10px;

}

#custom-html-sx .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-sx .lead {

    font-size: 21px;

  }

}

#custom-html-sx .small,

#custom-html-sx small {

  font-size: 85%;

}

#custom-html-sx .mark,

#custom-html-sx mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-sx .text-left {

  text-align: left;

}

#custom-html-sx .text-right {

  text-align: right;

}

#custom-html-sx .text-center {

  text-align: center;

}

#custom-html-sx .text-justify {

  text-align: justify;

}

#custom-html-sx .text-nowrap {

  white-space: nowrap;

}

#custom-html-sx .text-lowercase {

  text-transform: lowercase;

}

#custom-html-sx .text-uppercase {

  text-transform: uppercase;

}

#custom-html-sx .text-capitalize {

  text-transform: capitalize;

}

#custom-html-sx .text-muted {

  color: #777777;

}

#custom-html-sx .text-primary {

  color: #000000;

}

#custom-html-sx a.text-primary:focus,

#custom-html-sx a.text-primary:hover {

  color: #000000;

}

#custom-html-sx .text-success {

  color: #3c763d;

}

#custom-html-sx a.text-success:focus,

#custom-html-sx a.text-success:hover {

  color: #2b542c;

}

#custom-html-sx .text-info {

  color: #31708f;

}

#custom-html-sx a.text-info:focus,

#custom-html-sx a.text-info:hover {

  color: #000000;

}

#custom-html-sx .text-warning {

  color: #8a6d3b;

}

#custom-html-sx a.text-warning:focus,

#custom-html-sx a.text-warning:hover {

  color: #66512c;

}

#custom-html-sx .text-danger {

  color: #a94442;

}

#custom-html-sx a.text-danger:focus,

#custom-html-sx a.text-danger:hover {

  color: #843534;

}

#custom-html-sx .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-sx a.bg-primary:focus,

#custom-html-sx a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-sx .bg-success {

  background-color: #dff0d8;

}

#custom-html-sx a.bg-success:focus,

#custom-html-sx a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-sx .bg-info {

  background-color: #d9edf7;

}

#custom-html-sx a.bg-info:focus,

#custom-html-sx a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-sx .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-sx a.bg-warning:focus,

#custom-html-sx a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-sx .bg-danger {

  background-color: #f2dede;

}

#custom-html-sx a.bg-danger:focus,

#custom-html-sx a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-sx .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sx ol,

#custom-html-sx ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-sx ol ol,

#custom-html-sx ol ul,

#custom-html-sx ul ol,

#custom-html-sx ul ul {

  margin-bottom: 0;

}

#custom-html-sx .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-sx .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-sx .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-sx dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-sx dd,

#custom-html-sx dt {

  line-height: 1.42857143;

}

#custom-html-sx dt {

  font-weight: 700;

}

#custom-html-sx dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sx .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-sx .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-sx abbr[data-original-title],

#custom-html-sx abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-sx .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-sx blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-sx blockquote ol:last-child,

#custom-html-sx blockquote p:last-child,

#custom-html-sx blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-sx blockquote .small,

#custom-html-sx blockquote footer,

#custom-html-sx blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-sx blockquote .small:before,

#custom-html-sx blockquote footer:before,

#custom-html-sx blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-sx .blockquote-reverse,

#custom-html-sx blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-sx .blockquote-reverse .small:before,

#custom-html-sx .blockquote-reverse footer:before,

#custom-html-sx .blockquote-reverse small:before,

#custom-html-sx blockquote.pull-right .small:before,

#custom-html-sx blockquote.pull-right footer:before,

#custom-html-sx blockquote.pull-right small:before {

  content: '';

}

#custom-html-sx .blockquote-reverse .small:after,

#custom-html-sx .blockquote-reverse footer:after,

#custom-html-sx .blockquote-reverse small:after,

#custom-html-sx blockquote.pull-right .small:after,

#custom-html-sx blockquote.pull-right footer:after,

#custom-html-sx blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-sx address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-sx code,

#custom-html-sx kbd,

#custom-html-sx pre,

#custom-html-sx samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-sx code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-sx kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-sx kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sx pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sx pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-sx .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-sx .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-sx .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-sx .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-sx .container {

    width: 1170px;

  }

}

#custom-html-sx .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sx .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-sx .col-lg-1,

#custom-html-sx .col-lg-10,

#custom-html-sx .col-lg-11,

#custom-html-sx .col-lg-12,

#custom-html-sx .col-lg-2,

#custom-html-sx .col-lg-3,

#custom-html-sx .col-lg-4,

#custom-html-sx .col-lg-5,

#custom-html-sx .col-lg-6,

#custom-html-sx .col-lg-7,

#custom-html-sx .col-lg-8,

#custom-html-sx .col-lg-9,

#custom-html-sx .col-md-1,

#custom-html-sx .col-md-10,

#custom-html-sx .col-md-11,

#custom-html-sx .col-md-12,

#custom-html-sx .col-md-2,

#custom-html-sx .col-md-3,

#custom-html-sx .col-md-4,

#custom-html-sx .col-md-5,

#custom-html-sx .col-md-6,

#custom-html-sx .col-md-7,

#custom-html-sx .col-md-8,

#custom-html-sx .col-md-9,

#custom-html-sx .col-sm-1,

#custom-html-sx .col-sm-10,

#custom-html-sx .col-sm-11,

#custom-html-sx .col-sm-12,

#custom-html-sx .col-sm-2,

#custom-html-sx .col-sm-3,

#custom-html-sx .col-sm-4,

#custom-html-sx .col-sm-5,

#custom-html-sx .col-sm-6,

#custom-html-sx .col-sm-7,

#custom-html-sx .col-sm-8,

#custom-html-sx .col-sm-9,

#custom-html-sx .col-xs-1,

#custom-html-sx .col-xs-10,

#custom-html-sx .col-xs-11,

#custom-html-sx .col-xs-12,

#custom-html-sx .col-xs-2,

#custom-html-sx .col-xs-3,

#custom-html-sx .col-xs-4,

#custom-html-sx .col-xs-5,

#custom-html-sx .col-xs-6,

#custom-html-sx .col-xs-7,

#custom-html-sx .col-xs-8,

#custom-html-sx .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sx .col-xs-1,

#custom-html-sx .col-xs-10,

#custom-html-sx .col-xs-11,

#custom-html-sx .col-xs-12,

#custom-html-sx .col-xs-2,

#custom-html-sx .col-xs-3,

#custom-html-sx .col-xs-4,

#custom-html-sx .col-xs-5,

#custom-html-sx .col-xs-6,

#custom-html-sx .col-xs-7,

#custom-html-sx .col-xs-8,

#custom-html-sx .col-xs-9 {

  float: left;

}

#custom-html-sx .col-xs-12 {

  width: 100%;

}

#custom-html-sx .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-sx .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-sx .col-xs-9 {

  width: 75%;

}

#custom-html-sx .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-sx .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-sx .col-xs-6 {

  width: 50%;

}

#custom-html-sx .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-sx .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-sx .col-xs-3 {

  width: 25%;

}

#custom-html-sx .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-sx .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-sx .col-xs-pull-12 {

  right: 100%;

}

#custom-html-sx .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-sx .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-sx .col-xs-pull-9 {

  right: 75%;

}

#custom-html-sx .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-sx .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-sx .col-xs-pull-6 {

  right: 50%;

}

#custom-html-sx .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-sx .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-sx .col-xs-pull-3 {

  right: 25%;

}

#custom-html-sx .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-sx .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-sx .col-xs-pull-0 {

  right: auto;

}

#custom-html-sx .col-xs-push-12 {

  left: 100%;

}

#custom-html-sx .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-sx .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-sx .col-xs-push-9 {

  left: 75%;

}

#custom-html-sx .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-sx .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-sx .col-xs-push-6 {

  left: 50%;

}

#custom-html-sx .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-sx .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-sx .col-xs-push-3 {

  left: 25%;

}

#custom-html-sx .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-sx .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-sx .col-xs-push-0 {

  left: auto;

}

#custom-html-sx .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-sx .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-sx .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-sx .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-sx .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-sx .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-sx .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-sx .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-sx .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-sx .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-sx .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-sx .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-sx .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-sx .col-sm-1,

  #custom-html-sx .col-sm-10,

  #custom-html-sx .col-sm-11,

  #custom-html-sx .col-sm-12,

  #custom-html-sx .col-sm-2,

  #custom-html-sx .col-sm-3,

  #custom-html-sx .col-sm-4,

  #custom-html-sx .col-sm-5,

  #custom-html-sx .col-sm-6,

  #custom-html-sx .col-sm-7,

  #custom-html-sx .col-sm-8,

  #custom-html-sx .col-sm-9 {

    float: left;

  }

  #custom-html-sx .col-sm-12 {

    width: 100%;

  }

  #custom-html-sx .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-sx .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-sx .col-sm-9 {

    width: 75%;

  }

  #custom-html-sx .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-sx .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-sx .col-sm-6 {

    width: 50%;

  }

  #custom-html-sx .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-sx .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-sx .col-sm-3 {

    width: 25%;

  }

  #custom-html-sx .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-sx .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-sx .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-sx .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sx .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sx .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-sx .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sx .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sx .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-sx .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sx .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sx .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-sx .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sx .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sx .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-sx .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-sx .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sx .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sx .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-sx .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sx .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sx .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-sx .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sx .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sx .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-sx .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sx .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sx .col-sm-push-0 {

    left: auto;

  }

  #custom-html-sx .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sx .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sx .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sx .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sx .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sx .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sx .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sx .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sx .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sx .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sx .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sx .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sx .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-sx .col-md-1,

  #custom-html-sx .col-md-10,

  #custom-html-sx .col-md-11,

  #custom-html-sx .col-md-12,

  #custom-html-sx .col-md-2,

  #custom-html-sx .col-md-3,

  #custom-html-sx .col-md-4,

  #custom-html-sx .col-md-5,

  #custom-html-sx .col-md-6,

  #custom-html-sx .col-md-7,

  #custom-html-sx .col-md-8,

  #custom-html-sx .col-md-9 {

    float: left;

  }

  #custom-html-sx .col-md-12 {

    width: 100%;

  }

  #custom-html-sx .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-sx .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-sx .col-md-9 {

    width: 75%;

  }

  #custom-html-sx .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-sx .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-sx .col-md-6 {

    width: 50%;

  }

  #custom-html-sx .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-sx .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-sx .col-md-3 {

    width: 25%;

  }

  #custom-html-sx .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-sx .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-sx .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-sx .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sx .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sx .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-sx .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sx .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sx .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-sx .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sx .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sx .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-sx .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sx .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sx .col-md-pull-0 {

    right: auto;

  }

  #custom-html-sx .col-md-push-12 {

    left: 100%;

  }

  #custom-html-sx .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sx .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sx .col-md-push-9 {

    left: 75%;

  }

  #custom-html-sx .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sx .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sx .col-md-push-6 {

    left: 50%;

  }

  #custom-html-sx .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sx .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sx .col-md-push-3 {

    left: 25%;

  }

  #custom-html-sx .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sx .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sx .col-md-push-0 {

    left: auto;

  }

  #custom-html-sx .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sx .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sx .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sx .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sx .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sx .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sx .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sx .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sx .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sx .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sx .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sx .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sx .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-sx .col-lg-1,

  #custom-html-sx .col-lg-10,

  #custom-html-sx .col-lg-11,

  #custom-html-sx .col-lg-12,

  #custom-html-sx .col-lg-2,

  #custom-html-sx .col-lg-3,

  #custom-html-sx .col-lg-4,

  #custom-html-sx .col-lg-5,

  #custom-html-sx .col-lg-6,

  #custom-html-sx .col-lg-7,

  #custom-html-sx .col-lg-8,

  #custom-html-sx .col-lg-9 {

    float: left;

  }

  #custom-html-sx .col-lg-12 {

    width: 100%;

  }

  #custom-html-sx .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-sx .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-sx .col-lg-9 {

    width: 75%;

  }

  #custom-html-sx .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-sx .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-sx .col-lg-6 {

    width: 50%;

  }

  #custom-html-sx .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-sx .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-sx .col-lg-3 {

    width: 25%;

  }

  #custom-html-sx .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-sx .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-sx .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-sx .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-sx .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-sx .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-sx .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-sx .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-sx .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-sx .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-sx .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-sx .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-sx .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-sx .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-sx .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-sx .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-sx .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-sx .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-sx .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-sx .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-sx .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-sx .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-sx .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-sx .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-sx .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-sx .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-sx .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-sx .col-lg-push-0 {

    left: auto;

  }

  #custom-html-sx .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-sx .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-sx .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-sx .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-sx .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-sx .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-sx .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-sx .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-sx .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-sx .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-sx .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-sx .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-sx .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-sx table {

  background-color: transparent;

}

#custom-html-sx caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-sx th {

  text-align: left;

}

#custom-html-sx .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-sx .table > tbody > tr > td,

#custom-html-sx .table > tbody > tr > th,

#custom-html-sx .table > tfoot > tr > td,

#custom-html-sx .table > tfoot > tr > th,

#custom-html-sx .table > thead > tr > td,

#custom-html-sx .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-sx .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-sx .table > caption + thead > tr:first-child > td,

#custom-html-sx .table > caption + thead > tr:first-child > th,

#custom-html-sx .table > colgroup + thead > tr:first-child > td,

#custom-html-sx .table > colgroup + thead > tr:first-child > th,

#custom-html-sx .table > thead:first-child > tr:first-child > td,

#custom-html-sx .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-sx .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-sx .table .table {

  background-color: #ffffff;

}

#custom-html-sx .table-condensed > tbody > tr > td,

#custom-html-sx .table-condensed > tbody > tr > th,

#custom-html-sx .table-condensed > tfoot > tr > td,

#custom-html-sx .table-condensed > tfoot > tr > th,

#custom-html-sx .table-condensed > thead > tr > td,

#custom-html-sx .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-sx .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-sx .table-bordered > tbody > tr > td,

#custom-html-sx .table-bordered > tbody > tr > th,

#custom-html-sx .table-bordered > tfoot > tr > td,

#custom-html-sx .table-bordered > tfoot > tr > th,

#custom-html-sx .table-bordered > thead > tr > td,

#custom-html-sx .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-sx .table-bordered > thead > tr > td,

#custom-html-sx .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-sx .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-sx .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-sx table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-sx table td[class*=col-],

#custom-html-sx table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-sx .table > tbody > tr.active > td,

#custom-html-sx .table > tbody > tr.active > th,

#custom-html-sx .table > tbody > tr > td.active,

#custom-html-sx .table > tbody > tr > th.active,

#custom-html-sx .table > tfoot > tr.active > td,

#custom-html-sx .table > tfoot > tr.active > th,

#custom-html-sx .table > tfoot > tr > td.active,

#custom-html-sx .table > tfoot > tr > th.active,

#custom-html-sx .table > thead > tr.active > td,

#custom-html-sx .table > thead > tr.active > th,

#custom-html-sx .table > thead > tr > td.active,

#custom-html-sx .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-sx .table-hover > tbody > tr.active:hover > td,

#custom-html-sx .table-hover > tbody > tr.active:hover > th,

#custom-html-sx .table-hover > tbody > tr:hover > .active,

#custom-html-sx .table-hover > tbody > tr > td.active:hover,

#custom-html-sx .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-sx .table > tbody > tr.success > td,

#custom-html-sx .table > tbody > tr.success > th,

#custom-html-sx .table > tbody > tr > td.success,

#custom-html-sx .table > tbody > tr > th.success,

#custom-html-sx .table > tfoot > tr.success > td,

#custom-html-sx .table > tfoot > tr.success > th,

#custom-html-sx .table > tfoot > tr > td.success,

#custom-html-sx .table > tfoot > tr > th.success,

#custom-html-sx .table > thead > tr.success > td,

#custom-html-sx .table > thead > tr.success > th,

#custom-html-sx .table > thead > tr > td.success,

#custom-html-sx .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-sx .table-hover > tbody > tr.success:hover > td,

#custom-html-sx .table-hover > tbody > tr.success:hover > th,

#custom-html-sx .table-hover > tbody > tr:hover > .success,

#custom-html-sx .table-hover > tbody > tr > td.success:hover,

#custom-html-sx .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-sx .table > tbody > tr.info > td,

#custom-html-sx .table > tbody > tr.info > th,

#custom-html-sx .table > tbody > tr > td.info,

#custom-html-sx .table > tbody > tr > th.info,

#custom-html-sx .table > tfoot > tr.info > td,

#custom-html-sx .table > tfoot > tr.info > th,

#custom-html-sx .table > tfoot > tr > td.info,

#custom-html-sx .table > tfoot > tr > th.info,

#custom-html-sx .table > thead > tr.info > td,

#custom-html-sx .table > thead > tr.info > th,

#custom-html-sx .table > thead > tr > td.info,

#custom-html-sx .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-sx .table-hover > tbody > tr.info:hover > td,

#custom-html-sx .table-hover > tbody > tr.info:hover > th,

#custom-html-sx .table-hover > tbody > tr:hover > .info,

#custom-html-sx .table-hover > tbody > tr > td.info:hover,

#custom-html-sx .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-sx .table > tbody > tr.warning > td,

#custom-html-sx .table > tbody > tr.warning > th,

#custom-html-sx .table > tbody > tr > td.warning,

#custom-html-sx .table > tbody > tr > th.warning,

#custom-html-sx .table > tfoot > tr.warning > td,

#custom-html-sx .table > tfoot > tr.warning > th,

#custom-html-sx .table > tfoot > tr > td.warning,

#custom-html-sx .table > tfoot > tr > th.warning,

#custom-html-sx .table > thead > tr.warning > td,

#custom-html-sx .table > thead > tr.warning > th,

#custom-html-sx .table > thead > tr > td.warning,

#custom-html-sx .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-sx .table-hover > tbody > tr.warning:hover > td,

#custom-html-sx .table-hover > tbody > tr.warning:hover > th,

#custom-html-sx .table-hover > tbody > tr:hover > .warning,

#custom-html-sx .table-hover > tbody > tr > td.warning:hover,

#custom-html-sx .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-sx .table > tbody > tr.danger > td,

#custom-html-sx .table > tbody > tr.danger > th,

#custom-html-sx .table > tbody > tr > td.danger,

#custom-html-sx .table > tbody > tr > th.danger,

#custom-html-sx .table > tfoot > tr.danger > td,

#custom-html-sx .table > tfoot > tr.danger > th,

#custom-html-sx .table > tfoot > tr > td.danger,

#custom-html-sx .table > tfoot > tr > th.danger,

#custom-html-sx .table > thead > tr.danger > td,

#custom-html-sx .table > thead > tr.danger > th,

#custom-html-sx .table > thead > tr > td.danger,

#custom-html-sx .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-sx .table-hover > tbody > tr.danger:hover > td,

#custom-html-sx .table-hover > tbody > tr.danger:hover > th,

#custom-html-sx .table-hover > tbody > tr:hover > .danger,

#custom-html-sx .table-hover > tbody > tr > td.danger:hover,

#custom-html-sx .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-sx .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-sx .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-sx .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-sx .table-responsive > .table > tbody > tr > td,

  #custom-html-sx .table-responsive > .table > tbody > tr > th,

  #custom-html-sx .table-responsive > .table > tfoot > tr > td,

  #custom-html-sx .table-responsive > .table > tfoot > tr > th,

  #custom-html-sx .table-responsive > .table > thead > tr > td,

  #custom-html-sx .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-sx .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-sx .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-sx .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-sx .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-sx .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-sx .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-sx .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-sx .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-sx .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-sx .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-sx .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-sx .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-sx .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-sx .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-sx .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-sx .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-sx .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-sx fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-sx legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sx label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-sx input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-sx input[type=checkbox],

#custom-html-sx input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-sx input[type=file] {

  display: block;

}

#custom-html-sx input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-sx select[multiple],

#custom-html-sx select[size] {

  height: auto;

}

#custom-html-sx input[type=checkbox]:focus,

#custom-html-sx input[type=file]:focus,

#custom-html-sx input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sx output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-sx .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sx .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sx .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-sx .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-sx .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-sx .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-sx .form-control[disabled],

#custom-html-sx .form-control[readonly],

#custom-html-sx fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-sx .form-control[disabled],

#custom-html-sx fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-sx textarea.form-control {

  height: auto;

}

#custom-html-sx input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-sx input[type=date].form-control,

  #custom-html-sx input[type=datetime-local].form-control,

  #custom-html-sx input[type=month].form-control,

  #custom-html-sx input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-sx .input-group-sm input[type=date],

  #custom-html-sx .input-group-sm input[type=datetime-local],

  #custom-html-sx .input-group-sm input[type=month],

  #custom-html-sx .input-group-sm input[type=time],

  #custom-html-sx input[type=date].input-sm,

  #custom-html-sx input[type=datetime-local].input-sm,

  #custom-html-sx input[type=month].input-sm,

  #custom-html-sx input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-sx .input-group-lg input[type=date],

  #custom-html-sx .input-group-lg input[type=datetime-local],

  #custom-html-sx .input-group-lg input[type=month],

  #custom-html-sx .input-group-lg input[type=time],

  #custom-html-sx input[type=date].input-lg,

  #custom-html-sx input[type=datetime-local].input-lg,

  #custom-html-sx input[type=month].input-lg,

  #custom-html-sx input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-sx .form-group {

  margin-bottom: 15px;

}

#custom-html-sx .checkbox,

#custom-html-sx .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sx .checkbox label,

#custom-html-sx .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-sx .checkbox input[type=checkbox],

#custom-html-sx .checkbox-inline input[type=checkbox],

#custom-html-sx .radio input[type=radio],

#custom-html-sx .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-sx .checkbox + .checkbox,

#custom-html-sx .radio + .radio {

  margin-top: -5px;

}

#custom-html-sx .checkbox-inline,

#custom-html-sx .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-sx .checkbox-inline + .checkbox-inline,

#custom-html-sx .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-sx fieldset[disabled] input[type=checkbox],

#custom-html-sx fieldset[disabled] input[type=radio],

#custom-html-sx input[type=checkbox].disabled,

#custom-html-sx input[type=checkbox][disabled],

#custom-html-sx input[type=radio].disabled,

#custom-html-sx input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-sx .checkbox-inline.disabled,

#custom-html-sx .radio-inline.disabled,

#custom-html-sx fieldset[disabled] .checkbox-inline,

#custom-html-sx fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-sx .checkbox.disabled label,

#custom-html-sx .radio.disabled label,

#custom-html-sx fieldset[disabled] .checkbox label,

#custom-html-sx fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-sx .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-sx .form-control-static.input-lg,

#custom-html-sx .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sx .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sx select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-sx select[multiple].input-sm,

#custom-html-sx textarea.input-sm {

  height: auto;

}

#custom-html-sx .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sx .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-sx .form-group-sm select[multiple].form-control,

#custom-html-sx .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-sx .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sx .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sx select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-sx select[multiple].input-lg,

#custom-html-sx textarea.input-lg {

  height: auto;

}

#custom-html-sx .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sx .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-sx .form-group-lg select[multiple].form-control,

#custom-html-sx .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-sx .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sx .has-feedback {

  position: relative;

}

#custom-html-sx .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-sx .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-sx .form-group-lg .form-control + .form-control-feedback,

#custom-html-sx .input-group-lg + .form-control-feedback,

#custom-html-sx .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-sx .form-group-sm .form-control + .form-control-feedback,

#custom-html-sx .input-group-sm + .form-control-feedback,

#custom-html-sx .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-sx .has-success .checkbox,

#custom-html-sx .has-success .checkbox-inline,

#custom-html-sx .has-success .control-label,

#custom-html-sx .has-success .help-block,

#custom-html-sx .has-success .radio,

#custom-html-sx .has-success .radio-inline,

#custom-html-sx .has-success.checkbox label,

#custom-html-sx .has-success.checkbox-inline label,

#custom-html-sx .has-success.radio label,

#custom-html-sx .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-sx .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sx .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-sx .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-sx .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-sx .has-warning .checkbox,

#custom-html-sx .has-warning .checkbox-inline,

#custom-html-sx .has-warning .control-label,

#custom-html-sx .has-warning .help-block,

#custom-html-sx .has-warning .radio,

#custom-html-sx .has-warning .radio-inline,

#custom-html-sx .has-warning.checkbox label,

#custom-html-sx .has-warning.checkbox-inline label,

#custom-html-sx .has-warning.radio label,

#custom-html-sx .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-sx .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sx .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-sx .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-sx .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-sx .has-error .checkbox,

#custom-html-sx .has-error .checkbox-inline,

#custom-html-sx .has-error .control-label,

#custom-html-sx .has-error .help-block,

#custom-html-sx .has-error .radio,

#custom-html-sx .has-error .radio-inline,

#custom-html-sx .has-error.checkbox label,

#custom-html-sx .has-error.checkbox-inline label,

#custom-html-sx .has-error.radio label,

#custom-html-sx .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-sx .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-sx .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-sx .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-sx .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-sx .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-sx .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-sx .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-sx .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sx .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sx .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-sx .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sx .form-inline .input-group .form-control,

  #custom-html-sx .form-inline .input-group .input-group-addon,

  #custom-html-sx .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sx .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sx .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sx .form-inline .checkbox,

  #custom-html-sx .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sx .form-inline .checkbox label,

  #custom-html-sx .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-sx .form-inline .checkbox input[type=checkbox],

  #custom-html-sx .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sx .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-sx .form-horizontal .checkbox,

#custom-html-sx .form-horizontal .checkbox-inline,

#custom-html-sx .form-horizontal .radio,

#custom-html-sx .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-sx .form-horizontal .checkbox,

#custom-html-sx .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-sx .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sx .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-sx .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-sx .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-sx .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-sx .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sx .btn.active.focus,

#custom-html-sx .btn.active:focus,

#custom-html-sx .btn.focus,

#custom-html-sx .btn:active.focus,

#custom-html-sx .btn:active:focus,

#custom-html-sx .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-sx .btn.focus,

#custom-html-sx .btn:focus,

#custom-html-sx .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sx .btn.active,

#custom-html-sx .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sx .btn.disabled,

#custom-html-sx .btn[disabled],

#custom-html-sx fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-sx a.btn.disabled,

#custom-html-sx fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-sx .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sx .btn-default.focus,

#custom-html-sx .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-sx .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sx .btn-default.active,

#custom-html-sx .btn-default:active,

#custom-html-sx .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-sx .btn-default.active.focus,

#custom-html-sx .btn-default.active:focus,

#custom-html-sx .btn-default.active:hover,

#custom-html-sx .btn-default:active.focus,

#custom-html-sx .btn-default:active:focus,

#custom-html-sx .btn-default:active:hover,

#custom-html-sx .open > .dropdown-toggle.btn-default.focus,

#custom-html-sx .open > .dropdown-toggle.btn-default:focus,

#custom-html-sx .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-sx .btn-default.active,

#custom-html-sx .btn-default:active,

#custom-html-sx .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-sx .btn-default.disabled.focus,

#custom-html-sx .btn-default.disabled:focus,

#custom-html-sx .btn-default.disabled:hover,

#custom-html-sx .btn-default[disabled].focus,

#custom-html-sx .btn-default[disabled]:focus,

#custom-html-sx .btn-default[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-default.focus,

#custom-html-sx fieldset[disabled] .btn-default:focus,

#custom-html-sx fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-sx .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-sx .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sx .btn-primary.focus,

#custom-html-sx .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-sx .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sx .btn-primary.active,

#custom-html-sx .btn-primary:active,

#custom-html-sx .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-sx .btn-primary.active.focus,

#custom-html-sx .btn-primary.active:focus,

#custom-html-sx .btn-primary.active:hover,

#custom-html-sx .btn-primary:active.focus,

#custom-html-sx .btn-primary:active:focus,

#custom-html-sx .btn-primary:active:hover,

#custom-html-sx .open > .dropdown-toggle.btn-primary.focus,

#custom-html-sx .open > .dropdown-toggle.btn-primary:focus,

#custom-html-sx .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-sx .btn-primary.active,

#custom-html-sx .btn-primary:active,

#custom-html-sx .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-sx .btn-primary.disabled.focus,

#custom-html-sx .btn-primary.disabled:focus,

#custom-html-sx .btn-primary.disabled:hover,

#custom-html-sx .btn-primary[disabled].focus,

#custom-html-sx .btn-primary[disabled]:focus,

#custom-html-sx .btn-primary[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-primary.focus,

#custom-html-sx fieldset[disabled] .btn-primary:focus,

#custom-html-sx fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-sx .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sx .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sx .btn-success.focus,

#custom-html-sx .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-sx .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sx .btn-success.active,

#custom-html-sx .btn-success:active,

#custom-html-sx .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-sx .btn-success.active.focus,

#custom-html-sx .btn-success.active:focus,

#custom-html-sx .btn-success.active:hover,

#custom-html-sx .btn-success:active.focus,

#custom-html-sx .btn-success:active:focus,

#custom-html-sx .btn-success:active:hover,

#custom-html-sx .open > .dropdown-toggle.btn-success.focus,

#custom-html-sx .open > .dropdown-toggle.btn-success:focus,

#custom-html-sx .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-sx .btn-success.active,

#custom-html-sx .btn-success:active,

#custom-html-sx .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-sx .btn-success.disabled.focus,

#custom-html-sx .btn-success.disabled:focus,

#custom-html-sx .btn-success.disabled:hover,

#custom-html-sx .btn-success[disabled].focus,

#custom-html-sx .btn-success[disabled]:focus,

#custom-html-sx .btn-success[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-success.focus,

#custom-html-sx fieldset[disabled] .btn-success:focus,

#custom-html-sx fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-sx .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-sx .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sx .btn-info.focus,

#custom-html-sx .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-sx .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sx .btn-info.active,

#custom-html-sx .btn-info:active,

#custom-html-sx .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-sx .btn-info.active.focus,

#custom-html-sx .btn-info.active:focus,

#custom-html-sx .btn-info.active:hover,

#custom-html-sx .btn-info:active.focus,

#custom-html-sx .btn-info:active:focus,

#custom-html-sx .btn-info:active:hover,

#custom-html-sx .open > .dropdown-toggle.btn-info.focus,

#custom-html-sx .open > .dropdown-toggle.btn-info:focus,

#custom-html-sx .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-sx .btn-info.active,

#custom-html-sx .btn-info:active,

#custom-html-sx .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-sx .btn-info.disabled.focus,

#custom-html-sx .btn-info.disabled:focus,

#custom-html-sx .btn-info.disabled:hover,

#custom-html-sx .btn-info[disabled].focus,

#custom-html-sx .btn-info[disabled]:focus,

#custom-html-sx .btn-info[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-info.focus,

#custom-html-sx fieldset[disabled] .btn-info:focus,

#custom-html-sx fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-sx .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-sx .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sx .btn-warning.focus,

#custom-html-sx .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-sx .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sx .btn-warning.active,

#custom-html-sx .btn-warning:active,

#custom-html-sx .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-sx .btn-warning.active.focus,

#custom-html-sx .btn-warning.active:focus,

#custom-html-sx .btn-warning.active:hover,

#custom-html-sx .btn-warning:active.focus,

#custom-html-sx .btn-warning:active:focus,

#custom-html-sx .btn-warning:active:hover,

#custom-html-sx .open > .dropdown-toggle.btn-warning.focus,

#custom-html-sx .open > .dropdown-toggle.btn-warning:focus,

#custom-html-sx .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-sx .btn-warning.active,

#custom-html-sx .btn-warning:active,

#custom-html-sx .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-sx .btn-warning.disabled.focus,

#custom-html-sx .btn-warning.disabled:focus,

#custom-html-sx .btn-warning.disabled:hover,

#custom-html-sx .btn-warning[disabled].focus,

#custom-html-sx .btn-warning[disabled]:focus,

#custom-html-sx .btn-warning[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-warning.focus,

#custom-html-sx fieldset[disabled] .btn-warning:focus,

#custom-html-sx fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-sx .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-sx .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sx .btn-danger.focus,

#custom-html-sx .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-sx .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sx .btn-danger.active,

#custom-html-sx .btn-danger:active,

#custom-html-sx .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-sx .btn-danger.active.focus,

#custom-html-sx .btn-danger.active:focus,

#custom-html-sx .btn-danger.active:hover,

#custom-html-sx .btn-danger:active.focus,

#custom-html-sx .btn-danger:active:focus,

#custom-html-sx .btn-danger:active:hover,

#custom-html-sx .open > .dropdown-toggle.btn-danger.focus,

#custom-html-sx .open > .dropdown-toggle.btn-danger:focus,

#custom-html-sx .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-sx .btn-danger.active,

#custom-html-sx .btn-danger:active,

#custom-html-sx .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-sx .btn-danger.disabled.focus,

#custom-html-sx .btn-danger.disabled:focus,

#custom-html-sx .btn-danger.disabled:hover,

#custom-html-sx .btn-danger[disabled].focus,

#custom-html-sx .btn-danger[disabled]:focus,

#custom-html-sx .btn-danger[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-danger.focus,

#custom-html-sx fieldset[disabled] .btn-danger:focus,

#custom-html-sx fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-sx .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-sx .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-sx .btn-link,

#custom-html-sx .btn-link.active,

#custom-html-sx .btn-link:active,

#custom-html-sx .btn-link[disabled],

#custom-html-sx fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sx .btn-link,

#custom-html-sx .btn-link:active,

#custom-html-sx .btn-link:focus,

#custom-html-sx .btn-link:hover {

  border-color: transparent;

}

#custom-html-sx .btn-link:focus,

#custom-html-sx .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-sx .btn-link[disabled]:focus,

#custom-html-sx .btn-link[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-link:focus,

#custom-html-sx fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-sx .btn-group-lg > .btn,

#custom-html-sx .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sx .btn-group-sm > .btn,

#custom-html-sx .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sx .btn-group-xs > .btn,

#custom-html-sx .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sx .btn-block {

  display: block;

  width: 100%;

}

#custom-html-sx .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-sx input[type=button].btn-block,

#custom-html-sx input[type=reset].btn-block,

#custom-html-sx input[type=submit].btn-block {

  width: 100%;

}

#custom-html-sx .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-sx .fade.in {

  opacity: 1;

}

#custom-html-sx .collapse {

  display: none;

}

#custom-html-sx .collapse.in {

  display: block;

}

#custom-html-sx tr.collapse.in {

  display: table-row;

}

#custom-html-sx tbody.collapse.in {

  display: table-row-group;

}

#custom-html-sx .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-sx .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-sx .dropdown,

#custom-html-sx .dropup {

  position: relative;

}

#custom-html-sx .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-sx .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-sx .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-sx .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sx .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-sx .dropdown-menu > li > a:focus,

#custom-html-sx .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sx .dropdown-menu > .active > a,

#custom-html-sx .dropdown-menu > .active > a:focus,

#custom-html-sx .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-sx .dropdown-menu > .disabled > a,

#custom-html-sx .dropdown-menu > .disabled > a:focus,

#custom-html-sx .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-sx .dropdown-menu > .disabled > a:focus,

#custom-html-sx .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-sx .open > .dropdown-menu {

  display: block;

}

#custom-html-sx .open > a {

  outline: 0;

}

#custom-html-sx .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-sx .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-sx .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-sx .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-sx .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-sx .dropup .caret,

#custom-html-sx .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-sx .dropup .dropdown-menu,

#custom-html-sx .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-sx .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-sx .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-sx .btn-group,

#custom-html-sx .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-sx .btn-group-vertical > .btn,

#custom-html-sx .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-sx .btn-group-vertical > .btn.active,

#custom-html-sx .btn-group-vertical > .btn:active,

#custom-html-sx .btn-group-vertical > .btn:focus,

#custom-html-sx .btn-group-vertical > .btn:hover,

#custom-html-sx .btn-group > .btn.active,

#custom-html-sx .btn-group > .btn:active,

#custom-html-sx .btn-group > .btn:focus,

#custom-html-sx .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-sx .btn-group .btn + .btn,

#custom-html-sx .btn-group .btn + .btn-group,

#custom-html-sx .btn-group .btn-group + .btn,

#custom-html-sx .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-sx .btn-toolbar {

  margin-left: -5px;

}

#custom-html-sx .btn-toolbar .btn,

#custom-html-sx .btn-toolbar .btn-group,

#custom-html-sx .btn-toolbar .input-group {

  float: left;

}

#custom-html-sx .btn-toolbar > .btn,

#custom-html-sx .btn-toolbar > .btn-group,

#custom-html-sx .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-sx .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-sx .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-sx .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sx .btn-group > .btn:last-child:not(:first-child),

#custom-html-sx .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sx .btn-group > .btn-group {

  float: left;

}

#custom-html-sx .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sx .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sx .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sx .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sx .btn-group .dropdown-toggle:active,

#custom-html-sx .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-sx .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-sx .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-sx .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-sx .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sx .btn .caret {

  margin-left: 0;

}

#custom-html-sx .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-sx .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-sx .btn-group-vertical > .btn,

#custom-html-sx .btn-group-vertical > .btn-group,

#custom-html-sx .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-sx .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-sx .btn-group-vertical > .btn + .btn,

#custom-html-sx .btn-group-vertical > .btn + .btn-group,

#custom-html-sx .btn-group-vertical > .btn-group + .btn,

#custom-html-sx .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-sx .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sx .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sx .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sx .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-sx .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-sx .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sx .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sx .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-sx .btn-group-justified > .btn,

#custom-html-sx .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-sx .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-sx .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-sx [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-sx [data-toggle=buttons] > .btn input[type=radio],

#custom-html-sx [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-sx [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-sx .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-sx .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-sx .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-sx .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-sx .input-group-lg > .form-control,

#custom-html-sx .input-group-lg > .input-group-addon,

#custom-html-sx .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-sx select.input-group-lg > .form-control,

#custom-html-sx select.input-group-lg > .input-group-addon,

#custom-html-sx select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-sx select[multiple].input-group-lg > .form-control,

#custom-html-sx select[multiple].input-group-lg > .input-group-addon,

#custom-html-sx select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-sx textarea.input-group-lg > .form-control,

#custom-html-sx textarea.input-group-lg > .input-group-addon,

#custom-html-sx textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sx .input-group-sm > .form-control,

#custom-html-sx .input-group-sm > .input-group-addon,

#custom-html-sx .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-sx select.input-group-sm > .form-control,

#custom-html-sx select.input-group-sm > .input-group-addon,

#custom-html-sx select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-sx select[multiple].input-group-sm > .form-control,

#custom-html-sx select[multiple].input-group-sm > .input-group-addon,

#custom-html-sx select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-sx textarea.input-group-sm > .form-control,

#custom-html-sx textarea.input-group-sm > .input-group-addon,

#custom-html-sx textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-sx .input-group .form-control,

#custom-html-sx .input-group-addon,

#custom-html-sx .input-group-btn {

  display: table-cell;

}

#custom-html-sx .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-sx .input-group-addon:not(:first-child):not(:last-child),

#custom-html-sx .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-sx .input-group-addon,

#custom-html-sx .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-sx .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-sx .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-sx .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-sx .input-group-addon input[type=checkbox],

#custom-html-sx .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-sx .input-group .form-control:first-child,

#custom-html-sx .input-group-addon:first-child,

#custom-html-sx .input-group-btn:first-child > .btn,

#custom-html-sx .input-group-btn:first-child > .btn-group > .btn,

#custom-html-sx .input-group-btn:first-child > .dropdown-toggle,

#custom-html-sx .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-sx .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-sx .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-sx .input-group .form-control:last-child,

#custom-html-sx .input-group-addon:last-child,

#custom-html-sx .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-sx .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-sx .input-group-btn:last-child > .btn,

#custom-html-sx .input-group-btn:last-child > .btn-group > .btn,

#custom-html-sx .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sx .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-sx .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-sx .input-group-btn > .btn {

  position: relative;

}

#custom-html-sx .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-sx .input-group-btn > .btn:active,

#custom-html-sx .input-group-btn > .btn:focus,

#custom-html-sx .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-sx .input-group-btn:first-child > .btn,

#custom-html-sx .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-sx .input-group-btn:last-child > .btn,

#custom-html-sx .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-sx .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-sx .nav > li {

  position: relative;

  display: block;

}

#custom-html-sx .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-sx .nav > li > a:focus,

#custom-html-sx .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sx .nav > li.disabled > a {

  color: #777777;

}

#custom-html-sx .nav > li.disabled > a:focus,

#custom-html-sx .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-sx .nav .open > a,

#custom-html-sx .nav .open > a:focus,

#custom-html-sx .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-sx .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-sx .nav > li > a > img {

  max-width: none;

}

#custom-html-sx .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sx .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-sx .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-sx .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-sx .nav-tabs > li.active > a,

#custom-html-sx .nav-tabs > li.active > a:focus,

#custom-html-sx .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-sx .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-sx .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-sx .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sx .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sx .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sx .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sx .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sx .nav-tabs.nav-justified > .active > a,

#custom-html-sx .nav-tabs.nav-justified > .active > a:focus,

#custom-html-sx .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sx .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sx .nav-tabs.nav-justified > .active > a,

  #custom-html-sx .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-sx .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sx .nav-pills > li {

  float: left;

}

#custom-html-sx .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-sx .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-sx .nav-pills > li.active > a,

#custom-html-sx .nav-pills > li.active > a:focus,

#custom-html-sx .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-sx .nav-stacked > li {

  float: none;

}

#custom-html-sx .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-sx .nav-justified {

  width: 100%;

}

#custom-html-sx .nav-justified > li {

  float: none;

}

#custom-html-sx .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-sx .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-sx .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-sx .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-sx .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-sx .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-sx .nav-tabs-justified > .active > a,

#custom-html-sx .nav-tabs-justified > .active > a:focus,

#custom-html-sx .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-sx .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-sx .nav-tabs-justified > .active > a,

  #custom-html-sx .nav-tabs-justified > .active > a:focus,

  #custom-html-sx .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-sx .tab-content > .tab-pane {

  display: none;

}

#custom-html-sx .tab-content > .active {

  display: block;

}

#custom-html-sx .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sx .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-sx .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-sx .navbar-header {

    float: left;

  }

}

#custom-html-sx .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-sx .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-sx .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sx .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-sx .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-sx .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sx .navbar-fixed-top .navbar-collapse,

  #custom-html-sx .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-sx .navbar-fixed-bottom .navbar-collapse,

#custom-html-sx .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-sx .navbar-fixed-bottom .navbar-collapse,

  #custom-html-sx .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-sx .container-fluid > .navbar-collapse,

#custom-html-sx .container-fluid > .navbar-header,

#custom-html-sx .container > .navbar-collapse,

#custom-html-sx .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-sx .container-fluid > .navbar-collapse,

  #custom-html-sx .container-fluid > .navbar-header,

  #custom-html-sx .container > .navbar-collapse,

  #custom-html-sx .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-sx .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-sx .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-sx .navbar-fixed-bottom,

#custom-html-sx .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-sx .navbar-fixed-bottom,

  #custom-html-sx .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-sx .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-sx .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-sx .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-sx .navbar-brand:focus,

#custom-html-sx .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-sx .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-sx .navbar > .container .navbar-brand,

  #custom-html-sx .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-sx .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sx .navbar-toggle:focus {

  outline: 0;

}

#custom-html-sx .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-sx .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-sx .navbar-toggle {

    display: none;

  }

}

#custom-html-sx .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-sx .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-sx .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-sx .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-sx .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-sx .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-sx .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sx .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-sx .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-sx .navbar-nav > li {

    float: left;

  }

  #custom-html-sx .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-sx .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-sx .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sx .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-sx .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-sx .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-sx .navbar-form .input-group .form-control,

  #custom-html-sx .navbar-form .input-group .input-group-addon,

  #custom-html-sx .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-sx .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-sx .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sx .navbar-form .checkbox,

  #custom-html-sx .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-sx .navbar-form .checkbox label,

  #custom-html-sx .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-sx .navbar-form .checkbox input[type=checkbox],

  #custom-html-sx .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-sx .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-sx .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-sx .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-sx .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-sx .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sx .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-sx .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-sx .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-sx .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-sx .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-sx .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-sx .navbar-left {

    float: left !important;

  }

  #custom-html-sx .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-sx .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-sx .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-sx .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-sx .navbar-default .navbar-brand:focus,

#custom-html-sx .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-sx .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-sx .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-sx .navbar-default .navbar-nav > li > a:focus,

#custom-html-sx .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-sx .navbar-default .navbar-nav > .active > a,

#custom-html-sx .navbar-default .navbar-nav > .active > a:focus,

#custom-html-sx .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-sx .navbar-default .navbar-nav > .disabled > a,

#custom-html-sx .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-sx .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-sx .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-sx .navbar-default .navbar-toggle:focus,

#custom-html-sx .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-sx .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-sx .navbar-default .navbar-collapse,

#custom-html-sx .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-sx .navbar-default .navbar-nav > .open > a,

#custom-html-sx .navbar-default .navbar-nav > .open > a:focus,

#custom-html-sx .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sx .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-sx .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-sx .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-sx .navbar-default .btn-link {

  color: #777777;

}

#custom-html-sx .navbar-default .btn-link:focus,

#custom-html-sx .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-sx .navbar-default .btn-link[disabled]:focus,

#custom-html-sx .navbar-default .btn-link[disabled]:hover,

#custom-html-sx fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-sx fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-sx .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-sx .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-sx .navbar-inverse .navbar-brand:focus,

#custom-html-sx .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sx .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-sx .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-sx .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-sx .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-sx .navbar-inverse .navbar-nav > .active > a,

#custom-html-sx .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-sx .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-sx .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-sx .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-sx .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-sx .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-sx .navbar-inverse .navbar-toggle:focus,

#custom-html-sx .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-sx .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-sx .navbar-inverse .navbar-collapse,

#custom-html-sx .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-sx .navbar-inverse .navbar-nav > .open > a,

#custom-html-sx .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-sx .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-sx .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-sx .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-sx .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-sx .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-sx .navbar-inverse .btn-link:focus,

#custom-html-sx .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-sx .navbar-inverse .btn-link[disabled]:focus,

#custom-html-sx .navbar-inverse .btn-link[disabled]:hover,

#custom-html-sx fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-sx fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-sx .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-sx .breadcrumb > li {

  display: inline-block;

}

#custom-html-sx .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-sx .breadcrumb > .active {

  color: #777777;

}

#custom-html-sx .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-sx .pagination > li {

  display: inline;

}

#custom-html-sx .pagination > li > a,

#custom-html-sx .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sx .pagination > li:first-child > a,

#custom-html-sx .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sx .pagination > li:last-child > a,

#custom-html-sx .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-sx .pagination > li > a:focus,

#custom-html-sx .pagination > li > a:hover,

#custom-html-sx .pagination > li > span:focus,

#custom-html-sx .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-sx .pagination > .active > a,

#custom-html-sx .pagination > .active > a:focus,

#custom-html-sx .pagination > .active > a:hover,

#custom-html-sx .pagination > .active > span,

#custom-html-sx .pagination > .active > span:focus,

#custom-html-sx .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-sx .pagination > .disabled > a,

#custom-html-sx .pagination > .disabled > a:focus,

#custom-html-sx .pagination > .disabled > a:hover,

#custom-html-sx .pagination > .disabled > span,

#custom-html-sx .pagination > .disabled > span:focus,

#custom-html-sx .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-sx .pagination-lg > li > a,

#custom-html-sx .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-sx .pagination-lg > li:first-child > a,

#custom-html-sx .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-sx .pagination-lg > li:last-child > a,

#custom-html-sx .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-sx .pagination-sm > li > a,

#custom-html-sx .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sx .pagination-sm > li:first-child > a,

#custom-html-sx .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sx .pagination-sm > li:last-child > a,

#custom-html-sx .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-sx .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-sx .pager li {

  display: inline;

}

#custom-html-sx .pager li > a,

#custom-html-sx .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-sx .pager li > a:focus,

#custom-html-sx .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-sx .pager .next > a,

#custom-html-sx .pager .next > span {

  float: right;

}

#custom-html-sx .pager .previous > a,

#custom-html-sx .pager .previous > span {

  float: left;

}

#custom-html-sx .pager .disabled > a,

#custom-html-sx .pager .disabled > a:focus,

#custom-html-sx .pager .disabled > a:hover,

#custom-html-sx .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-sx .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-sx a.label:focus,

#custom-html-sx a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sx .label:empty {

  display: none;

}

#custom-html-sx .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-sx .label-default {

  background-color: #777777;

}

#custom-html-sx .label-default[href]:focus,

#custom-html-sx .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-sx .label-primary {

  background-color: #337ab7;

}

#custom-html-sx .label-primary[href]:focus,

#custom-html-sx .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-sx .label-success {

  background-color: #5cb85c;

}

#custom-html-sx .label-success[href]:focus,

#custom-html-sx .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-sx .label-info {

  background-color: #5bc0de;

}

#custom-html-sx .label-info[href]:focus,

#custom-html-sx .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-sx .label-warning {

  background-color: #f0ad4e;

}

#custom-html-sx .label-warning[href]:focus,

#custom-html-sx .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-sx .label-danger {

  background-color: #d9534f;

}

#custom-html-sx .label-danger[href]:focus,

#custom-html-sx .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-sx .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-sx .badge:empty {

  display: none;

}

#custom-html-sx .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-sx .btn-group-xs > .btn .badge,

#custom-html-sx .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-sx a.badge:focus,

#custom-html-sx a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-sx .list-group-item.active > .badge,

#custom-html-sx .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sx .list-group-item > .badge {

  float: right;

}

#custom-html-sx .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-sx .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-sx .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-sx .jumbotron .h1,

#custom-html-sx .jumbotron h1 {

  color: inherit;

}

#custom-html-sx .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-sx .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-sx .container .jumbotron,

#custom-html-sx .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-sx .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-sx .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-sx .container .jumbotron,

  #custom-html-sx .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-sx .jumbotron .h1,

  #custom-html-sx .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-sx .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-sx .thumbnail a > img,

#custom-html-sx .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sx a.thumbnail.active,

#custom-html-sx a.thumbnail:focus,

#custom-html-sx a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-sx .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-sx .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-sx .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-sx .alert .alert-link {

  font-weight: 700;

}

#custom-html-sx .alert > p,

#custom-html-sx .alert > ul {

  margin-bottom: 0;

}

#custom-html-sx .alert > p + p {

  margin-top: 5px;

}

#custom-html-sx .alert-dismissable,

#custom-html-sx .alert-dismissible {

  padding-right: 35px;

}

#custom-html-sx .alert-dismissable .close,

#custom-html-sx .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-sx .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sx .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-sx .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-sx .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sx .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-sx .alert-info .alert-link {

  color: #000000;

}

#custom-html-sx .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sx .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-sx .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-sx .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sx .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-sx .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-sx .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-sx .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-sx .progress-bar-striped,

#custom-html-sx .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-sx .progress-bar.active,

#custom-html-sx .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-sx .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-sx .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sx .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-sx .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sx .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-sx .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sx .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-sx .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-sx .media {

  margin-top: 15px;

}

#custom-html-sx .media:first-child {

  margin-top: 0;

}

#custom-html-sx .media,

#custom-html-sx .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-sx .media-body {

  width: 10000px;

}

#custom-html-sx .media-object {

  display: block;

}

#custom-html-sx .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-sx .media-right,

#custom-html-sx .media > .pull-right {

  padding-left: 10px;

}

#custom-html-sx .media-left,

#custom-html-sx .media > .pull-left {

  padding-right: 10px;

}

#custom-html-sx .media-body,

#custom-html-sx .media-left,

#custom-html-sx .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-sx .media-middle {

  vertical-align: middle;

}

#custom-html-sx .media-bottom {

  vertical-align: bottom;

}

#custom-html-sx .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sx .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-sx .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-sx .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sx .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-sx .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sx a.list-group-item,

#custom-html-sx button.list-group-item {

  color: #555555;

}

#custom-html-sx a.list-group-item .list-group-item-heading,

#custom-html-sx button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-sx a.list-group-item:focus,

#custom-html-sx a.list-group-item:hover,

#custom-html-sx button.list-group-item:focus,

#custom-html-sx button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-sx button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-sx .list-group-item.disabled,

#custom-html-sx .list-group-item.disabled:focus,

#custom-html-sx .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-sx .list-group-item.disabled .list-group-item-heading,

#custom-html-sx .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-sx .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-sx .list-group-item.disabled .list-group-item-text,

#custom-html-sx .list-group-item.disabled:focus .list-group-item-text,

#custom-html-sx .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-sx .list-group-item.active,

#custom-html-sx .list-group-item.active:focus,

#custom-html-sx .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sx .list-group-item.active .list-group-item-heading,

#custom-html-sx .list-group-item.active .list-group-item-heading > .small,

#custom-html-sx .list-group-item.active .list-group-item-heading > small,

#custom-html-sx .list-group-item.active:focus .list-group-item-heading,

#custom-html-sx .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-sx .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-sx .list-group-item.active:hover .list-group-item-heading,

#custom-html-sx .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-sx .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-sx .list-group-item.active .list-group-item-text,

#custom-html-sx .list-group-item.active:focus .list-group-item-text,

#custom-html-sx .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-sx .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-sx a.list-group-item-success,

#custom-html-sx button.list-group-item-success {

  color: #3c763d;

}

#custom-html-sx a.list-group-item-success .list-group-item-heading,

#custom-html-sx button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-sx a.list-group-item-success:focus,

#custom-html-sx a.list-group-item-success:hover,

#custom-html-sx button.list-group-item-success:focus,

#custom-html-sx button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-sx a.list-group-item-success.active,

#custom-html-sx a.list-group-item-success.active:focus,

#custom-html-sx a.list-group-item-success.active:hover,

#custom-html-sx button.list-group-item-success.active,

#custom-html-sx button.list-group-item-success.active:focus,

#custom-html-sx button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-sx .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-sx a.list-group-item-info,

#custom-html-sx button.list-group-item-info {

  color: #31708f;

}

#custom-html-sx a.list-group-item-info .list-group-item-heading,

#custom-html-sx button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-sx a.list-group-item-info:focus,

#custom-html-sx a.list-group-item-info:hover,

#custom-html-sx button.list-group-item-info:focus,

#custom-html-sx button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-sx a.list-group-item-info.active,

#custom-html-sx a.list-group-item-info.active:focus,

#custom-html-sx a.list-group-item-info.active:hover,

#custom-html-sx button.list-group-item-info.active,

#custom-html-sx button.list-group-item-info.active:focus,

#custom-html-sx button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-sx .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-sx a.list-group-item-warning,

#custom-html-sx button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-sx a.list-group-item-warning .list-group-item-heading,

#custom-html-sx button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-sx a.list-group-item-warning:focus,

#custom-html-sx a.list-group-item-warning:hover,

#custom-html-sx button.list-group-item-warning:focus,

#custom-html-sx button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-sx a.list-group-item-warning.active,

#custom-html-sx a.list-group-item-warning.active:focus,

#custom-html-sx a.list-group-item-warning.active:hover,

#custom-html-sx button.list-group-item-warning.active,

#custom-html-sx button.list-group-item-warning.active:focus,

#custom-html-sx button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-sx .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-sx a.list-group-item-danger,

#custom-html-sx button.list-group-item-danger {

  color: #a94442;

}

#custom-html-sx a.list-group-item-danger .list-group-item-heading,

#custom-html-sx button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-sx a.list-group-item-danger:focus,

#custom-html-sx a.list-group-item-danger:hover,

#custom-html-sx button.list-group-item-danger:focus,

#custom-html-sx button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-sx a.list-group-item-danger.active,

#custom-html-sx a.list-group-item-danger.active:focus,

#custom-html-sx a.list-group-item-danger.active:hover,

#custom-html-sx button.list-group-item-danger.active,

#custom-html-sx button.list-group-item-danger.active:focus,

#custom-html-sx button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-sx .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-sx .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-sx .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sx .panel-body {

  padding: 15px;

}

#custom-html-sx .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-sx .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-sx .panel-title > .small,

#custom-html-sx .panel-title > .small > a,

#custom-html-sx .panel-title > a,

#custom-html-sx .panel-title > small,

#custom-html-sx .panel-title > small > a {

  color: inherit;

}

#custom-html-sx .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sx .panel > .list-group,

#custom-html-sx .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-sx .panel > .list-group .list-group-item,

#custom-html-sx .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-sx .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-sx .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-sx .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sx .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-sx .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-sx .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-sx .panel > .panel-collapse > .table,

#custom-html-sx .panel > .table,

#custom-html-sx .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-sx .panel > .panel-collapse > .table caption,

#custom-html-sx .panel > .table caption,

#custom-html-sx .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child,

#custom-html-sx .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-sx .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-sx .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-sx .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-sx .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-sx .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-sx .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sx .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-sx .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-sx .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-sx .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-sx .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child,

#custom-html-sx .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-sx .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-sx .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-sx .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-sx .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-sx .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-sx .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sx .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-sx .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-sx .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-sx .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-sx .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-sx .panel > .panel-body + .table,

#custom-html-sx .panel > .panel-body + .table-responsive,

#custom-html-sx .panel > .table + .panel-body,

#custom-html-sx .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sx .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-sx .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-sx .panel > .table-bordered,

#custom-html-sx .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-sx .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-sx .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-sx .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sx .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sx .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-sx .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-sx .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-sx .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-sx .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sx .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sx .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-sx .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-sx .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-sx .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-sx .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-sx .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-sx .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-sx .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-sx .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-sx .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-sx .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-sx .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sx .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-sx .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-sx .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-sx .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-sx .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-sx .panel-group {

  margin-bottom: 20px;

}

#custom-html-sx .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-sx .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-sx .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-sx .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-sx .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-sx .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-sx .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-sx .panel-default {

  border-color: #dddddd;

}

#custom-html-sx .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-sx .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-sx .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-sx .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-sx .panel-primary {

  border-color: #337ab7;

}

#custom-html-sx .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-sx .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-sx .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-sx .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-sx .panel-success {

  border-color: #d6e9c6;

}

#custom-html-sx .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-sx .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-sx .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-sx .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-sx .panel-info {

  border-color: #bce8f1;

}

#custom-html-sx .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-sx .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-sx .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-sx .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-sx .panel-warning {

  border-color: #faebcc;

}

#custom-html-sx .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-sx .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-sx .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-sx .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-sx .panel-danger {

  border-color: #ebccd1;

}

#custom-html-sx .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-sx .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-sx .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-sx .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-sx .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-sx .embed-responsive .embed-responsive-item,

#custom-html-sx .embed-responsive embed,

#custom-html-sx .embed-responsive iframe,

#custom-html-sx .embed-responsive object,

#custom-html-sx .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-sx .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-sx .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-sx .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-sx .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-sx .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-sx .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-sx .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-sx .close:focus,

#custom-html-sx .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-sx button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-sx .modal-open {

  overflow: hidden;

}

#custom-html-sx .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-sx .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-sx .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-sx .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-sx .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-sx .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-sx .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-sx .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-sx .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-sx .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-sx .modal-header .close {

  margin-top: -2px;

}

#custom-html-sx .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-sx .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-sx .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-sx .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-sx .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-sx .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-sx .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-sx .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-sx .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-sx .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-sx .modal-lg {

    width: 900px;

  }

}

#custom-html-sx .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-sx .tooltip.in {

  opacity: 0.9;

}

#custom-html-sx .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-sx .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-sx .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-sx .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-sx .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-sx .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sx .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sx .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sx .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-sx .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-sx .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-sx .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sx .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sx .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-sx .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-sx .popover.top {

  margin-top: -10px;

}

#custom-html-sx .popover.right {

  margin-left: 10px;

}

#custom-html-sx .popover.bottom {

  margin-top: 10px;

}

#custom-html-sx .popover.left {

  margin-left: -10px;

}

#custom-html-sx .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-sx .popover-content {

  padding: 9px 14px;

}

#custom-html-sx .popover > .arrow,

#custom-html-sx .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-sx .popover > .arrow {

  border-width: 11px;

}

#custom-html-sx .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-sx .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-sx .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-sx .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-sx .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-sx .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sx .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-sx .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-sx .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-sx .carousel {

  position: relative;

}

#custom-html-sx .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-sx .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-sx .carousel-inner > .item > a > img,

#custom-html-sx .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-sx .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-sx .carousel-inner > .item.active.right,

  #custom-html-sx .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-sx .carousel-inner > .item.active.left,

  #custom-html-sx .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-sx .carousel-inner > .item.active,

  #custom-html-sx .carousel-inner > .item.next.left,

  #custom-html-sx .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-sx .carousel-inner > .active,

#custom-html-sx .carousel-inner > .next,

#custom-html-sx .carousel-inner > .prev {

  display: block;

}

#custom-html-sx .carousel-inner > .active {

  left: 0;

}

#custom-html-sx .carousel-inner > .next,

#custom-html-sx .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-sx .carousel-inner > .next {

  left: 100%;

}

#custom-html-sx .carousel-inner > .prev {

  left: -100%;

}

#custom-html-sx .carousel-inner > .next.left,

#custom-html-sx .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-sx .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-sx .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-sx .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-sx .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-sx .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-sx .carousel-control:focus,

#custom-html-sx .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-sx .carousel-control .glyphicon-chevron-left,

#custom-html-sx .carousel-control .glyphicon-chevron-right,

#custom-html-sx .carousel-control .icon-next,

#custom-html-sx .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-sx .carousel-control .glyphicon-chevron-left,

#custom-html-sx .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-sx .carousel-control .glyphicon-chevron-right,

#custom-html-sx .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-sx .carousel-control .icon-next,

#custom-html-sx .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-sx .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-sx .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-sx .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-sx .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-sx .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-sx .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-sx .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-sx .carousel-control .glyphicon-chevron-left,

  #custom-html-sx .carousel-control .glyphicon-chevron-right,

  #custom-html-sx .carousel-control .icon-next,

  #custom-html-sx .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-sx .carousel-control .glyphicon-chevron-left,

  #custom-html-sx .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-sx .carousel-control .glyphicon-chevron-right,

  #custom-html-sx .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-sx .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-sx .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-sx .btn-group-vertical > .btn-group:after,

#custom-html-sx .btn-group-vertical > .btn-group:before,

#custom-html-sx .btn-toolbar:after,

#custom-html-sx .btn-toolbar:before,

#custom-html-sx .clearfix:after,

#custom-html-sx .clearfix:before,

#custom-html-sx .container-fluid:after,

#custom-html-sx .container-fluid:before,

#custom-html-sx .container:after,

#custom-html-sx .container:before,

#custom-html-sx .dl-horizontal dd:after,

#custom-html-sx .dl-horizontal dd:before,

#custom-html-sx .form-horizontal .form-group:after,

#custom-html-sx .form-horizontal .form-group:before,

#custom-html-sx .modal-footer:after,

#custom-html-sx .modal-footer:before,

#custom-html-sx .modal-header:after,

#custom-html-sx .modal-header:before,

#custom-html-sx .nav:after,

#custom-html-sx .nav:before,

#custom-html-sx .navbar-collapse:after,

#custom-html-sx .navbar-collapse:before,

#custom-html-sx .navbar-header:after,

#custom-html-sx .navbar-header:before,

#custom-html-sx .navbar:after,

#custom-html-sx .navbar:before,

#custom-html-sx .pager:after,

#custom-html-sx .pager:before,

#custom-html-sx .panel-body:after,

#custom-html-sx .panel-body:before,

#custom-html-sx .row:after,

#custom-html-sx .row:before {

  display: table;

  content: " ";

}

#custom-html-sx .btn-group-vertical > .btn-group:after,

#custom-html-sx .btn-toolbar:after,

#custom-html-sx .clearfix:after,

#custom-html-sx .container-fluid:after,

#custom-html-sx .container:after,

#custom-html-sx .dl-horizontal dd:after,

#custom-html-sx .form-horizontal .form-group:after,

#custom-html-sx .modal-footer:after,

#custom-html-sx .modal-header:after,

#custom-html-sx .nav:after,

#custom-html-sx .navbar-collapse:after,

#custom-html-sx .navbar-header:after,

#custom-html-sx .navbar:after,

#custom-html-sx .pager:after,

#custom-html-sx .panel-body:after,

#custom-html-sx .row:after {

  clear: both;

}

#custom-html-sx .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-sx .pull-right {

  float: right !important;

}

#custom-html-sx .pull-left {

  float: left !important;

}

#custom-html-sx .hide {

  display: none !important;

}

#custom-html-sx .show {

  display: block !important;

}

#custom-html-sx .invisible {

  visibility: hidden;

}

#custom-html-sx .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-sx .hidden {

  display: none !important;

}

#custom-html-sx .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-sx .visible-lg,

#custom-html-sx .visible-md,

#custom-html-sx .visible-sm,

#custom-html-sx .visible-xs {

  display: none !important;

}

#custom-html-sx .visible-lg-block,

#custom-html-sx .visible-lg-inline,

#custom-html-sx .visible-lg-inline-block,

#custom-html-sx .visible-md-block,

#custom-html-sx .visible-md-inline,

#custom-html-sx .visible-md-inline-block,

#custom-html-sx .visible-sm-block,

#custom-html-sx .visible-sm-inline,

#custom-html-sx .visible-sm-inline-block,

#custom-html-sx .visible-xs-block,

#custom-html-sx .visible-xs-inline,

#custom-html-sx .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-sx .visible-xs {

    display: block !important;

  }

  #custom-html-sx table.visible-xs {

    display: table !important;

  }

  #custom-html-sx tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-sx td.visible-xs,

  #custom-html-sx th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sx .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sx .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sx .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sx .visible-sm {

    display: block !important;

  }

  #custom-html-sx table.visible-sm {

    display: table !important;

  }

  #custom-html-sx tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-sx td.visible-sm,

  #custom-html-sx th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sx .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sx .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sx .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sx .visible-md {

    display: block !important;

  }

  #custom-html-sx table.visible-md {

    display: table !important;

  }

  #custom-html-sx tr.visible-md {

    display: table-row !important;

  }

  #custom-html-sx td.visible-md,

  #custom-html-sx th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sx .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sx .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sx .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sx .visible-lg {

    display: block !important;

  }

  #custom-html-sx table.visible-lg {

    display: table !important;

  }

  #custom-html-sx tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-sx td.visible-lg,

  #custom-html-sx th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sx .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sx .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sx .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-sx .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-sx .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-sx .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-sx .hidden-lg {

    display: none !important;

  }

}

#custom-html-sx .visible-print {

  display: none !important;

}

@media print {

  #custom-html-sx .visible-print {

    display: block !important;

  }

  #custom-html-sx table.visible-print {

    display: table !important;

  }

  #custom-html-sx tr.visible-print {

    display: table-row !important;

  }

  #custom-html-sx td.visible-print,

  #custom-html-sx th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-sx .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-sx .visible-print-block {

    display: block !important;

  }

}

#custom-html-sx .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-sx .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-sx .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-sx .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-sx .hidden-print {

    display: none !important;

  }

}

#custom-html-sx .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-sx .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-sx .intl-tel-input .hide {

  display: none;

}

#custom-html-sx .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-sx .intl-tel-input input,

#custom-html-sx .intl-tel-input input[type=tel],

#custom-html-sx .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-sx .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-sx .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-sx .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-sx .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-sx .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-sx .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-sx .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-sx .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-sx .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-sx .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-sx .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-sx .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-sx .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sx .intl-tel-input .country-list .country-name,

#custom-html-sx .intl-tel-input .country-list .dial-code,

#custom-html-sx .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-sx .intl-tel-input .country-list .country-name,

#custom-html-sx .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-sx .intl-tel-input.allow-dropdown input,

#custom-html-sx .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-sx .intl-tel-input.allow-dropdown input[type=text],

#custom-html-sx .intl-tel-input.separate-dial-code input,

#custom-html-sx .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-sx .intl-tel-input.allow-dropdown .flag-container,

#custom-html-sx .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-sx .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-sx .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-sx .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-sx .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-sx .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-sx .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-sx .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-sx .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-sx .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-sx .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-sx .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-sx .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-sx .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-sx .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-sx .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-sx .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-sx .iti-flag {

  width: 20px;

}

#custom-html-sx .iti-flag.be {

  width: 18px;

}

#custom-html-sx .iti-flag.ch {

  width: 15px;

}

#custom-html-sx .iti-flag.mc {

  width: 19px;

}

#custom-html-sx .iti-flag.ne {

  width: 18px;

}

#custom-html-sx .iti-flag.np {

  width: 13px;

}

#custom-html-sx .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sx .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-sx .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-sx .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;


}

#custom-html-sx .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-sx .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-sx .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-sx .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-sx .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-sx .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-sx .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-sx .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-sx .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-sx .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-sx .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-sx .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-sx .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-sx .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-sx .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-sx .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-sx .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-sx .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-sx .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-sx .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-sx .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-sx .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-sx .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-sx .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-sx .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-sx .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-sx .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-sx .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-sx .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-sx .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-sx .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-sx .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-sx .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-sx .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-sx .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-sx .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-sx .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-sx .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-sx .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-sx .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-sx .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-sx .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-sx .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-sx .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-sx .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-sx .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-sx .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-sx .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-sx .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-sx .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-sx .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-sx .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-sx .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-sx .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-sx .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-sx .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-sx .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-sx .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-sx .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-sx .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-sx .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-sx .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-sx .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-sx .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-sx .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-sx .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-sx .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-sx .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-sx .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-sx .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-sx .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-sx .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-sx .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-sx .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-sx .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-sx .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-sx .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-sx .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-sx .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-sx .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-sx .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-sx .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-sx .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-sx .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-sx .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-sx .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-sx .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-sx .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-sx .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-sx .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-sx .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-sx .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-sx .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-sx .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-sx .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-sx .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-sx .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-sx .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-sx .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-sx .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-sx .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-sx .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-sx .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-sx .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-sx .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-sx .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-sx .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-sx .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-sx .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-sx .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-sx .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-sx .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-sx .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-sx .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-sx .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-sx .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-sx .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-sx .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-sx .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-sx .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-sx .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-sx .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-sx .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-sx .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-sx .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-sx .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-sx .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-sx .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-sx .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-sx .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-sx .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-sx .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-sx .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-sx .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-sx .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-sx .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-sx .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-sx .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-sx .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-sx .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-sx .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-sx .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-sx .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-sx .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-sx .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-sx .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-sx .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-sx .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-sx .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-sx .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-sx .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-sx .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-sx .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-sx .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-sx .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-sx .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-sx .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-sx .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-sx .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-sx .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-sx .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-sx .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-sx .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-sx .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-sx .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-sx .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-sx .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-sx .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-sx .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-sx .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-sx .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-sx .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-sx .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-sx .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-sx .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-sx .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-sx .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-sx .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-sx .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-sx .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-sx .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-sx .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-sx .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-sx .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-sx .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-sx .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-sx .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-sx .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-sx .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-sx .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-sx .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-sx .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-sx .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-sx .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-sx .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-sx .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-sx .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-sx .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-sx .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-sx .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-sx .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-sx .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-sx .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-sx .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-sx .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-sx .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-sx .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-sx .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-sx .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-sx .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-sx .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-sx .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-sx .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-sx .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-sx .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-sx .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-sx .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-sx .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-sx .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-sx .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-sx .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-sx .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-sx .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-sx .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-sx .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-sx .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-sx .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-sx .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-sx .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-sx .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-sx .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-sx .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-sx .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-sx .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-sx .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-sx .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-sx .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-sx .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-sx .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-sx .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-sx .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-sx .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-sx .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-sx .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-sx .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-sx .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-sx .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-sx .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-sx .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-sx .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-sx .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-sx .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-sx .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-sx .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-sx .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-sx .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-sx .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-sx .iti-flag.np {

  background-color: transparent;

}

#custom-html-sx body,

#custom-html-sx button,

#custom-html-sx input,

#custom-html-sx select,

#custom-html-sx textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-sx h1,

#custom-html-sx h2,

#custom-html-sx h3,

#custom-html-sx h4,

#custom-html-sx h5,

#custom-html-sx h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-sx .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-sx .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-sx .navbar-main li.account {

  background-color: #000000;

}

#custom-html-sx .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-sx .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-sx .navbar-main .navbar-nav > .active > a,

#custom-html-sx .navbar-main .navbar-nav > .active > a:focus,

#custom-html-sx .navbar-main .navbar-nav > .active > a:hover,

#custom-html-sx .navbar-main .navbar-nav > .open > a,

#custom-html-sx .navbar-main .navbar-nav > .open > a:focus,

#custom-html-sx .navbar-main .navbar-nav > .open > a:hover,

#custom-html-sx .navbar-main .navbar-nav > li > a:focus,

#custom-html-sx .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-sx #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-sx .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-sx .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-sx .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-sx .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-sx .navbar-header {

    float: none;

  }

  #custom-html-sx .navbar-left,

  #custom-html-sx .navbar-right {

    float: none !important;

  }

  #custom-html-sx .navbar-toggle {

    display: block;

  }

  #custom-html-sx .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-sx .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-sx .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-sx .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-sx .navbar-nav > li {

    float: none;

  }

  #custom-html-sx .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-sx .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-sx .panel {

  font-size: 0.9em;

}

#custom-html-sx .list-group {

  font-size: 0.9em;

}

#custom-html-sx .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-sx .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-sx a.list-group-item.active,

#custom-html-sx a.list-group-item.active:focus,

#custom-html-sx a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sx .pagination {

  font-size: 0.8em;

}

#custom-html-sx .pagination > .active > a,

#custom-html-sx .pagination > .active > a:focus,

#custom-html-sx .pagination > .active > a:hover,

#custom-html-sx .pagination > .active > span,

#custom-html-sx .pagination > .active > span:focus,

#custom-html-sx .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-sx .dropdown-menu > li > a:focus,

#custom-html-sx .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-sx .label {

  border-radius: 0;

}

#custom-html-sx input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-sx .list-group-item {

  padding: 7px 15px;

}

#custom-html-sx .panel-body {

  padding: 10px 15px;

}

#custom-html-sx .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-sx .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-sx .btn {

  overflow: hidden;

}

#custom-html-sx body,

#custom-html-sx html {

  height: 100%;

}

#custom-html-sx body {

  background-color: #f8f8f8;

}

#custom-html-sx h1,

#custom-html-sx h2,

#custom-html-sx h3,

#custom-html-sx h4,

#custom-html-sx h5,

#custom-html-sx h6 {

  font-weight: 400;

}

#custom-html-sx a {

  color: #005588;

}

#custom-html-sx section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-sx section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-sx section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-sx section#header .search {

  margin: 20px 0;

}

#custom-html-sx section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-sx section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-sx section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-sx section#main-content {

  margin-bottom: 60px;

}

#custom-html-sx .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-sx section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-sx section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-sx section#footer {

    line-height: 32px;


  }

}

#custom-html-sx section#footer .back-to-top {

  float: right;

}

#custom-html-sx section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-sx .adminreturndiv {

  display: none !important;

}

#custom-html-sx .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-sx .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sx .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-sx .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-sx .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-sx .navbar-main .navbar-toggle:focus,

#custom-html-sx .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-sx .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-sx .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-sx .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-sx .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-sx .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-sx div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-sx div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-sx div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-sx div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-sx div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-sx .h1,

  #custom-html-sx h1 {

    font-size: 26px;

  }

  #custom-html-sx .h2,

  #custom-html-sx h2 {

    font-size: 20px;

  }

  #custom-html-sx .h3,

  #custom-html-sx h3 {

    font-size: 16px;

  }

  #custom-html-sx .h4,

  #custom-html-sx h4 {

    font-size: 14px;

  }

  #custom-html-sx .h5,

  #custom-html-sx h5 {

    font-size: 12px;

  }

  #custom-html-sx .h6,

  #custom-html-sx h6 {

    font-size: 11px;

  }

  #custom-html-sx div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-sx .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-sx .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-sx .margin-10 {

  margin: 10px;

}

#custom-html-sx .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-sx .margin-top-5 {

  margin-top: 5px;

}

#custom-html-sx .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-sx .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-sx .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-sx .input-inline {

  display: inline-block;

}

#custom-html-sx .input-inline-100 {

  width: 100px;

}

#custom-html-sx .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-sx .pull-md-left {

    float: left;

  }

  #custom-html-sx .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-sx .pull-sm-left {

    float: left;

  }

  #custom-html-sx .pull-sm-right {

    float: right;

  }

  #custom-html-sx .text-right-sm {

    text-align: right;

  }

}

#custom-html-sx .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-sx .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-sx .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-sx .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-sx .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-sx .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-sx .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-sx i.icon-rss {

  color: #ff6600;

}

#custom-html-sx section#main-menu {

  background-color: #000000;

}

#custom-html-sx section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-sx section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-sx section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-sx section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-sx section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-sx section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-sx section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-sx section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-sx section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-sx section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-sx section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-sx section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-sx section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-sx .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-sx .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sx .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-sx .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-sx .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-sx .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-sx .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-sx .home-shortcuts li span {

  display: none;

}

#custom-html-sx .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-sx .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-sx .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-sx .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-sx .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-sx .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-sx .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-sx .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-sx .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-sx .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-sx .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-sx .client-home-panels .panel small {

  color: #888888;

}

#custom-html-sx .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-sx .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-sx .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-sx .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sx .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-sx .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-sx .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-sx .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-sx .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sx .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-sx .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-sx .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-sx .tiles .tile a {

  text-decoration: none;

}

#custom-html-sx .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-sx .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-sx .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-sx .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-sx .tiles .tile:nth-child(1),

  #custom-html-sx .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-sx .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-sx .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-sx .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-sx .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-sx .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-sx .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-sx .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-sx .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-sx .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-sx .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-sx .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-sx .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-sx .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-sx .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-sx .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-sx .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-sx .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-sx .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-sx .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-sx .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-sx .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-sx .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-sx .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-sx .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-sx .bg-color-red {

  background-color: #d9534f;

}

#custom-html-sx .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-sx .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-sx .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-sx .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-sx .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-sx .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-sx .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-sx .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-sx .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-sx .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-sx .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-sx .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-sx .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-sx .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-sx .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-sx .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-sx ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-sx ul.top-nav > li,

#custom-html-sx ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-sx ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-sx ul.top-nav > li:active > a,

#custom-html-sx ul.top-nav > li:focus > a,

#custom-html-sx ul.top-nav > li:hover > a,

#custom-html-sx ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-sx ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-sx ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-sx ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-sx ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-sx ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-sx ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-sx ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-sx ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-sx ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-sx ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-sx div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-sx div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-sx div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-sx div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-sx div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-sx div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-sx .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-sx .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-sx .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-sx .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-sx .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-sx .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-sx .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-sx .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-sx .domain-check-availability {

  width: 100px;

}

#custom-html-sx .domain-step-options {

  min-height: 300px;

}

#custom-html-sx .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sx .domain-checker-available {

  color: #5cb85c;

}

#custom-html-sx .domain-checker-invalid,

#custom-html-sx .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-sx div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-sx .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-sx .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-sx .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-sx a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-sx .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-sx .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-sx .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sx .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-sx .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-sx .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-sx .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-sx .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-sx .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-sx .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-sx .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-sx .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-sx .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sx .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-sx .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-sx .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-sx .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-sx .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-sx .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-sx .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-sx .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-sx .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-sx .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-sx .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-sx .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-sx .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-sx div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-sx div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-sx div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-sx .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-sx .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-sx .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-sx .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-sx div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-sx div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-sx .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-sx .product-status-pending {

  background-color: #f89406;

}

#custom-html-sx .product-status-active {

  background-color: #46a546;

}

#custom-html-sx .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-sx .product-status-cancelled,

#custom-html-sx .product-status-terminated {

  background-color: #666666;

}

#custom-html-sx .product-status-fraud {

  background-color: #000000;

}

#custom-html-sx .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-sx div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sx .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-sx .ssl-inactive {

  cursor: pointer;

}

#custom-html-sx .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-sx .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-sx .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-sx .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-sx .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-sx .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-sx .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-sx .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-sx .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-sx .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-sx .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-sx .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-sx .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-sx .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-sx .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-sx .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-sx .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-sx .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-sx .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-sx .pagination > li > a,

#custom-html-sx .pagination > li > span {

  color: #444444;

}

#custom-html-sx .pagination > .active > a,

#custom-html-sx .pagination > .active > a:focus,

#custom-html-sx .pagination > .active > a:hover,

#custom-html-sx .pagination > .active > span,

#custom-html-sx .pagination > .active > span:focus,

#custom-html-sx .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-sx table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-sx .table-container {

  padding: 0 0 25px 0;

}

#custom-html-sx table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-sx .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-sx table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-sx .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-sx .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-sx .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-sx table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-sx table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-sx table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-sx .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-sx .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-sx .status-pending {

  color: #d9534f;

}

#custom-html-sx .status-pending.transfer {

  color: #a68500;

}

#custom-html-sx .status-active,

#custom-html-sx .status-completed,

#custom-html-sx .status-open {

  color: #3fad46;

}

#custom-html-sx .status-suspended {

  color: #f0ad4e;

}

#custom-html-sx .status-customer-reply {

  color: #ff6600;

}

#custom-html-sx .status-answered,

#custom-html-sx .status-fraud {

  color: #000000;

}

#custom-html-sx .status-expired,

#custom-html-sx .status-transferred.away {

  color: #004258;

}

#custom-html-sx .status-cancelled {

  color: #9fa29a;

}

#custom-html-sx .status-terminated {

  color: #666666;

}

#custom-html-sx .status-onhold {

  color: #224488;

}

#custom-html-sx .status-inprogress {

  color: #cc0000;

}

#custom-html-sx .status-closed {

  color: #888888;

}

#custom-html-sx .status-paid {

  color: #498302;

}

#custom-html-sx .status-unpaid {

  color: #ed3e48;

}

#custom-html-sx .status-cancelled {

  color: #87939f;

}

#custom-html-sx .status-collections {

  color: #9a141e;

}

#custom-html-sx .status-refunded {

  color: #319fc3;

}

#custom-html-sx .status-customer-reply {

  color: #ff6600;

}

#custom-html-sx .status-delivered {

  color: #224488;

}

#custom-html-sx .status-accepted {

  color: #498302;

}

#custom-html-sx .status-dead,

#custom-html-sx .status-lost {

  color: #000000;

}

#custom-html-sx .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-sx .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-sx .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-sx .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-sx .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-sx .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-sx .affiliate-stat span {


    font-size: 2.1em;

  }

  #custom-html-sx .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-sx .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-sx .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-sx .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-sx .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-sx .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-sx .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-sx .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-sx .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-sx .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-sx .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-sx .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-sx .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-sx .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-sx .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-sx .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-sx .ticket-reply .rating,

#custom-html-sx .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-sx .ticket-reply .rating span.star,

#custom-html-sx .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-sx .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-sx .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-sx .ticket-reply .rating span.star:before,

#custom-html-sx .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-sx .ticket-reply .rating span.star:hover:before,

#custom-html-sx .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-sx .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-sx .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-sx .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-sx .ticket-reply .clear {

  clear: both;

}

#custom-html-sx .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-sx .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-sx .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-sx .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-sx .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-sx .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-sx .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-sx .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-sx .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sx .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-sx .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-sx .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-sx .popover-user-notifications ul li i.far,

#custom-html-sx .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-sx .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-sx .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-sx .popover-user-notifications ul li i.far.fa-warning,

#custom-html-sx .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-sx .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-sx .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-sx .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-sx .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-sx .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-sx div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-sx div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-sx div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-sx div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-sx div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sx div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-sx div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-sx div.credit-card {

    max-width: 250px;

  }

  #custom-html-sx div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-sx div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-sx div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-sx div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-sx div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-sx .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-sx .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-sx .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-sx .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-sx .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-sx .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sx div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-sx div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-sx div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-sx div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-sx div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-sx div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-sx .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-sx .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-sx .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-sx .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-sx .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-sx .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-sx .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-sx div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-sx div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-sx div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-sx #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-sx .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-sx .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-sx .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-sx .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-sx .kb-category a small {

  color: #888888;

}

#custom-html-sx .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-sx .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-sx .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-sx .kbarticles a.admin-inline-edit,

#custom-html-sx .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-sx h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-sx .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-sx .kb-article-title h2 {

  margin: 0;

}

#custom-html-sx .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-sx .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-sx .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-sx .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-sx .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-sx .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-sx .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-sx .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-sx #stepResults {

  font-size: 20px;

}

#custom-html-sx #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-sx #stepResults {

    font-size: 14px;

  }

  #custom-html-sx #stepResults .label {

    font-size: 14px;

  }

  #custom-html-sx div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-sx #main-menu,

  #custom-html-sx #top-nav,

  #custom-html-sx .header-lined,

  #custom-html-sx .sidebar {

    display: none;

  }

  #custom-html-sx a[href]:after {

    content: "" !important;

  }

}

#custom-html-sx h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-sx h3.with-badge i,

#custom-html-sx h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-sx h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-sx h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-sx .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-sx .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-sx .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-sx a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-sx a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-sx .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-sx .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-sx .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-sx .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-sx .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-sx .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-sx .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-sx .login-popover {

  font-size: 12px;

}

#custom-html-sx .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-sx .login-popover hr {

  margin: 5px 0;

}

#custom-html-sx tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-sx tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-sx .error-container {

  text-align: center;

}

#custom-html-sx .error-container h1 {

  margin-top: 40px;

}

#custom-html-sx .error-container .buttons {

  margin: 25px 0;

}

#custom-html-sx .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-sx .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-sx .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-sx .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-sx #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-sx #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-sx #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-sx .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-sx #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-sx #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-sx #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-sx #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-sx #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-sx #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-sx .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-sx .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-sx .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sx .email-verification .btn:active,

#custom-html-sx .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-sx .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-sx .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-sx .email-verification .far,

#custom-html-sx .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-sx .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-sx .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-sx .email-verification .button {

    float: right;

  }

  #custom-html-sx .email-verification .far,

  #custom-html-sx .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-sx .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-sx .email-verification.success .far,

#custom-html-sx .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-sx .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-sx .email-verification.failed .far,

#custom-html-sx .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-sx .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-sx .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-sx .md-editor > .md-preview,

#custom-html-sx .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-sx div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sx .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-sx .small-font {

  font-size: 0.9em;

}

#custom-html-sx .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-sx .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-sx .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-sx .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-sx .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-sx .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-sx .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-sx .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-sx .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-sx .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-sx .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-sx .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-sx .panel-heading i.fab,

#custom-html-sx .panel-heading i.fal,

#custom-html-sx .panel-heading i.far,

#custom-html-sx .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-sx .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-sx .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-sx .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-sx .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-sx .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-sx .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-sx .panel-sidebar .list-group-item.disabled,

#custom-html-sx .panel-sidebar .list-group-item.disabled:focus,

#custom-html-sx .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-sx .panel-sidebar a.list-group-item:hover i.far,

#custom-html-sx .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-sx .panel-sidebar a.list-group-item.active,

#custom-html-sx .panel-sidebar a.list-group-item.active:focus,

#custom-html-sx .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-sx .panel-sidebar a.list-group-item.active i,

#custom-html-sx .panel-sidebar a.list-group-item.active:focus i,

#custom-html-sx .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-sx .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-sx .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-sx .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-sx .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-sx .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-sx .store-order-container h2 {

  margin-top: 0;

}

#custom-html-sx .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-sx .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-sx .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-sx .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-sx .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-sx .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-sx .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-sx .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-sx .store-order-container .payment-term {

    float: right;

  }

  #custom-html-sx .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-sx .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-sx .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-sx .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-sx .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-sx .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-sx .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sx .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-sx .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sx .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-sx .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-sx .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-sx .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-sx .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-sx .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-sx .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-sx .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-sx .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-sx .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-sx .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-sx .promo-banner p {

  margin: 5px 0;

}

#custom-html-sx .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-sx .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-sx .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-sx .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-sx .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-sx .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-sx .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-sx .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-sx .promo-banner-slim {

  padding: 10px;

}

#custom-html-sx .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-sx .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-sx .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-sx .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-sx .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-sx .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-sx .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-sx .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-sx .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-sx .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-sx .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-sx .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-sx .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-sx .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-sx .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-sx .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-sx .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-sx .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-sx .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-sx .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-sx .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-sx .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-sx .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sx .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sx .panel-mc-sso .btn,

#custom-html-sx .panel-mc-sso .form-control,

#custom-html-sx .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-sx .panel-mc-sso small {

  display: block;

}

#custom-html-sx .social-signin-btns {

  text-align: center;

}

#custom-html-sx .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-sx .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-sx .btn-social i.far,

#custom-html-sx .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-facebook.active,

#custom-html-sx .btn-facebook:active,

#custom-html-sx .btn-facebook:focus,

#custom-html-sx .btn-facebook:hover,

#custom-html-sx .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-facebook.active,

#custom-html-sx .btn-facebook:active,

#custom-html-sx .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-sx .btn-facebook.disabled,

#custom-html-sx .btn-facebook.disabled.active,

#custom-html-sx .btn-facebook.disabled:active,

#custom-html-sx .btn-facebook.disabled:focus,

#custom-html-sx .btn-facebook.disabled:hover,

#custom-html-sx .btn-facebook[disabled],

#custom-html-sx .btn-facebook[disabled].active,

#custom-html-sx .btn-facebook[disabled]:active,

#custom-html-sx .btn-facebook[disabled]:focus,

#custom-html-sx .btn-facebook[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-facebook,

#custom-html-sx fieldset[disabled] .btn-facebook.active,

#custom-html-sx fieldset[disabled] .btn-facebook:active,

#custom-html-sx fieldset[disabled] .btn-facebook:focus,

#custom-html-sx fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-google.active,

#custom-html-sx .btn-google:active,

#custom-html-sx .btn-google:focus,

#custom-html-sx .btn-google:hover,

#custom-html-sx .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-google.active,

#custom-html-sx .btn-google:active,

#custom-html-sx .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-sx .btn-google-plus.disabled.active,

#custom-html-sx .btn-google-plus.disabled:active,

#custom-html-sx .btn-google-plus.disabled:focus,

#custom-html-sx .btn-google-plus[disabled].active,

#custom-html-sx .btn-google-plus[disabled]:active,

#custom-html-sx .btn-google-plus[disabled]:focus,

#custom-html-sx .btn-google-plus[disabled]:hover,

#custom-html-sx .btn-google.disabled,

#custom-html-sx .btn-google.disabled:hover,

#custom-html-sx .btn-google[disabled],

#custom-html-sx fieldset[disabled] .btn-google,

#custom-html-sx fieldset[disabled] .btn-google-plus.active,

#custom-html-sx fieldset[disabled] .btn-google-plus:active,

#custom-html-sx fieldset[disabled] .btn-google-plus:focus,

#custom-html-sx fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-twitter.active,

#custom-html-sx .btn-twitter:active,

#custom-html-sx .btn-twitter:focus,

#custom-html-sx .btn-twitter:hover,

#custom-html-sx .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .btn-twitter.active,

#custom-html-sx .btn-twitter:active,

#custom-html-sx .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-sx .btn-twitter.disabled,

#custom-html-sx .btn-twitter.disabled.active,

#custom-html-sx .btn-twitter.disabled:active,

#custom-html-sx .btn-twitter.disabled:focus,

#custom-html-sx .btn-twitter.disabled:hover,

#custom-html-sx .btn-twitter[disabled],

#custom-html-sx .btn-twitter[disabled].active,

#custom-html-sx .btn-twitter[disabled]:active,

#custom-html-sx .btn-twitter[disabled]:focus,

#custom-html-sx .btn-twitter[disabled]:hover,

#custom-html-sx fieldset[disabled] .btn-twitter,

#custom-html-sx fieldset[disabled] .btn-twitter.active,

#custom-html-sx fieldset[disabled] .btn-twitter:active,

#custom-html-sx fieldset[disabled] .btn-twitter:focus,

#custom-html-sx fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-sx .providerPreLinking {

  min-height: 52px;

}

#custom-html-sx .providerLinkingFeedback {

  display: none;

}

#custom-html-sx #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-sx #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-sx #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-sx #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-sx .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-sx #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-sx #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-sx #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-sx #registration .field,

#custom-html-sx #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-sx #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-sx #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-sx #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-sx #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-sx #registration textarea.field {

  height: auto;

}

#custom-html-sx #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-sx #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-sx #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-sx #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-sx #registration .field[disabled],

#custom-html-sx #registration .field[readonly],

#custom-html-sx #registration .form-control[disabled],

#custom-html-sx #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-sx #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-sx .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-sx .upgrade .product-to-be-upgraded h4,

#custom-html-sx .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-sx .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-sx .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-sx .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-sx .upgrade .products .product .current,

#custom-html-sx .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-sx .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-sx .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-sx .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-sx .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-sx .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-sx .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-sx .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-sx .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-sx .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-sx .upgrade .products .far,

#custom-html-sx .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-sx .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-sx .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-sx .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-sx .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-sx .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-sx .alert .alert-text {

  margin-left: 56px;

}

#custom-html-sx .intl-tel-input {

  width: 100%;

}

#custom-html-sx .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sx .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .bootstrap-switch input[type=checkbox],

#custom-html-sx .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-sx .bootstrap-switch input[type=checkbox].form-control,

#custom-html-sx .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-sx .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-sx .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-sx .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-sx .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-sx .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-sx .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-sx .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-sx .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-sx .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-sx .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-sx .md-editor .md-footer,

#custom-html-sx .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-sx .md-editor > .md-header {

  margin: 0;

}

#custom-html-sx .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-sx .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-sx .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-sx .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-sx .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-sx .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-sx .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-sx .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-input,

#custom-html-sx .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-sx .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-sx .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-sx .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-sx .md-editor.md-fullscreen-mode .btn.active,

#custom-html-sx .md-editor.md-fullscreen-mode .btn:active,

#custom-html-sx .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-sx .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-sx .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-sx .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-sx .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-sx table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-sx table.dataTable td,

#custom-html-sx table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-sx table.dataTable td.dataTables_empty,

#custom-html-sx table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-sx table.dataTable.nowrap td,

#custom-html-sx table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-sx div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-sx table.dataTable thead > tr > td.sorting,

#custom-html-sx table.dataTable thead > tr > td.sorting_asc,

#custom-html-sx table.dataTable thead > tr > td.sorting_desc,

#custom-html-sx table.dataTable thead > tr > th.sorting,

#custom-html-sx table.dataTable thead > tr > th.sorting_asc,

#custom-html-sx table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-sx table.dataTable thead > tr > td:active,

#custom-html-sx table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-sx table.dataTable thead .sorting,

#custom-html-sx table.dataTable thead .sorting_asc,

#custom-html-sx table.dataTable thead .sorting_asc_disabled,

#custom-html-sx table.dataTable thead .sorting_desc,

#custom-html-sx table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-sx table.dataTable thead .sorting:after,

#custom-html-sx table.dataTable thead .sorting_asc:after,

#custom-html-sx table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sx table.dataTable thead .sorting_desc:after,

#custom-html-sx table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-sx table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-sx table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-sx table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-sx table.dataTable thead .sorting_asc_disabled:after,

#custom-html-sx table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-sx div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-sx div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-sx div.dataTables_scrollBody table thead .sorting:after,

#custom-html-sx div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-sx div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-sx div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-sx div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-sx div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-sx div.dataTables_wrapper div.dataTables_filter,

  #custom-html-sx div.dataTables_wrapper div.dataTables_info,

  #custom-html-sx div.dataTables_wrapper div.dataTables_length,

  #custom-html-sx div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-sx table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-sx table.dataTable.table-condensed .sorting:after,

#custom-html-sx table.dataTable.table-condensed .sorting_asc:after,

#custom-html-sx table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-sx table.table-bordered.dataTable td,

#custom-html-sx table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-sx table.table-bordered.dataTable td:last-child,

#custom-html-sx table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-sx table.table-bordered.dataTable tbody td,

#custom-html-sx table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-sx div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-sx div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-sx div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-sx div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-sx table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-sx table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-sx table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-sx table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-sx table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-sx table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-sx table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-sx table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-sx table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-sx table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-sx table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-sx table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sx table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-sx table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-sx table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-sx table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-sx div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-sx div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-sx div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-sx div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-sx div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-sx div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-sx div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-sx div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-sx .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-sx .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-sx .multiselect-container > li {

  padding: 0;

}

#custom-html-sx .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-sx .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-sx .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-sx .multiselect-container > li > a {

  padding: 0;

}

#custom-html-sx .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-sx .multiselect-container > li > a > label.checkbox,

#custom-html-sx .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-sx .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-sx .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-sx .form-inline .multiselect-container label.checkbox,

#custom-html-sx .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-sx .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-sx .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sl7xx6G7h9 {

  padding-top: 45px;

  padding-bottom: 30px;

  background-image: url("../../../assets/images/mbr-1920x1078.jpg");

}

.cid-sl7xx6G7h9 P {

  color: #767676;

}

.cid-sl7xx6G7h9 H1 {

  color: #ffffff;

}

.cid-sl7xx6G7h9 .mbr-text,

.cid-sl7xx6G7h9 .mbr-section-btn {

  color: #ffffff;

}

.cid-sl7xx6G7h9 h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3l5exO0X .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3l5exO0X .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3l5exO0X .divider-top::before,

.cid-sF3l5exO0X .divider-bottom::before,

.cid-sF3l5exO0X .divider-top::after,

.cid-sF3l5exO0X .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3l5exO0X .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3l5exO0X .divider-triangles::before {

  top: -50px;

}

.cid-sF3l5exO0X .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3l5exO0X .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3l5exO0X .divider-multitriangles::before,

.cid-sF3l5exO0X .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3l5exO0X .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-skZqTMMFwC {

  padding-top: 45px;

  padding-bottom: 45px;

  background-color: #ffffff;

}

.cid-skZqTMMFwC .mbr-section-btn > * {

  margin: 0;

}

.cid-skZqTMMFwC h4 {

  font-weight: 500;

}

.cid-skZqTMMFwC p {

  color: #232323;

}

.cid-skZqTMMFwC .aside-content {

  -webkit-flex-basis: 100%;

  flex-basis: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;

}

.cid-skZqTMMFwC .block-content {

  display: -webkit-flex;

  flex-direction: column;

  -webkit-flex-direction: column;

  word-break: break-word;

}

.cid-skZqTMMFwC .media {

  margin: initial;

  align-items: center;

  -webkit-align-items: center;

}

.cid-skZqTMMFwC .mbr-figure {

  align-self: flex-start;

  -webkit-align-self: flex-start;

  -webkit-flex-shrink: 0;

  flex-shrink: 0;

}

.cid-skZqTMMFwC .card-img {

  padding-right: 2rem;

  width: auto;

}

.cid-skZqTMMFwC .card-img span {

  font-size: 72px;

  color: #707070;

}

@media (min-width: 992px) {

  .cid-skZqTMMFwC .mbr-figure {

    padding-right: 4rem;

  }

}

@media (max-width: 991px) {

  .cid-skZqTMMFwC .mbr-figure {

    padding-right: 0;

    padding-bottom: 1rem;

    margin-bottom: 2rem;

  }

}

@media (max-width: 300px) {

  .cid-skZqTMMFwC .card-img span {

    font-size: 40px !important;

  }

}

.cid-skZqTMMFwC .cost {

  text-decoration: line-through;

  color: #767676;

}

.cid-skZqTMMFwC H2 {

  color: #000000;

}

.cid-skZqTMMFwC .text1 {

  color: #000000;

}

.cid-skZqTMMFwC .text2,

.cid-skZqTMMFwC .mbr-section-btn {

  color: #ffffff;

}

.cid-sF3mZWA4ND .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3mZWA4ND .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3mZWA4ND .divider-top::before,

.cid-sF3mZWA4ND .divider-bottom::before,

.cid-sF3mZWA4ND .divider-top::after,

.cid-sF3mZWA4ND .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3mZWA4ND .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3mZWA4ND .divider-triangles::before {

  top: -50px;

}

.cid-sF3mZWA4ND .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3mZWA4ND .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3mZWA4ND .divider-multitriangles::before,

.cid-sF3mZWA4ND .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3mZWA4ND .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-skZqVG0iXX {

  padding-top: 90px;

  padding-bottom: 90px;

  background-color: #efefef;

}

.cid-skZqVG0iXX .mbr-section-btn > * {

  margin: 0;

}

.cid-skZqVG0iXX h4 {

  font-weight: 500;

}

.cid-skZqVG0iXX p {

  color: #232323;

}

.cid-skZqVG0iXX .aside-content {

  -webkit-flex-basis: 100%;

  flex-basis: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;

}

.cid-skZqVG0iXX .block-content {

  display: -webkit-flex;

  flex-direction: column;

  -webkit-flex-direction: column;

  word-break: break-word;

}

.cid-skZqVG0iXX .media {

  margin: initial;

  align-items: center;

  -webkit-align-items: center;

}

.cid-skZqVG0iXX .mbr-figure {

  align-self: flex-start;

  -webkit-align-self: flex-start;

  -webkit-flex-shrink: 0;

  flex-shrink: 0;

}

.cid-skZqVG0iXX .card-img {

  padding-right: 2rem;

  width: auto;

}

.cid-skZqVG0iXX .card-img span {

  font-size: 72px;

  color: #707070;

}

@media (min-width: 992px) {

  .cid-skZqVG0iXX .mbr-figure {

    padding-right: 4rem;

  }

}

@media (max-width: 991px) {

  .cid-skZqVG0iXX .mbr-figure {

    padding-right: 0;

    padding-bottom: 1rem;

    margin-bottom: 2rem;

  }

}

@media (max-width: 300px) {

  .cid-skZqVG0iXX .card-img span {

    font-size: 40px !important;

  }

}

.cid-skZqVG0iXX .cost {

  text-decoration: line-through;

  color: #767676;

}

.cid-skZqVG0iXX H2 {

  color: #000000;

}

.cid-skZqVG0iXX .text1 {

  color: #efefef;

}

.cid-skZqVG0iXX .text2,

.cid-skZqVG0iXX .mbr-section-btn {

  color: #ffffff;

}

.cid-sF3niDcoi0 .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3niDcoi0 .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3niDcoi0 .divider-top::before,

.cid-sF3niDcoi0 .divider-bottom::before,

.cid-sF3niDcoi0 .divider-top::after,

.cid-sF3niDcoi0 .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3niDcoi0 .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3niDcoi0 .divider-triangles::before {

  top: -50px;

}

.cid-sF3niDcoi0 .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3niDcoi0 .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3niDcoi0 .divider-multitriangles::before,

.cid-sF3niDcoi0 .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3niDcoi0 .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-skZqXFt0PE {

  padding-top: 90px;

  padding-bottom: 90px;

  background-color: #ffffff;

}

.cid-skZqXFt0PE .mbr-section-btn > * {

  margin: 0;

}

.cid-skZqXFt0PE h4 {

  font-weight: 500;

}

.cid-skZqXFt0PE p {

  color: #232323;

}

.cid-skZqXFt0PE .aside-content {

  -webkit-flex-basis: 100%;

  flex-basis: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;

}

.cid-skZqXFt0PE .block-content {

  display: -webkit-flex;

  flex-direction: column;

  -webkit-flex-direction: column;

  word-break: break-word;

}

.cid-skZqXFt0PE .media {

  margin: initial;

  align-items: center;

  -webkit-align-items: center;

}

.cid-skZqXFt0PE .mbr-figure {

  align-self: flex-start;

  -webkit-align-self: flex-start;

  -webkit-flex-shrink: 0;

  flex-shrink: 0;

}

.cid-skZqXFt0PE .card-img {

  padding-right: 2rem;

  width: auto;

}

.cid-skZqXFt0PE .card-img span {

  font-size: 72px;

  color: #707070;

}

@media (min-width: 992px) {

  .cid-skZqXFt0PE .mbr-figure {

    padding-right: 4rem;

  }

}

@media (max-width: 991px) {

  .cid-skZqXFt0PE .mbr-figure {

    padding-right: 0;

    padding-bottom: 1rem;

    margin-bottom: 2rem;

  }

}

@media (max-width: 300px) {

  .cid-skZqXFt0PE .card-img span {

    font-size: 40px !important;

  }

}

.cid-skZqXFt0PE .cost {

  text-decoration: line-through;

  color: #767676;

}

.cid-skZqXFt0PE H2 {

  color: #000000;

}

.cid-skZqXFt0PE .text1 {

  color: #000000;

}

.cid-skZqXFt0PE .text2,

.cid-skZqXFt0PE .mbr-section-btn {

  color: #ffffff;

}

.cid-sF3nq3Tvcr .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3nq3Tvcr .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3nq3Tvcr .divider-top::before,

.cid-sF3nq3Tvcr .divider-bottom::before,

.cid-sF3nq3Tvcr .divider-top::after,

.cid-sF3nq3Tvcr .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3nq3Tvcr .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3nq3Tvcr .divider-triangles::before {

  top: -50px;

}

.cid-sF3nq3Tvcr .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3nq3Tvcr .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3nq3Tvcr .divider-multitriangles::before,

.cid-sF3nq3Tvcr .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3nq3Tvcr .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-skZr1PPMTc {

  padding-top: 90px;

  padding-bottom: 45px;

  background-color: #efefef;

}

.cid-skZr1PPMTc .mbr-section-btn > * {

  margin: 0;

}

.cid-skZr1PPMTc h4 {

  font-weight: 500;

}

.cid-skZr1PPMTc p {

  color: #232323;

}

.cid-skZr1PPMTc .aside-content {

  -webkit-flex-basis: 100%;

  flex-basis: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;

}

.cid-skZr1PPMTc .block-content {

  display: -webkit-flex;

  flex-direction: column;

  -webkit-flex-direction: column;

  word-break: break-word;

}

.cid-skZr1PPMTc .media {

  margin: initial;

  align-items: center;

  -webkit-align-items: center;

}

.cid-skZr1PPMTc .mbr-figure {

  align-self: flex-start;

  -webkit-align-self: flex-start;

  -webkit-flex-shrink: 0;

  flex-shrink: 0;

}

.cid-skZr1PPMTc .card-img {

  padding-right: 2rem;

  width: auto;

}

.cid-skZr1PPMTc .card-img span {

  font-size: 72px;

  color: #707070;

}

@media (min-width: 992px) {

  .cid-skZr1PPMTc .mbr-figure {

    padding-right: 4rem;

  }

}

@media (max-width: 991px) {

  .cid-skZr1PPMTc .mbr-figure {

    padding-right: 0;

    padding-bottom: 1rem;

    margin-bottom: 2rem;

  }

}

@media (max-width: 300px) {

  .cid-skZr1PPMTc .card-img span {

    font-size: 40px !important;

  }

}

.cid-skZr1PPMTc .cost {

  text-decoration: line-through;

  color: #767676;

}

.cid-skZr1PPMTc H2 {

  color: #000000;

}

.cid-skZr1PPMTc .text1 {

  color: #000000;

}

.cid-skZr1PPMTc .text2,

.cid-skZr1PPMTc .mbr-section-btn {

  color: #ffffff;

}

.cid-sF3nBI9Q0m .divider-top {

  position: relative;

  padding: -4em;

  background: #efefef;

}

.cid-sF3nBI9Q0m .divider-bottom {

  position: relative;

  padding: -6em;

  background: #ffffff;

}

.cid-sF3nBI9Q0m .divider-top::before,

.cid-sF3nBI9Q0m .divider-bottom::before,

.cid-sF3nBI9Q0m .divider-top::after,

.cid-sF3nBI9Q0m .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3nBI9Q0m .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3nBI9Q0m .divider-triangles::before {

  top: -50px;

}

.cid-sF3nBI9Q0m .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3nBI9Q0m .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3nBI9Q0m .divider-multitriangles::before,

.cid-sF3nBI9Q0m .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3nBI9Q0m .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-skZr33XTc4 {

  background-color: #ffffff;

}

.cid-skZr33XTc4 .mbr-figure {

  margin: 0 auto;

  width: 100%;

  display: -webkit-flex;

  justify-content: center;

  -webkit-justify-content: center;

}

.cid-skZr33XTc4 .mbr-figure img {

  height: 100%;

  margin: 0 auto;

}

@media (max-width: 991px) {

  .cid-skZr33XTc4 .mbr-figure img {

    width: 100% !important;

  }

}

.cid-skZr33XTc4 H3 {

  color: #000000;

}

.cid-sF3nQTWcUa .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3nQTWcUa .divider-bottom {

  position: relative;

  padding: -2.5em;

  background: #efefef;

}

.cid-sF3nQTWcUa .divider-top::before,

.cid-sF3nQTWcUa .divider-bottom::before,

.cid-sF3nQTWcUa .divider-top::after,

.cid-sF3nQTWcUa .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3nQTWcUa .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3nQTWcUa .divider-triangles::before {

  top: -50px;

}

.cid-sF3nQTWcUa .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3nQTWcUa .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3nQTWcUa .divider-multitriangles::before,

.cid-sF3nQTWcUa .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3nQTWcUa .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-skZr4f0Tab {

  padding-top: 90px;

  padding-bottom: 30px;

  background-color: #efefef;

}

.cid-skZr4f0Tab .mbr-section-btn > * {

  margin: 0;

}

.cid-skZr4f0Tab h4 {

  font-weight: 500;

}

.cid-skZr4f0Tab p {

  color: #232323;

}

.cid-skZr4f0Tab .aside-content {

  -webkit-flex-basis: 100%;

  flex-basis: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;

}

.cid-skZr4f0Tab .block-content {

  display: -webkit-flex;

  flex-direction: column;

  -webkit-flex-direction: column;

  word-break: break-word;

}

.cid-skZr4f0Tab .media {

  margin: initial;

  align-items: center;

  -webkit-align-items: center;

}

.cid-skZr4f0Tab .mbr-figure {

  align-self: flex-start;

  -webkit-align-self: flex-start;

  -webkit-flex-shrink: 0;

  flex-shrink: 0;

}

.cid-skZr4f0Tab .card-img {

  padding-right: 2rem;

  width: auto;

}

.cid-skZr4f0Tab .card-img span {

  font-size: 72px;

  color: #707070;

}

@media (min-width: 992px) {

  .cid-skZr4f0Tab .mbr-figure {

    padding-right: 4rem;

  }

}

@media (max-width: 991px) {

  .cid-skZr4f0Tab .mbr-figure {

    padding-right: 0;

    padding-bottom: 1rem;

    margin-bottom: 2rem;

  }

}

@media (max-width: 300px) {

  .cid-skZr4f0Tab .card-img span {

    font-size: 40px !important;

  }

}

.cid-skZr4f0Tab .cost {

  text-decoration: line-through;

  color: #767676;

}

.cid-skZr4f0Tab H2 {

  text-align: left;

  color: #000000;

}

.cid-skZr4f0Tab .text1 {

  color: #000000;

}

.cid-skZr4f0Tab .text2,

.cid-skZr4f0Tab .mbr-section-btn {

  color: #ffffff;

}

.cid-sF3ojJuBW1 .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3ojJuBW1 .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3ojJuBW1 .divider-top::before,

.cid-sF3ojJuBW1 .divider-bottom::before,

.cid-sF3ojJuBW1 .divider-top::after,

.cid-sF3ojJuBW1 .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3ojJuBW1 .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3ojJuBW1 .divider-triangles::before {

  top: -50px;

}

.cid-sF3ojJuBW1 .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3ojJuBW1 .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3ojJuBW1 .divider-multitriangles::before,

.cid-sF3ojJuBW1 .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3ojJuBW1 .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-skZr5ckWgJ {

  padding-top: 105px;

  padding-bottom: 15px;

  background-color: #ffffff;

}

.cid-skZr5ckWgJ P {

  color: #767676;

}

.cid-skZr5ckWgJ H1 {

  color: #000000;

}

.cid-skZr5ckWgJ .mbr-text,

.cid-skZr5ckWgJ .mbr-section-btn {

  color: #000000;

  text-align: left;

}

.cid-skZr5ZV6fU {

  padding-top: 0rem;

  padding-bottom: 2rem;

  background-color: #ffffff;

}

@media (min-width: 1500px) {

  .cid-skZr5ZV6fU .container {

    max-width: 1400px;

  }

}

.cid-skZr5ZV6fU .mbr-iconfont {

  display: block;

  font-size: 5rem;

  color: #6592e6;

  margin-bottom: 2rem;

}

.cid-skZr5ZV6fU .card-wrapper {

  margin-top: 3rem;

}

.cid-skZr5ZV6fU .row {

  justify-content: center;

}

.cid-skZr5ZV6fU .card-text,

.cid-skZr5ZV6fU .card-box {

  text-align: left;

  color: #000000;

}

.cid-skZr5ZV6fU .card-title,

.cid-skZr5ZV6fU .card-box {

  text-align: center;

  color: #000000;

}

.cid-skZr5ZV6fU .mbr-section-title {

  color: #ffffff;

}

.cid-sF3oE6RZ1q .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3oE6RZ1q .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3oE6RZ1q .divider-top::before,

.cid-sF3oE6RZ1q .divider-bottom::before,

.cid-sF3oE6RZ1q .divider-top::after,

.cid-sF3oE6RZ1q .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3oE6RZ1q .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3oE6RZ1q .divider-triangles::before {

  top: -50px;

}

.cid-sF3oE6RZ1q .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3oE6RZ1q .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3oE6RZ1q .divider-multitriangles::before,

.cid-sF3oE6RZ1q .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3oE6RZ1q .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-sl3pDNOcoZ {

  padding-top: 90px;

  padding-bottom: 90px;

  background-color: #efefef;

}

.cid-sl3pDNOcoZ .media-container-row {

  flex-direction: row-reverse;

  -webkit-flex-direction: row-reverse;

}

@media (min-width: 992px) {

  .cid-sl3pDNOcoZ .mbr-figure {

    padding-right: 4rem;

    padding-right: 0;

    padding-left: 4rem;

  }

}

@media (max-width: 991px) {

  .cid-sl3pDNOcoZ .mbr-figure {

    padding-bottom: 3rem;

  }

}

@media (max-width: 767px) {

  .cid-sl3pDNOcoZ .mbr-text {

    text-align: center;

  }

}

.cid-sl3pDNOcoZ H1 {

  color: #000000;

}

.cid-sl3pDNOcoZ .mbr-text,

.cid-sl3pDNOcoZ .mbr-section-btn {

  color: #000000;

}

.cid-sF3oOpdgaY .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3oOpdgaY .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3oOpdgaY .divider-top::before,

.cid-sF3oOpdgaY .divider-bottom::before,

.cid-sF3oOpdgaY .divider-top::after,

.cid-sF3oOpdgaY .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3oOpdgaY .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3oOpdgaY .divider-triangles::before {

  top: -50px;

}

.cid-sF3oOpdgaY .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3oOpdgaY .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3oOpdgaY .divider-multitriangles::before,

.cid-sF3oOpdgaY .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3oOpdgaY .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-skZrlib0EM {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-skZrlib0EM h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-skZrlib0EM p {

  color: #767676;

  text-align: left;

}

.cid-skZrlib0EM .card-box {

  padding-top: 2rem;

}

.cid-skZrlib0EM .card-wrapper {

  height: 100%;

}

.cid-svDzQ16Viy {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-svDzQ16Viy .content {

    text-align: center;

  }

  .cid-svDzQ16Viy .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-svDzQ16Viy .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-svDzQ16Viy .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-svDzQ16Viy .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-svDzQ16Viy .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-svDzQ16Viy .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-svDzQ16Viy .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-svDzQ16Viy .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-svDzQ16Viy .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-svDzQ16Viy .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-svDzQ16Viy .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-svDzQ16Viy .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-svDzQ16Viy .copyright > p {

  text-align: left;

}

.cid-svDzQ16Viy H5 {

  color: #000000;

}

.cid-56OEKVAq15 .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-56OEKVAq15 .my-float {

  margin-top: 16px;

}

.cid-56OEKVAq15 P {

  color: #232323;

}

.cid-56OEKVAq15 DIV {

  color: #ffffff;

}

.cid-56OEKVAq15 H10 {

  color: #767676;

}

.cid-56OEKVAq15 .hidden {

  display: none;

}

#custom-html-su {

  /*!







 * Bootstrap v3.3.7 (http://getbootstrap.com)







 * Copyright 2011-2016 Twitter, Inc.







 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)







 */

  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

}

#custom-html-su html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-su body {

  margin: 0;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #f8f8f8;

}

#custom-html-su article,

#custom-html-su aside,

#custom-html-su details,

#custom-html-su figcaption,

#custom-html-su figure,

#custom-html-su footer,

#custom-html-su header,

#custom-html-su hgroup,

#custom-html-su main,

#custom-html-su menu,

#custom-html-su nav,

#custom-html-su section,

#custom-html-su summary {

  display: block;

}

#custom-html-su audio,

#custom-html-su canvas,

#custom-html-su progress,

#custom-html-su video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-su audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-su [hidden],

#custom-html-su template {

  display: none;

}

#custom-html-su a {

  background-color: transparent;

  color: #005588;

  text-decoration: none;

}

#custom-html-su a:active,

#custom-html-su a:hover {

  outline: 0;

}

#custom-html-su abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-su b,

#custom-html-su strong {

  font-weight: 700;

}

#custom-html-su dfn {

  font-style: italic;

}

#custom-html-su h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-su mark {

  color: #000;

  background: #ffff00;

}

#custom-html-su small {

  font-size: 80%;

}

#custom-html-su sub,

#custom-html-su sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-su sup {

  top: -0.5em;

}

#custom-html-su sub {

  bottom: -0.25em;

}

#custom-html-su img {

  border: 0;

  vertical-align: middle;

}

#custom-html-su svg:not(:root) {

  overflow: hidden;

}

#custom-html-su figure {

  margin: 0;

}

#custom-html-su hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-su pre {

  overflow: auto;

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-su code,

#custom-html-su kbd,

#custom-html-su pre,

#custom-html-su samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 1em;

}

#custom-html-su button,

#custom-html-su input,

#custom-html-su optgroup,

#custom-html-su select,

#custom-html-su textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-su button {

  overflow: visible;

}

#custom-html-su button,

#custom-html-su select {

  text-transform: none;

}

#custom-html-su button,

#custom-html-su html input[type=button],

#custom-html-su input[type=reset],

#custom-html-su input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-su button[disabled],

#custom-html-su html input[disabled] {

  cursor: default;

}

#custom-html-su button::-moz-focus-inner,

#custom-html-su input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-su input {

  line-height: normal;

}

#custom-html-su input[type=checkbox],

#custom-html-su input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-su input[type=number]::-webkit-inner-spin-button,

#custom-html-su input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-su input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  -webkit-appearance: none;

}

#custom-html-su input[type=search]::-webkit-search-cancel-button,

#custom-html-su input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-su fieldset {

  padding: 0;

  margin: 0;

  border: 0;

  min-width: 0;

}

#custom-html-su legend {

  padding: 0;

  border: 0;

  display: block;

  width: 100%;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-su textarea {

  overflow: auto;

}

#custom-html-su optgroup {

  font-weight: 700;

}

#custom-html-su table {

  border-spacing: 0;

  border-collapse: collapse;

  background-color: transparent;

}

#custom-html-su td,

#custom-html-su th {

  padding: 0;

}

@media print {

  #custom-html-su *,

  #custom-html-su :after,

  #custom-html-su :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-su a,

  #custom-html-su a:visited {

    text-decoration: underline;

  }

  #custom-html-su a[href]:after {

    content: "" !important;

  }

  #custom-html-su abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-su a[href^="#"]:after,

  #custom-html-su a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-su blockquote,

  #custom-html-su pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-su thead {

    display: table-header-group;

  }

  #custom-html-su img,

  #custom-html-su tr {

    page-break-inside: avoid;

  }

  #custom-html-su img {

    max-width: 100% !important;

  }

  #custom-html-su h2,

  #custom-html-su h3,

  #custom-html-su p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-su h2,

  #custom-html-su h3 {

    page-break-after: avoid;

  }

  #custom-html-su .navbar {

    display: none;

  }

  #custom-html-su .btn > .caret,

  #custom-html-su .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-su .label {

    border: 1px solid #000000;

  }

  #custom-html-su .table {

    border-collapse: collapse !important;

  }

  #custom-html-su .table td,

  #custom-html-su .table th {

    background-color: #ffffff !important;

  }

  #custom-html-su .table-bordered td,

  #custom-html-su .table-bordered th {

    border: 1px solid #dddddd !important;

  }

  #custom-html-su .visible-print {

    display: block !important;

  }

  #custom-html-su table.visible-print {

    display: table !important;

  }

  #custom-html-su tr.visible-print {

    display: table-row !important;

  }

  #custom-html-su td.visible-print,

  #custom-html-su th.visible-print {

    display: table-cell !important;

  }

  #custom-html-su .visible-print-block {

    display: block !important;

  }

  #custom-html-su .visible-print-inline {

    display: inline !important;

  }

  #custom-html-su .visible-print-inline-block {

    display: inline-block !important;

  }

  #custom-html-su .hidden-print {

    display: none !important;

  }

  #custom-html-su #main-menu,

  #custom-html-su #top-nav,

  #custom-html-su .header-lined,

  #custom-html-su .sidebar {

    display: none;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(../../../../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-su .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-su .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-su .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-su .glyphicon-eur:before,

#custom-html-su .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-su .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-su .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-su .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-su .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-su .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-su .glyphicon-music:before {

  content: "\e002";

}

#custom-html-su .glyphicon-search:before {

  content: "\e003";

}

#custom-html-su .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-su .glyphicon-star:before {

  content: "\e006";

}

#custom-html-su .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-su .glyphicon-user:before {

  content: "\e008";

}

#custom-html-su .glyphicon-film:before {

  content: "\e009";

}

#custom-html-su .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-su .glyphicon-th:before {

  content: "\e011";

}

#custom-html-su .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-su .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-su .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-su .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-su .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-su .glyphicon-off:before {

  content: "\e017";

}

#custom-html-su .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-su .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-su .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-su .glyphicon-home:before {

  content: "\e021";

}

#custom-html-su .glyphicon-file:before {

  content: "\e022";

}

#custom-html-su .glyphicon-time:before {

  content: "\e023";

}

#custom-html-su .glyphicon-road:before {

  content: "\e024";

}

#custom-html-su .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-su .glyphicon-download:before {

  content: "\e026";

}

#custom-html-su .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-su .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-su .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-su .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-su .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-su .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-su .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-su .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-su .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-su .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-su .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-su .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-su .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-su .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-su .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-su .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-su .glyphicon-book:before {

  content: "\e043";

}

#custom-html-su .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-su .glyphicon-print:before {

  content: "\e045";

}

#custom-html-su .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-su .glyphicon-font:before {

  content: "\e047";

}

#custom-html-su .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-su .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-su .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-su .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-su .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-su .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-su .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-su .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-su .glyphicon-list:before {

  content: "\e056";

}

#custom-html-su .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-su .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-su .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-su .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-su .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-su .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-su .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-su .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-su .glyphicon-share:before {

  content: "\e066";

}

#custom-html-su .glyphicon-check:before {

  content: "\e067";

}

#custom-html-su .glyphicon-move:before {

  content: "\e068";

}

#custom-html-su .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-su .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-su .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-su .glyphicon-play:before {

  content: "\e072";

}

#custom-html-su .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-su .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-su .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-su .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-su .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-su .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-su .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-su .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-su .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-su .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-su .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-su .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-su .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-su .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-su .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-su .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-su .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-su .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-su .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-su .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-su .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-su .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-su .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-su .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-su .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-su .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-su .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-su .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-su .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-su .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-su .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-su .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-su .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-su .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-su .glyphicon-random:before {

  content: "\e110";

}

#custom-html-su .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-su .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-su .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-su .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-su .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-su .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-su .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-su .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-su .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-su .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-su .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-su .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-su .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-su .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-su .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-su .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-su .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-su .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-su .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-su .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-su .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-su .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-su .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-su .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-su .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-su .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-su .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-su .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-su .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-su .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-su .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-su .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-su .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-su .glyphicon-link:before {

  content: "\e144";

}

#custom-html-su .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-su .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-su .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-su .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-su .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-su .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-su .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-su .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-su .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-su .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-su .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-su .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-su .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-su .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-su .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-su .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-su .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-su .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-su .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-su .glyphicon-record:before {

  content: "\e165";

}

#custom-html-su .glyphicon-save:before {

  content: "\e166";

}

#custom-html-su .glyphicon-open:before {

  content: "\e167";

}

#custom-html-su .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-su .glyphicon-import:before {

  content: "\e169";

}

#custom-html-su .glyphicon-export:before {

  content: "\e170";

}

#custom-html-su .glyphicon-send:before {

  content: "\e171";

}

#custom-html-su .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-su .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-su .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-su .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-su .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-su .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-su .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-su .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-su .glyphicon-header:before {

  content: "\e180";

}

#custom-html-su .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-su .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-su .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-su .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-su .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-su .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-su .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-su .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-su .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-su .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-su .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-su .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-su .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-su .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-su .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-su .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-su .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-su .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-su .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-su .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-su .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-su .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-su .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-su .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-su .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-su .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-su .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-su .glyphicon-king:before {

  content: "\e211";

}

#custom-html-su .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-su .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-su .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-su .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-su .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-su .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-su .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-su .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-su .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-su .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-su .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-su .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-su .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-su .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-su .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-su .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-su .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-su .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-su .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-su .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-su .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-su .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-su .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-su .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-su .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-su .glyphicon-education:before {

  content: "\e233";

}

#custom-html-su .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-su .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-su .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-su .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-su .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-su .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-su .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-su .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-su .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-su .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-su .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-su .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-su .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-su .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-su .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-su .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-su .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-su .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-su .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-su .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-su .glyphicon-console:before {

  content: "\e254";

}

#custom-html-su .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-su .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-su .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-su .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-su .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-su .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-su * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-su :after,

#custom-html-su :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-su button,

#custom-html-su input,

#custom-html-su select,

#custom-html-su textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-su a:focus,

#custom-html-su a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-su a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-su .carousel-inner > .item > a > img,

#custom-html-su .carousel-inner > .item > img,

#custom-html-su .img-responsive,

#custom-html-su .thumbnail a > img,

#custom-html-su .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-su .img-rounded {

  border-radius: 6px;

}

#custom-html-su .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-su .img-circle {

  border-radius: 50%;

}

#custom-html-su .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-su .sr-only-focusable:active,

#custom-html-su .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-su [role=button] {

  cursor: pointer;

}

#custom-html-su .h1,

#custom-html-su .h2,

#custom-html-su .h3,

#custom-html-su .h4,

#custom-html-su .h5,

#custom-html-su .h6,

#custom-html-su h1,

#custom-html-su h2,

#custom-html-su h3,

#custom-html-su h4,

#custom-html-su h5,

#custom-html-su h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-su .h1 .small,

#custom-html-su .h1 small,

#custom-html-su .h2 .small,

#custom-html-su .h2 small,

#custom-html-su .h3 .small,

#custom-html-su .h3 small,

#custom-html-su .h4 .small,

#custom-html-su .h4 small,

#custom-html-su .h5 .small,

#custom-html-su .h5 small,

#custom-html-su .h6 .small,

#custom-html-su .h6 small,

#custom-html-su h1 .small,

#custom-html-su h1 small,

#custom-html-su h2 .small,

#custom-html-su h2 small,

#custom-html-su h3 .small,

#custom-html-su h3 small,

#custom-html-su h4 .small,

#custom-html-su h4 small,

#custom-html-su h5 .small,

#custom-html-su h5 small,

#custom-html-su h6 .small,

#custom-html-su h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-su .h1,

#custom-html-su .h2,

#custom-html-su .h3,

#custom-html-su h1,

#custom-html-su h2,

#custom-html-su h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-su .h1 .small,

#custom-html-su .h1 small,

#custom-html-su .h2 .small,

#custom-html-su .h2 small,

#custom-html-su .h3 .small,

#custom-html-su .h3 small,

#custom-html-su h1 .small,

#custom-html-su h1 small,

#custom-html-su h2 .small,

#custom-html-su h2 small,

#custom-html-su h3 .small,

#custom-html-su h3 small {

  font-size: 65%;

}

#custom-html-su .h4,

#custom-html-su .h5,

#custom-html-su .h6,

#custom-html-su h4,

#custom-html-su h5,

#custom-html-su h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-su .h4 .small,

#custom-html-su .h4 small,

#custom-html-su .h5 .small,

#custom-html-su .h5 small,

#custom-html-su .h6 .small,

#custom-html-su .h6 small,

#custom-html-su h4 .small,

#custom-html-su h4 small,

#custom-html-su h5 .small,

#custom-html-su h5 small,

#custom-html-su h6 .small,

#custom-html-su h6 small {

  font-size: 75%;

}

#custom-html-su .h1,

#custom-html-su h1 {

  font-size: 36px;

}

#custom-html-su .h2,

#custom-html-su h2 {

  font-size: 30px;

}

#custom-html-su .h3,

#custom-html-su h3 {

  font-size: 24px;

}

#custom-html-su .h4,

#custom-html-su h4 {

  font-size: 18px;

}

#custom-html-su .h5,

#custom-html-su h5 {

  font-size: 14px;

}

#custom-html-su .h6,

#custom-html-su h6 {

  font-size: 12px;

}

#custom-html-su p {

  margin: 0 0 10px;

}

#custom-html-su .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-su .lead {

    font-size: 21px;

  }

  #custom-html-su .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-su .dl-horizontal dd {

    margin-left: 180px;

  }

  #custom-html-su .container {

    width: 750px;

  }

  #custom-html-su .col-sm-1,

  #custom-html-su .col-sm-10,

  #custom-html-su .col-sm-11,

  #custom-html-su .col-sm-12,

  #custom-html-su .col-sm-2,

  #custom-html-su .col-sm-3,

  #custom-html-su .col-sm-4,

  #custom-html-su .col-sm-5,

  #custom-html-su .col-sm-6,

  #custom-html-su .col-sm-7,

  #custom-html-su .col-sm-8,

  #custom-html-su .col-sm-9 {

    float: left;

  }

  #custom-html-su .col-sm-12 {

    width: 100%;

  }

  #custom-html-su .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-su .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-su .col-sm-9 {

    width: 75%;

  }

  #custom-html-su .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-su .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-su .col-sm-6 {

    width: 50%;

  }

  #custom-html-su .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-su .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-su .col-sm-3 {

    width: 25%;

  }

  #custom-html-su .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-su .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-su .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-su .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-su .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-su .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-su .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-su .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-su .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-su .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-su .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-su .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-su .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-su .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-su .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-su .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-su .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-su .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-su .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-su .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-su .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-su .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-su .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-su .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-su .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-su .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-su .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-su .col-sm-push-0 {

    left: auto;

  }

  #custom-html-su .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-su .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-su .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-su .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-su .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-su .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-su .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-su .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-su .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-su .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-su .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-su .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-su .col-sm-offset-0 {

    margin-left: 0;

  }

  #custom-html-su .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-su .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-su .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-su .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-su .form-inline .input-group .form-control,

  #custom-html-su .form-inline .input-group .input-group-addon,

  #custom-html-su .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-su .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-su .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-su .form-inline .checkbox,

  #custom-html-su .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-su .form-inline .checkbox label,

  #custom-html-su .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-su .form-inline .checkbox input[type=checkbox],

  #custom-html-su .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-su .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-su .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

  #custom-html-su .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

  #custom-html-su .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

  #custom-html-su .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-su .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

  #custom-html-su .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-su .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-su .nav-tabs.nav-justified > .active > a,

  #custom-html-su .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-su .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-su .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-su .nav-justified > li > a {

    margin-bottom: 0;

  }

  #custom-html-su .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-su .nav-tabs-justified > .active > a,

  #custom-html-su .nav-tabs-justified > .active > a:focus,

  #custom-html-su .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

  #custom-html-su .navbar {

    border-radius: 4px;

  }

  #custom-html-su .navbar-header {

    float: left;

  }

  #custom-html-su .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-su .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-su .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-su .navbar-fixed-bottom .navbar-collapse,

  #custom-html-su .navbar-fixed-top .navbar-collapse,

  #custom-html-su .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

  #custom-html-su .container-fluid > .navbar-collapse,

  #custom-html-su .container-fluid > .navbar-header,

  #custom-html-su .container > .navbar-collapse,

  #custom-html-su .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

  #custom-html-su .navbar-static-top {

    border-radius: 0;

  }

  #custom-html-su .navbar-fixed-bottom,

  #custom-html-su .navbar-fixed-top {

    border-radius: 0;

  }

  #custom-html-su .navbar > .container .navbar-brand,

  #custom-html-su .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

  #custom-html-su .navbar-toggle {

    display: none;

  }

  #custom-html-su .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-su .navbar-nav > li {

    float: left;

  }

  #custom-html-su .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

  #custom-html-su .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-su .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-su .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-su .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-su .navbar-form .input-group .form-control,

  #custom-html-su .navbar-form .input-group .input-group-addon,

  #custom-html-su .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-su .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-su .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-su .navbar-form .checkbox,

  #custom-html-su .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-su .navbar-form .checkbox label,

  #custom-html-su .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-su .navbar-form .checkbox input[type=checkbox],

  #custom-html-su .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-su .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

  #custom-html-su .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-su .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

  #custom-html-su .navbar-left {

    float: left !important;

  }

  #custom-html-su .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-su .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

  #custom-html-su .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-su .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-su .modal-sm {

    width: 300px;

  }

  #custom-html-su .pull-sm-left {

    float: left;

  }

  #custom-html-su .pull-sm-right {

    float: right;

  }

  #custom-html-su .text-right-sm {

    text-align: right;

  }

  #custom-html-su .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-su .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

  #custom-html-su .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-su .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-su .email-verification .button {

    float: right;

  }

  #custom-html-su .email-verification .far,

  #custom-html-su .email-verification .fas {

    font-size: 36px;

  }

  #custom-html-su .store-order-container .payment-term {

    float: right;

  }

  #custom-html-su .store-order-container .payment-term h4 {

    margin-top: 0;

  }

  #custom-html-su .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-su .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-su .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-su .small,

#custom-html-su small {

  font-size: 85%;

}

#custom-html-su .mark,

#custom-html-su mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-su .text-left {

  text-align: left;

}

#custom-html-su .text-right {

  text-align: right;

}

#custom-html-su .text-center {

  text-align: center;

}

#custom-html-su .text-justify {

  text-align: justify;

}

#custom-html-su .text-nowrap {

  white-space: nowrap;

}

#custom-html-su .text-lowercase {

  text-transform: lowercase;

}

#custom-html-su .text-uppercase {

  text-transform: uppercase;

}

#custom-html-su .text-capitalize {

  text-transform: capitalize;

}

#custom-html-su .text-muted {

  color: #777777;

}

#custom-html-su .text-primary {

  color: #000000;

}

#custom-html-su a.text-primary:focus,

#custom-html-su a.text-primary:hover {

  color: #000000;

}

#custom-html-su .text-success {

  color: #3c763d;

}

#custom-html-su a.text-success:focus,

#custom-html-su a.text-success:hover {

  color: #2b542c;

}

#custom-html-su .text-info {

  color: #31708f;

}

#custom-html-su a.text-info:focus,

#custom-html-su a.text-info:hover {

  color: #000000;

}

#custom-html-su .text-warning {

  color: #8a6d3b;

}

#custom-html-su a.text-warning:focus,

#custom-html-su a.text-warning:hover {

  color: #66512c;

}

#custom-html-su .text-danger {

  color: #a94442;

}

#custom-html-su a.text-danger:focus,

#custom-html-su a.text-danger:hover {

  color: #843534;

}

#custom-html-su .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-su a.bg-primary:focus,

#custom-html-su a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-su .bg-success {

  background-color: #dff0d8;

}

#custom-html-su a.bg-success:focus,

#custom-html-su a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-su .bg-info {

  background-color: #d9edf7;

}

#custom-html-su a.bg-info:focus,

#custom-html-su a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-su .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-su a.bg-warning:focus,

#custom-html-su a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-su .bg-danger {

  background-color: #f2dede;

}

#custom-html-su a.bg-danger:focus,

#custom-html-su a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-su .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-su ol,

#custom-html-su ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-su ol ol,

#custom-html-su ol ul,

#custom-html-su ul ol,

#custom-html-su ul ul {

  margin-bottom: 0;

}

#custom-html-su .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-su .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-su .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-su dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-su dd,

#custom-html-su dt {

  line-height: 1.42857143;

}

#custom-html-su dt {

  font-weight: 700;

}

#custom-html-su dd {

  margin-left: 0;

}

#custom-html-su abbr[data-original-title],

#custom-html-su abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-su .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-su blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-su blockquote ol:last-child,

#custom-html-su blockquote p:last-child,

#custom-html-su blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-su blockquote .small,

#custom-html-su blockquote footer,

#custom-html-su blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-su blockquote .small:before,

#custom-html-su blockquote footer:before,

#custom-html-su blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-su .blockquote-reverse,

#custom-html-su blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-su .blockquote-reverse .small:before,

#custom-html-su .blockquote-reverse footer:before,

#custom-html-su .blockquote-reverse small:before,

#custom-html-su blockquote.pull-right .small:before,

#custom-html-su blockquote.pull-right footer:before,

#custom-html-su blockquote.pull-right small:before {

  content: '';

}

#custom-html-su .blockquote-reverse .small:after,

#custom-html-su .blockquote-reverse footer:after,

#custom-html-su .blockquote-reverse small:after,

#custom-html-su blockquote.pull-right .small:after,

#custom-html-su blockquote.pull-right footer:after,

#custom-html-su blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-su address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-su code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-su kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-su kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-su pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-su .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-su .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 992px) {

  #custom-html-su .container {

    width: 970px;

  }

  #custom-html-su .col-md-1,

  #custom-html-su .col-md-10,

  #custom-html-su .col-md-11,

  #custom-html-su .col-md-12,

  #custom-html-su .col-md-2,

  #custom-html-su .col-md-3,

  #custom-html-su .col-md-4,

  #custom-html-su .col-md-5,

  #custom-html-su .col-md-6,

  #custom-html-su .col-md-7,

  #custom-html-su .col-md-8,

  #custom-html-su .col-md-9 {

    float: left;

  }

  #custom-html-su .col-md-12 {

    width: 100%;

  }

  #custom-html-su .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-su .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-su .col-md-9 {

    width: 75%;

  }

  #custom-html-su .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-su .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-su .col-md-6 {

    width: 50%;

  }

  #custom-html-su .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-su .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-su .col-md-3 {

    width: 25%;

  }

  #custom-html-su .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-su .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-su .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-su .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-su .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-su .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-su .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-su .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-su .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-su .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-su .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-su .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-su .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-su .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-su .col-md-pull-0 {

    right: auto;

  }

  #custom-html-su .col-md-push-12 {

    left: 100%;

  }

  #custom-html-su .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-su .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-su .col-md-push-9 {

    left: 75%;

  }

  #custom-html-su .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-su .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-su .col-md-push-6 {

    left: 50%;

  }

  #custom-html-su .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-su .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-su .col-md-push-3 {

    left: 25%;

  }

  #custom-html-su .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-su .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-su .col-md-push-0 {

    left: auto;

  }

  #custom-html-su .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-su .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-su .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-su .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-su .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-su .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-su .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-su .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-su .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-su .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-su .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-su .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-su .col-md-offset-0 {

    margin-left: 0;

  }

  #custom-html-su .modal-lg {

    width: 900px;

  }

  #custom-html-su .pull-md-left {

    float: left;

  }

  #custom-html-su .pull-md-right {

    float: right;

  }

  #custom-html-su h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-su .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

@media (min-width: 1200px) {

  #custom-html-su .container {

    width: 1170px;

  }

  #custom-html-su .col-lg-1,

  #custom-html-su .col-lg-10,

  #custom-html-su .col-lg-11,

  #custom-html-su .col-lg-12,

  #custom-html-su .col-lg-2,

  #custom-html-su .col-lg-3,

  #custom-html-su .col-lg-4,

  #custom-html-su .col-lg-5,

  #custom-html-su .col-lg-6,

  #custom-html-su .col-lg-7,

  #custom-html-su .col-lg-8,

  #custom-html-su .col-lg-9 {

    float: left;

  }

  #custom-html-su .col-lg-12 {

    width: 100%;

  }

  #custom-html-su .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-su .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-su .col-lg-9 {

    width: 75%;

  }

  #custom-html-su .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-su .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-su .col-lg-6 {

    width: 50%;

  }

  #custom-html-su .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-su .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-su .col-lg-3 {

    width: 25%;

  }

  #custom-html-su .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-su .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-su .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-su .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-su .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-su .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-su .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-su .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-su .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-su .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-su .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-su .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-su .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-su .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-su .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-su .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-su .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-su .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-su .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-su .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-su .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-su .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-su .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-su .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-su .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-su .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-su .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-su .col-lg-push-0 {

    left: auto;

  }

  #custom-html-su .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-su .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-su .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-su .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-su .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-su .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-su .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-su .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-su .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-su .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-su .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-su .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-su .col-lg-offset-0 {

    margin-left: 0;

  }

  #custom-html-su .visible-lg {

    display: block !important;

  }

  #custom-html-su table.visible-lg {

    display: table !important;

  }

  #custom-html-su tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-su td.visible-lg,

  #custom-html-su th.visible-lg {

    display: table-cell !important;

  }

  #custom-html-su .visible-lg-block {

    display: block !important;

  }

  #custom-html-su .visible-lg-inline {

    display: inline !important;

  }

  #custom-html-su .visible-lg-inline-block {

    display: inline-block !important;

  }

  #custom-html-su .hidden-lg {

    display: none !important;

  }

  #custom-html-su .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-su .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-su .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-su .col-lg-1,

#custom-html-su .col-lg-10,

#custom-html-su .col-lg-11,

#custom-html-su .col-lg-12,

#custom-html-su .col-lg-2,

#custom-html-su .col-lg-3,

#custom-html-su .col-lg-4,

#custom-html-su .col-lg-5,

#custom-html-su .col-lg-6,

#custom-html-su .col-lg-7,

#custom-html-su .col-lg-8,

#custom-html-su .col-lg-9,

#custom-html-su .col-md-1,

#custom-html-su .col-md-10,

#custom-html-su .col-md-11,

#custom-html-su .col-md-12,

#custom-html-su .col-md-2,

#custom-html-su .col-md-3,

#custom-html-su .col-md-4,

#custom-html-su .col-md-5,

#custom-html-su .col-md-6,

#custom-html-su .col-md-7,

#custom-html-su .col-md-8,

#custom-html-su .col-md-9,

#custom-html-su .col-sm-1,

#custom-html-su .col-sm-10,

#custom-html-su .col-sm-11,

#custom-html-su .col-sm-12,

#custom-html-su .col-sm-2,

#custom-html-su .col-sm-3,

#custom-html-su .col-sm-4,

#custom-html-su .col-sm-5,

#custom-html-su .col-sm-6,

#custom-html-su .col-sm-7,

#custom-html-su .col-sm-8,

#custom-html-su .col-sm-9,

#custom-html-su .col-xs-1,

#custom-html-su .col-xs-10,

#custom-html-su .col-xs-11,

#custom-html-su .col-xs-12,

#custom-html-su .col-xs-2,

#custom-html-su .col-xs-3,

#custom-html-su .col-xs-4,

#custom-html-su .col-xs-5,

#custom-html-su .col-xs-6,

#custom-html-su .col-xs-7,

#custom-html-su .col-xs-8,

#custom-html-su .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-su .col-xs-1,

#custom-html-su .col-xs-10,

#custom-html-su .col-xs-11,

#custom-html-su .col-xs-12,

#custom-html-su .col-xs-2,

#custom-html-su .col-xs-3,

#custom-html-su .col-xs-4,

#custom-html-su .col-xs-5,

#custom-html-su .col-xs-6,

#custom-html-su .col-xs-7,

#custom-html-su .col-xs-8,

#custom-html-su .col-xs-9 {

  float: left;

}

#custom-html-su .col-xs-12 {

  width: 100%;

}

#custom-html-su .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-su .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-su .col-xs-9 {

  width: 75%;

}

#custom-html-su .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-su .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-su .col-xs-6 {

  width: 50%;

}

#custom-html-su .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-su .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-su .col-xs-3 {

  width: 25%;

}

#custom-html-su .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-su .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-su .col-xs-pull-12 {

  right: 100%;

}

#custom-html-su .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-su .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-su .col-xs-pull-9 {

  right: 75%;

}

#custom-html-su .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-su .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-su .col-xs-pull-6 {

  right: 50%;

}

#custom-html-su .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-su .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-su .col-xs-pull-3 {

  right: 25%;

}

#custom-html-su .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-su .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-su .col-xs-pull-0 {

  right: auto;

}

#custom-html-su .col-xs-push-12 {

  left: 100%;

}

#custom-html-su .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-su .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-su .col-xs-push-9 {

  left: 75%;

}

#custom-html-su .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-su .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-su .col-xs-push-6 {

  left: 50%;

}

#custom-html-su .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-su .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-su .col-xs-push-3 {

  left: 25%;

}

#custom-html-su .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-su .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-su .col-xs-push-0 {

  left: auto;

}

#custom-html-su .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-su .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-su .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-su .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-su .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-su .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-su .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-su .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-su .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-su .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-su .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-su .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-su .col-xs-offset-0 {

  margin-left: 0;

}

#custom-html-su caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-su th {

  text-align: left;

}

#custom-html-su .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-su .table > tbody > tr > td,

#custom-html-su .table > tbody > tr > th,

#custom-html-su .table > tfoot > tr > td,

#custom-html-su .table > tfoot > tr > th,

#custom-html-su .table > thead > tr > td,

#custom-html-su .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-su .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-su .table > caption + thead > tr:first-child > td,

#custom-html-su .table > caption + thead > tr:first-child > th,

#custom-html-su .table > colgroup + thead > tr:first-child > td,

#custom-html-su .table > colgroup + thead > tr:first-child > th,

#custom-html-su .table > thead:first-child > tr:first-child > td,

#custom-html-su .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-su .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-su .table .table {

  background-color: #ffffff;

}

#custom-html-su .table-condensed > tbody > tr > td,

#custom-html-su .table-condensed > tbody > tr > th,

#custom-html-su .table-condensed > tfoot > tr > td,

#custom-html-su .table-condensed > tfoot > tr > th,

#custom-html-su .table-condensed > thead > tr > td,

#custom-html-su .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-su .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-su .table-bordered > tbody > tr > td,

#custom-html-su .table-bordered > tbody > tr > th,

#custom-html-su .table-bordered > tfoot > tr > td,

#custom-html-su .table-bordered > tfoot > tr > th,

#custom-html-su .table-bordered > thead > tr > td,

#custom-html-su .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-su .table-bordered > thead > tr > td,

#custom-html-su .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-su .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-su .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-su table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-su table td[class*=col-],

#custom-html-su table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-su .table > tbody > tr.active > td,

#custom-html-su .table > tbody > tr.active > th,

#custom-html-su .table > tbody > tr > td.active,

#custom-html-su .table > tbody > tr > th.active,

#custom-html-su .table > tfoot > tr.active > td,

#custom-html-su .table > tfoot > tr.active > th,

#custom-html-su .table > tfoot > tr > td.active,

#custom-html-su .table > tfoot > tr > th.active,

#custom-html-su .table > thead > tr.active > td,

#custom-html-su .table > thead > tr.active > th,

#custom-html-su .table > thead > tr > td.active,

#custom-html-su .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-su .table-hover > tbody > tr.active:hover > td,

#custom-html-su .table-hover > tbody > tr.active:hover > th,

#custom-html-su .table-hover > tbody > tr:hover > .active,

#custom-html-su .table-hover > tbody > tr > td.active:hover,

#custom-html-su .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-su .table > tbody > tr.success > td,

#custom-html-su .table > tbody > tr.success > th,

#custom-html-su .table > tbody > tr > td.success,

#custom-html-su .table > tbody > tr > th.success,

#custom-html-su .table > tfoot > tr.success > td,

#custom-html-su .table > tfoot > tr.success > th,

#custom-html-su .table > tfoot > tr > td.success,

#custom-html-su .table > tfoot > tr > th.success,

#custom-html-su .table > thead > tr.success > td,

#custom-html-su .table > thead > tr.success > th,

#custom-html-su .table > thead > tr > td.success,

#custom-html-su .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-su .table-hover > tbody > tr.success:hover > td,

#custom-html-su .table-hover > tbody > tr.success:hover > th,

#custom-html-su .table-hover > tbody > tr:hover > .success,

#custom-html-su .table-hover > tbody > tr > td.success:hover,

#custom-html-su .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-su .table > tbody > tr.info > td,

#custom-html-su .table > tbody > tr.info > th,

#custom-html-su .table > tbody > tr > td.info,

#custom-html-su .table > tbody > tr > th.info,

#custom-html-su .table > tfoot > tr.info > td,

#custom-html-su .table > tfoot > tr.info > th,

#custom-html-su .table > tfoot > tr > td.info,

#custom-html-su .table > tfoot > tr > th.info,

#custom-html-su .table > thead > tr.info > td,

#custom-html-su .table > thead > tr.info > th,

#custom-html-su .table > thead > tr > td.info,

#custom-html-su .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-su .table-hover > tbody > tr.info:hover > td,

#custom-html-su .table-hover > tbody > tr.info:hover > th,

#custom-html-su .table-hover > tbody > tr:hover > .info,

#custom-html-su .table-hover > tbody > tr > td.info:hover,

#custom-html-su .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-su .table > tbody > tr.warning > td,

#custom-html-su .table > tbody > tr.warning > th,

#custom-html-su .table > tbody > tr > td.warning,

#custom-html-su .table > tbody > tr > th.warning,

#custom-html-su .table > tfoot > tr.warning > td,

#custom-html-su .table > tfoot > tr.warning > th,

#custom-html-su .table > tfoot > tr > td.warning,

#custom-html-su .table > tfoot > tr > th.warning,

#custom-html-su .table > thead > tr.warning > td,

#custom-html-su .table > thead > tr.warning > th,

#custom-html-su .table > thead > tr > td.warning,

#custom-html-su .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-su .table-hover > tbody > tr.warning:hover > td,

#custom-html-su .table-hover > tbody > tr.warning:hover > th,

#custom-html-su .table-hover > tbody > tr:hover > .warning,

#custom-html-su .table-hover > tbody > tr > td.warning:hover,

#custom-html-su .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-su .table > tbody > tr.danger > td,

#custom-html-su .table > tbody > tr.danger > th,

#custom-html-su .table > tbody > tr > td.danger,

#custom-html-su .table > tbody > tr > th.danger,

#custom-html-su .table > tfoot > tr.danger > td,

#custom-html-su .table > tfoot > tr.danger > th,

#custom-html-su .table > tfoot > tr > td.danger,

#custom-html-su .table > tfoot > tr > th.danger,

#custom-html-su .table > thead > tr.danger > td,

#custom-html-su .table > thead > tr.danger > th,

#custom-html-su .table > thead > tr > td.danger,

#custom-html-su .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-su .table-hover > tbody > tr.danger:hover > td,

#custom-html-su .table-hover > tbody > tr.danger:hover > th,

#custom-html-su .table-hover > tbody > tr:hover > .danger,

#custom-html-su .table-hover > tbody > tr > td.danger:hover,

#custom-html-su .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-su .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-su .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-su .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-su .table-responsive > .table > tbody > tr > td,

  #custom-html-su .table-responsive > .table > tbody > tr > th,

  #custom-html-su .table-responsive > .table > tfoot > tr > td,

  #custom-html-su .table-responsive > .table > tfoot > tr > th,

  #custom-html-su .table-responsive > .table > thead > tr > td,

  #custom-html-su .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-su .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-su .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-su .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-su .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-su .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-su .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-su .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-su .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-su .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-su .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-su .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-su .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-su .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-su .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-su .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-su .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-su .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

  #custom-html-su div.dataTables_wrapper div.dataTables_filter,

  #custom-html-su div.dataTables_wrapper div.dataTables_info,

  #custom-html-su div.dataTables_wrapper div.dataTables_length,

  #custom-html-su div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

  #custom-html-su div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-su label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-su input[type=file] {

  display: block;

}

#custom-html-su input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-su select[multiple],

#custom-html-su select[size] {

  height: auto;

}

#custom-html-su input[type=checkbox]:focus,

#custom-html-su input[type=file]:focus,

#custom-html-su input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-su output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-su .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-su .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-su .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-su .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-su .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-su .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-su .form-control[disabled],

#custom-html-su .form-control[readonly],

#custom-html-su fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-su .form-control[disabled],

#custom-html-su fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-su textarea.form-control {

  height: auto;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-su input[type=date].form-control,

  #custom-html-su input[type=datetime-local].form-control,

  #custom-html-su input[type=month].form-control,

  #custom-html-su input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-su .input-group-sm input[type=date],

  #custom-html-su .input-group-sm input[type=datetime-local],

  #custom-html-su .input-group-sm input[type=month],

  #custom-html-su .input-group-sm input[type=time],

  #custom-html-su input[type=date].input-sm,

  #custom-html-su input[type=datetime-local].input-sm,

  #custom-html-su input[type=month].input-sm,

  #custom-html-su input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-su .input-group-lg input[type=date],

  #custom-html-su .input-group-lg input[type=datetime-local],

  #custom-html-su .input-group-lg input[type=month],

  #custom-html-su .input-group-lg input[type=time],

  #custom-html-su input[type=date].input-lg,

  #custom-html-su input[type=datetime-local].input-lg,

  #custom-html-su input[type=month].input-lg,

  #custom-html-su input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-su .form-group {

  margin-bottom: 15px;

}

#custom-html-su .checkbox,

#custom-html-su .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-su .checkbox label,

#custom-html-su .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-su .checkbox input[type=checkbox],

#custom-html-su .checkbox-inline input[type=checkbox],

#custom-html-su .radio input[type=radio],

#custom-html-su .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-su .checkbox + .checkbox,

#custom-html-su .radio + .radio {

  margin-top: -5px;

}

#custom-html-su .checkbox-inline,

#custom-html-su .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-su .checkbox-inline + .checkbox-inline,

#custom-html-su .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-su fieldset[disabled] input[type=checkbox],

#custom-html-su fieldset[disabled] input[type=radio],

#custom-html-su input[type=checkbox].disabled,

#custom-html-su input[type=checkbox][disabled],

#custom-html-su input[type=radio].disabled,

#custom-html-su input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-su .checkbox-inline.disabled,

#custom-html-su .radio-inline.disabled,

#custom-html-su fieldset[disabled] .checkbox-inline,

#custom-html-su fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-su .checkbox.disabled label,

#custom-html-su .radio.disabled label,

#custom-html-su fieldset[disabled] .checkbox label,

#custom-html-su fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-su .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-su .form-control-static.input-lg,

#custom-html-su .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-su .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-su select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-su select[multiple].input-sm,

#custom-html-su textarea.input-sm {

  height: auto;

}

#custom-html-su .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-su .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-su .form-group-sm select[multiple].form-control,

#custom-html-su .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-su .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-su .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-su select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-su select[multiple].input-lg,

#custom-html-su textarea.input-lg {

  height: auto;

}

#custom-html-su .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-su .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-su .form-group-lg select[multiple].form-control,

#custom-html-su .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-su .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-su .has-feedback {

  position: relative;

}

#custom-html-su .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-su .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-su .form-group-lg .form-control + .form-control-feedback,

#custom-html-su .input-group-lg + .form-control-feedback,

#custom-html-su .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-su .form-group-sm .form-control + .form-control-feedback,

#custom-html-su .input-group-sm + .form-control-feedback,

#custom-html-su .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-su .has-success .checkbox,

#custom-html-su .has-success .checkbox-inline,

#custom-html-su .has-success .control-label,

#custom-html-su .has-success .help-block,

#custom-html-su .has-success .radio,

#custom-html-su .has-success .radio-inline,

#custom-html-su .has-success.checkbox label,

#custom-html-su .has-success.checkbox-inline label,

#custom-html-su .has-success.radio label,

#custom-html-su .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-su .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-su .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-su .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-su .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-su .has-warning .checkbox,

#custom-html-su .has-warning .checkbox-inline,

#custom-html-su .has-warning .control-label,

#custom-html-su .has-warning .help-block,

#custom-html-su .has-warning .radio,

#custom-html-su .has-warning .radio-inline,

#custom-html-su .has-warning.checkbox label,

#custom-html-su .has-warning.checkbox-inline label,

#custom-html-su .has-warning.radio label,

#custom-html-su .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-su .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-su .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-su .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-su .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-su .has-error .checkbox,

#custom-html-su .has-error .checkbox-inline,

#custom-html-su .has-error .control-label,

#custom-html-su .has-error .help-block,

#custom-html-su .has-error .radio,

#custom-html-su .has-error .radio-inline,

#custom-html-su .has-error.checkbox label,

#custom-html-su .has-error.checkbox-inline label,

#custom-html-su .has-error.radio label,

#custom-html-su .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-su .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-su .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-su .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-su .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-su .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-su .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-su .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

#custom-html-su .form-horizontal .checkbox,

#custom-html-su .form-horizontal .checkbox-inline,

#custom-html-su .form-horizontal .radio,

#custom-html-su .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-su .form-horizontal .checkbox,

#custom-html-su .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-su .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-su .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

#custom-html-su .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

  overflow: hidden;

}

#custom-html-su .btn.active.focus,

#custom-html-su .btn.active:focus,

#custom-html-su .btn.focus,

#custom-html-su .btn:active.focus,

#custom-html-su .btn:active:focus,

#custom-html-su .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-su .btn.focus,

#custom-html-su .btn:focus,

#custom-html-su .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-su .btn.active,

#custom-html-su .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-su .btn.disabled,

#custom-html-su .btn[disabled],

#custom-html-su fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-su a.btn.disabled,

#custom-html-su fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-su .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-su .btn-default.focus,

#custom-html-su .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-su .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-su .btn-default.active,

#custom-html-su .btn-default:active,

#custom-html-su .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

  background-image: none;

}

#custom-html-su .btn-default.active.focus,

#custom-html-su .btn-default.active:focus,

#custom-html-su .btn-default.active:hover,

#custom-html-su .btn-default:active.focus,

#custom-html-su .btn-default:active:focus,

#custom-html-su .btn-default:active:hover,

#custom-html-su .open > .dropdown-toggle.btn-default.focus,

#custom-html-su .open > .dropdown-toggle.btn-default:focus,

#custom-html-su .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-su .btn-default.disabled.focus,

#custom-html-su .btn-default.disabled:focus,

#custom-html-su .btn-default.disabled:hover,

#custom-html-su .btn-default[disabled].focus,

#custom-html-su .btn-default[disabled]:focus,

#custom-html-su .btn-default[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-default.focus,

#custom-html-su fieldset[disabled] .btn-default:focus,

#custom-html-su fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-su .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-su .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-su .btn-primary.focus,

#custom-html-su .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-su .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-su .btn-primary.active,

#custom-html-su .btn-primary:active,

#custom-html-su .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

  background-image: none;

}

#custom-html-su .btn-primary.active.focus,

#custom-html-su .btn-primary.active:focus,

#custom-html-su .btn-primary.active:hover,

#custom-html-su .btn-primary:active.focus,

#custom-html-su .btn-primary:active:focus,

#custom-html-su .btn-primary:active:hover,

#custom-html-su .open > .dropdown-toggle.btn-primary.focus,

#custom-html-su .open > .dropdown-toggle.btn-primary:focus,

#custom-html-su .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-su .btn-primary.disabled.focus,

#custom-html-su .btn-primary.disabled:focus,

#custom-html-su .btn-primary.disabled:hover,

#custom-html-su .btn-primary[disabled].focus,

#custom-html-su .btn-primary[disabled]:focus,

#custom-html-su .btn-primary[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-primary.focus,

#custom-html-su fieldset[disabled] .btn-primary:focus,

#custom-html-su fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-su .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-su .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-su .btn-success.focus,

#custom-html-su .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-su .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-su .btn-success.active,

#custom-html-su .btn-success:active,

#custom-html-su .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

  background-image: none;

}

#custom-html-su .btn-success.active.focus,

#custom-html-su .btn-success.active:focus,

#custom-html-su .btn-success.active:hover,

#custom-html-su .btn-success:active.focus,

#custom-html-su .btn-success:active:focus,

#custom-html-su .btn-success:active:hover,

#custom-html-su .open > .dropdown-toggle.btn-success.focus,

#custom-html-su .open > .dropdown-toggle.btn-success:focus,

#custom-html-su .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-su .btn-success.disabled.focus,

#custom-html-su .btn-success.disabled:focus,

#custom-html-su .btn-success.disabled:hover,

#custom-html-su .btn-success[disabled].focus,

#custom-html-su .btn-success[disabled]:focus,

#custom-html-su .btn-success[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-success.focus,

#custom-html-su fieldset[disabled] .btn-success:focus,

#custom-html-su fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-su .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-su .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-su .btn-info.focus,

#custom-html-su .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-su .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-su .btn-info.active,

#custom-html-su .btn-info:active,

#custom-html-su .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

  background-image: none;

}

#custom-html-su .btn-info.active.focus,

#custom-html-su .btn-info.active:focus,

#custom-html-su .btn-info.active:hover,

#custom-html-su .btn-info:active.focus,

#custom-html-su .btn-info:active:focus,

#custom-html-su .btn-info:active:hover,

#custom-html-su .open > .dropdown-toggle.btn-info.focus,

#custom-html-su .open > .dropdown-toggle.btn-info:focus,

#custom-html-su .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-su .btn-info.disabled.focus,

#custom-html-su .btn-info.disabled:focus,

#custom-html-su .btn-info.disabled:hover,

#custom-html-su .btn-info[disabled].focus,

#custom-html-su .btn-info[disabled]:focus,

#custom-html-su .btn-info[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-info.focus,

#custom-html-su fieldset[disabled] .btn-info:focus,

#custom-html-su fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-su .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-su .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-su .btn-warning.focus,

#custom-html-su .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-su .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-su .btn-warning.active,

#custom-html-su .btn-warning:active,

#custom-html-su .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

  background-image: none;

}

#custom-html-su .btn-warning.active.focus,

#custom-html-su .btn-warning.active:focus,

#custom-html-su .btn-warning.active:hover,

#custom-html-su .btn-warning:active.focus,

#custom-html-su .btn-warning:active:focus,

#custom-html-su .btn-warning:active:hover,

#custom-html-su .open > .dropdown-toggle.btn-warning.focus,

#custom-html-su .open > .dropdown-toggle.btn-warning:focus,

#custom-html-su .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-su .btn-warning.disabled.focus,

#custom-html-su .btn-warning.disabled:focus,

#custom-html-su .btn-warning.disabled:hover,

#custom-html-su .btn-warning[disabled].focus,

#custom-html-su .btn-warning[disabled]:focus,

#custom-html-su .btn-warning[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-warning.focus,

#custom-html-su fieldset[disabled] .btn-warning:focus,

#custom-html-su fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-su .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-su .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-su .btn-danger.focus,

#custom-html-su .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-su .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-su .btn-danger.active,

#custom-html-su .btn-danger:active,

#custom-html-su .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

  background-image: none;

}

#custom-html-su .btn-danger.active.focus,

#custom-html-su .btn-danger.active:focus,

#custom-html-su .btn-danger.active:hover,

#custom-html-su .btn-danger:active.focus,

#custom-html-su .btn-danger:active:focus,

#custom-html-su .btn-danger:active:hover,

#custom-html-su .open > .dropdown-toggle.btn-danger.focus,

#custom-html-su .open > .dropdown-toggle.btn-danger:focus,

#custom-html-su .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-su .btn-danger.disabled.focus,

#custom-html-su .btn-danger.disabled:focus,

#custom-html-su .btn-danger.disabled:hover,

#custom-html-su .btn-danger[disabled].focus,

#custom-html-su .btn-danger[disabled]:focus,

#custom-html-su .btn-danger[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-danger.focus,

#custom-html-su fieldset[disabled] .btn-danger:focus,

#custom-html-su fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-su .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-su .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-su .btn-link,

#custom-html-su .btn-link.active,

#custom-html-su .btn-link:active,

#custom-html-su .btn-link[disabled],

#custom-html-su fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-su .btn-link,

#custom-html-su .btn-link:active,

#custom-html-su .btn-link:focus,

#custom-html-su .btn-link:hover {

  border-color: transparent;

}

#custom-html-su .btn-link:focus,

#custom-html-su .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-su .btn-link[disabled]:focus,

#custom-html-su .btn-link[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-link:focus,

#custom-html-su fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-su .btn-group-lg > .btn,

#custom-html-su .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-su .btn-group-sm > .btn,

#custom-html-su .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-su .btn-group-xs > .btn,

#custom-html-su .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-su .btn-block {

  display: block;

  width: 100%;

}

#custom-html-su .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-su input[type=button].btn-block,

#custom-html-su input[type=reset].btn-block,

#custom-html-su input[type=submit].btn-block {

  width: 100%;

}

#custom-html-su .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-su .fade.in {

  opacity: 1;

}

#custom-html-su .collapse {

  display: none;

}

#custom-html-su .collapse.in {

  display: block;

}

#custom-html-su tr.collapse.in {

  display: table-row;

}

#custom-html-su tbody.collapse.in {

  display: table-row-group;

}

#custom-html-su .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-su .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-su .dropdown,

#custom-html-su .dropup {

  position: relative;

}

#custom-html-su .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-su .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-su .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-su .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-su .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-su .dropdown-menu > li > a:focus,

#custom-html-su .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-su .dropdown-menu > .active > a,

#custom-html-su .dropdown-menu > .active > a:focus,

#custom-html-su .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-su .dropdown-menu > .disabled > a,

#custom-html-su .dropdown-menu > .disabled > a:focus,

#custom-html-su .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-su .dropdown-menu > .disabled > a:focus,

#custom-html-su .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-su .open > .dropdown-menu {

  display: block;

}

#custom-html-su .open > a {

  outline: 0;

}

#custom-html-su .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-su .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-su .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-su .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-su .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-su .dropup .caret,

#custom-html-su .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-su .dropup .dropdown-menu,

#custom-html-su .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

#custom-html-su .btn-group,

#custom-html-su .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-su .btn-group-vertical > .btn,

#custom-html-su .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-su .btn-group-vertical > .btn.active,

#custom-html-su .btn-group-vertical > .btn:active,

#custom-html-su .btn-group-vertical > .btn:focus,

#custom-html-su .btn-group-vertical > .btn:hover,

#custom-html-su .btn-group > .btn.active,

#custom-html-su .btn-group > .btn:active,

#custom-html-su .btn-group > .btn:focus,

#custom-html-su .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-su .btn-group .btn + .btn,

#custom-html-su .btn-group .btn + .btn-group,

#custom-html-su .btn-group .btn-group + .btn,

#custom-html-su .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-su .btn-toolbar {

  margin-left: -5px;

}

#custom-html-su .btn-toolbar .btn,

#custom-html-su .btn-toolbar .btn-group,

#custom-html-su .btn-toolbar .input-group {

  float: left;

}

#custom-html-su .btn-toolbar > .btn,

#custom-html-su .btn-toolbar > .btn-group,

#custom-html-su .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-su .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-su .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-su .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-su .btn-group > .btn:last-child:not(:first-child),

#custom-html-su .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-su .btn-group > .btn-group {

  float: left;

}

#custom-html-su .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-su .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-su .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-su .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-su .btn-group .dropdown-toggle:active,

#custom-html-su .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-su .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-su .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-su .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-su .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-su .btn .caret {

  margin-left: 0;

}

#custom-html-su .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-su .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-su .btn-group-vertical > .btn,

#custom-html-su .btn-group-vertical > .btn-group,

#custom-html-su .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-su .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-su .btn-group-vertical > .btn + .btn,

#custom-html-su .btn-group-vertical > .btn + .btn-group,

#custom-html-su .btn-group-vertical > .btn-group + .btn,

#custom-html-su .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-su .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-su .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-su .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-su .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-su .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-su .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-su .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-su .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-su .btn-group-justified > .btn,

#custom-html-su .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-su .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-su .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-su [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-su [data-toggle=buttons] > .btn input[type=radio],

#custom-html-su [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-su [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-su .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-su .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-su .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-su .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-su .input-group-lg > .form-control,

#custom-html-su .input-group-lg > .input-group-addon,

#custom-html-su .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-su select.input-group-lg > .form-control,

#custom-html-su select.input-group-lg > .input-group-addon,

#custom-html-su select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-su select[multiple].input-group-lg > .form-control,

#custom-html-su select[multiple].input-group-lg > .input-group-addon,

#custom-html-su select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-su textarea.input-group-lg > .form-control,

#custom-html-su textarea.input-group-lg > .input-group-addon,

#custom-html-su textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-su .input-group-sm > .form-control,

#custom-html-su .input-group-sm > .input-group-addon,

#custom-html-su .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-su select.input-group-sm > .form-control,

#custom-html-su select.input-group-sm > .input-group-addon,

#custom-html-su select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-su select[multiple].input-group-sm > .form-control,

#custom-html-su select[multiple].input-group-sm > .input-group-addon,

#custom-html-su select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-su textarea.input-group-sm > .form-control,

#custom-html-su textarea.input-group-sm > .input-group-addon,

#custom-html-su textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-su .input-group .form-control,

#custom-html-su .input-group-addon,

#custom-html-su .input-group-btn {

  display: table-cell;

}

#custom-html-su .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-su .input-group-addon:not(:first-child):not(:last-child),

#custom-html-su .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-su .input-group-addon,

#custom-html-su .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-su .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-su .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-su .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-su .input-group-addon input[type=checkbox],

#custom-html-su .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-su .input-group .form-control:first-child,

#custom-html-su .input-group-addon:first-child,

#custom-html-su .input-group-btn:first-child > .btn,

#custom-html-su .input-group-btn:first-child > .btn-group > .btn,

#custom-html-su .input-group-btn:first-child > .dropdown-toggle,

#custom-html-su .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-su .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-su .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-su .input-group .form-control:last-child,

#custom-html-su .input-group-addon:last-child,

#custom-html-su .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-su .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-su .input-group-btn:last-child > .btn,

#custom-html-su .input-group-btn:last-child > .btn-group > .btn,

#custom-html-su .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-su .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-su .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-su .input-group-btn > .btn {

  position: relative;

}

#custom-html-su .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-su .input-group-btn > .btn:active,

#custom-html-su .input-group-btn > .btn:focus,

#custom-html-su .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-su .input-group-btn:first-child > .btn,

#custom-html-su .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-su .input-group-btn:last-child > .btn,

#custom-html-su .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-su .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-su .nav > li {

  position: relative;

  display: block;

}

#custom-html-su .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-su .nav > li > a:focus,

#custom-html-su .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-su .nav > li.disabled > a {

  color: #777777;

}

#custom-html-su .nav > li.disabled > a:focus,

#custom-html-su .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-su .nav .open > a,

#custom-html-su .nav .open > a:focus,

#custom-html-su .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-su .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-su .nav > li > a > img {

  max-width: none;

}

#custom-html-su .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-su .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-su .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-su .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-su .nav-tabs > li.active > a,

#custom-html-su .nav-tabs > li.active > a:focus,

#custom-html-su .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-su .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-su .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-su .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-su .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-su .nav-tabs.nav-justified > .active > a,

#custom-html-su .nav-tabs.nav-justified > .active > a:focus,

#custom-html-su .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-su .nav-pills > li {

  float: left;

}

#custom-html-su .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-su .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-su .nav-pills > li.active > a,

#custom-html-su .nav-pills > li.active > a:focus,

#custom-html-su .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-su .nav-stacked > li {

  float: none;

}

#custom-html-su .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-su .nav-justified {

  width: 100%;

}

#custom-html-su .nav-justified > li {

  float: none;

}

#custom-html-su .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-su .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

#custom-html-su .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-su .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-su .nav-tabs-justified > .active > a,

#custom-html-su .nav-tabs-justified > .active > a:focus,

#custom-html-su .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

#custom-html-su .tab-content > .tab-pane {

  display: none;

}

#custom-html-su .tab-content > .active {

  display: block;

}

#custom-html-su .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-su .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

#custom-html-su .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-su .navbar-collapse.in {

  overflow-y: auto;

}

#custom-html-su .navbar-fixed-bottom .navbar-collapse,

#custom-html-su .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-su .navbar-fixed-bottom .navbar-collapse,

  #custom-html-su .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-su .container-fluid > .navbar-collapse,

#custom-html-su .container-fluid > .navbar-header,

#custom-html-su .container > .navbar-collapse,

#custom-html-su .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-su .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

#custom-html-su .navbar-fixed-bottom,

#custom-html-su .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

#custom-html-su .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-su .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-su .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-su .navbar-brand:focus,

#custom-html-su .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-su .navbar-brand > img {

  display: block;

}

#custom-html-su .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-su .navbar-toggle:focus {

  outline: 0;

}

#custom-html-su .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-su .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

#custom-html-su .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-su .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-su .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-su .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-su .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-su .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-su .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-su .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

  #custom-html-su .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-su .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

  #custom-html-su .visible-xs {

    display: block !important;

  }

  #custom-html-su table.visible-xs {

    display: table !important;

  }

  #custom-html-su tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-su td.visible-xs,

  #custom-html-su th.visible-xs {

    display: table-cell !important;

  }

  #custom-html-su .visible-xs-block {

    display: block !important;

  }

  #custom-html-su .visible-xs-inline {

    display: inline !important;

  }

  #custom-html-su .visible-xs-inline-block {

    display: inline-block !important;

  }

  #custom-html-su .hidden-xs {

    display: none !important;

  }

  #custom-html-su .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-su .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

  #custom-html-su section#home-banner h2 {

    font-size: 22px;

  }

  #custom-html-su .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-su .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-su .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-su .home-shortcuts ul:hover li {

    width: 100%;

  }

  #custom-html-su .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-su .tiles .tile:nth-child(1),

  #custom-html-su .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

  #custom-html-su ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-su ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-su ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

  #custom-html-su .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-su .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-su .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

  #custom-html-su .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

  #custom-html-su .promo-banner form {

    text-align: center;

  }

}

#custom-html-su .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-su .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-su .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-su .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-su .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-su .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-su .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-su .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-su .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-su .navbar-default .navbar-brand:focus,

#custom-html-su .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-su .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-su .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-su .navbar-default .navbar-nav > li > a:focus,

#custom-html-su .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-su .navbar-default .navbar-nav > .active > a,

#custom-html-su .navbar-default .navbar-nav > .active > a:focus,

#custom-html-su .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-su .navbar-default .navbar-nav > .disabled > a,

#custom-html-su .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-su .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-su .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-su .navbar-default .navbar-toggle:focus,

#custom-html-su .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-su .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-su .navbar-default .navbar-collapse,

#custom-html-su .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-su .navbar-default .navbar-nav > .open > a,

#custom-html-su .navbar-default .navbar-nav > .open > a:focus,

#custom-html-su .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-su .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-su .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-su .navbar-default .btn-link {

  color: #777777;

}

#custom-html-su .navbar-default .btn-link:focus,

#custom-html-su .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-su .navbar-default .btn-link[disabled]:focus,

#custom-html-su .navbar-default .btn-link[disabled]:hover,

#custom-html-su fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-su fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-su .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-su .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-su .navbar-inverse .navbar-brand:focus,

#custom-html-su .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-su .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-su .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-su .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-su .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-su .navbar-inverse .navbar-nav > .active > a,

#custom-html-su .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-su .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-su .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-su .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-su .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-su .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-su .navbar-inverse .navbar-toggle:focus,

#custom-html-su .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-su .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-su .navbar-inverse .navbar-collapse,

#custom-html-su .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-su .navbar-inverse .navbar-nav > .open > a,

#custom-html-su .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-su .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-su .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-su .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-su .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-su .navbar-inverse .btn-link:focus,

#custom-html-su .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-su .navbar-inverse .btn-link[disabled]:focus,

#custom-html-su .navbar-inverse .btn-link[disabled]:hover,

#custom-html-su fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-su fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-su .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-su .breadcrumb > li {

  display: inline-block;

}

#custom-html-su .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-su .breadcrumb > .active {

  color: #777777;

}

#custom-html-su .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

  font-size: 0.8em;

}

#custom-html-su .pagination > li {

  display: inline;

}

#custom-html-su .pagination > li > a,

#custom-html-su .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #444444;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-su .pagination > li:first-child > a,

#custom-html-su .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-su .pagination > li:last-child > a,

#custom-html-su .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-su .pagination > li > a:focus,

#custom-html-su .pagination > li > a:hover,

#custom-html-su .pagination > li > span:focus,

#custom-html-su .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-su .pagination > .active > a,

#custom-html-su .pagination > .active > a:focus,

#custom-html-su .pagination > .active > a:hover,

#custom-html-su .pagination > .active > span,

#custom-html-su .pagination > .active > span:focus,

#custom-html-su .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-su .pagination > .disabled > a,

#custom-html-su .pagination > .disabled > a:focus,

#custom-html-su .pagination > .disabled > a:hover,

#custom-html-su .pagination > .disabled > span,

#custom-html-su .pagination > .disabled > span:focus,

#custom-html-su .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-su .pagination-lg > li > a,

#custom-html-su .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-su .pagination-lg > li:first-child > a,

#custom-html-su .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-su .pagination-lg > li:last-child > a,

#custom-html-su .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-su .pagination-sm > li > a,

#custom-html-su .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-su .pagination-sm > li:first-child > a,

#custom-html-su .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-su .pagination-sm > li:last-child > a,

#custom-html-su .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-su .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-su .pager li {

  display: inline;

}

#custom-html-su .pager li > a,

#custom-html-su .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-su .pager li > a:focus,

#custom-html-su .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-su .pager .next > a,

#custom-html-su .pager .next > span {

  float: right;

}

#custom-html-su .pager .previous > a,

#custom-html-su .pager .previous > span {

  float: left;

}

#custom-html-su .pager .disabled > a,

#custom-html-su .pager .disabled > a:focus,

#custom-html-su .pager .disabled > a:hover,

#custom-html-su .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-su .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0;

}

#custom-html-su a.label:focus,

#custom-html-su a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-su .label:empty {

  display: none;

}

#custom-html-su .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-su .label-default {

  background-color: #777777;

}

#custom-html-su .label-default[href]:focus,

#custom-html-su .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-su .label-primary {

  background-color: #337ab7;

}

#custom-html-su .label-primary[href]:focus,

#custom-html-su .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-su .label-success {

  background-color: #5cb85c;

}

#custom-html-su .label-success[href]:focus,

#custom-html-su .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-su .label-info {

  background-color: #5bc0de;

}

#custom-html-su .label-info[href]:focus,

#custom-html-su .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-su .label-warning {

  background-color: #f0ad4e;

}

#custom-html-su .label-warning[href]:focus,

#custom-html-su .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-su .label-danger {

  background-color: #d9534f;

}

#custom-html-su .label-danger[href]:focus,

#custom-html-su .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-su .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-su .badge:empty {

  display: none;

}

#custom-html-su .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-su .btn-group-xs > .btn .badge,

#custom-html-su .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-su a.badge:focus,

#custom-html-su a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-su .list-group-item.active > .badge,

#custom-html-su .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-su .list-group-item > .badge {

  float: right;

}

#custom-html-su .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-su .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-su .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-su .jumbotron .h1,

#custom-html-su .jumbotron h1 {

  color: inherit;

}

#custom-html-su .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-su .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-su .container .jumbotron,

#custom-html-su .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-su .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-su .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-su .container .jumbotron,

  #custom-html-su .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-su .jumbotron .h1,

  #custom-html-su .jumbotron h1 {

    font-size: 63px;

  }

  #custom-html-su .carousel-control .glyphicon-chevron-left,

  #custom-html-su .carousel-control .glyphicon-chevron-right,

  #custom-html-su .carousel-control .icon-next,

  #custom-html-su .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-su .carousel-control .glyphicon-chevron-left,

  #custom-html-su .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-su .carousel-control .glyphicon-chevron-right,

  #custom-html-su .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-su .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-su .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-su .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-su .thumbnail a > img,

#custom-html-su .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-su a.thumbnail.active,

#custom-html-su a.thumbnail:focus,

#custom-html-su a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-su .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-su .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-su .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-su .alert .alert-link {

  font-weight: 700;

}

#custom-html-su .alert > p,

#custom-html-su .alert > ul {

  margin-bottom: 0;

}

#custom-html-su .alert > p + p {

  margin-top: 5px;

}

#custom-html-su .alert-dismissable,

#custom-html-su .alert-dismissible {

  padding-right: 35px;

}

#custom-html-su .alert-dismissable .close,

#custom-html-su .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-su .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-su .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-su .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-su .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-su .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-su .alert-info .alert-link {

  color: #000000;

}

#custom-html-su .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-su .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-su .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-su .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-su .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-su .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-su .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-su .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-su .progress-bar-striped,

#custom-html-su .progress-striped .progress-bar {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-su .progress-bar.active,

#custom-html-su .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-su .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-su .progress-striped .progress-bar-success {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-su .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-su .progress-striped .progress-bar-info {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-su .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-su .progress-striped .progress-bar-warning {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-su .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-su .progress-striped .progress-bar-danger {

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-su .media {

  margin-top: 15px;

}

#custom-html-su .media:first-child {

  margin-top: 0;

}

#custom-html-su .media,

#custom-html-su .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-su .media-body {

  width: 10000px;

}

#custom-html-su .media-object {

  display: block;

}

#custom-html-su .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-su .media-right,

#custom-html-su .media > .pull-right {

  padding-left: 10px;

}

#custom-html-su .media-left,

#custom-html-su .media > .pull-left {

  padding-right: 10px;

}

#custom-html-su .media-body,

#custom-html-su .media-left,

#custom-html-su .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-su .media-middle {

  vertical-align: middle;

}

#custom-html-su .media-bottom {

  vertical-align: bottom;

}

#custom-html-su .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-su .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-su .list-group {

  padding-left: 0;

  margin-bottom: 20px;

  font-size: 0.9em;

}

#custom-html-su .list-group-item {

  position: relative;

  display: block;

  padding: 7px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

  border-color: #f5f5f5;

}

#custom-html-su .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-su .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-su a.list-group-item,

#custom-html-su button.list-group-item {

  color: #555555;

}

#custom-html-su a.list-group-item .list-group-item-heading,

#custom-html-su button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-su a.list-group-item:focus,

#custom-html-su a.list-group-item:hover,

#custom-html-su button.list-group-item:focus,

#custom-html-su button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-su button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-su .list-group-item.disabled,

#custom-html-su .list-group-item.disabled:focus,

#custom-html-su .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-su .list-group-item.disabled .list-group-item-heading,

#custom-html-su .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-su .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-su .list-group-item.disabled .list-group-item-text,

#custom-html-su .list-group-item.disabled:focus .list-group-item-text,

#custom-html-su .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-su .list-group-item.active,

#custom-html-su .list-group-item.active:focus,

#custom-html-su .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-su .list-group-item.active .list-group-item-heading,

#custom-html-su .list-group-item.active .list-group-item-heading > .small,

#custom-html-su .list-group-item.active .list-group-item-heading > small,

#custom-html-su .list-group-item.active:focus .list-group-item-heading,

#custom-html-su .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-su .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-su .list-group-item.active:hover .list-group-item-heading,

#custom-html-su .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-su .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-su .list-group-item.active .list-group-item-text,

#custom-html-su .list-group-item.active:focus .list-group-item-text,

#custom-html-su .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-su .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-su a.list-group-item-success,

#custom-html-su button.list-group-item-success {

  color: #3c763d;

}

#custom-html-su a.list-group-item-success .list-group-item-heading,

#custom-html-su button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-su a.list-group-item-success:focus,

#custom-html-su a.list-group-item-success:hover,

#custom-html-su button.list-group-item-success:focus,

#custom-html-su button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-su a.list-group-item-success.active,

#custom-html-su a.list-group-item-success.active:focus,

#custom-html-su a.list-group-item-success.active:hover,

#custom-html-su button.list-group-item-success.active,

#custom-html-su button.list-group-item-success.active:focus,

#custom-html-su button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-su .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-su a.list-group-item-info,

#custom-html-su button.list-group-item-info {

  color: #31708f;

}

#custom-html-su a.list-group-item-info .list-group-item-heading,

#custom-html-su button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-su a.list-group-item-info:focus,

#custom-html-su a.list-group-item-info:hover,

#custom-html-su button.list-group-item-info:focus,

#custom-html-su button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-su a.list-group-item-info.active,

#custom-html-su a.list-group-item-info.active:focus,

#custom-html-su a.list-group-item-info.active:hover,

#custom-html-su button.list-group-item-info.active,

#custom-html-su button.list-group-item-info.active:focus,

#custom-html-su button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-su .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-su a.list-group-item-warning,

#custom-html-su button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-su a.list-group-item-warning .list-group-item-heading,

#custom-html-su button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-su a.list-group-item-warning:focus,

#custom-html-su a.list-group-item-warning:hover,

#custom-html-su button.list-group-item-warning:focus,

#custom-html-su button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-su a.list-group-item-warning.active,

#custom-html-su a.list-group-item-warning.active:focus,

#custom-html-su a.list-group-item-warning.active:hover,

#custom-html-su button.list-group-item-warning.active,

#custom-html-su button.list-group-item-warning.active:focus,

#custom-html-su button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-su .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-su a.list-group-item-danger,

#custom-html-su button.list-group-item-danger {

  color: #a94442;

}

#custom-html-su a.list-group-item-danger .list-group-item-heading,

#custom-html-su button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-su a.list-group-item-danger:focus,

#custom-html-su a.list-group-item-danger:hover,

#custom-html-su button.list-group-item-danger:focus,

#custom-html-su button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-su a.list-group-item-danger.active,

#custom-html-su a.list-group-item-danger.active:focus,

#custom-html-su a.list-group-item-danger.active:hover,

#custom-html-su button.list-group-item-danger.active,

#custom-html-su button.list-group-item-danger.active:focus,

#custom-html-su button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-su .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-su .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-su .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  font-size: 0.9em;

}

#custom-html-su .panel-body {

  padding: 10px 15px;

}

#custom-html-su .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-su .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-su .panel-title > .small,

#custom-html-su .panel-title > .small > a,

#custom-html-su .panel-title > a,

#custom-html-su .panel-title > small,

#custom-html-su .panel-title > small > a {

  color: inherit;

}

#custom-html-su .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-su .panel > .list-group,

#custom-html-su .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-su .panel > .list-group .list-group-item,

#custom-html-su .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-su .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-su .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-su .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-su .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-su .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-su .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-su .panel > .panel-collapse > .table,

#custom-html-su .panel > .table,

#custom-html-su .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-su .panel > .panel-collapse > .table caption,

#custom-html-su .panel > .table caption,

#custom-html-su .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-su .panel > .table-responsive:first-child > .table:first-child,

#custom-html-su .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-su .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-su .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-su .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-su .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-su .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-su .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-su .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-su .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-su .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-su .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-su .panel > .table-responsive:last-child > .table:last-child,

#custom-html-su .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-su .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-su .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-su .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-su .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-su .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-su .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-su .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-su .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-su .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-su .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-su .panel > .panel-body + .table,

#custom-html-su .panel > .panel-body + .table-responsive,

#custom-html-su .panel > .table + .panel-body,

#custom-html-su .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-su .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-su .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-su .panel > .table-bordered,

#custom-html-su .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-su .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-su .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-su .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-su .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-su .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-su .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-su .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-su .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-su .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-su .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-su .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-su .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-su .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-su .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-su .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-su .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-su .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-su .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-su .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-su .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-su .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-su .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-su .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-su .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-su .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-su .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-su .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-su .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-su .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-su .panel-group {

  margin-bottom: 20px;

}

#custom-html-su .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-su .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-su .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-su .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-su .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-su .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-su .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-su .panel-default {

  border-color: #dddddd;

}

#custom-html-su .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-su .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-su .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-su .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-su .panel-primary {

  border-color: #337ab7;

}

#custom-html-su .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-su .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-su .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-su .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-su .panel-success {

  border-color: #d6e9c6;

}

#custom-html-su .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-su .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-su .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-su .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-su .panel-info {

  border-color: #bce8f1;

}

#custom-html-su .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-su .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-su .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-su .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-su .panel-warning {

  border-color: #faebcc;

}

#custom-html-su .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-su .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-su .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-su .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-su .panel-danger {

  border-color: #ebccd1;

}

#custom-html-su .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-su .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-su .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-su .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-su .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-su .embed-responsive .embed-responsive-item,

#custom-html-su .embed-responsive embed,

#custom-html-su .embed-responsive iframe,

#custom-html-su .embed-responsive object,

#custom-html-su .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-su .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-su .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-su .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-su .well blockquote {

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-su .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-su .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-su .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-su .close:focus,

#custom-html-su .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-su button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-su .modal-open {

  overflow: hidden;

}

#custom-html-su .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-su .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-su .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-su .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-su .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-su .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-su .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-su .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-su .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-su .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-su .modal-header .close {

  margin-top: -2px;

}

#custom-html-su .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-su .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-su .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-su .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-su .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-su .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-su .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

#custom-html-su .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-su .tooltip.in {

  opacity: 0.9;

}

#custom-html-su .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-su .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-su .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-su .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-su .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-su .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-su .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-su .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;


  border-top-color: #000000;

}

#custom-html-su .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-su .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-su .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-su .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-su .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-su .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-su .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-su .popover.top {

  margin-top: -10px;

}

#custom-html-su .popover.right {

  margin-left: 10px;

}

#custom-html-su .popover.bottom {

  margin-top: 10px;

}

#custom-html-su .popover.left {

  margin-left: -10px;

}

#custom-html-su .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-su .popover-content {

  padding: 9px 14px;

}

#custom-html-su .popover > .arrow,

#custom-html-su .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-su .popover > .arrow {

  border-width: 11px;

}

#custom-html-su .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-su .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-su .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-su .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-su .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-su .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-su .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-su .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-su .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-su .carousel {

  position: relative;

}

#custom-html-su .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-su .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-su .carousel-inner > .item > a > img,

#custom-html-su .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-su .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-su .carousel-inner > .item.active.right,

  #custom-html-su .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-su .carousel-inner > .item.active.left,

  #custom-html-su .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-su .carousel-inner > .item.active,

  #custom-html-su .carousel-inner > .item.next.left,

  #custom-html-su .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-su .carousel-inner > .active,

#custom-html-su .carousel-inner > .next,

#custom-html-su .carousel-inner > .prev {

  display: block;

}

#custom-html-su .carousel-inner > .active {

  left: 0;

}

#custom-html-su .carousel-inner > .next,

#custom-html-su .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-su .carousel-inner > .next {

  left: 100%;

}

#custom-html-su .carousel-inner > .prev {

  left: -100%;

}

#custom-html-su .carousel-inner > .next.left,

#custom-html-su .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-su .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-su .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-su .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-su .carousel-control.left {

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-su .carousel-control.right {

  right: 0;

  left: auto;

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-su .carousel-control:focus,

#custom-html-su .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-su .carousel-control .glyphicon-chevron-left,

#custom-html-su .carousel-control .glyphicon-chevron-right,

#custom-html-su .carousel-control .icon-next,

#custom-html-su .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-su .carousel-control .glyphicon-chevron-left,

#custom-html-su .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-su .carousel-control .glyphicon-chevron-right,

#custom-html-su .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-su .carousel-control .icon-next,

#custom-html-su .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-su .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-su .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-su .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-su .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-su .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-su .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-su .carousel-caption .btn {

  text-shadow: none;

}

#custom-html-su .btn-group-vertical > .btn-group:after,

#custom-html-su .btn-group-vertical > .btn-group:before,

#custom-html-su .btn-toolbar:after,

#custom-html-su .btn-toolbar:before,

#custom-html-su .clearfix:after,

#custom-html-su .clearfix:before,

#custom-html-su .container-fluid:after,

#custom-html-su .container-fluid:before,

#custom-html-su .container:after,

#custom-html-su .container:before,

#custom-html-su .dl-horizontal dd:after,

#custom-html-su .dl-horizontal dd:before,

#custom-html-su .form-horizontal .form-group:after,

#custom-html-su .form-horizontal .form-group:before,

#custom-html-su .modal-footer:after,

#custom-html-su .modal-footer:before,

#custom-html-su .modal-header:after,

#custom-html-su .modal-header:before,

#custom-html-su .nav:after,

#custom-html-su .nav:before,

#custom-html-su .navbar-collapse:after,

#custom-html-su .navbar-collapse:before,

#custom-html-su .navbar-header:after,

#custom-html-su .navbar-header:before,

#custom-html-su .navbar:after,

#custom-html-su .navbar:before,

#custom-html-su .pager:after,

#custom-html-su .pager:before,

#custom-html-su .panel-body:after,

#custom-html-su .panel-body:before,

#custom-html-su .row:after,

#custom-html-su .row:before {

  display: table;

  content: " ";

}

#custom-html-su .btn-group-vertical > .btn-group:after,

#custom-html-su .btn-toolbar:after,

#custom-html-su .clearfix:after,

#custom-html-su .container-fluid:after,

#custom-html-su .container:after,

#custom-html-su .dl-horizontal dd:after,

#custom-html-su .form-horizontal .form-group:after,

#custom-html-su .modal-footer:after,

#custom-html-su .modal-header:after,

#custom-html-su .nav:after,

#custom-html-su .navbar-collapse:after,

#custom-html-su .navbar-header:after,

#custom-html-su .navbar:after,

#custom-html-su .pager:after,

#custom-html-su .panel-body:after,

#custom-html-su .row:after {

  clear: both;

}

#custom-html-su .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-su .pull-right {

  float: right !important;

}

#custom-html-su .pull-left {

  float: left !important;

}

#custom-html-su .hide {

  display: none !important;

}

#custom-html-su .show {

  display: block !important;

}

#custom-html-su .invisible {

  visibility: hidden;

}

#custom-html-su .text-hide {

  font: NaN a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-su .hidden {

  display: none !important;

}

#custom-html-su .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-su .visible-lg,

#custom-html-su .visible-md,

#custom-html-su .visible-sm,

#custom-html-su .visible-xs {

  display: none !important;

}

#custom-html-su .visible-lg-block,

#custom-html-su .visible-lg-inline,

#custom-html-su .visible-lg-inline-block,

#custom-html-su .visible-md-block,

#custom-html-su .visible-md-inline,

#custom-html-su .visible-md-inline-block,

#custom-html-su .visible-sm-block,

#custom-html-su .visible-sm-inline,

#custom-html-su .visible-sm-inline-block,

#custom-html-su .visible-xs-block,

#custom-html-su .visible-xs-inline,

#custom-html-su .visible-xs-inline-block {

  display: none !important;

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-su .visible-sm {

    display: block !important;

  }

  #custom-html-su table.visible-sm {

    display: table !important;

  }

  #custom-html-su tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-su td.visible-sm,

  #custom-html-su th.visible-sm {

    display: table-cell !important;

  }

  #custom-html-su .visible-sm-block {

    display: block !important;

  }

  #custom-html-su .visible-sm-inline {

    display: inline !important;

  }

  #custom-html-su .visible-sm-inline-block {

    display: inline-block !important;

  }

  #custom-html-su .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-su .visible-md {

    display: block !important;

  }

  #custom-html-su table.visible-md {

    display: table !important;

  }

  #custom-html-su tr.visible-md {

    display: table-row !important;

  }

  #custom-html-su td.visible-md,

  #custom-html-su th.visible-md {

    display: table-cell !important;

  }

  #custom-html-su .visible-md-block {

    display: block !important;

  }

  #custom-html-su .visible-md-inline {

    display: inline !important;

  }

  #custom-html-su .visible-md-inline-block {

    display: inline-block !important;

  }

  #custom-html-su .hidden-md {

    display: none !important;

  }

}

#custom-html-su .visible-print {

  display: none !important;

}

#custom-html-su .visible-print-block {

  display: none !important;

}

#custom-html-su .visible-print-inline {

  display: none !important;

}

#custom-html-su .visible-print-inline-block {

  display: none !important;

}

#custom-html-su .intl-tel-input {

  position: relative;

  display: inline-block;

  width: 100%;

}

#custom-html-su .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-su .intl-tel-input .hide {

  display: none;

}

#custom-html-su .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-su .intl-tel-input input,

#custom-html-su .intl-tel-input input[type=tel],

#custom-html-su .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-su .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-su .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-su .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-su .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-su .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-su .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-su .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-su .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-su .intl-tel-input .country-list {

    white-space: normal;

  }

  #custom-html-su .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-su .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-su .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-su .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-su .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-su .intl-tel-input .country-list .country-name,

#custom-html-su .intl-tel-input .country-list .dial-code,

#custom-html-su .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-su .intl-tel-input .country-list .country-name,

#custom-html-su .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-su .intl-tel-input.allow-dropdown input,

#custom-html-su .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-su .intl-tel-input.allow-dropdown input[type=text],

#custom-html-su .intl-tel-input.separate-dial-code input,

#custom-html-su .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-su .intl-tel-input.allow-dropdown .flag-container,

#custom-html-su .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-su .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-su .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-su .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-su .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-su .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-su .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-su .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-su .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-su .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-su .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-su .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-su .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-su .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-su .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-su .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-su .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

#custom-html-su .iti-flag.be {

  width: 18px;

  height: 15px;

  background-position: -440px 0;

}

#custom-html-su .iti-flag.ch {

  width: 15px;

  height: 15px;

  background-position: -944px 0;

}

#custom-html-su .iti-flag.mc {

  width: 19px;

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-su .iti-flag.ne {

  width: 18px;

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-su .iti-flag.np {

  width: 13px;

  height: 15px;

  background-position: -3796px 0;

  background-color: transparent;

}

#custom-html-su .iti-flag.va {

  width: 15px;

  height: 15px;

  background-position: -5307px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-su .iti-flag {

    background-size: 5630px 15px;

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-su .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-su .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-su .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-su .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-su .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-su .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-su .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-su .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-su .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-su .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-su .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-su .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-su .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-su .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-su .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-su .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-su .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-su .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-su .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-su .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-su .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-su .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-su .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-su .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-su .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-su .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-su .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-su .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-su .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-su .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-su .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-su .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-su .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-su .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-su .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-su .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-su .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-su .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-su .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-su .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-su .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-su .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-su .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-su .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-su .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-su .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-su .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-su .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-su .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-su .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-su .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-su .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-su .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-su .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-su .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-su .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-su .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-su .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-su .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-su .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-su .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-su .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-su .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-su .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-su .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-su .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-su .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-su .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-su .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-su .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-su .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-su .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-su .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-su .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-su .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-su .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-su .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-su .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-su .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-su .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-su .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-su .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-su .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-su .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-su .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-su .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-su .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-su .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-su .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-su .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-su .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-su .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-su .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-su .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-su .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-su .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-su .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-su .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-su .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-su .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-su .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-su .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-su .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-su .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-su .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-su .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-su .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-su .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-su .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-su .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-su .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-su .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-su .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-su .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-su .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-su .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-su .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-su .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-su .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-su .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-su .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-su .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-su .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-su .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-su .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-su .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-su .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-su .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-su .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-su .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-su .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-su .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-su .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-su .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-su .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-su .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-su .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-su .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-su .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-su .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-su .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-su .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-su .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-su .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-su .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-su .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-su .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-su .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-su .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-su .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-su .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-su .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-su .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-su .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-su .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-su .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-su .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-su .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-su .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-su .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-su .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-su .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-su .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-su .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-su .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-su .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-su .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-su .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-su .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-su .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-su .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-su .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-su .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-su .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-su .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-su .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-su .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-su .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-su .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-su .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-su .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-su .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-su .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-su .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-su .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-su .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-su .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-su .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-su .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-su .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-su .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-su .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-su .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-su .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-su .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-su .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-su .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-su .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-su .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-su .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-su .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-su .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-su .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-su .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-su .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-su .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-su .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-su .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-su .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-su .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-su .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-su .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-su .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-su .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-su .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-su .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-su .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-su .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-su .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-su .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-su .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-su .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-su .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-su .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-su .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-su .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-su .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-su .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-su .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-su .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-su .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-su .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-su .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-su .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-su .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-su .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-su .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-su .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-su .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-su .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-su .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-su .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-su .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-su .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-su .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-su .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-su .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-su .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-su .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-su .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-su .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-su body,

#custom-html-su button,

#custom-html-su input,

#custom-html-su select,

#custom-html-su textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-su h1,

#custom-html-su h2,

#custom-html-su h3,

#custom-html-su h4,

#custom-html-su h5,

#custom-html-su h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 400;

}

#custom-html-su .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-su .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-su .navbar-main li.account {

  background-color: #000000;

}

#custom-html-su .navbar-main .navbar-nav > li > a {

  color: #ffffff;

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-su .navbar-main .navbar-nav > .active > a,

#custom-html-su .navbar-main .navbar-nav > .active > a:focus,

#custom-html-su .navbar-main .navbar-nav > .active > a:hover,

#custom-html-su .navbar-main .navbar-nav > .open > a,

#custom-html-su .navbar-main .navbar-nav > .open > a:focus,

#custom-html-su .navbar-main .navbar-nav > .open > a:hover,

#custom-html-su .navbar-main .navbar-nav > li > a:focus,

#custom-html-su .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-su #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-su .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 991px) {

  #custom-html-su .navbar-header {

    float: none;

  }

  #custom-html-su .navbar-left,

  #custom-html-su .navbar-right {

    float: none !important;

  }

  #custom-html-su .navbar-toggle {

    display: block;

  }

  #custom-html-su .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-su .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-su .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-su .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-su .navbar-nav > li {

    float: none;

  }

  #custom-html-su .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-su .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

  #custom-html-su .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-su .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-su .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

  #custom-html-su ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-su ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-su ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

  #custom-html-su .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-su .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-su .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-su .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-su .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-su .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

  #custom-html-su #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-su #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

#custom-html-su .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-su a.list-group-item.active,

#custom-html-su a.list-group-item.active:focus,

#custom-html-su a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-su .dropdown-menu > li > a:focus,

#custom-html-su .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-su input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-su .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-su body,

#custom-html-su html {

  height: 100%;

}

#custom-html-su section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-su section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-su section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-su section#header .search {

  margin: 20px 0;

}

#custom-html-su section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-su section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-su section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-su section#main-content {

  margin-bottom: 60px;

}

#custom-html-su .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-su section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-su section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-su section#footer {

    line-height: 32px;

  }

}

#custom-html-su section#footer .back-to-top {

  float: right;

}

#custom-html-su section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-su .adminreturndiv {

  display: none !important;

}

#custom-html-su .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-su .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-su .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-su .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-su .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-su .navbar-main .navbar-toggle:focus,

#custom-html-su .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-su .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-su .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

#custom-html-su div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-su div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-su div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-su div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-su div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-su .h1,

  #custom-html-su h1 {

    font-size: 26px;

  }

  #custom-html-su .h2,

  #custom-html-su h2 {

    font-size: 20px;

  }

  #custom-html-su .h3,

  #custom-html-su h3 {

    font-size: 16px;

  }

  #custom-html-su .h4,

  #custom-html-su h4 {

    font-size: 14px;

  }

  #custom-html-su .h5,

  #custom-html-su h5 {

    font-size: 12px;

  }

  #custom-html-su .h6,

  #custom-html-su h6 {

    font-size: 11px;

  }

  #custom-html-su div.header-lined small {

    display: none;

  }

  #custom-html-su .logincontainer {

    margin: 0 auto 30px auto;

  }

  #custom-html-su .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-su .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-su .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-su .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

  #custom-html-su div.credit-card {

    max-width: 250px;

  }

  #custom-html-su div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-su div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-su div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-su div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-su div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

@media (min-width: 380px) {

  #custom-html-su .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-su .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-su .margin-10 {

  margin: 10px;

}

#custom-html-su .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-su .margin-top-5 {

  margin-top: 5px;

}

#custom-html-su .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-su .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-su .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-su .input-inline {

  display: inline-block;

}

#custom-html-su .input-inline-100 {

  width: 100px;

}

#custom-html-su .select-inline {

  display: inline-block;

  width: auto;

}

#custom-html-su .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-su .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-su .logincontainer .social-signin-btns {

  padding: 23px 0;

}

#custom-html-su i.icon-rss {

  color: #ff6600;

}

#custom-html-su section#main-menu {

  background-color: #000000;

}

#custom-html-su section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-su section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-su section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-su section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-su section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-su section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-su section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-su section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-su section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-su section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-su section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-su section#home-banner h2 {

    font-size: 26px;

  }

  #custom-html-su .home-shortcuts ul {

    text-align: center;

  }

  #custom-html-su .domain-checker-bg {

    padding: 40px 0;

  }

  #custom-html-su .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-su .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-su .affiliate-stat i {

    font-size: 3em;

  }

  #custom-html-su #stepResults {

    font-size: 14px;

  }

  #custom-html-su #stepResults .label {

    font-size: 14px;

  }

  #custom-html-su div.domainresults table tr td {

    padding: 5px 5px;

  }

}

#custom-html-su .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-su .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-su .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-su .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-su .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-su .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-su .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-su .home-shortcuts li span {

  display: none;

}

#custom-html-su .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-su .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

#custom-html-su .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-su .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-su .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-su .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-su .client-home-panels .panel small {

  color: #888888;

}

#custom-html-su .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-su .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-su .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-su .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-su .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-su .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-su .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-su .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-su .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-su .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-su .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-su .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-su .tiles .tile a {

  text-decoration: none;

}

#custom-html-su .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-su .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-su .tiles .tile:last-child {

  border: 0;

}

#custom-html-su .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-su .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-su .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-su .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-su .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-su .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-su .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-su .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-su .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-su .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-su .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-su .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-su .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-su .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-su .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-su .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-su .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-su .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-su .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-su .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-su .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-su .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-su .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-su .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-su .bg-color-red {

  background-color: #d9534f;

}

#custom-html-su .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-su .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-su .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-su .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-su .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-su .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-su .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-su .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-su .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-su .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-su .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-su .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-su .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-su .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-su .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-su .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-su ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-su ul.top-nav > li,

#custom-html-su ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-su ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-su ul.top-nav > li:active > a,

#custom-html-su ul.top-nav > li:focus > a,

#custom-html-su ul.top-nav > li:hover > a,

#custom-html-su ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-su ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-su ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-su ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-su ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

#custom-html-su div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-su div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-su div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-su div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;

  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-su div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-su div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-su .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-su .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

#custom-html-su .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-su .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

#custom-html-su .domain-check-availability {

  width: 100px;

}

#custom-html-su .domain-step-options {

  min-height: 300px;

}

#custom-html-su .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-su .domain-checker-available {

  color: #5cb85c;

}

#custom-html-su .domain-checker-invalid,

#custom-html-su .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-su div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-su .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-su .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-su .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-su a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-su .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-su .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-su .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

#custom-html-su .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-su .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-su .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-su .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-su .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-su .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-su .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-su .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-su .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-su .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-su .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-su .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-su .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-su .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-su .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-su .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-su .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-su .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-su .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-su .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-su .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-su div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-su div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-su div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-su .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-su .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-su .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-su .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-su div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-su div.product-details div.product-icon {

  margin: 0;

  padding: 30px;

  background-color: #efefef;

  border-radius: 10px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-su .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-su .product-status-pending {

  background-color: #f89406;

}

#custom-html-su .product-status-active {

  background-color: #46a546;

}

#custom-html-su .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-su .product-status-cancelled,

#custom-html-su .product-status-terminated {

  background-color: #666666;

}

#custom-html-su .product-status-fraud {

  background-color: #000000;

}

#custom-html-su .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-su div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-su .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-su .ssl-inactive {

  cursor: pointer;

}

#custom-html-su .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-su div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-su .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-su .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-su .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-su .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-su .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-su .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-su .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-su .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

#custom-html-su .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-su .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-su .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-su .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-su .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-su .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-su table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-su table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-su .table-container {

  padding: 0 0 25px 0;

}

#custom-html-su table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-su .table-list > tbody > tr:hover {

  cursor: hand;

}

#custom-html-su table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-su .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-su .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-su .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-su table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-su table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-su table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-su .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-su .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-su .status-pending {

  color: #d9534f;

}

#custom-html-su .status-pending.transfer {

  color: #a68500;

}

#custom-html-su .status-active,

#custom-html-su .status-completed,

#custom-html-su .status-open {

  color: #3fad46;

}

#custom-html-su .status-suspended {

  color: #f0ad4e;

}

#custom-html-su .status-customer-reply {

  color: #ff6600;

}

#custom-html-su .status-answered,

#custom-html-su .status-fraud {

  color: #000000;

}

#custom-html-su .status-expired,

#custom-html-su .status-transferred.away {

  color: #004258;

}

#custom-html-su .status-cancelled {

  color: #87939f;

}

#custom-html-su .status-terminated {

  color: #666666;

}

#custom-html-su .status-onhold {

  color: #224488;

}

#custom-html-su .status-inprogress {

  color: #cc0000;

}

#custom-html-su .status-closed {

  color: #888888;

}

#custom-html-su .status-paid {

  color: #498302;

}

#custom-html-su .status-unpaid {

  color: #ed3e48;

}

#custom-html-su .status-collections {

  color: #9a141e;

}

#custom-html-su .status-refunded {

  color: #319fc3;

}

#custom-html-su .status-delivered {

  color: #224488;

}

#custom-html-su .status-accepted {

  color: #498302;

}

#custom-html-su .status-dead,

#custom-html-su .status-lost {

  color: #000000;

}

#custom-html-su .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-su .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-su .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-su .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-su .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-su .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-su .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-su .affiliate-stat i {

    font-size: 3.6em;

  }

}

#custom-html-su .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-su .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-su .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-su .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-su .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-su .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-su .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-su .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-su .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-su .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-su .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-su .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-su .ticket-reply .rating,

#custom-html-su .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-su .ticket-reply .rating span.star,

#custom-html-su .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-su .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-su .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-su .ticket-reply .rating span.star:before,

#custom-html-su .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-su .ticket-reply .rating span.star:hover:before,

#custom-html-su .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-su .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-su .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-su .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-su .ticket-reply .clear {

  clear: both;

}

#custom-html-su .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-su .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-su .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-su .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-su .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-su .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-su .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-su .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-su .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-su .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-su .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-su .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-su .popover-user-notifications ul li i.far,

#custom-html-su .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-su .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-su .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-su .popover-user-notifications ul li i.far.fa-warning,

#custom-html-su .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-su .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-su .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-su .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-su .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-su .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-su div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-su div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-su div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-su div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-su div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-su div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-su div.credit-card div.end {

  clear: both;

}

#custom-html-su .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-su .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-su .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-su .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-su .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-su .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-su div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-su div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-su div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-su div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-su div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-su div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-su .sidebar.sidebar-secondary {

  clear: left;

}

#custom-html-su div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-su div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-su div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-su #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-su .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-su .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-su .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-su .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-su .kb-category a small {

  color: #888888;

}

#custom-html-su .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-su .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-su .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-su .kbarticles a.admin-inline-edit,

#custom-html-su .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-su h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-su .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-su .kb-article-title h2 {

  margin: 0;

}

#custom-html-su .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-su .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-su .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-su .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-su .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-su .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-su .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-su .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-su #stepResults {

  font-size: 20px;

}

#custom-html-su #stepResults .label {

  font-size: 20px;

}

#custom-html-su h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-su h3.with-badge i,

#custom-html-su h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-su h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

#custom-html-su .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-su .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-su a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-su a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-su .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-su .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-su .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-su .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-su .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-su .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-su .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-su .login-popover {

  font-size: 12px;

}

#custom-html-su .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-su .login-popover hr {

  margin: 5px 0;

}

#custom-html-su tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-su tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-su .error-container {

  text-align: center;

}

#custom-html-su .error-container h1 {

  margin-top: 40px;

}

#custom-html-su .error-container .buttons {

  margin: 25px 0;

}

#custom-html-su .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-su .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-su .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-su .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-su #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-su #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-su #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-su .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 736px) {

  #custom-html-su #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-su #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-su #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-su #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-su .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-su .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-su .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-su .email-verification .btn:active,

#custom-html-su .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-su .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-su .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-su .email-verification .far,

#custom-html-su .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

#custom-html-su .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-su .email-verification.success .far,

#custom-html-su .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-su .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-su .email-verification.failed .far,

#custom-html-su .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-su .md-editor {

  border: 1px solid #dddddd;

  border-radius: 3px;

  display: block;

}

#custom-html-su .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-su .md-editor > .md-preview,

#custom-html-su .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-su div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-su .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-su .small-font {

  font-size: 0.9em;

}

#custom-html-su .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-su .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-su .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-su .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-su .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-su .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-su .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-su .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-su .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-su .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-su .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-su .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-su .panel-heading i.fab,

#custom-html-su .panel-heading i.fal,

#custom-html-su .panel-heading i.far,

#custom-html-su .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-su .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-su .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-su .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-su .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-su .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-su .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-su .panel-sidebar .list-group-item.disabled,

#custom-html-su .panel-sidebar .list-group-item.disabled:focus,

#custom-html-su .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-su .panel-sidebar a.list-group-item:hover i.far,

#custom-html-su .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-su .panel-sidebar a.list-group-item.active,

#custom-html-su .panel-sidebar a.list-group-item.active:focus,

#custom-html-su .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-su .panel-sidebar a.list-group-item.active i,

#custom-html-su .panel-sidebar a.list-group-item.active:focus i,

#custom-html-su .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-su .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-su .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-su .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-su .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-su .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-su .store-order-container h2 {

  margin-top: 0;

}

#custom-html-su .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-su .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-su .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-su .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-su .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-su .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-su .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-su .store-order-container .payment-term h4 {

  margin-top: 25px;

}

#custom-html-su .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-su .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-su .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-su .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-su .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-su .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-su .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-su .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-su .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-su .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-su .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-su .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-su .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

#custom-html-su .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-su .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-su .promo-banner p {

  margin: 5px 0;

}

#custom-html-su .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-su .promo-banner ul li {

  margin-bottom: 4px;

}

#custom-html-su .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-su .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-su .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-su .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-su .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-su .promo-banner-slim {

  padding: 10px;

}

#custom-html-su .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-su .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-su .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-su .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-su .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-su .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-su .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-su .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-su .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-su .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-su .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-su .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-su .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-su .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-su .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-su .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-su .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-su .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-su .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-su .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-su .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-su .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-su .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-su .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-su .panel-mc-sso .btn,

#custom-html-su .panel-mc-sso .form-control,

#custom-html-su .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-su .panel-mc-sso small {

  display: block;

}

#custom-html-su .social-signin-btns {

  text-align: center;

}

#custom-html-su .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-su .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-su .btn-social i.far,

#custom-html-su .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-facebook.active,

#custom-html-su .btn-facebook:active,

#custom-html-su .btn-facebook:focus,

#custom-html-su .btn-facebook:hover,

#custom-html-su .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-facebook.active,

#custom-html-su .btn-facebook:active,

#custom-html-su .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-su .btn-facebook.disabled,

#custom-html-su .btn-facebook.disabled.active,

#custom-html-su .btn-facebook.disabled:active,

#custom-html-su .btn-facebook.disabled:focus,

#custom-html-su .btn-facebook.disabled:hover,

#custom-html-su .btn-facebook[disabled],

#custom-html-su .btn-facebook[disabled].active,

#custom-html-su .btn-facebook[disabled]:active,

#custom-html-su .btn-facebook[disabled]:focus,

#custom-html-su .btn-facebook[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-facebook,

#custom-html-su fieldset[disabled] .btn-facebook.active,

#custom-html-su fieldset[disabled] .btn-facebook:active,

#custom-html-su fieldset[disabled] .btn-facebook:focus,

#custom-html-su fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-google.active,

#custom-html-su .btn-google:active,

#custom-html-su .btn-google:focus,

#custom-html-su .btn-google:hover,

#custom-html-su .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-google.active,

#custom-html-su .btn-google:active,

#custom-html-su .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-su .btn-google-plus.disabled.active,

#custom-html-su .btn-google-plus.disabled:active,

#custom-html-su .btn-google-plus.disabled:focus,

#custom-html-su .btn-google-plus[disabled].active,

#custom-html-su .btn-google-plus[disabled]:active,

#custom-html-su .btn-google-plus[disabled]:focus,

#custom-html-su .btn-google-plus[disabled]:hover,

#custom-html-su .btn-google.disabled,

#custom-html-su .btn-google.disabled:hover,

#custom-html-su .btn-google[disabled],

#custom-html-su fieldset[disabled] .btn-google,

#custom-html-su fieldset[disabled] .btn-google-plus.active,

#custom-html-su fieldset[disabled] .btn-google-plus:active,

#custom-html-su fieldset[disabled] .btn-google-plus:focus,

#custom-html-su fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-twitter.active,

#custom-html-su .btn-twitter:active,

#custom-html-su .btn-twitter:focus,

#custom-html-su .btn-twitter:hover,

#custom-html-su .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-twitter.active,

#custom-html-su .btn-twitter:active,

#custom-html-su .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-su .btn-twitter.disabled,

#custom-html-su .btn-twitter.disabled.active,

#custom-html-su .btn-twitter.disabled:active,

#custom-html-su .btn-twitter.disabled:focus,

#custom-html-su .btn-twitter.disabled:hover,

#custom-html-su .btn-twitter[disabled],

#custom-html-su .btn-twitter[disabled].active,

#custom-html-su .btn-twitter[disabled]:active,

#custom-html-su .btn-twitter[disabled]:focus,

#custom-html-su .btn-twitter[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-twitter,

#custom-html-su fieldset[disabled] .btn-twitter.active,

#custom-html-su fieldset[disabled] .btn-twitter:active,

#custom-html-su fieldset[disabled] .btn-twitter:focus,

#custom-html-su fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .providerPreLinking {

  min-height: 52px;

}

#custom-html-su .providerLinkingFeedback {

  display: none;

}

#custom-html-su #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-su #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-su #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-su #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-su .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-su #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-su #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-su #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-su #registration .field,

#custom-html-su #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-su #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-su #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-su #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-su #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-su #registration textarea.field {

  height: auto;

}

#custom-html-su #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-su #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-su #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-su #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-su #registration .field[disabled],

#custom-html-su #registration .field[readonly],

#custom-html-su #registration .form-control[disabled],

#custom-html-su #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-su #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-su .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-su .upgrade .product-to-be-upgraded h4,

#custom-html-su .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-su .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-su .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-su .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-su .upgrade .products .product .current,

#custom-html-su .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-su .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-su .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-su .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

  margin: 0;

  padding: 20px;

}

#custom-html-su .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-su .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-su .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-su .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-su .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-su .upgrade .products .far,

#custom-html-su .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-su .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-su .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-su .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-su .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-su .alert .alert-text {

  margin-left: 56px;

}

#custom-html-su .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,


#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .bootstrap-switch input[type=checkbox],

#custom-html-su .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-su .bootstrap-switch input[type=checkbox].form-control,

#custom-html-su .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-su .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-su .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-su .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-su .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-su .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-su .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-su .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-su .md-editor .md-footer,

#custom-html-su .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-su .md-editor > .md-header {

  margin: 0;

}

#custom-html-su .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-su .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-su .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-su .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-su .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-su .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-su .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-su .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-input,

#custom-html-su .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-su .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-su .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-su .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-su .md-editor.md-fullscreen-mode .btn.active,

#custom-html-su .md-editor.md-fullscreen-mode .btn:active,

#custom-html-su .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-su .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-su .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-su .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-su table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-su table.dataTable td,

#custom-html-su table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-su table.dataTable td.dataTables_empty,

#custom-html-su table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-su table.dataTable.nowrap td,

#custom-html-su table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-su div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-su div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-su div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-su div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-su div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-su div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-su div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-su div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-su table.dataTable thead > tr > td.sorting,

#custom-html-su table.dataTable thead > tr > td.sorting_asc,

#custom-html-su table.dataTable thead > tr > td.sorting_desc,

#custom-html-su table.dataTable thead > tr > th.sorting,

#custom-html-su table.dataTable thead > tr > th.sorting_asc,

#custom-html-su table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-su table.dataTable thead > tr > td:active,

#custom-html-su table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-su table.dataTable thead .sorting,

#custom-html-su table.dataTable thead .sorting_asc,

#custom-html-su table.dataTable thead .sorting_asc_disabled,

#custom-html-su table.dataTable thead .sorting_desc,

#custom-html-su table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-su table.dataTable thead .sorting:after,

#custom-html-su table.dataTable thead .sorting_asc:after,

#custom-html-su table.dataTable thead .sorting_asc_disabled:after,

#custom-html-su table.dataTable thead .sorting_desc:after,

#custom-html-su table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-su table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-su table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-su table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-su table.dataTable thead .sorting_asc_disabled:after,

#custom-html-su table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-su div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-su div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-su div.dataTables_scrollBody table thead .sorting:after,

#custom-html-su div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-su div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-su div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-su div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-su div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

#custom-html-su table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-su table.dataTable.table-condensed .sorting:after,

#custom-html-su table.dataTable.table-condensed .sorting_asc:after,

#custom-html-su table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-su table.table-bordered.dataTable td,

#custom-html-su table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-su table.table-bordered.dataTable td:last-child,

#custom-html-su table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-su table.table-bordered.dataTable tbody td,

#custom-html-su table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-su div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-su div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-su div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-su div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-su table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-su table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-su table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-su table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-su table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-su table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-su table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-su table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-su table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-su table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-su table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-su table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-su table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-su table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-su table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-su table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-su table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-su div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-su div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  overflow: auto;

  margin: auto;

  z-index: 102;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-su div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-su div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-su div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-su div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

#custom-html-su div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-su .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-su .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-su .multiselect-container > li {

  padding: 0;

}

#custom-html-su .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-su .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-su .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-su .multiselect-container > li > a {

  padding: 0;

}

#custom-html-su .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-su .multiselect-container > li > a > label.checkbox,

#custom-html-su .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-su .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-su .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-su .form-inline .multiselect-container label.checkbox,

#custom-html-su .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-su .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-su .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

#custom-html-su html {

  font-family: sans-serif;

  -webkit-text-size-adjust: 100%;

  -ms-text-size-adjust: 100%;

}

#custom-html-su body {

  margin: 0;

}

#custom-html-su article,

#custom-html-su aside,

#custom-html-su details,

#custom-html-su figcaption,

#custom-html-su figure,

#custom-html-su footer,

#custom-html-su header,

#custom-html-su hgroup,

#custom-html-su main,

#custom-html-su menu,

#custom-html-su nav,

#custom-html-su section,

#custom-html-su summary {

  display: block;

}

#custom-html-su audio,

#custom-html-su canvas,

#custom-html-su progress,

#custom-html-su video {

  display: inline-block;

  vertical-align: baseline;

}

#custom-html-su audio:not([controls]) {

  display: none;

  height: 0;

}

#custom-html-su [hidden],

#custom-html-su template {

  display: none;

}

#custom-html-su a {

  background-color: transparent;

}

#custom-html-su a:active,

#custom-html-su a:hover {

  outline: 0;

}

#custom-html-su abbr[title] {

  border-bottom: 1px dotted;

}

#custom-html-su b,

#custom-html-su strong {

  font-weight: 700;

}

#custom-html-su dfn {

  font-style: italic;

}

#custom-html-su h1 {

  margin: .67em 0;

  font-size: 2em;

}

#custom-html-su mark {

  color: #000;

  background: #ffff00;

}

#custom-html-su small {

  font-size: 80%;

}

#custom-html-su sub,

#custom-html-su sup {

  position: relative;

  font-size: 75%;

  line-height: 0;

  vertical-align: baseline;

}

#custom-html-su sup {

  top: -0.5em;

}

#custom-html-su sub {

  bottom: -0.25em;

}

#custom-html-su img {

  border: 0;

}

#custom-html-su svg:not(:root) {

  overflow: hidden;

}

#custom-html-su figure {

  margin: 1em 40px;

}

#custom-html-su hr {

  height: 0;

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-su pre {

  overflow: auto;

}

#custom-html-su code,

#custom-html-su kbd,

#custom-html-su pre,

#custom-html-su samp {

  font-family: monospace,monospace;

  font-size: 1em;

}

#custom-html-su button,

#custom-html-su input,

#custom-html-su optgroup,

#custom-html-su select,

#custom-html-su textarea {

  margin: 0;

  font: inherit;

  color: inherit;

}

#custom-html-su button {

  overflow: visible;

}

#custom-html-su button,

#custom-html-su select {

  text-transform: none;

}

#custom-html-su button,

#custom-html-su html input[type=button],

#custom-html-su input[type=reset],

#custom-html-su input[type=submit] {

  -webkit-appearance: button;

  cursor: pointer;

}

#custom-html-su button[disabled],

#custom-html-su html input[disabled] {

  cursor: default;

}

#custom-html-su button::-moz-focus-inner,

#custom-html-su input::-moz-focus-inner {

  padding: 0;

  border: 0;

}

#custom-html-su input {

  line-height: normal;

}

#custom-html-su input[type=checkbox],

#custom-html-su input[type=radio] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  padding: 0;

}

#custom-html-su input[type=number]::-webkit-inner-spin-button,

#custom-html-su input[type=number]::-webkit-outer-spin-button {

  height: auto;

}

#custom-html-su input[type=search] {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

  -webkit-appearance: textfield;

}

#custom-html-su input[type=search]::-webkit-search-cancel-button,

#custom-html-su input[type=search]::-webkit-search-decoration {

  -webkit-appearance: none;

}

#custom-html-su fieldset {

  padding: .35em .625em .75em;

  margin: 0 2px;

  border: 1px solid silver;

}

#custom-html-su legend {

  padding: 0;

  border: 0;

}

#custom-html-su textarea {

  overflow: auto;

}

#custom-html-su optgroup {

  font-weight: 700;

}

#custom-html-su table {

  border-spacing: 0;

  border-collapse: collapse;

}

#custom-html-su td,

#custom-html-su th {

  padding: 0;

}

@media print {

  #custom-html-su *,

  #custom-html-su :after,

  #custom-html-su :before {

    color: #000!important;

    text-shadow: none!important;

    background: 0 0!important;

    -webkit-box-shadow: none!important;

    box-shadow: none !important;

  }

  #custom-html-su a,

  #custom-html-su a:visited {

    text-decoration: underline;

  }

  #custom-html-su a[href]:after {

    content: " (" attr(href) ")";

  }

  #custom-html-su abbr[title]:after {

    content: " (" attr(title) ")";

  }

  #custom-html-su a[href^="#"]:after,

  #custom-html-su a[href^="javascript:"]:after {

    content: "";

  }

  #custom-html-su blockquote,

  #custom-html-su pre {

    border: 1px solid #999;

    page-break-inside: avoid;

  }

  #custom-html-su thead {

    display: table-header-group;

  }

  #custom-html-su img,

  #custom-html-su tr {

    page-break-inside: avoid;

  }

  #custom-html-su img {

    max-width: 100% !important;

  }

  #custom-html-su h2,

  #custom-html-su h3,

  #custom-html-su p {

    orphans: 3;

    widows: 3;

  }

  #custom-html-su h2,

  #custom-html-su h3 {

    page-break-after: avoid;

  }

  #custom-html-su .navbar {

    display: none;

  }

  #custom-html-su .btn > .caret,

  #custom-html-su .dropup > .btn > .caret {

    border-top-color: #000000 !important;

  }

  #custom-html-su .label {

    border: 1px solid #000000;

  }

  #custom-html-su .table {

    border-collapse: collapse !important;

  }

  #custom-html-su .table td,

  #custom-html-su .table th {

    background-color: #ffffff !important;

  }

  #custom-html-su .table-bordered td,

  #custom-html-su .table-bordered th {

    border: 1px solid #dddddd !important;

  }

}

@font-face {

  font-family: 'Glyphicons Halflings';

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot);

  src: url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');

}

#custom-html-su .glyphicon {

  position: relative;

  top: 1px;

  display: inline-block;

  font-family: 'Glyphicons Halflings';

  font-style: normal;

  font-weight: 400;

  line-height: 1;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}

#custom-html-su .glyphicon-asterisk:before {

  content: "\002a";

}

#custom-html-su .glyphicon-plus:before {

  content: "\002b";

}

#custom-html-su .glyphicon-eur:before,

#custom-html-su .glyphicon-euro:before {

  content: "\20ac";

}

#custom-html-su .glyphicon-minus:before {

  content: "\2212";

}

#custom-html-su .glyphicon-cloud:before {

  content: "\2601";

}

#custom-html-su .glyphicon-envelope:before {

  content: "\2709";

}

#custom-html-su .glyphicon-pencil:before {

  content: "\270f";

}

#custom-html-su .glyphicon-glass:before {

  content: "\e001";

}

#custom-html-su .glyphicon-music:before {

  content: "\e002";

}

#custom-html-su .glyphicon-search:before {

  content: "\e003";

}

#custom-html-su .glyphicon-heart:before {

  content: "\e005";

}

#custom-html-su .glyphicon-star:before {

  content: "\e006";

}

#custom-html-su .glyphicon-star-empty:before {

  content: "\e007";

}

#custom-html-su .glyphicon-user:before {

  content: "\e008";

}

#custom-html-su .glyphicon-film:before {

  content: "\e009";

}

#custom-html-su .glyphicon-th-large:before {

  content: "\e010";

}

#custom-html-su .glyphicon-th:before {

  content: "\e011";

}

#custom-html-su .glyphicon-th-list:before {

  content: "\e012";

}

#custom-html-su .glyphicon-ok:before {

  content: "\e013";

}

#custom-html-su .glyphicon-remove:before {

  content: "\e014";

}

#custom-html-su .glyphicon-zoom-in:before {

  content: "\e015";

}

#custom-html-su .glyphicon-zoom-out:before {

  content: "\e016";

}

#custom-html-su .glyphicon-off:before {

  content: "\e017";

}

#custom-html-su .glyphicon-signal:before {

  content: "\e018";

}

#custom-html-su .glyphicon-cog:before {

  content: "\e019";

}

#custom-html-su .glyphicon-trash:before {

  content: "\e020";

}

#custom-html-su .glyphicon-home:before {

  content: "\e021";

}

#custom-html-su .glyphicon-file:before {

  content: "\e022";

}

#custom-html-su .glyphicon-time:before {

  content: "\e023";

}

#custom-html-su .glyphicon-road:before {

  content: "\e024";

}

#custom-html-su .glyphicon-download-alt:before {

  content: "\e025";

}

#custom-html-su .glyphicon-download:before {

  content: "\e026";

}

#custom-html-su .glyphicon-upload:before {

  content: "\e027";

}

#custom-html-su .glyphicon-inbox:before {

  content: "\e028";

}

#custom-html-su .glyphicon-play-circle:before {

  content: "\e029";

}

#custom-html-su .glyphicon-repeat:before {

  content: "\e030";

}

#custom-html-su .glyphicon-refresh:before {

  content: "\e031";

}

#custom-html-su .glyphicon-list-alt:before {

  content: "\e032";

}

#custom-html-su .glyphicon-lock:before {

  content: "\e033";

}

#custom-html-su .glyphicon-flag:before {

  content: "\e034";

}

#custom-html-su .glyphicon-headphones:before {

  content: "\e035";

}

#custom-html-su .glyphicon-volume-off:before {

  content: "\e036";

}

#custom-html-su .glyphicon-volume-down:before {

  content: "\e037";

}

#custom-html-su .glyphicon-volume-up:before {

  content: "\e038";

}

#custom-html-su .glyphicon-qrcode:before {

  content: "\e039";

}

#custom-html-su .glyphicon-barcode:before {

  content: "\e040";

}

#custom-html-su .glyphicon-tag:before {

  content: "\e041";

}

#custom-html-su .glyphicon-tags:before {

  content: "\e042";

}

#custom-html-su .glyphicon-book:before {

  content: "\e043";

}

#custom-html-su .glyphicon-bookmark:before {

  content: "\e044";

}

#custom-html-su .glyphicon-print:before {

  content: "\e045";

}

#custom-html-su .glyphicon-camera:before {

  content: "\e046";

}

#custom-html-su .glyphicon-font:before {

  content: "\e047";

}

#custom-html-su .glyphicon-bold:before {

  content: "\e048";

}

#custom-html-su .glyphicon-italic:before {

  content: "\e049";

}

#custom-html-su .glyphicon-text-height:before {

  content: "\e050";

}

#custom-html-su .glyphicon-text-width:before {

  content: "\e051";

}

#custom-html-su .glyphicon-align-left:before {

  content: "\e052";

}

#custom-html-su .glyphicon-align-center:before {

  content: "\e053";

}

#custom-html-su .glyphicon-align-right:before {

  content: "\e054";

}

#custom-html-su .glyphicon-align-justify:before {

  content: "\e055";

}

#custom-html-su .glyphicon-list:before {

  content: "\e056";

}

#custom-html-su .glyphicon-indent-left:before {

  content: "\e057";

}

#custom-html-su .glyphicon-indent-right:before {

  content: "\e058";

}

#custom-html-su .glyphicon-facetime-video:before {

  content: "\e059";

}

#custom-html-su .glyphicon-picture:before {

  content: "\e060";

}

#custom-html-su .glyphicon-map-marker:before {

  content: "\e062";

}

#custom-html-su .glyphicon-adjust:before {

  content: "\e063";

}

#custom-html-su .glyphicon-tint:before {

  content: "\e064";

}

#custom-html-su .glyphicon-edit:before {

  content: "\e065";

}

#custom-html-su .glyphicon-share:before {

  content: "\e066";

}

#custom-html-su .glyphicon-check:before {

  content: "\e067";

}

#custom-html-su .glyphicon-move:before {

  content: "\e068";

}

#custom-html-su .glyphicon-step-backward:before {

  content: "\e069";

}

#custom-html-su .glyphicon-fast-backward:before {

  content: "\e070";

}

#custom-html-su .glyphicon-backward:before {

  content: "\e071";

}

#custom-html-su .glyphicon-play:before {

  content: "\e072";

}

#custom-html-su .glyphicon-pause:before {

  content: "\e073";

}

#custom-html-su .glyphicon-stop:before {

  content: "\e074";

}

#custom-html-su .glyphicon-forward:before {

  content: "\e075";

}

#custom-html-su .glyphicon-fast-forward:before {

  content: "\e076";

}

#custom-html-su .glyphicon-step-forward:before {

  content: "\e077";

}

#custom-html-su .glyphicon-eject:before {

  content: "\e078";

}

#custom-html-su .glyphicon-chevron-left:before {

  content: "\e079";

}

#custom-html-su .glyphicon-chevron-right:before {

  content: "\e080";

}

#custom-html-su .glyphicon-plus-sign:before {

  content: "\e081";

}

#custom-html-su .glyphicon-minus-sign:before {

  content: "\e082";

}

#custom-html-su .glyphicon-remove-sign:before {

  content: "\e083";

}

#custom-html-su .glyphicon-ok-sign:before {

  content: "\e084";

}

#custom-html-su .glyphicon-question-sign:before {

  content: "\e085";

}

#custom-html-su .glyphicon-info-sign:before {

  content: "\e086";

}

#custom-html-su .glyphicon-screenshot:before {

  content: "\e087";

}

#custom-html-su .glyphicon-remove-circle:before {

  content: "\e088";

}

#custom-html-su .glyphicon-ok-circle:before {

  content: "\e089";

}

#custom-html-su .glyphicon-ban-circle:before {

  content: "\e090";

}

#custom-html-su .glyphicon-arrow-left:before {

  content: "\e091";

}

#custom-html-su .glyphicon-arrow-right:before {

  content: "\e092";

}

#custom-html-su .glyphicon-arrow-up:before {

  content: "\e093";

}

#custom-html-su .glyphicon-arrow-down:before {

  content: "\e094";

}

#custom-html-su .glyphicon-share-alt:before {

  content: "\e095";

}

#custom-html-su .glyphicon-resize-full:before {

  content: "\e096";

}

#custom-html-su .glyphicon-resize-small:before {

  content: "\e097";

}

#custom-html-su .glyphicon-exclamation-sign:before {

  content: "\e101";

}

#custom-html-su .glyphicon-gift:before {

  content: "\e102";

}

#custom-html-su .glyphicon-leaf:before {

  content: "\e103";

}

#custom-html-su .glyphicon-fire:before {

  content: "\e104";

}

#custom-html-su .glyphicon-eye-open:before {

  content: "\e105";

}

#custom-html-su .glyphicon-eye-close:before {

  content: "\e106";

}

#custom-html-su .glyphicon-warning-sign:before {

  content: "\e107";

}

#custom-html-su .glyphicon-plane:before {

  content: "\e108";

}

#custom-html-su .glyphicon-calendar:before {

  content: "\e109";

}

#custom-html-su .glyphicon-random:before {

  content: "\e110";

}

#custom-html-su .glyphicon-comment:before {

  content: "\e111";

}

#custom-html-su .glyphicon-magnet:before {

  content: "\e112";

}

#custom-html-su .glyphicon-chevron-up:before {

  content: "\e113";

}

#custom-html-su .glyphicon-chevron-down:before {

  content: "\e114";

}

#custom-html-su .glyphicon-retweet:before {

  content: "\e115";

}

#custom-html-su .glyphicon-shopping-cart:before {

  content: "\e116";

}

#custom-html-su .glyphicon-folder-close:before {

  content: "\e117";

}

#custom-html-su .glyphicon-folder-open:before {

  content: "\e118";

}

#custom-html-su .glyphicon-resize-vertical:before {

  content: "\e119";

}

#custom-html-su .glyphicon-resize-horizontal:before {

  content: "\e120";

}

#custom-html-su .glyphicon-hdd:before {

  content: "\e121";

}

#custom-html-su .glyphicon-bullhorn:before {

  content: "\e122";

}

#custom-html-su .glyphicon-bell:before {

  content: "\e123";

}

#custom-html-su .glyphicon-certificate:before {

  content: "\e124";

}

#custom-html-su .glyphicon-thumbs-up:before {

  content: "\e125";

}

#custom-html-su .glyphicon-thumbs-down:before {

  content: "\e126";

}

#custom-html-su .glyphicon-hand-right:before {

  content: "\e127";

}

#custom-html-su .glyphicon-hand-left:before {

  content: "\e128";

}

#custom-html-su .glyphicon-hand-up:before {

  content: "\e129";

}

#custom-html-su .glyphicon-hand-down:before {

  content: "\e130";

}

#custom-html-su .glyphicon-circle-arrow-right:before {

  content: "\e131";

}

#custom-html-su .glyphicon-circle-arrow-left:before {

  content: "\e132";

}

#custom-html-su .glyphicon-circle-arrow-up:before {

  content: "\e133";

}

#custom-html-su .glyphicon-circle-arrow-down:before {

  content: "\e134";

}

#custom-html-su .glyphicon-globe:before {

  content: "\e135";

}

#custom-html-su .glyphicon-wrench:before {

  content: "\e136";

}

#custom-html-su .glyphicon-tasks:before {

  content: "\e137";

}

#custom-html-su .glyphicon-filter:before {

  content: "\e138";

}

#custom-html-su .glyphicon-briefcase:before {

  content: "\e139";

}

#custom-html-su .glyphicon-fullscreen:before {

  content: "\e140";

}

#custom-html-su .glyphicon-dashboard:before {

  content: "\e141";

}

#custom-html-su .glyphicon-paperclip:before {

  content: "\e142";

}

#custom-html-su .glyphicon-heart-empty:before {

  content: "\e143";

}

#custom-html-su .glyphicon-link:before {

  content: "\e144";

}

#custom-html-su .glyphicon-phone:before {

  content: "\e145";

}

#custom-html-su .glyphicon-pushpin:before {

  content: "\e146";

}

#custom-html-su .glyphicon-usd:before {

  content: "\e148";

}

#custom-html-su .glyphicon-gbp:before {

  content: "\e149";

}

#custom-html-su .glyphicon-sort:before {

  content: "\e150";

}

#custom-html-su .glyphicon-sort-by-alphabet:before {

  content: "\e151";

}

#custom-html-su .glyphicon-sort-by-alphabet-alt:before {

  content: "\e152";

}

#custom-html-su .glyphicon-sort-by-order:before {

  content: "\e153";

}

#custom-html-su .glyphicon-sort-by-order-alt:before {

  content: "\e154";

}

#custom-html-su .glyphicon-sort-by-attributes:before {

  content: "\e155";

}

#custom-html-su .glyphicon-sort-by-attributes-alt:before {

  content: "\e156";

}

#custom-html-su .glyphicon-unchecked:before {

  content: "\e157";

}

#custom-html-su .glyphicon-expand:before {

  content: "\e158";

}

#custom-html-su .glyphicon-collapse-down:before {

  content: "\e159";

}

#custom-html-su .glyphicon-collapse-up:before {

  content: "\e160";

}

#custom-html-su .glyphicon-log-in:before {

  content: "\e161";

}

#custom-html-su .glyphicon-flash:before {

  content: "\e162";

}

#custom-html-su .glyphicon-log-out:before {

  content: "\e163";

}

#custom-html-su .glyphicon-new-window:before {

  content: "\e164";

}

#custom-html-su .glyphicon-record:before {

  content: "\e165";

}

#custom-html-su .glyphicon-save:before {

  content: "\e166";

}

#custom-html-su .glyphicon-open:before {

  content: "\e167";

}

#custom-html-su .glyphicon-saved:before {

  content: "\e168";

}

#custom-html-su .glyphicon-import:before {

  content: "\e169";

}

#custom-html-su .glyphicon-export:before {

  content: "\e170";

}

#custom-html-su .glyphicon-send:before {

  content: "\e171";

}

#custom-html-su .glyphicon-floppy-disk:before {

  content: "\e172";

}

#custom-html-su .glyphicon-floppy-saved:before {

  content: "\e173";

}

#custom-html-su .glyphicon-floppy-remove:before {

  content: "\e174";

}

#custom-html-su .glyphicon-floppy-save:before {

  content: "\e175";

}

#custom-html-su .glyphicon-floppy-open:before {

  content: "\e176";

}

#custom-html-su .glyphicon-credit-card:before {

  content: "\e177";

}

#custom-html-su .glyphicon-transfer:before {

  content: "\e178";

}

#custom-html-su .glyphicon-cutlery:before {

  content: "\e179";

}

#custom-html-su .glyphicon-header:before {

  content: "\e180";

}

#custom-html-su .glyphicon-compressed:before {

  content: "\e181";

}

#custom-html-su .glyphicon-earphone:before {

  content: "\e182";

}

#custom-html-su .glyphicon-phone-alt:before {

  content: "\e183";

}

#custom-html-su .glyphicon-tower:before {

  content: "\e184";

}

#custom-html-su .glyphicon-stats:before {

  content: "\e185";

}

#custom-html-su .glyphicon-sd-video:before {

  content: "\e186";

}

#custom-html-su .glyphicon-hd-video:before {

  content: "\e187";

}

#custom-html-su .glyphicon-subtitles:before {

  content: "\e188";

}

#custom-html-su .glyphicon-sound-stereo:before {

  content: "\e189";

}

#custom-html-su .glyphicon-sound-dolby:before {

  content: "\e190";

}

#custom-html-su .glyphicon-sound-5-1:before {

  content: "\e191";

}

#custom-html-su .glyphicon-sound-6-1:before {

  content: "\e192";

}

#custom-html-su .glyphicon-sound-7-1:before {

  content: "\e193";

}

#custom-html-su .glyphicon-copyright-mark:before {

  content: "\e194";

}

#custom-html-su .glyphicon-registration-mark:before {

  content: "\e195";

}

#custom-html-su .glyphicon-cloud-download:before {

  content: "\e197";

}

#custom-html-su .glyphicon-cloud-upload:before {

  content: "\e198";

}

#custom-html-su .glyphicon-tree-conifer:before {

  content: "\e199";

}

#custom-html-su .glyphicon-tree-deciduous:before {

  content: "\e200";

}

#custom-html-su .glyphicon-cd:before {

  content: "\e201";

}

#custom-html-su .glyphicon-save-file:before {

  content: "\e202";

}

#custom-html-su .glyphicon-open-file:before {

  content: "\e203";

}

#custom-html-su .glyphicon-level-up:before {

  content: "\e204";

}

#custom-html-su .glyphicon-copy:before {

  content: "\e205";

}

#custom-html-su .glyphicon-paste:before {

  content: "\e206";

}

#custom-html-su .glyphicon-alert:before {

  content: "\e209";

}

#custom-html-su .glyphicon-equalizer:before {

  content: "\e210";

}

#custom-html-su .glyphicon-king:before {

  content: "\e211";

}

#custom-html-su .glyphicon-queen:before {

  content: "\e212";

}

#custom-html-su .glyphicon-pawn:before {

  content: "\e213";

}

#custom-html-su .glyphicon-bishop:before {

  content: "\e214";

}

#custom-html-su .glyphicon-knight:before {

  content: "\e215";

}

#custom-html-su .glyphicon-baby-formula:before {

  content: "\e216";

}

#custom-html-su .glyphicon-tent:before {

  content: "\26fa";

}

#custom-html-su .glyphicon-blackboard:before {

  content: "\e218";

}

#custom-html-su .glyphicon-bed:before {

  content: "\e219";

}

#custom-html-su .glyphicon-apple:before {

  content: "\f8ff";

}

#custom-html-su .glyphicon-erase:before {

  content: "\e221";

}

#custom-html-su .glyphicon-hourglass:before {

  content: "\231b";

}

#custom-html-su .glyphicon-lamp:before {

  content: "\e223";

}

#custom-html-su .glyphicon-duplicate:before {

  content: "\e224";

}

#custom-html-su .glyphicon-piggy-bank:before {

  content: "\e225";

}

#custom-html-su .glyphicon-scissors:before {

  content: "\e226";

}

#custom-html-su .glyphicon-bitcoin:before {

  content: "\e227";

}

#custom-html-su .glyphicon-btc:before {

  content: "\e227";

}

#custom-html-su .glyphicon-xbt:before {

  content: "\e227";

}

#custom-html-su .glyphicon-yen:before {

  content: "\00a5";

}

#custom-html-su .glyphicon-jpy:before {

  content: "\00a5";

}

#custom-html-su .glyphicon-ruble:before {

  content: "\20bd";

}

#custom-html-su .glyphicon-rub:before {

  content: "\20bd";

}

#custom-html-su .glyphicon-scale:before {

  content: "\e230";

}

#custom-html-su .glyphicon-ice-lolly:before {

  content: "\e231";

}

#custom-html-su .glyphicon-ice-lolly-tasted:before {

  content: "\e232";

}

#custom-html-su .glyphicon-education:before {

  content: "\e233";

}

#custom-html-su .glyphicon-option-horizontal:before {

  content: "\e234";

}

#custom-html-su .glyphicon-option-vertical:before {

  content: "\e235";

}

#custom-html-su .glyphicon-menu-hamburger:before {

  content: "\e236";

}

#custom-html-su .glyphicon-modal-window:before {

  content: "\e237";

}

#custom-html-su .glyphicon-oil:before {

  content: "\e238";

}

#custom-html-su .glyphicon-grain:before {

  content: "\e239";

}

#custom-html-su .glyphicon-sunglasses:before {

  content: "\e240";

}

#custom-html-su .glyphicon-text-size:before {

  content: "\e241";

}

#custom-html-su .glyphicon-text-color:before {

  content: "\e242";

}

#custom-html-su .glyphicon-text-background:before {

  content: "\e243";

}

#custom-html-su .glyphicon-object-align-top:before {

  content: "\e244";

}

#custom-html-su .glyphicon-object-align-bottom:before {

  content: "\e245";

}

#custom-html-su .glyphicon-object-align-horizontal:before {

  content: "\e246";

}

#custom-html-su .glyphicon-object-align-left:before {

  content: "\e247";

}

#custom-html-su .glyphicon-object-align-vertical:before {

  content: "\e248";

}

#custom-html-su .glyphicon-object-align-right:before {

  content: "\e249";

}

#custom-html-su .glyphicon-triangle-right:before {

  content: "\e250";

}

#custom-html-su .glyphicon-triangle-left:before {

  content: "\e251";

}

#custom-html-su .glyphicon-triangle-bottom:before {

  content: "\e252";

}

#custom-html-su .glyphicon-triangle-top:before {

  content: "\e253";

}

#custom-html-su .glyphicon-console:before {

  content: "\e254";

}

#custom-html-su .glyphicon-superscript:before {

  content: "\e255";

}

#custom-html-su .glyphicon-subscript:before {

  content: "\e256";

}

#custom-html-su .glyphicon-menu-left:before {

  content: "\e257";

}

#custom-html-su .glyphicon-menu-right:before {

  content: "\e258";

}

#custom-html-su .glyphicon-menu-down:before {

  content: "\e259";

}

#custom-html-su .glyphicon-menu-up:before {

  content: "\e260";

}

#custom-html-su * {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-su :after,

#custom-html-su :before {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-su html {

  font-size: 10px;

  -webkit-tap-highlight-color: transparent;

}

#custom-html-su body {

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  line-height: 1.42857143;

  color: #333;

  background-color: #ffffff;

}

#custom-html-su button,

#custom-html-su input,

#custom-html-su select,

#custom-html-su textarea {

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;

}

#custom-html-su a {

  color: #000;

  text-decoration: none;

}

#custom-html-su a:focus,

#custom-html-su a:hover {

  color: #000;

  text-decoration: underline;

}

#custom-html-su a:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-su figure {

  margin: 0;

}

#custom-html-su img {

  vertical-align: middle;

}

#custom-html-su .carousel-inner > .item > a > img,

#custom-html-su .carousel-inner > .item > img,

#custom-html-su .img-responsive,

#custom-html-su .thumbnail a > img,

#custom-html-su .thumbnail > img {

  display: block;

  max-width: 100%;

  height: auto;

}

#custom-html-su .img-rounded {

  border-radius: 6px;

}

#custom-html-su .img-thumbnail {

  display: inline-block;

  max-width: 100%;

  height: auto;

  padding: 4px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: all 0.2s ease-in-out;

  -o-transition: all 0.2s ease-in-out;

  transition: all 0.2s ease-in-out;

}

#custom-html-su .img-circle {

  border-radius: 50%;

}

#custom-html-su hr {

  margin-top: 20px;

  margin-bottom: 20px;

  border: 0;

  border-top: 1px solid #eeeeee;

}

#custom-html-su .sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}

#custom-html-su .sr-only-focusable:active,

#custom-html-su .sr-only-focusable:focus {

  position: static;

  width: auto;

  height: auto;

  margin: 0;

  overflow: visible;

  clip: auto;

}

#custom-html-su [role=button] {

  cursor: pointer;

}

#custom-html-su .h1,

#custom-html-su .h2,

#custom-html-su .h3,

#custom-html-su .h4,

#custom-html-su .h5,

#custom-html-su .h6,

#custom-html-su h1,

#custom-html-su h2,

#custom-html-su h3,

#custom-html-su h4,

#custom-html-su h5,

#custom-html-su h6 {

  font-family: 'Rubik', sans-serif;

  font-weight: 500;

  line-height: 1.1;

  color: inherit;

}

#custom-html-su .h1 .small,

#custom-html-su .h1 small,

#custom-html-su .h2 .small,

#custom-html-su .h2 small,

#custom-html-su .h3 .small,

#custom-html-su .h3 small,

#custom-html-su .h4 .small,

#custom-html-su .h4 small,

#custom-html-su .h5 .small,

#custom-html-su .h5 small,

#custom-html-su .h6 .small,

#custom-html-su .h6 small,

#custom-html-su h1 .small,

#custom-html-su h1 small,

#custom-html-su h2 .small,

#custom-html-su h2 small,

#custom-html-su h3 .small,

#custom-html-su h3 small,

#custom-html-su h4 .small,

#custom-html-su h4 small,

#custom-html-su h5 .small,

#custom-html-su h5 small,

#custom-html-su h6 .small,

#custom-html-su h6 small {

  font-weight: 400;

  line-height: 1;

  color: #777777;

}

#custom-html-su .h1,

#custom-html-su .h2,

#custom-html-su .h3,

#custom-html-su h1,

#custom-html-su h2,

#custom-html-su h3 {

  margin-top: 20px;

  margin-bottom: 10px;

}

#custom-html-su .h1 .small,

#custom-html-su .h1 small,

#custom-html-su .h2 .small,

#custom-html-su .h2 small,

#custom-html-su .h3 .small,

#custom-html-su .h3 small,

#custom-html-su h1 .small,

#custom-html-su h1 small,

#custom-html-su h2 .small,

#custom-html-su h2 small,

#custom-html-su h3 .small,

#custom-html-su h3 small {

  font-size: 65%;

}

#custom-html-su .h4,

#custom-html-su .h5,

#custom-html-su .h6,

#custom-html-su h4,

#custom-html-su h5,

#custom-html-su h6 {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-su .h4 .small,

#custom-html-su .h4 small,

#custom-html-su .h5 .small,

#custom-html-su .h5 small,

#custom-html-su .h6 .small,

#custom-html-su .h6 small,

#custom-html-su h4 .small,

#custom-html-su h4 small,

#custom-html-su h5 .small,

#custom-html-su h5 small,

#custom-html-su h6 .small,

#custom-html-su h6 small {

  font-size: 75%;

}

#custom-html-su .h1,

#custom-html-su h1 {

  font-size: 36px;

}

#custom-html-su .h2,

#custom-html-su h2 {

  font-size: 30px;

}

#custom-html-su .h3,

#custom-html-su h3 {

  font-size: 24px;

}

#custom-html-su .h4,

#custom-html-su h4 {

  font-size: 18px;

}

#custom-html-su .h5,

#custom-html-su h5 {

  font-size: 14px;

}

#custom-html-su .h6,

#custom-html-su h6 {

  font-size: 12px;

}

#custom-html-su p {

  margin: 0 0 10px;

}

#custom-html-su .lead {

  margin-bottom: 20px;

  font-size: 16px;

  font-weight: 300;

  line-height: 1.4;

}

@media (min-width: 768px) {

  #custom-html-su .lead {

    font-size: 21px;

  }

}

#custom-html-su .small,

#custom-html-su small {

  font-size: 85%;

}

#custom-html-su .mark,

#custom-html-su mark {

  padding: .2em;

  background-color: #fcf8e3;

}

#custom-html-su .text-left {

  text-align: left;

}

#custom-html-su .text-right {

  text-align: right;

}

#custom-html-su .text-center {

  text-align: center;

}

#custom-html-su .text-justify {

  text-align: justify;

}

#custom-html-su .text-nowrap {

  white-space: nowrap;

}

#custom-html-su .text-lowercase {

  text-transform: lowercase;

}

#custom-html-su .text-uppercase {

  text-transform: uppercase;

}

#custom-html-su .text-capitalize {

  text-transform: capitalize;

}

#custom-html-su .text-muted {

  color: #777777;

}

#custom-html-su .text-primary {

  color: #000000;

}

#custom-html-su a.text-primary:focus,

#custom-html-su a.text-primary:hover {

  color: #000000;

}

#custom-html-su .text-success {

  color: #3c763d;

}

#custom-html-su a.text-success:focus,

#custom-html-su a.text-success:hover {

  color: #2b542c;

}

#custom-html-su .text-info {

  color: #31708f;

}

#custom-html-su a.text-info:focus,

#custom-html-su a.text-info:hover {

  color: #000000;

}

#custom-html-su .text-warning {

  color: #8a6d3b;

}

#custom-html-su a.text-warning:focus,

#custom-html-su a.text-warning:hover {

  color: #66512c;

}

#custom-html-su .text-danger {

  color: #a94442;

}

#custom-html-su a.text-danger:focus,

#custom-html-su a.text-danger:hover {

  color: #843534;

}

#custom-html-su .bg-primary {

  color: #fff;

  background-color: #000000;

}

#custom-html-su a.bg-primary:focus,

#custom-html-su a.bg-primary:hover {

  background-color: #000000;

}

#custom-html-su .bg-success {

  background-color: #dff0d8;

}

#custom-html-su a.bg-success:focus,

#custom-html-su a.bg-success:hover {

  background-color: #c1e2b3;

}

#custom-html-su .bg-info {

  background-color: #d9edf7;

}

#custom-html-su a.bg-info:focus,

#custom-html-su a.bg-info:hover {

  background-color: #afd9ee;

}

#custom-html-su .bg-warning {

  background-color: #fcf8e3;

}

#custom-html-su a.bg-warning:focus,

#custom-html-su a.bg-warning:hover {

  background-color: #f7ecb5;

}

#custom-html-su .bg-danger {

  background-color: #f2dede;

}

#custom-html-su a.bg-danger:focus,

#custom-html-su a.bg-danger:hover {

  background-color: #e4b9b9;

}

#custom-html-su .page-header {

  padding-bottom: 9px;

  margin: 40px 0 20px;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-su ol,

#custom-html-su ul {

  margin-top: 0;

  margin-bottom: 10px;

}

#custom-html-su ol ol,

#custom-html-su ol ul,

#custom-html-su ul ol,

#custom-html-su ul ul {

  margin-bottom: 0;

}

#custom-html-su .list-unstyled {

  padding-left: 0;

  list-style: none;

}

#custom-html-su .list-inline {

  padding-left: 0;

  margin-left: -5px;

  list-style: none;

}

#custom-html-su .list-inline > li {

  display: inline-block;

  padding-right: 5px;

  padding-left: 5px;

}

#custom-html-su dl {

  margin-top: 0;

  margin-bottom: 20px;

}

#custom-html-su dd,

#custom-html-su dt {

  line-height: 1.42857143;

}

#custom-html-su dt {

  font-weight: 700;

}

#custom-html-su dd {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-su .dl-horizontal dt {

    float: left;

    width: 160px;

    overflow: hidden;

    clear: left;

    text-align: right;

    text-overflow: ellipsis;

    white-space: nowrap;

  }

  #custom-html-su .dl-horizontal dd {

    margin-left: 180px;

  }

}

#custom-html-su abbr[data-original-title],

#custom-html-su abbr[title] {

  cursor: help;

  border-bottom: 1px dotted #777777;

}

#custom-html-su .initialism {

  font-size: 90%;

  text-transform: uppercase;

}

#custom-html-su blockquote {

  padding: 10px 20px;

  margin: 0 0 20px;

  font-size: 17.5px;

  border-left: 5px solid #eeeeee;

}

#custom-html-su blockquote ol:last-child,

#custom-html-su blockquote p:last-child,

#custom-html-su blockquote ul:last-child {

  margin-bottom: 0;

}

#custom-html-su blockquote .small,

#custom-html-su blockquote footer,

#custom-html-su blockquote small {

  display: block;

  font-size: 80%;

  line-height: 1.42857143;

  color: #777777;

}

#custom-html-su blockquote .small:before,

#custom-html-su blockquote footer:before,

#custom-html-su blockquote small:before {

  content: '\2014 \00A0';

}

#custom-html-su .blockquote-reverse,

#custom-html-su blockquote.pull-right {

  padding-right: 15px;

  padding-left: 0;

  text-align: right;

  border-right: 5px solid #eee;

  border-left: 0;

}

#custom-html-su .blockquote-reverse .small:before,

#custom-html-su .blockquote-reverse footer:before,

#custom-html-su .blockquote-reverse small:before,

#custom-html-su blockquote.pull-right .small:before,

#custom-html-su blockquote.pull-right footer:before,

#custom-html-su blockquote.pull-right small:before {

  content: '';

}

#custom-html-su .blockquote-reverse .small:after,

#custom-html-su .blockquote-reverse footer:after,

#custom-html-su .blockquote-reverse small:after,

#custom-html-su blockquote.pull-right .small:after,

#custom-html-su blockquote.pull-right footer:after,

#custom-html-su blockquote.pull-right small:after {

  content: '\00A0 \2014';

}

#custom-html-su address {

  margin-bottom: 20px;

  font-style: normal;

  line-height: 1.42857143;

}

#custom-html-su code,

#custom-html-su kbd,

#custom-html-su pre,

#custom-html-su samp {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

}

#custom-html-su code {

  padding: 2px 4px;

  font-size: 90%;

  color: #c7254e;

  background-color: #f9f2f4;

  border-radius: 4px;

}

#custom-html-su kbd {

  padding: 2px 4px;

  font-size: 90%;

  color: #fff;

  background-color: #333;

  border-radius: 3px;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);

}

#custom-html-su kbd kbd {

  padding: 0;

  font-size: 100%;

  font-weight: 700;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-su pre {

  display: block;

  padding: 9.5px;

  margin: 0 0 10px;

  font-size: 13px;

  line-height: 1.42857143;

  color: #333;

  word-break: break-all;

  word-wrap: break-word;

  background-color: #f5f5f5;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-su pre code {

  padding: 0;

  font-size: inherit;

  color: inherit;

  white-space: pre-wrap;

  background-color: transparent;

  border-radius: 0;

}

#custom-html-su .pre-scrollable {

  max-height: 340px;

  overflow-y: scroll;

}

#custom-html-su .container {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

@media (min-width: 768px) {

  #custom-html-su .container {

    width: 750px;

  }

}

@media (min-width: 992px) {

  #custom-html-su .container {

    width: 970px;

  }

}

@media (min-width: 1200px) {

  #custom-html-su .container {

    width: 1170px;

  }

}

#custom-html-su .container-fluid {

  padding-right: 15px;

  padding-left: 15px;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-su .row {

  margin-right: -15px;

  margin-left: -15px;

}

#custom-html-su .col-lg-1,

#custom-html-su .col-lg-10,

#custom-html-su .col-lg-11,

#custom-html-su .col-lg-12,

#custom-html-su .col-lg-2,

#custom-html-su .col-lg-3,

#custom-html-su .col-lg-4,

#custom-html-su .col-lg-5,

#custom-html-su .col-lg-6,

#custom-html-su .col-lg-7,

#custom-html-su .col-lg-8,

#custom-html-su .col-lg-9,

#custom-html-su .col-md-1,

#custom-html-su .col-md-10,

#custom-html-su .col-md-11,

#custom-html-su .col-md-12,

#custom-html-su .col-md-2,

#custom-html-su .col-md-3,

#custom-html-su .col-md-4,

#custom-html-su .col-md-5,

#custom-html-su .col-md-6,

#custom-html-su .col-md-7,

#custom-html-su .col-md-8,

#custom-html-su .col-md-9,

#custom-html-su .col-sm-1,

#custom-html-su .col-sm-10,

#custom-html-su .col-sm-11,

#custom-html-su .col-sm-12,

#custom-html-su .col-sm-2,

#custom-html-su .col-sm-3,

#custom-html-su .col-sm-4,

#custom-html-su .col-sm-5,

#custom-html-su .col-sm-6,

#custom-html-su .col-sm-7,

#custom-html-su .col-sm-8,

#custom-html-su .col-sm-9,

#custom-html-su .col-xs-1,

#custom-html-su .col-xs-10,

#custom-html-su .col-xs-11,

#custom-html-su .col-xs-12,

#custom-html-su .col-xs-2,

#custom-html-su .col-xs-3,

#custom-html-su .col-xs-4,

#custom-html-su .col-xs-5,

#custom-html-su .col-xs-6,

#custom-html-su .col-xs-7,

#custom-html-su .col-xs-8,

#custom-html-su .col-xs-9 {

  position: relative;

  min-height: 1px;

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-su .col-xs-1,

#custom-html-su .col-xs-10,

#custom-html-su .col-xs-11,

#custom-html-su .col-xs-12,

#custom-html-su .col-xs-2,

#custom-html-su .col-xs-3,

#custom-html-su .col-xs-4,

#custom-html-su .col-xs-5,

#custom-html-su .col-xs-6,

#custom-html-su .col-xs-7,

#custom-html-su .col-xs-8,

#custom-html-su .col-xs-9 {

  float: left;

}

#custom-html-su .col-xs-12 {

  width: 100%;

}

#custom-html-su .col-xs-11 {

  width: 91.66666667%;

}

#custom-html-su .col-xs-10 {

  width: 83.33333333%;

}

#custom-html-su .col-xs-9 {

  width: 75%;

}

#custom-html-su .col-xs-8 {

  width: 66.66666667%;

}

#custom-html-su .col-xs-7 {

  width: 58.33333333%;

}

#custom-html-su .col-xs-6 {

  width: 50%;

}

#custom-html-su .col-xs-5 {

  width: 41.66666667%;

}

#custom-html-su .col-xs-4 {

  width: 33.33333333%;

}

#custom-html-su .col-xs-3 {

  width: 25%;

}

#custom-html-su .col-xs-2 {

  width: 16.66666667%;

}

#custom-html-su .col-xs-1 {

  width: 8.33333333%;

}

#custom-html-su .col-xs-pull-12 {

  right: 100%;

}

#custom-html-su .col-xs-pull-11 {

  right: 91.66666667%;

}

#custom-html-su .col-xs-pull-10 {

  right: 83.33333333%;

}

#custom-html-su .col-xs-pull-9 {

  right: 75%;

}

#custom-html-su .col-xs-pull-8 {

  right: 66.66666667%;

}

#custom-html-su .col-xs-pull-7 {

  right: 58.33333333%;

}

#custom-html-su .col-xs-pull-6 {

  right: 50%;

}

#custom-html-su .col-xs-pull-5 {

  right: 41.66666667%;

}

#custom-html-su .col-xs-pull-4 {

  right: 33.33333333%;

}

#custom-html-su .col-xs-pull-3 {

  right: 25%;

}

#custom-html-su .col-xs-pull-2 {

  right: 16.66666667%;

}

#custom-html-su .col-xs-pull-1 {

  right: 8.33333333%;

}

#custom-html-su .col-xs-pull-0 {

  right: auto;

}

#custom-html-su .col-xs-push-12 {

  left: 100%;

}

#custom-html-su .col-xs-push-11 {

  left: 91.66666667%;

}

#custom-html-su .col-xs-push-10 {

  left: 83.33333333%;

}

#custom-html-su .col-xs-push-9 {

  left: 75%;

}

#custom-html-su .col-xs-push-8 {

  left: 66.66666667%;

}

#custom-html-su .col-xs-push-7 {

  left: 58.33333333%;

}

#custom-html-su .col-xs-push-6 {

  left: 50%;

}

#custom-html-su .col-xs-push-5 {

  left: 41.66666667%;

}

#custom-html-su .col-xs-push-4 {

  left: 33.33333333%;

}

#custom-html-su .col-xs-push-3 {

  left: 25%;

}

#custom-html-su .col-xs-push-2 {

  left: 16.66666667%;

}

#custom-html-su .col-xs-push-1 {

  left: 8.33333333%;

}

#custom-html-su .col-xs-push-0 {

  left: auto;

}

#custom-html-su .col-xs-offset-12 {

  margin-left: 100%;

}

#custom-html-su .col-xs-offset-11 {

  margin-left: 91.66666667%;

}

#custom-html-su .col-xs-offset-10 {

  margin-left: 83.33333333%;

}

#custom-html-su .col-xs-offset-9 {

  margin-left: 75%;

}

#custom-html-su .col-xs-offset-8 {

  margin-left: 66.66666667%;

}

#custom-html-su .col-xs-offset-7 {

  margin-left: 58.33333333%;

}

#custom-html-su .col-xs-offset-6 {

  margin-left: 50%;

}

#custom-html-su .col-xs-offset-5 {

  margin-left: 41.66666667%;

}

#custom-html-su .col-xs-offset-4 {

  margin-left: 33.33333333%;

}

#custom-html-su .col-xs-offset-3 {

  margin-left: 25%;

}

#custom-html-su .col-xs-offset-2 {

  margin-left: 16.66666667%;

}

#custom-html-su .col-xs-offset-1 {

  margin-left: 8.33333333%;

}

#custom-html-su .col-xs-offset-0 {

  margin-left: 0;

}

@media (min-width: 768px) {

  #custom-html-su .col-sm-1,

  #custom-html-su .col-sm-10,

  #custom-html-su .col-sm-11,

  #custom-html-su .col-sm-12,

  #custom-html-su .col-sm-2,

  #custom-html-su .col-sm-3,

  #custom-html-su .col-sm-4,

  #custom-html-su .col-sm-5,

  #custom-html-su .col-sm-6,

  #custom-html-su .col-sm-7,

  #custom-html-su .col-sm-8,

  #custom-html-su .col-sm-9 {

    float: left;

  }

  #custom-html-su .col-sm-12 {

    width: 100%;

  }

  #custom-html-su .col-sm-11 {

    width: 91.66666667%;

  }

  #custom-html-su .col-sm-10 {

    width: 83.33333333%;

  }

  #custom-html-su .col-sm-9 {

    width: 75%;

  }

  #custom-html-su .col-sm-8 {

    width: 66.66666667%;

  }

  #custom-html-su .col-sm-7 {

    width: 58.33333333%;

  }

  #custom-html-su .col-sm-6 {

    width: 50%;

  }

  #custom-html-su .col-sm-5 {

    width: 41.66666667%;

  }

  #custom-html-su .col-sm-4 {

    width: 33.33333333%;

  }

  #custom-html-su .col-sm-3 {

    width: 25%;

  }

  #custom-html-su .col-sm-2 {

    width: 16.66666667%;

  }

  #custom-html-su .col-sm-1 {

    width: 8.33333333%;

  }

  #custom-html-su .col-sm-pull-12 {

    right: 100%;

  }

  #custom-html-su .col-sm-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-su .col-sm-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-su .col-sm-pull-9 {

    right: 75%;

  }

  #custom-html-su .col-sm-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-su .col-sm-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-su .col-sm-pull-6 {

    right: 50%;

  }

  #custom-html-su .col-sm-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-su .col-sm-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-su .col-sm-pull-3 {

    right: 25%;

  }

  #custom-html-su .col-sm-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-su .col-sm-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-su .col-sm-pull-0 {

    right: auto;

  }

  #custom-html-su .col-sm-push-12 {

    left: 100%;

  }

  #custom-html-su .col-sm-push-11 {

    left: 91.66666667%;

  }

  #custom-html-su .col-sm-push-10 {

    left: 83.33333333%;

  }

  #custom-html-su .col-sm-push-9 {

    left: 75%;

  }

  #custom-html-su .col-sm-push-8 {

    left: 66.66666667%;

  }

  #custom-html-su .col-sm-push-7 {

    left: 58.33333333%;

  }

  #custom-html-su .col-sm-push-6 {

    left: 50%;

  }

  #custom-html-su .col-sm-push-5 {

    left: 41.66666667%;

  }

  #custom-html-su .col-sm-push-4 {

    left: 33.33333333%;

  }

  #custom-html-su .col-sm-push-3 {

    left: 25%;

  }

  #custom-html-su .col-sm-push-2 {

    left: 16.66666667%;

  }

  #custom-html-su .col-sm-push-1 {

    left: 8.33333333%;

  }

  #custom-html-su .col-sm-push-0 {

    left: auto;

  }

  #custom-html-su .col-sm-offset-12 {

    margin-left: 100%;

  }

  #custom-html-su .col-sm-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-su .col-sm-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-su .col-sm-offset-9 {

    margin-left: 75%;

  }

  #custom-html-su .col-sm-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-su .col-sm-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-su .col-sm-offset-6 {

    margin-left: 50%;

  }

  #custom-html-su .col-sm-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-su .col-sm-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-su .col-sm-offset-3 {

    margin-left: 25%;

  }

  #custom-html-su .col-sm-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-su .col-sm-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-su .col-sm-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 992px) {

  #custom-html-su .col-md-1,

  #custom-html-su .col-md-10,

  #custom-html-su .col-md-11,

  #custom-html-su .col-md-12,

  #custom-html-su .col-md-2,

  #custom-html-su .col-md-3,

  #custom-html-su .col-md-4,

  #custom-html-su .col-md-5,

  #custom-html-su .col-md-6,

  #custom-html-su .col-md-7,

  #custom-html-su .col-md-8,

  #custom-html-su .col-md-9 {

    float: left;

  }

  #custom-html-su .col-md-12 {

    width: 100%;

  }

  #custom-html-su .col-md-11 {

    width: 91.66666667%;

  }

  #custom-html-su .col-md-10 {

    width: 83.33333333%;

  }

  #custom-html-su .col-md-9 {

    width: 75%;

  }

  #custom-html-su .col-md-8 {

    width: 66.66666667%;

  }

  #custom-html-su .col-md-7 {

    width: 58.33333333%;

  }

  #custom-html-su .col-md-6 {

    width: 50%;

  }

  #custom-html-su .col-md-5 {

    width: 41.66666667%;

  }

  #custom-html-su .col-md-4 {

    width: 33.33333333%;

  }

  #custom-html-su .col-md-3 {

    width: 25%;

  }

  #custom-html-su .col-md-2 {

    width: 16.66666667%;

  }

  #custom-html-su .col-md-1 {

    width: 8.33333333%;

  }

  #custom-html-su .col-md-pull-12 {

    right: 100%;

  }

  #custom-html-su .col-md-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-su .col-md-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-su .col-md-pull-9 {

    right: 75%;

  }

  #custom-html-su .col-md-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-su .col-md-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-su .col-md-pull-6 {

    right: 50%;

  }

  #custom-html-su .col-md-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-su .col-md-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-su .col-md-pull-3 {

    right: 25%;

  }

  #custom-html-su .col-md-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-su .col-md-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-su .col-md-pull-0 {

    right: auto;

  }

  #custom-html-su .col-md-push-12 {

    left: 100%;

  }

  #custom-html-su .col-md-push-11 {

    left: 91.66666667%;

  }

  #custom-html-su .col-md-push-10 {

    left: 83.33333333%;

  }

  #custom-html-su .col-md-push-9 {

    left: 75%;

  }

  #custom-html-su .col-md-push-8 {

    left: 66.66666667%;

  }

  #custom-html-su .col-md-push-7 {

    left: 58.33333333%;

  }

  #custom-html-su .col-md-push-6 {

    left: 50%;

  }

  #custom-html-su .col-md-push-5 {

    left: 41.66666667%;

  }

  #custom-html-su .col-md-push-4 {

    left: 33.33333333%;

  }

  #custom-html-su .col-md-push-3 {

    left: 25%;

  }

  #custom-html-su .col-md-push-2 {

    left: 16.66666667%;

  }

  #custom-html-su .col-md-push-1 {

    left: 8.33333333%;

  }

  #custom-html-su .col-md-push-0 {

    left: auto;

  }

  #custom-html-su .col-md-offset-12 {

    margin-left: 100%;

  }

  #custom-html-su .col-md-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-su .col-md-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-su .col-md-offset-9 {

    margin-left: 75%;

  }

  #custom-html-su .col-md-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-su .col-md-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-su .col-md-offset-6 {

    margin-left: 50%;

  }

  #custom-html-su .col-md-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-su .col-md-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-su .col-md-offset-3 {

    margin-left: 25%;

  }

  #custom-html-su .col-md-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-su .col-md-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-su .col-md-offset-0 {

    margin-left: 0;

  }

}

@media (min-width: 1200px) {

  #custom-html-su .col-lg-1,

  #custom-html-su .col-lg-10,

  #custom-html-su .col-lg-11,

  #custom-html-su .col-lg-12,

  #custom-html-su .col-lg-2,

  #custom-html-su .col-lg-3,

  #custom-html-su .col-lg-4,

  #custom-html-su .col-lg-5,

  #custom-html-su .col-lg-6,

  #custom-html-su .col-lg-7,

  #custom-html-su .col-lg-8,

  #custom-html-su .col-lg-9 {

    float: left;

  }

  #custom-html-su .col-lg-12 {

    width: 100%;

  }

  #custom-html-su .col-lg-11 {

    width: 91.66666667%;

  }

  #custom-html-su .col-lg-10 {

    width: 83.33333333%;

  }

  #custom-html-su .col-lg-9 {

    width: 75%;

  }

  #custom-html-su .col-lg-8 {

    width: 66.66666667%;

  }

  #custom-html-su .col-lg-7 {

    width: 58.33333333%;

  }

  #custom-html-su .col-lg-6 {

    width: 50%;

  }

  #custom-html-su .col-lg-5 {

    width: 41.66666667%;

  }

  #custom-html-su .col-lg-4 {

    width: 33.33333333%;

  }

  #custom-html-su .col-lg-3 {

    width: 25%;

  }

  #custom-html-su .col-lg-2 {

    width: 16.66666667%;

  }

  #custom-html-su .col-lg-1 {

    width: 8.33333333%;

  }

  #custom-html-su .col-lg-pull-12 {

    right: 100%;

  }

  #custom-html-su .col-lg-pull-11 {

    right: 91.66666667%;

  }

  #custom-html-su .col-lg-pull-10 {

    right: 83.33333333%;

  }

  #custom-html-su .col-lg-pull-9 {

    right: 75%;

  }

  #custom-html-su .col-lg-pull-8 {

    right: 66.66666667%;

  }

  #custom-html-su .col-lg-pull-7 {

    right: 58.33333333%;

  }

  #custom-html-su .col-lg-pull-6 {

    right: 50%;

  }

  #custom-html-su .col-lg-pull-5 {

    right: 41.66666667%;

  }

  #custom-html-su .col-lg-pull-4 {

    right: 33.33333333%;

  }

  #custom-html-su .col-lg-pull-3 {

    right: 25%;

  }

  #custom-html-su .col-lg-pull-2 {

    right: 16.66666667%;

  }

  #custom-html-su .col-lg-pull-1 {

    right: 8.33333333%;

  }

  #custom-html-su .col-lg-pull-0 {

    right: auto;

  }

  #custom-html-su .col-lg-push-12 {

    left: 100%;

  }

  #custom-html-su .col-lg-push-11 {

    left: 91.66666667%;

  }

  #custom-html-su .col-lg-push-10 {

    left: 83.33333333%;

  }

  #custom-html-su .col-lg-push-9 {

    left: 75%;

  }

  #custom-html-su .col-lg-push-8 {

    left: 66.66666667%;

  }

  #custom-html-su .col-lg-push-7 {

    left: 58.33333333%;

  }

  #custom-html-su .col-lg-push-6 {

    left: 50%;

  }

  #custom-html-su .col-lg-push-5 {

    left: 41.66666667%;

  }

  #custom-html-su .col-lg-push-4 {

    left: 33.33333333%;

  }

  #custom-html-su .col-lg-push-3 {

    left: 25%;

  }

  #custom-html-su .col-lg-push-2 {

    left: 16.66666667%;

  }

  #custom-html-su .col-lg-push-1 {

    left: 8.33333333%;

  }

  #custom-html-su .col-lg-push-0 {

    left: auto;

  }

  #custom-html-su .col-lg-offset-12 {

    margin-left: 100%;

  }

  #custom-html-su .col-lg-offset-11 {

    margin-left: 91.66666667%;

  }

  #custom-html-su .col-lg-offset-10 {

    margin-left: 83.33333333%;

  }

  #custom-html-su .col-lg-offset-9 {

    margin-left: 75%;

  }

  #custom-html-su .col-lg-offset-8 {

    margin-left: 66.66666667%;

  }

  #custom-html-su .col-lg-offset-7 {

    margin-left: 58.33333333%;

  }

  #custom-html-su .col-lg-offset-6 {

    margin-left: 50%;

  }

  #custom-html-su .col-lg-offset-5 {

    margin-left: 41.66666667%;

  }

  #custom-html-su .col-lg-offset-4 {

    margin-left: 33.33333333%;

  }

  #custom-html-su .col-lg-offset-3 {

    margin-left: 25%;

  }

  #custom-html-su .col-lg-offset-2 {

    margin-left: 16.66666667%;

  }

  #custom-html-su .col-lg-offset-1 {

    margin-left: 8.33333333%;

  }

  #custom-html-su .col-lg-offset-0 {

    margin-left: 0;

  }

}

#custom-html-su table {

  background-color: transparent;

}

#custom-html-su caption {

  padding-top: 8px;

  padding-bottom: 8px;

  color: #777;

  text-align: left;

}

#custom-html-su th {

  text-align: left;

}

#custom-html-su .table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 20px;

}

#custom-html-su .table > tbody > tr > td,

#custom-html-su .table > tbody > tr > th,

#custom-html-su .table > tfoot > tr > td,

#custom-html-su .table > tfoot > tr > th,

#custom-html-su .table > thead > tr > td,

#custom-html-su .table > thead > tr > th {

  padding: 8px;

  line-height: 1.42857143;

  vertical-align: top;

  border-top: 1px solid #dddddd;

}

#custom-html-su .table > thead > tr > th {

  vertical-align: bottom;

  border-bottom: 2px solid #dddddd;

}

#custom-html-su .table > caption + thead > tr:first-child > td,

#custom-html-su .table > caption + thead > tr:first-child > th,

#custom-html-su .table > colgroup + thead > tr:first-child > td,

#custom-html-su .table > colgroup + thead > tr:first-child > th,

#custom-html-su .table > thead:first-child > tr:first-child > td,

#custom-html-su .table > thead:first-child > tr:first-child > th {

  border-top: 0;

}

#custom-html-su .table > tbody + tbody {

  border-top: 2px solid #dddddd;

}

#custom-html-su .table .table {

  background-color: #ffffff;

}

#custom-html-su .table-condensed > tbody > tr > td,

#custom-html-su .table-condensed > tbody > tr > th,

#custom-html-su .table-condensed > tfoot > tr > td,

#custom-html-su .table-condensed > tfoot > tr > th,

#custom-html-su .table-condensed > thead > tr > td,

#custom-html-su .table-condensed > thead > tr > th {

  padding: 5px;

}

#custom-html-su .table-bordered {

  border: 1px solid #dddddd;

}

#custom-html-su .table-bordered > tbody > tr > td,

#custom-html-su .table-bordered > tbody > tr > th,

#custom-html-su .table-bordered > tfoot > tr > td,

#custom-html-su .table-bordered > tfoot > tr > th,

#custom-html-su .table-bordered > thead > tr > td,

#custom-html-su .table-bordered > thead > tr > th {

  border: 1px solid #dddddd;

}

#custom-html-su .table-bordered > thead > tr > td,

#custom-html-su .table-bordered > thead > tr > th {

  border-bottom-width: 2px;

}

#custom-html-su .table-striped > tbody > tr:nth-of-type(odd) {

  background-color: #f9f9f9;

}

#custom-html-su .table-hover > tbody > tr:hover {

  background-color: #f5f5f5;

}

#custom-html-su table col[class*=col-] {

  position: static;

  display: table-column;

  float: none;

}

#custom-html-su table td[class*=col-],

#custom-html-su table th[class*=col-] {

  position: static;

  display: table-cell;

  float: none;

}

#custom-html-su .table > tbody > tr.active > td,

#custom-html-su .table > tbody > tr.active > th,

#custom-html-su .table > tbody > tr > td.active,

#custom-html-su .table > tbody > tr > th.active,

#custom-html-su .table > tfoot > tr.active > td,

#custom-html-su .table > tfoot > tr.active > th,

#custom-html-su .table > tfoot > tr > td.active,

#custom-html-su .table > tfoot > tr > th.active,

#custom-html-su .table > thead > tr.active > td,

#custom-html-su .table > thead > tr.active > th,

#custom-html-su .table > thead > tr > td.active,

#custom-html-su .table > thead > tr > th.active {

  background-color: #f5f5f5;

}

#custom-html-su .table-hover > tbody > tr.active:hover > td,

#custom-html-su .table-hover > tbody > tr.active:hover > th,

#custom-html-su .table-hover > tbody > tr:hover > .active,

#custom-html-su .table-hover > tbody > tr > td.active:hover,

#custom-html-su .table-hover > tbody > tr > th.active:hover {

  background-color: #e8e8e8;

}

#custom-html-su .table > tbody > tr.success > td,

#custom-html-su .table > tbody > tr.success > th,

#custom-html-su .table > tbody > tr > td.success,

#custom-html-su .table > tbody > tr > th.success,

#custom-html-su .table > tfoot > tr.success > td,

#custom-html-su .table > tfoot > tr.success > th,

#custom-html-su .table > tfoot > tr > td.success,

#custom-html-su .table > tfoot > tr > th.success,

#custom-html-su .table > thead > tr.success > td,

#custom-html-su .table > thead > tr.success > th,

#custom-html-su .table > thead > tr > td.success,

#custom-html-su .table > thead > tr > th.success {

  background-color: #dff0d8;

}

#custom-html-su .table-hover > tbody > tr.success:hover > td,

#custom-html-su .table-hover > tbody > tr.success:hover > th,

#custom-html-su .table-hover > tbody > tr:hover > .success,

#custom-html-su .table-hover > tbody > tr > td.success:hover,

#custom-html-su .table-hover > tbody > tr > th.success:hover {

  background-color: #d0e9c6;

}

#custom-html-su .table > tbody > tr.info > td,

#custom-html-su .table > tbody > tr.info > th,

#custom-html-su .table > tbody > tr > td.info,

#custom-html-su .table > tbody > tr > th.info,

#custom-html-su .table > tfoot > tr.info > td,

#custom-html-su .table > tfoot > tr.info > th,

#custom-html-su .table > tfoot > tr > td.info,

#custom-html-su .table > tfoot > tr > th.info,

#custom-html-su .table > thead > tr.info > td,

#custom-html-su .table > thead > tr.info > th,

#custom-html-su .table > thead > tr > td.info,

#custom-html-su .table > thead > tr > th.info {

  background-color: #d9edf7;

}

#custom-html-su .table-hover > tbody > tr.info:hover > td,

#custom-html-su .table-hover > tbody > tr.info:hover > th,

#custom-html-su .table-hover > tbody > tr:hover > .info,

#custom-html-su .table-hover > tbody > tr > td.info:hover,

#custom-html-su .table-hover > tbody > tr > th.info:hover {

  background-color: #c4e3f3;

}

#custom-html-su .table > tbody > tr.warning > td,

#custom-html-su .table > tbody > tr.warning > th,

#custom-html-su .table > tbody > tr > td.warning,

#custom-html-su .table > tbody > tr > th.warning,

#custom-html-su .table > tfoot > tr.warning > td,

#custom-html-su .table > tfoot > tr.warning > th,

#custom-html-su .table > tfoot > tr > td.warning,

#custom-html-su .table > tfoot > tr > th.warning,

#custom-html-su .table > thead > tr.warning > td,

#custom-html-su .table > thead > tr.warning > th,

#custom-html-su .table > thead > tr > td.warning,

#custom-html-su .table > thead > tr > th.warning {

  background-color: #fcf8e3;

}

#custom-html-su .table-hover > tbody > tr.warning:hover > td,

#custom-html-su .table-hover > tbody > tr.warning:hover > th,

#custom-html-su .table-hover > tbody > tr:hover > .warning,

#custom-html-su .table-hover > tbody > tr > td.warning:hover,

#custom-html-su .table-hover > tbody > tr > th.warning:hover {

  background-color: #faf2cc;

}

#custom-html-su .table > tbody > tr.danger > td,

#custom-html-su .table > tbody > tr.danger > th,

#custom-html-su .table > tbody > tr > td.danger,

#custom-html-su .table > tbody > tr > th.danger,

#custom-html-su .table > tfoot > tr.danger > td,

#custom-html-su .table > tfoot > tr.danger > th,

#custom-html-su .table > tfoot > tr > td.danger,

#custom-html-su .table > tfoot > tr > th.danger,

#custom-html-su .table > thead > tr.danger > td,

#custom-html-su .table > thead > tr.danger > th,

#custom-html-su .table > thead > tr > td.danger,

#custom-html-su .table > thead > tr > th.danger {

  background-color: #f2dede;

}

#custom-html-su .table-hover > tbody > tr.danger:hover > td,

#custom-html-su .table-hover > tbody > tr.danger:hover > th,

#custom-html-su .table-hover > tbody > tr:hover > .danger,

#custom-html-su .table-hover > tbody > tr > td.danger:hover,

#custom-html-su .table-hover > tbody > tr > th.danger:hover {

  background-color: #ebcccc;

}

#custom-html-su .table-responsive {

  min-height: .01%;

  overflow-x: auto;

}

@media screen and (max-width: 767px) {

  #custom-html-su .table-responsive {

    width: 100%;

    margin-bottom: 15px;

    overflow-y: hidden;

    -ms-overflow-style: -ms-autohiding-scrollbar;

    border: 1px solid #dddddd;

  }

  #custom-html-su .table-responsive > .table {

    margin-bottom: 0;

  }

  #custom-html-su .table-responsive > .table > tbody > tr > td,

  #custom-html-su .table-responsive > .table > tbody > tr > th,

  #custom-html-su .table-responsive > .table > tfoot > tr > td,

  #custom-html-su .table-responsive > .table > tfoot > tr > th,

  #custom-html-su .table-responsive > .table > thead > tr > td,

  #custom-html-su .table-responsive > .table > thead > tr > th {

    white-space: nowrap;

  }

  #custom-html-su .table-responsive > .table-bordered {

    border: 0;

  }

  #custom-html-su .table-responsive > .table-bordered > tbody > tr > td:first-child,

  #custom-html-su .table-responsive > .table-bordered > tbody > tr > th:first-child,

  #custom-html-su .table-responsive > .table-bordered > tfoot > tr > td:first-child,

  #custom-html-su .table-responsive > .table-bordered > tfoot > tr > th:first-child,

  #custom-html-su .table-responsive > .table-bordered > thead > tr > td:first-child,

  #custom-html-su .table-responsive > .table-bordered > thead > tr > th:first-child {

    border-left: 0;

  }

  #custom-html-su .table-responsive > .table-bordered > tbody > tr > td:last-child,

  #custom-html-su .table-responsive > .table-bordered > tbody > tr > th:last-child,

  #custom-html-su .table-responsive > .table-bordered > tfoot > tr > td:last-child,

  #custom-html-su .table-responsive > .table-bordered > tfoot > tr > th:last-child,

  #custom-html-su .table-responsive > .table-bordered > thead > tr > td:last-child,

  #custom-html-su .table-responsive > .table-bordered > thead > tr > th:last-child {

    border-right: 0;

  }

  #custom-html-su .table-responsive > .table-bordered > tbody > tr:last-child > td,

  #custom-html-su .table-responsive > .table-bordered > tbody > tr:last-child > th,

  #custom-html-su .table-responsive > .table-bordered > tfoot > tr:last-child > td,

  #custom-html-su .table-responsive > .table-bordered > tfoot > tr:last-child > th {

    border-bottom: 0;

  }

}

#custom-html-su fieldset {

  min-width: 0;

  padding: 0;

  margin: 0;

  border: 0;

}

#custom-html-su legend {

  display: block;

  width: 100%;

  padding: 0;

  margin-bottom: 20px;

  font-size: 21px;

  line-height: inherit;

  color: #333;

  border: 0;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-su label {

  display: inline-block;

  max-width: 100%;

  margin-bottom: 5px;

  font-weight: 700;

}

#custom-html-su input[type=search] {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

}

#custom-html-su input[type=checkbox],

#custom-html-su input[type=radio] {

  margin: 4px 0 0;

  line-height: normal;

}

#custom-html-su input[type=file] {

  display: block;

}

#custom-html-su input[type=range] {

  display: block;

  width: 100%;

}

#custom-html-su select[multiple],

#custom-html-su select[size] {

  height: auto;

}

#custom-html-su input[type=checkbox]:focus,

#custom-html-su input[type=file]:focus,

#custom-html-su input[type=radio]:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-su output {

  display: block;

  padding-top: 7px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555555;

}

#custom-html-su .form-control {

  display: block;

  width: 100%;

  height: 34px;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 1.42857143;

  color: #555;

  background-color: #fff;

  background-image: none;

  border: 1px solid #ccc;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;

  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-su .form-control:focus {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-su .form-control::-moz-placeholder {

  color: #999;

  opacity: 1;

}

#custom-html-su .form-control:-ms-input-placeholder {

  color: #999999;

}

#custom-html-su .form-control::-webkit-input-placeholder {

  color: #999999;

}

#custom-html-su .form-control::-ms-expand {

  background-color: transparent;

  border: 0;

}

#custom-html-su .form-control[disabled],

#custom-html-su .form-control[readonly],

#custom-html-su fieldset[disabled] .form-control {

  background-color: #eee;

  opacity: 1;

}

#custom-html-su .form-control[disabled],

#custom-html-su fieldset[disabled] .form-control {

  cursor: not-allowed;

}

#custom-html-su textarea.form-control {

  height: auto;

}

#custom-html-su input[type=search] {

  -webkit-appearance: none;

}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

  #custom-html-su input[type=date].form-control,

  #custom-html-su input[type=datetime-local].form-control,

  #custom-html-su input[type=month].form-control,

  #custom-html-su input[type=time].form-control {

    line-height: 34px;

  }

  #custom-html-su .input-group-sm input[type=date],

  #custom-html-su .input-group-sm input[type=datetime-local],

  #custom-html-su .input-group-sm input[type=month],

  #custom-html-su .input-group-sm input[type=time],

  #custom-html-su input[type=date].input-sm,

  #custom-html-su input[type=datetime-local].input-sm,

  #custom-html-su input[type=month].input-sm,

  #custom-html-su input[type=time].input-sm {

    line-height: 30px;

  }

  #custom-html-su .input-group-lg input[type=date],

  #custom-html-su .input-group-lg input[type=datetime-local],

  #custom-html-su .input-group-lg input[type=month],

  #custom-html-su .input-group-lg input[type=time],

  #custom-html-su input[type=date].input-lg,

  #custom-html-su input[type=datetime-local].input-lg,

  #custom-html-su input[type=month].input-lg,

  #custom-html-su input[type=time].input-lg {

    line-height: 46px;

  }

}

#custom-html-su .form-group {

  margin-bottom: 15px;

}

#custom-html-su .checkbox,

#custom-html-su .radio {

  position: relative;

  display: block;

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-su .checkbox label,

#custom-html-su .radio label {

  min-height: 20px;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  cursor: pointer;

}

#custom-html-su .checkbox input[type=checkbox],

#custom-html-su .checkbox-inline input[type=checkbox],

#custom-html-su .radio input[type=radio],

#custom-html-su .radio-inline input[type=radio] {

  position: absolute;

  margin-left: -20px;

}

#custom-html-su .checkbox + .checkbox,

#custom-html-su .radio + .radio {

  margin-top: -5px;

}

#custom-html-su .checkbox-inline,

#custom-html-su .radio-inline {

  position: relative;

  display: inline-block;

  padding-left: 20px;

  margin-bottom: 0;

  font-weight: 400;

  vertical-align: middle;

  cursor: pointer;

}

#custom-html-su .checkbox-inline + .checkbox-inline,

#custom-html-su .radio-inline + .radio-inline {

  margin-top: 0;

  margin-left: 10px;

}

#custom-html-su fieldset[disabled] input[type=checkbox],

#custom-html-su fieldset[disabled] input[type=radio],

#custom-html-su input[type=checkbox].disabled,

#custom-html-su input[type=checkbox][disabled],

#custom-html-su input[type=radio].disabled,

#custom-html-su input[type=radio][disabled] {

  cursor: not-allowed;

}

#custom-html-su .checkbox-inline.disabled,

#custom-html-su .radio-inline.disabled,

#custom-html-su fieldset[disabled] .checkbox-inline,

#custom-html-su fieldset[disabled] .radio-inline {

  cursor: not-allowed;

}

#custom-html-su .checkbox.disabled label,

#custom-html-su .radio.disabled label,

#custom-html-su fieldset[disabled] .checkbox label,

#custom-html-su fieldset[disabled] .radio label {

  cursor: not-allowed;

}

#custom-html-su .form-control-static {

  min-height: 34px;

  padding-top: 7px;

  padding-bottom: 7px;

  margin-bottom: 0;

}

#custom-html-su .form-control-static.input-lg,

#custom-html-su .form-control-static.input-sm {

  padding-right: 0;

  padding-left: 0;

}

#custom-html-su .input-sm {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-su select.input-sm {

  height: 30px;

  line-height: 30px;

}

#custom-html-su select[multiple].input-sm,

#custom-html-su textarea.input-sm {

  height: auto;

}

#custom-html-su .form-group-sm .form-control {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-su .form-group-sm select.form-control {

  height: 30px;

  line-height: 30px;

}

#custom-html-su .form-group-sm select[multiple].form-control,

#custom-html-su .form-group-sm textarea.form-control {

  height: auto;

}

#custom-html-su .form-group-sm .form-control-static {

  height: 30px;

  min-height: 32px;

  padding: 6px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-su .input-lg {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-su select.input-lg {

  height: 46px;

  line-height: 46px;

}

#custom-html-su select[multiple].input-lg,

#custom-html-su textarea.input-lg {

  height: auto;

}

#custom-html-su .form-group-lg .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-su .form-group-lg select.form-control {

  height: 46px;

  line-height: 46px;

}

#custom-html-su .form-group-lg select[multiple].form-control,

#custom-html-su .form-group-lg textarea.form-control {

  height: auto;

}

#custom-html-su .form-group-lg .form-control-static {

  height: 46px;

  min-height: 38px;

  padding: 11px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-su .has-feedback {

  position: relative;

}

#custom-html-su .has-feedback .form-control {

  padding-right: 42.5px;

}

#custom-html-su .form-control-feedback {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 2;

  display: block;

  width: 34px;

  height: 34px;

  line-height: 34px;

  text-align: center;

  pointer-events: none;

}

#custom-html-su .form-group-lg .form-control + .form-control-feedback,

#custom-html-su .input-group-lg + .form-control-feedback,

#custom-html-su .input-lg + .form-control-feedback {

  width: 46px;

  height: 46px;

  line-height: 46px;

}

#custom-html-su .form-group-sm .form-control + .form-control-feedback,

#custom-html-su .input-group-sm + .form-control-feedback,

#custom-html-su .input-sm + .form-control-feedback {

  width: 30px;

  height: 30px;

  line-height: 30px;

}

#custom-html-su .has-success .checkbox,

#custom-html-su .has-success .checkbox-inline,

#custom-html-su .has-success .control-label,

#custom-html-su .has-success .help-block,

#custom-html-su .has-success .radio,

#custom-html-su .has-success .radio-inline,

#custom-html-su .has-success.checkbox label,

#custom-html-su .has-success.checkbox-inline label,

#custom-html-su .has-success.radio label,

#custom-html-su .has-success.radio-inline label {

  color: #3c763d;

}

#custom-html-su .has-success .form-control {

  border-color: #3c763d;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-su .has-success .form-control:focus {

  border-color: #2b542c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;

}

#custom-html-su .has-success .input-group-addon {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #3c763d;

}

#custom-html-su .has-success .form-control-feedback {

  color: #3c763d;

}

#custom-html-su .has-warning .checkbox,

#custom-html-su .has-warning .checkbox-inline,

#custom-html-su .has-warning .control-label,

#custom-html-su .has-warning .help-block,

#custom-html-su .has-warning .radio,

#custom-html-su .has-warning .radio-inline,

#custom-html-su .has-warning.checkbox label,

#custom-html-su .has-warning.checkbox-inline label,

#custom-html-su .has-warning.radio label,

#custom-html-su .has-warning.radio-inline label {

  color: #8a6d3b;

}

#custom-html-su .has-warning .form-control {

  border-color: #8a6d3b;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-su .has-warning .form-control:focus {

  border-color: #66512c;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;

}

#custom-html-su .has-warning .input-group-addon {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #8a6d3b;

}

#custom-html-su .has-warning .form-control-feedback {

  color: #8a6d3b;

}

#custom-html-su .has-error .checkbox,

#custom-html-su .has-error .checkbox-inline,

#custom-html-su .has-error .control-label,

#custom-html-su .has-error .help-block,

#custom-html-su .has-error .radio,

#custom-html-su .has-error .radio-inline,

#custom-html-su .has-error.checkbox label,

#custom-html-su .has-error.checkbox-inline label,

#custom-html-su .has-error.radio label,

#custom-html-su .has-error.radio-inline label {

  color: #a94442;

}

#custom-html-su .has-error .form-control {

  border-color: #a94442;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);

}

#custom-html-su .has-error .form-control:focus {

  border-color: #843534;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;

}

#custom-html-su .has-error .input-group-addon {

  color: #a94442;

  background-color: #f2dede;

  border-color: #a94442;

}

#custom-html-su .has-error .form-control-feedback {

  color: #a94442;

}

#custom-html-su .has-feedback label ~ .form-control-feedback {

  top: 25px;

}

#custom-html-su .has-feedback label.sr-only ~ .form-control-feedback {

  top: 0;

}

#custom-html-su .help-block {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #737373;

}

@media (min-width: 768px) {

  #custom-html-su .form-inline .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-su .form-inline .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-su .form-inline .form-control-static {

    display: inline-block;

  }

  #custom-html-su .form-inline .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-su .form-inline .input-group .form-control,

  #custom-html-su .form-inline .input-group .input-group-addon,

  #custom-html-su .form-inline .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-su .form-inline .input-group > .form-control {

    width: 100%;

  }

  #custom-html-su .form-inline .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-su .form-inline .checkbox,

  #custom-html-su .form-inline .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-su .form-inline .checkbox label,

  #custom-html-su .form-inline .radio label {

    padding-left: 0;

  }

  #custom-html-su .form-inline .checkbox input[type=checkbox],

  #custom-html-su .form-inline .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-su .form-inline .has-feedback .form-control-feedback {

    top: 0;

  }

}

#custom-html-su .form-horizontal .checkbox,

#custom-html-su .form-horizontal .checkbox-inline,

#custom-html-su .form-horizontal .radio,

#custom-html-su .form-horizontal .radio-inline {

  padding-top: 7px;

  margin-top: 0;

  margin-bottom: 0;

}

#custom-html-su .form-horizontal .checkbox,

#custom-html-su .form-horizontal .radio {

  min-height: 27px;

}

#custom-html-su .form-horizontal .form-group {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-su .form-horizontal .control-label {

    padding-top: 7px;

    margin-bottom: 0;

    text-align: right;

  }

}

#custom-html-su .form-horizontal .has-feedback .form-control-feedback {

  right: 15px;

}

@media (min-width: 768px) {

  #custom-html-su .form-horizontal .form-group-lg .control-label {

    padding-top: 11px;

    font-size: 18px;

  }

}

@media (min-width: 768px) {

  #custom-html-su .form-horizontal .form-group-sm .control-label {

    padding-top: 6px;

    font-size: 12px;

  }

}

#custom-html-su .btn {

  display: inline-block;

  padding: 6px 12px;

  margin-bottom: 0;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  -ms-touch-action: manipulation;

  touch-action: manipulation;

  cursor: pointer;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-su .btn.active.focus,

#custom-html-su .btn.active:focus,

#custom-html-su .btn.focus,

#custom-html-su .btn:active.focus,

#custom-html-su .btn:active:focus,

#custom-html-su .btn:focus {

  outline: 5px auto -webkit-focus-ring-color;

  outline-offset: -2px;

}

#custom-html-su .btn.focus,

#custom-html-su .btn:focus,

#custom-html-su .btn:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-su .btn.active,

#custom-html-su .btn:active {

  background-image: none;

  outline: 0;

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-su .btn.disabled,

#custom-html-su .btn[disabled],

#custom-html-su fieldset[disabled] .btn {

  cursor: not-allowed;

  -webkit-box-shadow: none;

  box-shadow: none;

  opacity: 0.65;

}

#custom-html-su a.btn.disabled,

#custom-html-su fieldset[disabled] a.btn {

  pointer-events: none;

}

#custom-html-su .btn-default {

  color: #333;

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-su .btn-default.focus,

#custom-html-su .btn-default:focus {

  color: #333;

  background-color: #e6e6e6;

  border-color: #8c8c8c;

}

#custom-html-su .btn-default:hover {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-su .btn-default.active,

#custom-html-su .btn-default:active,

#custom-html-su .open > .dropdown-toggle.btn-default {

  color: #333;

  background-color: #e6e6e6;

  border-color: #adadad;

}

#custom-html-su .btn-default.active.focus,

#custom-html-su .btn-default.active:focus,

#custom-html-su .btn-default.active:hover,

#custom-html-su .btn-default:active.focus,

#custom-html-su .btn-default:active:focus,

#custom-html-su .btn-default:active:hover,

#custom-html-su .open > .dropdown-toggle.btn-default.focus,

#custom-html-su .open > .dropdown-toggle.btn-default:focus,

#custom-html-su .open > .dropdown-toggle.btn-default:hover {

  color: #333;

  background-color: #d4d4d4;

  border-color: #8c8c8c;

}

#custom-html-su .btn-default.active,

#custom-html-su .btn-default:active,

#custom-html-su .open > .dropdown-toggle.btn-default {

  background-image: none;

}

#custom-html-su .btn-default.disabled.focus,

#custom-html-su .btn-default.disabled:focus,

#custom-html-su .btn-default.disabled:hover,

#custom-html-su .btn-default[disabled].focus,

#custom-html-su .btn-default[disabled]:focus,

#custom-html-su .btn-default[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-default.focus,

#custom-html-su fieldset[disabled] .btn-default:focus,

#custom-html-su fieldset[disabled] .btn-default:hover {

  background-color: #fff;

  border-color: #cccccc;

}

#custom-html-su .btn-default .badge {

  color: #fff;

  background-color: #333333;

}

#custom-html-su .btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-su .btn-primary.focus,

#custom-html-su .btn-primary:focus {

  color: #fff;

  background-color: #000;

  border-color: #122b40;

}

#custom-html-su .btn-primary:hover {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-su .btn-primary.active,

#custom-html-su .btn-primary:active,

#custom-html-su .open > .dropdown-toggle.btn-primary {

  color: #fff;

  background-color: #000;

  border-color: #204d74;

}

#custom-html-su .btn-primary.active.focus,

#custom-html-su .btn-primary.active:focus,

#custom-html-su .btn-primary.active:hover,

#custom-html-su .btn-primary:active.focus,

#custom-html-su .btn-primary:active:focus,

#custom-html-su .btn-primary:active:hover,

#custom-html-su .open > .dropdown-toggle.btn-primary.focus,

#custom-html-su .open > .dropdown-toggle.btn-primary:focus,

#custom-html-su .open > .dropdown-toggle.btn-primary:hover {

  color: #fff;

  background-color: #204d74;

  border-color: #122b40;

}

#custom-html-su .btn-primary.active,

#custom-html-su .btn-primary:active,

#custom-html-su .open > .dropdown-toggle.btn-primary {

  background-image: none;

}

#custom-html-su .btn-primary.disabled.focus,

#custom-html-su .btn-primary.disabled:focus,

#custom-html-su .btn-primary.disabled:hover,

#custom-html-su .btn-primary[disabled].focus,

#custom-html-su .btn-primary[disabled]:focus,

#custom-html-su .btn-primary[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-primary.focus,

#custom-html-su fieldset[disabled] .btn-primary:focus,

#custom-html-su fieldset[disabled] .btn-primary:hover {

  background-color: #000;

  border-color: #000000;

}

#custom-html-su .btn-primary .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-su .btn-success {

  color: #fff;

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-su .btn-success.focus,

#custom-html-su .btn-success:focus {

  color: #fff;

  background-color: #449d44;

  border-color: #255625;

}

#custom-html-su .btn-success:hover {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-su .btn-success.active,

#custom-html-su .btn-success:active,

#custom-html-su .open > .dropdown-toggle.btn-success {

  color: #fff;

  background-color: #449d44;

  border-color: #398439;

}

#custom-html-su .btn-success.active.focus,

#custom-html-su .btn-success.active:focus,

#custom-html-su .btn-success.active:hover,

#custom-html-su .btn-success:active.focus,

#custom-html-su .btn-success:active:focus,

#custom-html-su .btn-success:active:hover,

#custom-html-su .open > .dropdown-toggle.btn-success.focus,

#custom-html-su .open > .dropdown-toggle.btn-success:focus,

#custom-html-su .open > .dropdown-toggle.btn-success:hover {

  color: #fff;

  background-color: #398439;

  border-color: #255625;

}

#custom-html-su .btn-success.active,

#custom-html-su .btn-success:active,

#custom-html-su .open > .dropdown-toggle.btn-success {

  background-image: none;

}

#custom-html-su .btn-success.disabled.focus,

#custom-html-su .btn-success.disabled:focus,

#custom-html-su .btn-success.disabled:hover,

#custom-html-su .btn-success[disabled].focus,

#custom-html-su .btn-success[disabled]:focus,

#custom-html-su .btn-success[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-success.focus,

#custom-html-su fieldset[disabled] .btn-success:focus,

#custom-html-su fieldset[disabled] .btn-success:hover {

  background-color: #5cb85c;

  border-color: #4cae4c;

}

#custom-html-su .btn-success .badge {

  color: #5cb85c;

  background-color: #ffffff;

}

#custom-html-su .btn-info {

  color: #fff;

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-su .btn-info.focus,

#custom-html-su .btn-info:focus {

  color: #fff;

  background-color: #31b0d5;

  border-color: #000000;

}

#custom-html-su .btn-info:hover {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-su .btn-info.active,

#custom-html-su .btn-info:active,

#custom-html-su .open > .dropdown-toggle.btn-info {

  color: #fff;

  background-color: #31b0d5;

  border-color: #269abc;

}

#custom-html-su .btn-info.active.focus,

#custom-html-su .btn-info.active:focus,

#custom-html-su .btn-info.active:hover,

#custom-html-su .btn-info:active.focus,

#custom-html-su .btn-info:active:focus,

#custom-html-su .btn-info:active:hover,

#custom-html-su .open > .dropdown-toggle.btn-info.focus,

#custom-html-su .open > .dropdown-toggle.btn-info:focus,

#custom-html-su .open > .dropdown-toggle.btn-info:hover {

  color: #fff;

  background-color: #269abc;

  border-color: #000000;

}

#custom-html-su .btn-info.active,

#custom-html-su .btn-info:active,

#custom-html-su .open > .dropdown-toggle.btn-info {

  background-image: none;

}

#custom-html-su .btn-info.disabled.focus,

#custom-html-su .btn-info.disabled:focus,

#custom-html-su .btn-info.disabled:hover,

#custom-html-su .btn-info[disabled].focus,

#custom-html-su .btn-info[disabled]:focus,

#custom-html-su .btn-info[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-info.focus,

#custom-html-su fieldset[disabled] .btn-info:focus,

#custom-html-su fieldset[disabled] .btn-info:hover {

  background-color: #5bc0de;

  border-color: #46b8da;

}

#custom-html-su .btn-info .badge {

  color: #5bc0de;

  background-color: #ffffff;

}

#custom-html-su .btn-warning {

  color: #fff;

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-su .btn-warning.focus,

#custom-html-su .btn-warning:focus {

  color: #fff;

  background-color: #ec971f;

  border-color: #985f0d;

}

#custom-html-su .btn-warning:hover {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-su .btn-warning.active,

#custom-html-su .btn-warning:active,

#custom-html-su .open > .dropdown-toggle.btn-warning {

  color: #fff;

  background-color: #ec971f;

  border-color: #d58512;

}

#custom-html-su .btn-warning.active.focus,

#custom-html-su .btn-warning.active:focus,

#custom-html-su .btn-warning.active:hover,

#custom-html-su .btn-warning:active.focus,

#custom-html-su .btn-warning:active:focus,

#custom-html-su .btn-warning:active:hover,

#custom-html-su .open > .dropdown-toggle.btn-warning.focus,

#custom-html-su .open > .dropdown-toggle.btn-warning:focus,

#custom-html-su .open > .dropdown-toggle.btn-warning:hover {

  color: #fff;

  background-color: #d58512;

  border-color: #985f0d;

}

#custom-html-su .btn-warning.active,

#custom-html-su .btn-warning:active,

#custom-html-su .open > .dropdown-toggle.btn-warning {

  background-image: none;

}

#custom-html-su .btn-warning.disabled.focus,

#custom-html-su .btn-warning.disabled:focus,

#custom-html-su .btn-warning.disabled:hover,

#custom-html-su .btn-warning[disabled].focus,

#custom-html-su .btn-warning[disabled]:focus,

#custom-html-su .btn-warning[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-warning.focus,

#custom-html-su fieldset[disabled] .btn-warning:focus,

#custom-html-su fieldset[disabled] .btn-warning:hover {

  background-color: #f0ad4e;

  border-color: #eea236;

}

#custom-html-su .btn-warning .badge {

  color: #f0ad4e;

  background-color: #ffffff;

}

#custom-html-su .btn-danger {

  color: #fff;

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-su .btn-danger.focus,

#custom-html-su .btn-danger:focus {

  color: #fff;

  background-color: #c9302c;

  border-color: #761c19;

}

#custom-html-su .btn-danger:hover {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-su .btn-danger.active,

#custom-html-su .btn-danger:active,

#custom-html-su .open > .dropdown-toggle.btn-danger {

  color: #fff;

  background-color: #c9302c;

  border-color: #ac2925;

}

#custom-html-su .btn-danger.active.focus,

#custom-html-su .btn-danger.active:focus,

#custom-html-su .btn-danger.active:hover,

#custom-html-su .btn-danger:active.focus,

#custom-html-su .btn-danger:active:focus,

#custom-html-su .btn-danger:active:hover,

#custom-html-su .open > .dropdown-toggle.btn-danger.focus,

#custom-html-su .open > .dropdown-toggle.btn-danger:focus,

#custom-html-su .open > .dropdown-toggle.btn-danger:hover {

  color: #fff;

  background-color: #ac2925;

  border-color: #761c19;

}

#custom-html-su .btn-danger.active,

#custom-html-su .btn-danger:active,

#custom-html-su .open > .dropdown-toggle.btn-danger {

  background-image: none;

}

#custom-html-su .btn-danger.disabled.focus,

#custom-html-su .btn-danger.disabled:focus,

#custom-html-su .btn-danger.disabled:hover,

#custom-html-su .btn-danger[disabled].focus,

#custom-html-su .btn-danger[disabled]:focus,

#custom-html-su .btn-danger[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-danger.focus,

#custom-html-su fieldset[disabled] .btn-danger:focus,

#custom-html-su fieldset[disabled] .btn-danger:hover {

  background-color: #d9534f;

  border-color: #d43f3a;

}

#custom-html-su .btn-danger .badge {

  color: #d9534f;

  background-color: #ffffff;

}

#custom-html-su .btn-link {

  font-weight: 400;

  color: #337ab7;

  border-radius: 0;

}

#custom-html-su .btn-link,

#custom-html-su .btn-link.active,

#custom-html-su .btn-link:active,

#custom-html-su .btn-link[disabled],

#custom-html-su fieldset[disabled] .btn-link {

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-su .btn-link,

#custom-html-su .btn-link:active,

#custom-html-su .btn-link:focus,

#custom-html-su .btn-link:hover {

  border-color: transparent;

}

#custom-html-su .btn-link:focus,

#custom-html-su .btn-link:hover {

  color: #000;

  text-decoration: underline;

  background-color: transparent;

}

#custom-html-su .btn-link[disabled]:focus,

#custom-html-su .btn-link[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-link:focus,

#custom-html-su fieldset[disabled] .btn-link:hover {

  color: #777;

  text-decoration: none;

}

#custom-html-su .btn-group-lg > .btn,

#custom-html-su .btn-lg {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-su .btn-group-sm > .btn,

#custom-html-su .btn-sm {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-su .btn-group-xs > .btn,

#custom-html-su .btn-xs {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-su .btn-block {

  display: block;

  width: 100%;

}

#custom-html-su .btn-block + .btn-block {

  margin-top: 5px;

}

#custom-html-su input[type=button].btn-block,

#custom-html-su input[type=reset].btn-block,

#custom-html-su input[type=submit].btn-block {

  width: 100%;

}

#custom-html-su .fade {

  opacity: 0;

  -webkit-transition: opacity .15s linear;

  -o-transition: opacity .15s linear;

  transition: opacity 0.15s linear;

}

#custom-html-su .fade.in {

  opacity: 1;

}

#custom-html-su .collapse {

  display: none;

}

#custom-html-su .collapse.in {

  display: block;

}

#custom-html-su tr.collapse.in {

  display: table-row;

}

#custom-html-su tbody.collapse.in {

  display: table-row-group;

}

#custom-html-su .collapsing {

  position: relative;

  height: 0;

  overflow: hidden;

  -webkit-transition-timing-function: ease;

  -o-transition-timing-function: ease;

  transition-timing-function: ease;

  -webkit-transition-duration: .35s;

  -o-transition-duration: .35s;

  transition-duration: .35s;

  -webkit-transition-property: height,visibility;

  -o-transition-property: height,visibility;

  transition-property: height, visibility;

}

#custom-html-su .caret {

  display: inline-block;

  width: 0;

  height: 0;

  margin-left: 2px;

  vertical-align: middle;

  border-top: 4px dashed;

  border-right: 4px solid transparent;

  border-left: 4px solid transparent;

}

#custom-html-su .dropdown,

#custom-html-su .dropup {

  position: relative;

}

#custom-html-su .dropdown-toggle:focus {

  outline: 0;

}

#custom-html-su .dropdown-menu {

  position: absolute;

  top: 100%;

  left: 0;

  z-index: 1000;

  display: none;

  float: left;

  min-width: 160px;

  padding: 5px 0;

  margin: 2px 0 0;

  font-size: 14px;

  text-align: left;

  list-style: none;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 4px;

  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);

}

#custom-html-su .dropdown-menu.pull-right {

  right: 0;

  left: auto;

}

#custom-html-su .dropdown-menu .divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-su .dropdown-menu > li > a {

  display: block;

  padding: 3px 20px;

  clear: both;

  font-weight: 400;

  line-height: 1.42857143;

  color: #333;

  white-space: nowrap;

}

#custom-html-su .dropdown-menu > li > a:focus,

#custom-html-su .dropdown-menu > li > a:hover {

  color: #262626;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-su .dropdown-menu > .active > a,

#custom-html-su .dropdown-menu > .active > a:focus,

#custom-html-su .dropdown-menu > .active > a:hover {

  color: #fff;

  text-decoration: none;

  background-color: #337ab7;

  outline: 0;

}

#custom-html-su .dropdown-menu > .disabled > a,

#custom-html-su .dropdown-menu > .disabled > a:focus,

#custom-html-su .dropdown-menu > .disabled > a:hover {

  color: #777777;

}

#custom-html-su .dropdown-menu > .disabled > a:focus,

#custom-html-su .dropdown-menu > .disabled > a:hover {

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

  background-image: none;

}

#custom-html-su .open > .dropdown-menu {

  display: block;

}

#custom-html-su .open > a {

  outline: 0;

}

#custom-html-su .dropdown-menu-right {

  right: 0;

  left: auto;

}

#custom-html-su .dropdown-menu-left {

  right: auto;

  left: 0;

}

#custom-html-su .dropdown-header {

  display: block;

  padding: 3px 20px;

  font-size: 12px;

  line-height: 1.42857143;

  color: #777;

  white-space: nowrap;

}

#custom-html-su .dropdown-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 990;

}

#custom-html-su .pull-right > .dropdown-menu {

  right: 0;

  left: auto;

}

#custom-html-su .dropup .caret,

#custom-html-su .navbar-fixed-bottom .dropdown .caret {

  content: "";

  border-top: 0;

  border-bottom: 4px dashed;

}

#custom-html-su .dropup .dropdown-menu,

#custom-html-su .navbar-fixed-bottom .dropdown .dropdown-menu {

  top: auto;

  bottom: 100%;

  margin-bottom: 2px;

}

@media (min-width: 768px) {

  #custom-html-su .navbar-right .dropdown-menu {

    right: 0;

    left: auto;

  }

  #custom-html-su .navbar-right .dropdown-menu-left {

    right: auto;

    left: 0;

  }

}

#custom-html-su .btn-group,

#custom-html-su .btn-group-vertical {

  position: relative;

  display: inline-block;

  vertical-align: middle;

}

#custom-html-su .btn-group-vertical > .btn,

#custom-html-su .btn-group > .btn {

  position: relative;

  float: left;

}

#custom-html-su .btn-group-vertical > .btn.active,

#custom-html-su .btn-group-vertical > .btn:active,

#custom-html-su .btn-group-vertical > .btn:focus,

#custom-html-su .btn-group-vertical > .btn:hover,

#custom-html-su .btn-group > .btn.active,

#custom-html-su .btn-group > .btn:active,

#custom-html-su .btn-group > .btn:focus,

#custom-html-su .btn-group > .btn:hover {

  z-index: 2;

}

#custom-html-su .btn-group .btn + .btn,

#custom-html-su .btn-group .btn + .btn-group,

#custom-html-su .btn-group .btn-group + .btn,

#custom-html-su .btn-group .btn-group + .btn-group {

  margin-left: -1px;

}

#custom-html-su .btn-toolbar {

  margin-left: -5px;

}

#custom-html-su .btn-toolbar .btn,

#custom-html-su .btn-toolbar .btn-group,

#custom-html-su .btn-toolbar .input-group {

  float: left;

}

#custom-html-su .btn-toolbar > .btn,

#custom-html-su .btn-toolbar > .btn-group,

#custom-html-su .btn-toolbar > .input-group {

  margin-left: 5px;

}

#custom-html-su .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {

  border-radius: 0;

}

#custom-html-su .btn-group > .btn:first-child {

  margin-left: 0;

}

#custom-html-su .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-su .btn-group > .btn:last-child:not(:first-child),

#custom-html-su .btn-group > .dropdown-toggle:not(:first-child) {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-su .btn-group > .btn-group {

  float: left;

}

#custom-html-su .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-su .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-su .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-su .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-su .btn-group .dropdown-toggle:active,

#custom-html-su .btn-group.open .dropdown-toggle {

  outline: 0;

}

#custom-html-su .btn-group > .btn + .dropdown-toggle {

  padding-right: 8px;

  padding-left: 8px;

}

#custom-html-su .btn-group > .btn-lg + .dropdown-toggle {

  padding-right: 12px;

  padding-left: 12px;

}

#custom-html-su .btn-group.open .dropdown-toggle {

  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

}

#custom-html-su .btn-group.open .dropdown-toggle.btn-link {

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-su .btn .caret {

  margin-left: 0;

}

#custom-html-su .btn-lg .caret {

  border-width: 5px 5px 0;

  border-bottom-width: 0;

}

#custom-html-su .dropup .btn-lg .caret {

  border-width: 0 5px 5px;

}

#custom-html-su .btn-group-vertical > .btn,

#custom-html-su .btn-group-vertical > .btn-group,

#custom-html-su .btn-group-vertical > .btn-group > .btn {

  display: block;

  float: none;

  width: 100%;

  max-width: 100%;

}

#custom-html-su .btn-group-vertical > .btn-group > .btn {

  float: none;

}

#custom-html-su .btn-group-vertical > .btn + .btn,

#custom-html-su .btn-group-vertical > .btn + .btn-group,

#custom-html-su .btn-group-vertical > .btn-group + .btn,

#custom-html-su .btn-group-vertical > .btn-group + .btn-group {

  margin-top: -1px;

  margin-left: 0;

}

#custom-html-su .btn-group-vertical > .btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-su .btn-group-vertical > .btn:first-child:not(:last-child) {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-su .btn-group-vertical > .btn:last-child:not(:first-child) {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-su .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {

  border-radius: 0;

}

#custom-html-su .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,

#custom-html-su .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-su .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-su .btn-group-justified {

  display: table;

  width: 100%;

  table-layout: fixed;

  border-collapse: separate;

}

#custom-html-su .btn-group-justified > .btn,

#custom-html-su .btn-group-justified > .btn-group {

  display: table-cell;

  float: none;

  width: 1%;

}

#custom-html-su .btn-group-justified > .btn-group .btn {

  width: 100%;

}

#custom-html-su .btn-group-justified > .btn-group .dropdown-menu {

  left: auto;

}

#custom-html-su [data-toggle=buttons] > .btn input[type=checkbox],

#custom-html-su [data-toggle=buttons] > .btn input[type=radio],

#custom-html-su [data-toggle=buttons] > .btn-group > .btn input[type=checkbox],

#custom-html-su [data-toggle=buttons] > .btn-group > .btn input[type=radio] {

  position: absolute;

  clip: rect(0, 0, 0, 0);

  pointer-events: none;

}

#custom-html-su .input-group {

  position: relative;

  display: table;

  border-collapse: separate;

}

#custom-html-su .input-group[class*=col-] {

  float: none;

  padding-right: 0;

  padding-left: 0;

}

#custom-html-su .input-group .form-control {

  position: relative;

  z-index: 2;

  float: left;

  width: 100%;

  margin-bottom: 0;

}

#custom-html-su .input-group .form-control:focus {

  z-index: 3;

}

#custom-html-su .input-group-lg > .form-control,

#custom-html-su .input-group-lg > .input-group-addon,

#custom-html-su .input-group-lg > .input-group-btn > .btn {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px;

}

#custom-html-su select.input-group-lg > .form-control,

#custom-html-su select.input-group-lg > .input-group-addon,

#custom-html-su select.input-group-lg > .input-group-btn > .btn {

  height: 46px;

  line-height: 46px;

}

#custom-html-su select[multiple].input-group-lg > .form-control,

#custom-html-su select[multiple].input-group-lg > .input-group-addon,

#custom-html-su select[multiple].input-group-lg > .input-group-btn > .btn,

#custom-html-su textarea.input-group-lg > .form-control,

#custom-html-su textarea.input-group-lg > .input-group-addon,

#custom-html-su textarea.input-group-lg > .input-group-btn > .btn {

  height: auto;

}

#custom-html-su .input-group-sm > .form-control,

#custom-html-su .input-group-sm > .input-group-addon,

#custom-html-su .input-group-sm > .input-group-btn > .btn {

  height: 30px;

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

  border-radius: 3px;

}

#custom-html-su select.input-group-sm > .form-control,

#custom-html-su select.input-group-sm > .input-group-addon,

#custom-html-su select.input-group-sm > .input-group-btn > .btn {

  height: 30px;

  line-height: 30px;

}

#custom-html-su select[multiple].input-group-sm > .form-control,

#custom-html-su select[multiple].input-group-sm > .input-group-addon,

#custom-html-su select[multiple].input-group-sm > .input-group-btn > .btn,

#custom-html-su textarea.input-group-sm > .form-control,

#custom-html-su textarea.input-group-sm > .input-group-addon,

#custom-html-su textarea.input-group-sm > .input-group-btn > .btn {

  height: auto;

}

#custom-html-su .input-group .form-control,

#custom-html-su .input-group-addon,

#custom-html-su .input-group-btn {

  display: table-cell;

}

#custom-html-su .input-group .form-control:not(:first-child):not(:last-child),

#custom-html-su .input-group-addon:not(:first-child):not(:last-child),

#custom-html-su .input-group-btn:not(:first-child):not(:last-child) {

  border-radius: 0;

}

#custom-html-su .input-group-addon,

#custom-html-su .input-group-btn {

  width: 1%;

  white-space: nowrap;

  vertical-align: middle;

}

#custom-html-su .input-group-addon {

  padding: 6px 12px;

  font-size: 14px;

  font-weight: 400;

  line-height: 1;

  color: #555;

  text-align: center;

  background-color: #eee;

  border: 1px solid #ccc;

  border-radius: 4px;

}

#custom-html-su .input-group-addon.input-sm {

  padding: 5px 10px;

  font-size: 12px;

  border-radius: 3px;

}

#custom-html-su .input-group-addon.input-lg {

  padding: 10px 16px;

  font-size: 18px;

  border-radius: 6px;

}

#custom-html-su .input-group-addon input[type=checkbox],

#custom-html-su .input-group-addon input[type=radio] {

  margin-top: 0;

}

#custom-html-su .input-group .form-control:first-child,

#custom-html-su .input-group-addon:first-child,

#custom-html-su .input-group-btn:first-child > .btn,

#custom-html-su .input-group-btn:first-child > .btn-group > .btn,

#custom-html-su .input-group-btn:first-child > .dropdown-toggle,

#custom-html-su .input-group-btn:last-child > .btn-group:not(:last-child) > .btn,

#custom-html-su .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {

  border-top-right-radius: 0;

  border-bottom-right-radius: 0;

}

#custom-html-su .input-group-addon:first-child {

  border-right: 0;

}

#custom-html-su .input-group .form-control:last-child,

#custom-html-su .input-group-addon:last-child,

#custom-html-su .input-group-btn:first-child > .btn-group:not(:first-child) > .btn,

#custom-html-su .input-group-btn:first-child > .btn:not(:first-child),

#custom-html-su .input-group-btn:last-child > .btn,

#custom-html-su .input-group-btn:last-child > .btn-group > .btn,

#custom-html-su .input-group-btn:last-child > .dropdown-toggle {

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-su .input-group-addon:last-child {

  border-left: 0;

}

#custom-html-su .input-group-btn {

  position: relative;

  font-size: 0;

  white-space: nowrap;

}

#custom-html-su .input-group-btn > .btn {

  position: relative;

}

#custom-html-su .input-group-btn > .btn + .btn {

  margin-left: -1px;

}

#custom-html-su .input-group-btn > .btn:active,

#custom-html-su .input-group-btn > .btn:focus,

#custom-html-su .input-group-btn > .btn:hover {

  z-index: 2;

}

#custom-html-su .input-group-btn:first-child > .btn,

#custom-html-su .input-group-btn:first-child > .btn-group {

  margin-right: -1px;

}

#custom-html-su .input-group-btn:last-child > .btn,

#custom-html-su .input-group-btn:last-child > .btn-group {

  z-index: 2;

  margin-left: -1px;

}

#custom-html-su .nav {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

}

#custom-html-su .nav > li {

  position: relative;

  display: block;

}

#custom-html-su .nav > li > a {

  position: relative;

  display: block;

  padding: 10px 15px;

}

#custom-html-su .nav > li > a:focus,

#custom-html-su .nav > li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-su .nav > li.disabled > a {

  color: #777777;

}

#custom-html-su .nav > li.disabled > a:focus,

#custom-html-su .nav > li.disabled > a:hover {

  color: #777;

  text-decoration: none;

  cursor: not-allowed;

  background-color: transparent;

}

#custom-html-su .nav .open > a,

#custom-html-su .nav .open > a:focus,

#custom-html-su .nav .open > a:hover {

  background-color: #eee;

  border-color: #337ab7;

}

#custom-html-su .nav .nav-divider {

  height: 1px;

  margin: 9px 0;

  overflow: hidden;

  background-color: #e5e5e5;

}

#custom-html-su .nav > li > a > img {

  max-width: none;

}

#custom-html-su .nav-tabs {

  border-bottom: 1px solid #dddddd;

}

#custom-html-su .nav-tabs > li {

  float: left;

  margin-bottom: -1px;

}

#custom-html-su .nav-tabs > li > a {

  margin-right: 2px;

  line-height: 1.42857143;

  border: 1px solid transparent;

  border-radius: 4px 4px 0 0;

}

#custom-html-su .nav-tabs > li > a:hover {

  border-color: #eeeeee #eeeeee #dddddd;

}

#custom-html-su .nav-tabs > li.active > a,

#custom-html-su .nav-tabs > li.active > a:focus,

#custom-html-su .nav-tabs > li.active > a:hover {

  color: #555;

  cursor: default;

  background-color: #fff;

  border: 1px solid #ddd;

  border-bottom-color: transparent;

}

#custom-html-su .nav-tabs.nav-justified {

  width: 100%;

  border-bottom: 0;

}

#custom-html-su .nav-tabs.nav-justified > li {

  float: none;

}

#custom-html-su .nav-tabs.nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-su .nav-tabs.nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-su .nav-tabs.nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-su .nav-tabs.nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-su .nav-tabs.nav-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-su .nav-tabs.nav-justified > .active > a,

#custom-html-su .nav-tabs.nav-justified > .active > a:focus,

#custom-html-su .nav-tabs.nav-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-su .nav-tabs.nav-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-su .nav-tabs.nav-justified > .active > a,

  #custom-html-su .nav-tabs.nav-justified > .active > a:focus,

  #custom-html-su .nav-tabs.nav-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-su .nav-pills > li {

  float: left;

}

#custom-html-su .nav-pills > li > a {

  border-radius: 4px;

}

#custom-html-su .nav-pills > li + li {

  margin-left: 2px;

}

#custom-html-su .nav-pills > li.active > a,

#custom-html-su .nav-pills > li.active > a:focus,

#custom-html-su .nav-pills > li.active > a:hover {

  color: #fff;

  background-color: #337ab7;

}

#custom-html-su .nav-stacked > li {

  float: none;

}

#custom-html-su .nav-stacked > li + li {

  margin-top: 2px;

  margin-left: 0;

}

#custom-html-su .nav-justified {

  width: 100%;

}

#custom-html-su .nav-justified > li {

  float: none;

}

#custom-html-su .nav-justified > li > a {

  margin-bottom: 5px;

  text-align: center;

}

#custom-html-su .nav-justified > .dropdown .dropdown-menu {

  top: auto;

  left: auto;

}

@media (min-width: 768px) {

  #custom-html-su .nav-justified > li {

    display: table-cell;

    width: 1%;

  }

  #custom-html-su .nav-justified > li > a {

    margin-bottom: 0;

  }

}

#custom-html-su .nav-tabs-justified {

  border-bottom: 0;

}

#custom-html-su .nav-tabs-justified > li > a {

  margin-right: 0;

  border-radius: 4px;

}

#custom-html-su .nav-tabs-justified > .active > a,

#custom-html-su .nav-tabs-justified > .active > a:focus,

#custom-html-su .nav-tabs-justified > .active > a:hover {

  border: 1px solid #dddddd;

}

@media (min-width: 768px) {

  #custom-html-su .nav-tabs-justified > li > a {

    border-bottom: 1px solid #ddd;

    border-radius: 4px 4px 0 0;

  }

  #custom-html-su .nav-tabs-justified > .active > a,

  #custom-html-su .nav-tabs-justified > .active > a:focus,

  #custom-html-su .nav-tabs-justified > .active > a:hover {

    border-bottom-color: #ffffff;

  }

}

#custom-html-su .tab-content > .tab-pane {

  display: none;

}

#custom-html-su .tab-content > .active {

  display: block;

}

#custom-html-su .nav-tabs .dropdown-menu {

  margin-top: -1px;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-su .navbar {

  position: relative;

  min-height: 50px;

  margin-bottom: 20px;

  border: 1px solid transparent;

}

@media (min-width: 768px) {

  #custom-html-su .navbar {

    border-radius: 4px;

  }

}

@media (min-width: 768px) {

  #custom-html-su .navbar-header {

    float: left;

  }

}

#custom-html-su .navbar-collapse {

  padding-right: 15px;

  padding-left: 15px;

  overflow-x: visible;

  -webkit-overflow-scrolling: touch;

  border-top: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

}

#custom-html-su .navbar-collapse.in {

  overflow-y: auto;

}

@media (min-width: 768px) {

  #custom-html-su .navbar-collapse {

    width: auto;

    border-top: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-su .navbar-collapse.collapse {

    display: block!important;

    height: auto!important;

    padding-bottom: 0;

    overflow: visible !important;

  }

  #custom-html-su .navbar-collapse.in {

    overflow-y: visible;

  }

  #custom-html-su .navbar-fixed-bottom .navbar-collapse,

  #custom-html-su .navbar-fixed-top .navbar-collapse,

  #custom-html-su .navbar-static-top .navbar-collapse {

    padding-right: 0;

    padding-left: 0;

  }

}

#custom-html-su .navbar-fixed-bottom .navbar-collapse,

#custom-html-su .navbar-fixed-top .navbar-collapse {

  max-height: 340px;

}

@media (max-device-width: 480px) and (orientation: landscape) {

  #custom-html-su .navbar-fixed-bottom .navbar-collapse,

  #custom-html-su .navbar-fixed-top .navbar-collapse {

    max-height: 200px;

  }

}

#custom-html-su .container-fluid > .navbar-collapse,

#custom-html-su .container-fluid > .navbar-header,

#custom-html-su .container > .navbar-collapse,

#custom-html-su .container > .navbar-header {

  margin-right: -15px;

  margin-left: -15px;

}

@media (min-width: 768px) {

  #custom-html-su .container-fluid > .navbar-collapse,

  #custom-html-su .container-fluid > .navbar-header,

  #custom-html-su .container > .navbar-collapse,

  #custom-html-su .container > .navbar-header {

    margin-right: 0;

    margin-left: 0;

  }

}

#custom-html-su .navbar-static-top {

  z-index: 1000;

  border-width: 0 0 1px;

}

@media (min-width: 768px) {

  #custom-html-su .navbar-static-top {

    border-radius: 0;

  }

}

#custom-html-su .navbar-fixed-bottom,

#custom-html-su .navbar-fixed-top {

  position: fixed;

  right: 0;

  left: 0;

  z-index: 1030;

}

@media (min-width: 768px) {

  #custom-html-su .navbar-fixed-bottom,

  #custom-html-su .navbar-fixed-top {

    border-radius: 0;

  }

}

#custom-html-su .navbar-fixed-top {

  top: 0;

  border-width: 0 0 1px;

}

#custom-html-su .navbar-fixed-bottom {

  bottom: 0;

  margin-bottom: 0;

  border-width: 1px 0 0;

}

#custom-html-su .navbar-brand {

  float: left;

  height: 50px;

  padding: 15px 15px;

  font-size: 18px;

  line-height: 20px;

}

#custom-html-su .navbar-brand:focus,

#custom-html-su .navbar-brand:hover {

  text-decoration: none;

}

#custom-html-su .navbar-brand > img {

  display: block;

}

@media (min-width: 768px) {

  #custom-html-su .navbar > .container .navbar-brand,

  #custom-html-su .navbar > .container-fluid .navbar-brand {

    margin-left: -15px;

  }

}

#custom-html-su .navbar-toggle {

  position: relative;

  float: right;

  padding: 9px 10px;

  margin-top: 8px;

  margin-right: 15px;

  margin-bottom: 8px;

  background-color: transparent;

  background-image: none;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-su .navbar-toggle:focus {

  outline: 0;

}

#custom-html-su .navbar-toggle .icon-bar {

  display: block;

  width: 22px;

  height: 2px;

  border-radius: 1px;

}

#custom-html-su .navbar-toggle .icon-bar + .icon-bar {

  margin-top: 4px;

}

@media (min-width: 768px) {

  #custom-html-su .navbar-toggle {

    display: none;

  }

}

#custom-html-su .navbar-nav {

  margin: 7.5px -15px;

}

#custom-html-su .navbar-nav > li > a {

  padding-top: 10px;

  padding-bottom: 10px;

  line-height: 20px;

}

@media (max-width: 767px) {

  #custom-html-su .navbar-nav .open .dropdown-menu {

    position: static;

    float: none;

    width: auto;

    margin-top: 0;

    background-color: transparent;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

  #custom-html-su .navbar-nav .open .dropdown-menu .dropdown-header,

  #custom-html-su .navbar-nav .open .dropdown-menu > li > a {

    padding: 5px 15px 5px 25px;

  }

  #custom-html-su .navbar-nav .open .dropdown-menu > li > a {

    line-height: 20px;

  }

  #custom-html-su .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-su .navbar-nav .open .dropdown-menu > li > a:hover {

    background-image: none;

  }

}

@media (min-width: 768px) {

  #custom-html-su .navbar-nav {

    float: left;

    margin: 0;

  }

  #custom-html-su .navbar-nav > li {

    float: left;

  }

  #custom-html-su .navbar-nav > li > a {

    padding-top: 15px;

    padding-bottom: 15px;

  }

}

#custom-html-su .navbar-form {

  padding: 10px 15px;

  margin-top: 8px;

  margin-right: -15px;

  margin-bottom: 8px;

  margin-left: -15px;

  border-top: 1px solid transparent;

  border-bottom: 1px solid transparent;

  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);

}

@media (min-width: 768px) {

  #custom-html-su .navbar-form .form-group {

    display: inline-block;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-su .navbar-form .form-control {

    display: inline-block;

    width: auto;

    vertical-align: middle;

  }

  #custom-html-su .navbar-form .form-control-static {

    display: inline-block;

  }

  #custom-html-su .navbar-form .input-group {

    display: inline-table;

    vertical-align: middle;

  }

  #custom-html-su .navbar-form .input-group .form-control,

  #custom-html-su .navbar-form .input-group .input-group-addon,

  #custom-html-su .navbar-form .input-group .input-group-btn {

    width: auto;

  }

  #custom-html-su .navbar-form .input-group > .form-control {

    width: 100%;

  }

  #custom-html-su .navbar-form .control-label {

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-su .navbar-form .checkbox,

  #custom-html-su .navbar-form .radio {

    display: inline-block;

    margin-top: 0;

    margin-bottom: 0;

    vertical-align: middle;

  }

  #custom-html-su .navbar-form .checkbox label,

  #custom-html-su .navbar-form .radio label {

    padding-left: 0;

  }

  #custom-html-su .navbar-form .checkbox input[type=checkbox],

  #custom-html-su .navbar-form .radio input[type=radio] {

    position: relative;

    margin-left: 0;

  }

  #custom-html-su .navbar-form .has-feedback .form-control-feedback {

    top: 0;

  }

}

@media (max-width: 767px) {

  #custom-html-su .navbar-form .form-group {

    margin-bottom: 5px;

  }

  #custom-html-su .navbar-form .form-group:last-child {

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  #custom-html-su .navbar-form {

    width: auto;

    padding-top: 0;

    padding-bottom: 0;

    margin-right: 0;

    margin-left: 0;

    border: 0;

    -webkit-box-shadow: none;

    box-shadow: none;

  }

}

#custom-html-su .navbar-nav > li > .dropdown-menu {

  margin-top: 0;

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-su .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {

  margin-bottom: 0;

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

  border-bottom-right-radius: 0;

  border-bottom-left-radius: 0;

}

#custom-html-su .navbar-btn {

  margin-top: 8px;

  margin-bottom: 8px;

}

#custom-html-su .navbar-btn.btn-sm {

  margin-top: 10px;

  margin-bottom: 10px;

}

#custom-html-su .navbar-btn.btn-xs {

  margin-top: 14px;

  margin-bottom: 14px;

}

#custom-html-su .navbar-text {

  margin-top: 15px;

  margin-bottom: 15px;

}

@media (min-width: 768px) {

  #custom-html-su .navbar-text {

    float: left;

    margin-right: 15px;

    margin-left: 15px;

  }

}

@media (min-width: 768px) {

  #custom-html-su .navbar-left {

    float: left !important;

  }

  #custom-html-su .navbar-right {

    float: right!important;

    margin-right: -15px;

  }

  #custom-html-su .navbar-right ~ .navbar-right {

    margin-right: 0;

  }

}

#custom-html-su .navbar-default {

  background-color: #f8f8f8;

  border-color: #e7e7e7;

}

#custom-html-su .navbar-default .navbar-brand {

  color: #777777;

}

#custom-html-su .navbar-default .navbar-brand:focus,

#custom-html-su .navbar-default .navbar-brand:hover {

  color: #5e5e5e;

  background-color: transparent;

}

#custom-html-su .navbar-default .navbar-text {

  color: #777777;

}

#custom-html-su .navbar-default .navbar-nav > li > a {

  color: #777777;

}

#custom-html-su .navbar-default .navbar-nav > li > a:focus,

#custom-html-su .navbar-default .navbar-nav > li > a:hover {

  color: #333;

  background-color: transparent;

}

#custom-html-su .navbar-default .navbar-nav > .active > a,

#custom-html-su .navbar-default .navbar-nav > .active > a:focus,

#custom-html-su .navbar-default .navbar-nav > .active > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

#custom-html-su .navbar-default .navbar-nav > .disabled > a,

#custom-html-su .navbar-default .navbar-nav > .disabled > a:focus,

#custom-html-su .navbar-default .navbar-nav > .disabled > a:hover {

  color: #ccc;

  background-color: transparent;

}

#custom-html-su .navbar-default .navbar-toggle {

  border-color: #dddddd;

}

#custom-html-su .navbar-default .navbar-toggle:focus,

#custom-html-su .navbar-default .navbar-toggle:hover {

  background-color: #dddddd;

}

#custom-html-su .navbar-default .navbar-toggle .icon-bar {

  background-color: #888888;

}

#custom-html-su .navbar-default .navbar-collapse,

#custom-html-su .navbar-default .navbar-form {

  border-color: #e7e7e7;

}

#custom-html-su .navbar-default .navbar-nav > .open > a,

#custom-html-su .navbar-default .navbar-nav > .open > a:focus,

#custom-html-su .navbar-default .navbar-nav > .open > a:hover {

  color: #555;

  background-color: #e7e7e7;

}

@media (max-width: 767px) {

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > li > a {

    color: #777777;

  }

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #333;

    background-color: transparent;

  }

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #555;

    background-color: #e7e7e7;

  }

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-su .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #ccc;

    background-color: transparent;

  }

}

#custom-html-su .navbar-default .navbar-link {

  color: #777777;

}

#custom-html-su .navbar-default .navbar-link:hover {

  color: #333333;

}

#custom-html-su .navbar-default .btn-link {

  color: #777777;

}

#custom-html-su .navbar-default .btn-link:focus,

#custom-html-su .navbar-default .btn-link:hover {

  color: #333333;

}

#custom-html-su .navbar-default .btn-link[disabled]:focus,

#custom-html-su .navbar-default .btn-link[disabled]:hover,

#custom-html-su fieldset[disabled] .navbar-default .btn-link:focus,

#custom-html-su fieldset[disabled] .navbar-default .btn-link:hover {

  color: #cccccc;

}

#custom-html-su .navbar-inverse {

  background-color: #222;

  border-color: #080808;

}

#custom-html-su .navbar-inverse .navbar-brand {

  color: #9d9d9d;

}

#custom-html-su .navbar-inverse .navbar-brand:focus,

#custom-html-su .navbar-inverse .navbar-brand:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-su .navbar-inverse .navbar-text {

  color: #9d9d9d;

}

#custom-html-su .navbar-inverse .navbar-nav > li > a {

  color: #9d9d9d;

}

#custom-html-su .navbar-inverse .navbar-nav > li > a:focus,

#custom-html-su .navbar-inverse .navbar-nav > li > a:hover {

  color: #fff;

  background-color: transparent;

}

#custom-html-su .navbar-inverse .navbar-nav > .active > a,

#custom-html-su .navbar-inverse .navbar-nav > .active > a:focus,

#custom-html-su .navbar-inverse .navbar-nav > .active > a:hover {

  color: #fff;

  background-color: #080808;

}

#custom-html-su .navbar-inverse .navbar-nav > .disabled > a,

#custom-html-su .navbar-inverse .navbar-nav > .disabled > a:focus,

#custom-html-su .navbar-inverse .navbar-nav > .disabled > a:hover {

  color: #444;

  background-color: transparent;

}

#custom-html-su .navbar-inverse .navbar-toggle {

  border-color: #333333;

}

#custom-html-su .navbar-inverse .navbar-toggle:focus,

#custom-html-su .navbar-inverse .navbar-toggle:hover {

  background-color: #333333;

}

#custom-html-su .navbar-inverse .navbar-toggle .icon-bar {

  background-color: #ffffff;

}

#custom-html-su .navbar-inverse .navbar-collapse,

#custom-html-su .navbar-inverse .navbar-form {

  border-color: #101010;

}

#custom-html-su .navbar-inverse .navbar-nav > .open > a,

#custom-html-su .navbar-inverse .navbar-nav > .open > a:focus,

#custom-html-su .navbar-inverse .navbar-nav > .open > a:hover {

  color: #fff;

  background-color: #080808;

}

@media (max-width: 767px) {

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {

    border-color: #080808;

  }

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu .divider {

    background-color: #080808;

  }

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {

    color: #9d9d9d;

  }

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #fff;

    background-color: transparent;

  }

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {

    color: #fff;

    background-color: #080808;

  }

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,

  #custom-html-su .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {

    color: #444;

    background-color: transparent;

  }

}

#custom-html-su .navbar-inverse .navbar-link {

  color: #9d9d9d;

}

#custom-html-su .navbar-inverse .navbar-link:hover {

  color: #ffffff;

}

#custom-html-su .navbar-inverse .btn-link {

  color: #9d9d9d;

}

#custom-html-su .navbar-inverse .btn-link:focus,

#custom-html-su .navbar-inverse .btn-link:hover {

  color: #ffffff;

}

#custom-html-su .navbar-inverse .btn-link[disabled]:focus,

#custom-html-su .navbar-inverse .btn-link[disabled]:hover,

#custom-html-su fieldset[disabled] .navbar-inverse .btn-link:focus,

#custom-html-su fieldset[disabled] .navbar-inverse .btn-link:hover {

  color: #444444;

}

#custom-html-su .breadcrumb {

  padding: 8px 15px;

  margin-bottom: 20px;

  list-style: none;

  background-color: #f5f5f5;

  border-radius: 4px;

}

#custom-html-su .breadcrumb > li {

  display: inline-block;

}

#custom-html-su .breadcrumb > li + li:before {

  padding: 0 5px;

  color: #ccc;

  content: "/\00a0";

}

#custom-html-su .breadcrumb > .active {

  color: #777777;

}

#custom-html-su .pagination {

  display: inline-block;

  padding-left: 0;

  margin: 20px 0;

  border-radius: 4px;

}

#custom-html-su .pagination > li {

  display: inline;

}

#custom-html-su .pagination > li > a,

#custom-html-su .pagination > li > span {

  position: relative;

  float: left;

  padding: 6px 12px;

  margin-left: -1px;

  line-height: 1.42857143;

  color: #000;

  text-decoration: none;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-su .pagination > li:first-child > a,

#custom-html-su .pagination > li:first-child > span {

  margin-left: 0;

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-su .pagination > li:last-child > a,

#custom-html-su .pagination > li:last-child > span {

  border-top-right-radius: 4px;

  border-bottom-right-radius: 4px;

}

#custom-html-su .pagination > li > a:focus,

#custom-html-su .pagination > li > a:hover,

#custom-html-su .pagination > li > span:focus,

#custom-html-su .pagination > li > span:hover {

  z-index: 2;

  color: #000;

  background-color: #eee;

  border-color: #dddddd;

}

#custom-html-su .pagination > .active > a,

#custom-html-su .pagination > .active > a:focus,

#custom-html-su .pagination > .active > a:hover,

#custom-html-su .pagination > .active > span,

#custom-html-su .pagination > .active > span:focus,

#custom-html-su .pagination > .active > span:hover {

  z-index: 3;

  color: #fff;

  cursor: default;

  background-color: #337ab7;

  border-color: #000000;

}

#custom-html-su .pagination > .disabled > a,

#custom-html-su .pagination > .disabled > a:focus,

#custom-html-su .pagination > .disabled > a:hover,

#custom-html-su .pagination > .disabled > span,

#custom-html-su .pagination > .disabled > span:focus,

#custom-html-su .pagination > .disabled > span:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #fff;

  border-color: #dddddd;

}

#custom-html-su .pagination-lg > li > a,

#custom-html-su .pagination-lg > li > span {

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

}

#custom-html-su .pagination-lg > li:first-child > a,

#custom-html-su .pagination-lg > li:first-child > span {

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}

#custom-html-su .pagination-lg > li:last-child > a,

#custom-html-su .pagination-lg > li:last-child > span {

  border-top-right-radius: 6px;

  border-bottom-right-radius: 6px;

}

#custom-html-su .pagination-sm > li > a,

#custom-html-su .pagination-sm > li > span {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-su .pagination-sm > li:first-child > a,

#custom-html-su .pagination-sm > li:first-child > span {

  border-top-left-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-su .pagination-sm > li:last-child > a,

#custom-html-su .pagination-sm > li:last-child > span {

  border-top-right-radius: 3px;

  border-bottom-right-radius: 3px;

}

#custom-html-su .pager {

  padding-left: 0;

  margin: 20px 0;

  text-align: center;

  list-style: none;

}

#custom-html-su .pager li {

  display: inline;

}

#custom-html-su .pager li > a,

#custom-html-su .pager li > span {

  display: inline-block;

  padding: 5px 14px;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 15px;

}

#custom-html-su .pager li > a:focus,

#custom-html-su .pager li > a:hover {

  text-decoration: none;

  background-color: #eeeeee;

}

#custom-html-su .pager .next > a,

#custom-html-su .pager .next > span {

  float: right;

}

#custom-html-su .pager .previous > a,

#custom-html-su .pager .previous > span {

  float: left;

}

#custom-html-su .pager .disabled > a,

#custom-html-su .pager .disabled > a:focus,

#custom-html-su .pager .disabled > a:hover,

#custom-html-su .pager .disabled > span {

  color: #777;

  cursor: not-allowed;

  background-color: #ffffff;

}

#custom-html-su .label {

  display: inline;

  padding: .2em .6em .3em;

  font-size: 75%;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: baseline;

  border-radius: 0.25em;

}

#custom-html-su a.label:focus,

#custom-html-su a.label:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-su .label:empty {

  display: none;

}

#custom-html-su .btn .label {

  position: relative;

  top: -1px;

}

#custom-html-su .label-default {

  background-color: #777777;

}

#custom-html-su .label-default[href]:focus,

#custom-html-su .label-default[href]:hover {

  background-color: #5e5e5e;

}

#custom-html-su .label-primary {

  background-color: #337ab7;

}

#custom-html-su .label-primary[href]:focus,

#custom-html-su .label-primary[href]:hover {

  background-color: #000000;

}

#custom-html-su .label-success {

  background-color: #5cb85c;

}

#custom-html-su .label-success[href]:focus,

#custom-html-su .label-success[href]:hover {

  background-color: #449d44;

}

#custom-html-su .label-info {

  background-color: #5bc0de;

}

#custom-html-su .label-info[href]:focus,

#custom-html-su .label-info[href]:hover {

  background-color: #31b0d5;

}

#custom-html-su .label-warning {

  background-color: #f0ad4e;

}

#custom-html-su .label-warning[href]:focus,

#custom-html-su .label-warning[href]:hover {

  background-color: #ec971f;

}

#custom-html-su .label-danger {

  background-color: #d9534f;

}

#custom-html-su .label-danger[href]:focus,

#custom-html-su .label-danger[href]:hover {

  background-color: #c9302c;

}

#custom-html-su .badge {

  display: inline-block;

  min-width: 10px;

  padding: 3px 7px;

  font-size: 12px;

  font-weight: 700;

  line-height: 1;

  color: #fff;

  text-align: center;

  white-space: nowrap;

  vertical-align: middle;

  background-color: #777;

  border-radius: 10px;

}

#custom-html-su .badge:empty {

  display: none;

}

#custom-html-su .btn .badge {

  position: relative;

  top: -1px;

}

#custom-html-su .btn-group-xs > .btn .badge,

#custom-html-su .btn-xs .badge {

  top: 0;

  padding: 1px 5px;

}

#custom-html-su a.badge:focus,

#custom-html-su a.badge:hover {

  color: #fff;

  text-decoration: none;

  cursor: pointer;

}

#custom-html-su .list-group-item.active > .badge,

#custom-html-su .nav-pills > .active > a > .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-su .list-group-item > .badge {

  float: right;

}

#custom-html-su .list-group-item > .badge + .badge {

  margin-right: 5px;

}

#custom-html-su .nav-pills > li > a > .badge {

  margin-left: 3px;

}

#custom-html-su .jumbotron {

  padding-top: 30px;

  padding-bottom: 30px;

  margin-bottom: 30px;

  color: inherit;

  background-color: #eeeeee;

}

#custom-html-su .jumbotron .h1,

#custom-html-su .jumbotron h1 {

  color: inherit;

}

#custom-html-su .jumbotron p {

  margin-bottom: 15px;

  font-size: 21px;

  font-weight: 200;

}

#custom-html-su .jumbotron > hr {

  border-top-color: #d5d5d5;

}

#custom-html-su .container .jumbotron,

#custom-html-su .container-fluid .jumbotron {

  padding-right: 15px;

  padding-left: 15px;

  border-radius: 6px;

}

#custom-html-su .jumbotron .container {

  max-width: 100%;

}

@media screen and (min-width: 768px) {

  #custom-html-su .jumbotron {

    padding-top: 48px;

    padding-bottom: 48px;

  }

  #custom-html-su .container .jumbotron,

  #custom-html-su .container-fluid .jumbotron {

    padding-right: 60px;

    padding-left: 60px;

  }

  #custom-html-su .jumbotron .h1,

  #custom-html-su .jumbotron h1 {

    font-size: 63px;

  }

}

#custom-html-su .thumbnail {

  display: block;

  padding: 4px;

  margin-bottom: 20px;

  line-height: 1.42857143;

  background-color: #fff;

  border: 1px solid #ddd;

  border-radius: 4px;

  -webkit-transition: border 0.2s ease-in-out;

  -o-transition: border 0.2s ease-in-out;

  transition: border 0.2s ease-in-out;

}

#custom-html-su .thumbnail a > img,

#custom-html-su .thumbnail > img {

  margin-right: auto;

  margin-left: auto;

}

#custom-html-su a.thumbnail.active,

#custom-html-su a.thumbnail:focus,

#custom-html-su a.thumbnail:hover {

  border-color: #337ab7;

}

#custom-html-su .thumbnail .caption {

  padding: 9px;

  color: #333333;

}

#custom-html-su .alert {

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid transparent;

  border-radius: 4px;

}

#custom-html-su .alert h4 {

  margin-top: 0;

  color: inherit;

}

#custom-html-su .alert .alert-link {

  font-weight: 700;

}

#custom-html-su .alert > p,

#custom-html-su .alert > ul {

  margin-bottom: 0;

}

#custom-html-su .alert > p + p {

  margin-top: 5px;

}

#custom-html-su .alert-dismissable,

#custom-html-su .alert-dismissible {

  padding-right: 35px;

}

#custom-html-su .alert-dismissable .close,

#custom-html-su .alert-dismissible .close {

  position: relative;

  top: -2px;

  right: -21px;

  color: inherit;

}

#custom-html-su .alert-success {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-su .alert-success hr {

  border-top-color: #c9e2b3;

}

#custom-html-su .alert-success .alert-link {

  color: #2b542c;

}

#custom-html-su .alert-info {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-su .alert-info hr {

  border-top-color: #a6e1ec;

}

#custom-html-su .alert-info .alert-link {

  color: #000000;

}

#custom-html-su .alert-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-su .alert-warning hr {

  border-top-color: #f7e1b5;

}

#custom-html-su .alert-warning .alert-link {

  color: #66512c;

}

#custom-html-su .alert-danger {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-su .alert-danger hr {

  border-top-color: #e4b9c0;

}

#custom-html-su .alert-danger .alert-link {

  color: #843534;

}

@-webkit-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@-o-keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

@keyframes progress-bar-stripes {

  from {

    background-position: 40px 0;

  }

  to {

    background-position: 0 0;

  }

}

#custom-html-su .progress {

  height: 20px;

  margin-bottom: 20px;

  overflow: hidden;

  background-color: #f5f5f5;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);

}

#custom-html-su .progress-bar {

  float: left;

  width: 0;

  height: 100%;

  font-size: 12px;

  line-height: 20px;

  color: #fff;

  text-align: center;

  background-color: #337ab7;

  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);

  -webkit-transition: width .6s ease;

  -o-transition: width .6s ease;

  transition: width 0.6s ease;

}

#custom-html-su .progress-bar-striped,

#custom-html-su .progress-striped .progress-bar {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  -webkit-background-size: 40px 40px;

  background-size: 40px 40px;

}

#custom-html-su .progress-bar.active,

#custom-html-su .progress.active .progress-bar {

  -webkit-animation: progress-bar-stripes 2s linear infinite;

  -o-animation: progress-bar-stripes 2s linear infinite;

  animation: progress-bar-stripes 2s linear infinite;

}

#custom-html-su .progress-bar-success {

  background-color: #5cb85c;

}

#custom-html-su .progress-striped .progress-bar-success {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-su .progress-bar-info {

  background-color: #5bc0de;

}

#custom-html-su .progress-striped .progress-bar-info {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-su .progress-bar-warning {

  background-color: #f0ad4e;

}

#custom-html-su .progress-striped .progress-bar-warning {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-su .progress-bar-danger {

  background-color: #d9534f;

}

#custom-html-su .progress-striped .progress-bar-danger {

  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);

}

#custom-html-su .media {

  margin-top: 15px;

}

#custom-html-su .media:first-child {

  margin-top: 0;

}

#custom-html-su .media,

#custom-html-su .media-body {

  overflow: hidden;

  zoom: 1;

}

#custom-html-su .media-body {

  width: 10000px;

}

#custom-html-su .media-object {

  display: block;

}

#custom-html-su .media-object.img-thumbnail {

  max-width: none;

}

#custom-html-su .media-right,

#custom-html-su .media > .pull-right {

  padding-left: 10px;

}

#custom-html-su .media-left,

#custom-html-su .media > .pull-left {

  padding-right: 10px;

}

#custom-html-su .media-body,

#custom-html-su .media-left,

#custom-html-su .media-right {

  display: table-cell;

  vertical-align: top;

}

#custom-html-su .media-middle {

  vertical-align: middle;

}

#custom-html-su .media-bottom {

  vertical-align: bottom;

}

#custom-html-su .media-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-su .media-list {

  padding-left: 0;

  list-style: none;

}

#custom-html-su .list-group {

  padding-left: 0;

  margin-bottom: 20px;

}

#custom-html-su .list-group-item {

  position: relative;

  display: block;

  padding: 10px 15px;

  margin-bottom: -1px;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-su .list-group-item:first-child {

  border-top-left-radius: 4px;

  border-top-right-radius: 4px;

}

#custom-html-su .list-group-item:last-child {

  margin-bottom: 0;

  border-bottom-right-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-su a.list-group-item,

#custom-html-su button.list-group-item {

  color: #555555;

}

#custom-html-su a.list-group-item .list-group-item-heading,

#custom-html-su button.list-group-item .list-group-item-heading {

  color: #333333;

}

#custom-html-su a.list-group-item:focus,

#custom-html-su a.list-group-item:hover,

#custom-html-su button.list-group-item:focus,

#custom-html-su button.list-group-item:hover {

  color: #555;

  text-decoration: none;

  background-color: #f5f5f5;

}

#custom-html-su button.list-group-item {

  width: 100%;

  text-align: left;

}

#custom-html-su .list-group-item.disabled,

#custom-html-su .list-group-item.disabled:focus,

#custom-html-su .list-group-item.disabled:hover {

  color: #777;

  cursor: not-allowed;

  background-color: #eeeeee;

}

#custom-html-su .list-group-item.disabled .list-group-item-heading,

#custom-html-su .list-group-item.disabled:focus .list-group-item-heading,

#custom-html-su .list-group-item.disabled:hover .list-group-item-heading {

  color: inherit;

}

#custom-html-su .list-group-item.disabled .list-group-item-text,

#custom-html-su .list-group-item.disabled:focus .list-group-item-text,

#custom-html-su .list-group-item.disabled:hover .list-group-item-text {

  color: #777777;

}

#custom-html-su .list-group-item.active,

#custom-html-su .list-group-item.active:focus,

#custom-html-su .list-group-item.active:hover {

  z-index: 2;

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-su .list-group-item.active .list-group-item-heading,

#custom-html-su .list-group-item.active .list-group-item-heading > .small,

#custom-html-su .list-group-item.active .list-group-item-heading > small,

#custom-html-su .list-group-item.active:focus .list-group-item-heading,

#custom-html-su .list-group-item.active:focus .list-group-item-heading > .small,

#custom-html-su .list-group-item.active:focus .list-group-item-heading > small,

#custom-html-su .list-group-item.active:hover .list-group-item-heading,

#custom-html-su .list-group-item.active:hover .list-group-item-heading > .small,

#custom-html-su .list-group-item.active:hover .list-group-item-heading > small {

  color: inherit;

}

#custom-html-su .list-group-item.active .list-group-item-text,

#custom-html-su .list-group-item.active:focus .list-group-item-text,

#custom-html-su .list-group-item.active:hover .list-group-item-text {

  color: #c7ddef;

}

#custom-html-su .list-group-item-success {

  color: #3c763d;

  background-color: #dff0d8;

}

#custom-html-su a.list-group-item-success,

#custom-html-su button.list-group-item-success {

  color: #3c763d;

}

#custom-html-su a.list-group-item-success .list-group-item-heading,

#custom-html-su button.list-group-item-success .list-group-item-heading {

  color: inherit;

}

#custom-html-su a.list-group-item-success:focus,

#custom-html-su a.list-group-item-success:hover,

#custom-html-su button.list-group-item-success:focus,

#custom-html-su button.list-group-item-success:hover {

  color: #3c763d;

  background-color: #d0e9c6;

}

#custom-html-su a.list-group-item-success.active,

#custom-html-su a.list-group-item-success.active:focus,

#custom-html-su a.list-group-item-success.active:hover,

#custom-html-su button.list-group-item-success.active,

#custom-html-su button.list-group-item-success.active:focus,

#custom-html-su button.list-group-item-success.active:hover {

  color: #fff;

  background-color: #3c763d;

  border-color: #3c763d;

}

#custom-html-su .list-group-item-info {

  color: #31708f;

  background-color: #d9edf7;

}

#custom-html-su a.list-group-item-info,

#custom-html-su button.list-group-item-info {

  color: #31708f;

}

#custom-html-su a.list-group-item-info .list-group-item-heading,

#custom-html-su button.list-group-item-info .list-group-item-heading {

  color: inherit;

}

#custom-html-su a.list-group-item-info:focus,

#custom-html-su a.list-group-item-info:hover,

#custom-html-su button.list-group-item-info:focus,

#custom-html-su button.list-group-item-info:hover {

  color: #31708f;

  background-color: #c4e3f3;

}

#custom-html-su a.list-group-item-info.active,

#custom-html-su a.list-group-item-info.active:focus,

#custom-html-su a.list-group-item-info.active:hover,

#custom-html-su button.list-group-item-info.active,

#custom-html-su button.list-group-item-info.active:focus,

#custom-html-su button.list-group-item-info.active:hover {

  color: #fff;

  background-color: #31708f;

  border-color: #31708f;

}

#custom-html-su .list-group-item-warning {

  color: #8a6d3b;

  background-color: #fcf8e3;

}

#custom-html-su a.list-group-item-warning,

#custom-html-su button.list-group-item-warning {

  color: #8a6d3b;

}

#custom-html-su a.list-group-item-warning .list-group-item-heading,

#custom-html-su button.list-group-item-warning .list-group-item-heading {

  color: inherit;

}

#custom-html-su a.list-group-item-warning:focus,

#custom-html-su a.list-group-item-warning:hover,

#custom-html-su button.list-group-item-warning:focus,

#custom-html-su button.list-group-item-warning:hover {

  color: #8a6d3b;

  background-color: #faf2cc;

}

#custom-html-su a.list-group-item-warning.active,

#custom-html-su a.list-group-item-warning.active:focus,

#custom-html-su a.list-group-item-warning.active:hover,

#custom-html-su button.list-group-item-warning.active,

#custom-html-su button.list-group-item-warning.active:focus,

#custom-html-su button.list-group-item-warning.active:hover {

  color: #fff;

  background-color: #8a6d3b;

  border-color: #8a6d3b;

}

#custom-html-su .list-group-item-danger {

  color: #a94442;

  background-color: #f2dede;

}

#custom-html-su a.list-group-item-danger,

#custom-html-su button.list-group-item-danger {

  color: #a94442;

}

#custom-html-su a.list-group-item-danger .list-group-item-heading,

#custom-html-su button.list-group-item-danger .list-group-item-heading {

  color: inherit;

}

#custom-html-su a.list-group-item-danger:focus,

#custom-html-su a.list-group-item-danger:hover,

#custom-html-su button.list-group-item-danger:focus,

#custom-html-su button.list-group-item-danger:hover {

  color: #a94442;

  background-color: #ebcccc;

}

#custom-html-su a.list-group-item-danger.active,

#custom-html-su a.list-group-item-danger.active:focus,

#custom-html-su a.list-group-item-danger.active:hover,

#custom-html-su button.list-group-item-danger.active,

#custom-html-su button.list-group-item-danger.active:focus,

#custom-html-su button.list-group-item-danger.active:hover {

  color: #fff;

  background-color: #a94442;

  border-color: #a94442;

}

#custom-html-su .list-group-item-heading {

  margin-top: 0;

  margin-bottom: 5px;

}

#custom-html-su .list-group-item-text {

  margin-bottom: 0;

  line-height: 1.3;

}

#custom-html-su .panel {

  margin-bottom: 20px;

  background-color: #fff;

  border: 1px solid transparent;

  border-radius: 4px;

  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-su .panel-body {

  padding: 15px;

}

#custom-html-su .panel-heading {

  padding: 10px 15px;

  border-bottom: 1px solid transparent;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .panel-heading > .dropdown .dropdown-toggle {

  color: inherit;

}

#custom-html-su .panel-title {

  margin-top: 0;

  margin-bottom: 0;

  font-size: 16px;

  color: inherit;

}

#custom-html-su .panel-title > .small,

#custom-html-su .panel-title > .small > a,

#custom-html-su .panel-title > a,

#custom-html-su .panel-title > small,

#custom-html-su .panel-title > small > a {

  color: inherit;

}

#custom-html-su .panel-footer {

  padding: 10px 15px;

  background-color: #f5f5f5;

  border-top: 1px solid #ddd;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-su .panel > .list-group,

#custom-html-su .panel > .panel-collapse > .list-group {

  margin-bottom: 0;

}

#custom-html-su .panel > .list-group .list-group-item,

#custom-html-su .panel > .panel-collapse > .list-group .list-group-item {

  border-width: 1px 0;

  border-radius: 0;

}

#custom-html-su .panel > .list-group:first-child .list-group-item:first-child,

#custom-html-su .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {

  border-top: 0;

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .panel > .list-group:last-child .list-group-item:last-child,

#custom-html-su .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {

  border-bottom: 0;

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-su .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {

  border-top-left-radius: 0;

  border-top-right-radius: 0;

}

#custom-html-su .panel-heading + .list-group .list-group-item:first-child {

  border-top-width: 0;

}

#custom-html-su .list-group + .panel-footer {

  border-top-width: 0;

}

#custom-html-su .panel > .panel-collapse > .table,

#custom-html-su .panel > .table,

#custom-html-su .panel > .table-responsive > .table {

  margin-bottom: 0;

}

#custom-html-su .panel > .panel-collapse > .table caption,

#custom-html-su .panel > .table caption,

#custom-html-su .panel > .table-responsive > .table caption {

  padding-right: 15px;

  padding-left: 15px;

}

#custom-html-su .panel > .table-responsive:first-child > .table:first-child,

#custom-html-su .panel > .table:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,

#custom-html-su .panel > .table:first-child > tbody:first-child > tr:first-child,

#custom-html-su .panel > .table:first-child > thead:first-child > tr:first-child {

  border-top-left-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,

#custom-html-su .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,

#custom-html-su .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,

#custom-html-su .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,

#custom-html-su .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {

  border-top-left-radius: 3px;

}

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-su .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,

#custom-html-su .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,

#custom-html-su .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,

#custom-html-su .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,

#custom-html-su .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {

  border-top-right-radius: 3px;

}

#custom-html-su .panel > .table-responsive:last-child > .table:last-child,

#custom-html-su .panel > .table:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child,

#custom-html-su .panel > .table:last-child > tbody:last-child > tr:last-child,

#custom-html-su .panel > .table:last-child > tfoot:last-child > tr:last-child {

  border-bottom-right-radius: 3px;

  border-bottom-left-radius: 3px;

}

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child,

#custom-html-su .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,

#custom-html-su .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,

#custom-html-su .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,

#custom-html-su .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {

  border-bottom-left-radius: 3px;

}

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-su .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child,

#custom-html-su .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,

#custom-html-su .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,

#custom-html-su .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,

#custom-html-su .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {

  border-bottom-right-radius: 3px;

}

#custom-html-su .panel > .panel-body + .table,

#custom-html-su .panel > .panel-body + .table-responsive,

#custom-html-su .panel > .table + .panel-body,

#custom-html-su .panel > .table-responsive + .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-su .panel > .table > tbody:first-child > tr:first-child td,

#custom-html-su .panel > .table > tbody:first-child > tr:first-child th {

  border-top: 0;

}

#custom-html-su .panel > .table-bordered,

#custom-html-su .panel > .table-responsive > .table-bordered {

  border: 0;

}

#custom-html-su .panel > .table-bordered > tbody > tr > td:first-child,

#custom-html-su .panel > .table-bordered > tbody > tr > th:first-child,

#custom-html-su .panel > .table-bordered > tfoot > tr > td:first-child,

#custom-html-su .panel > .table-bordered > tfoot > tr > th:first-child,

#custom-html-su .panel > .table-bordered > thead > tr > td:first-child,

#custom-html-su .panel > .table-bordered > thead > tr > th:first-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,

#custom-html-su .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,

#custom-html-su .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {

  border-left: 0;

}

#custom-html-su .panel > .table-bordered > tbody > tr > td:last-child,

#custom-html-su .panel > .table-bordered > tbody > tr > th:last-child,

#custom-html-su .panel > .table-bordered > tfoot > tr > td:last-child,

#custom-html-su .panel > .table-bordered > tfoot > tr > th:last-child,

#custom-html-su .panel > .table-bordered > thead > tr > td:last-child,

#custom-html-su .panel > .table-bordered > thead > tr > th:last-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,

#custom-html-su .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,

#custom-html-su .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,

#custom-html-su .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {

  border-right: 0;

}

#custom-html-su .panel > .table-bordered > tbody > tr:first-child > td,

#custom-html-su .panel > .table-bordered > tbody > tr:first-child > th,

#custom-html-su .panel > .table-bordered > thead > tr:first-child > td,

#custom-html-su .panel > .table-bordered > thead > tr:first-child > th,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,

#custom-html-su .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,

#custom-html-su .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {

  border-bottom: 0;

}

#custom-html-su .panel > .table-bordered > tbody > tr:last-child > td,

#custom-html-su .panel > .table-bordered > tbody > tr:last-child > th,

#custom-html-su .panel > .table-bordered > tfoot > tr:last-child > td,

#custom-html-su .panel > .table-bordered > tfoot > tr:last-child > th,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,

#custom-html-su .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,

#custom-html-su .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,

#custom-html-su .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {

  border-bottom: 0;

}

#custom-html-su .panel > .table-responsive {

  margin-bottom: 0;

  border: 0;

}

#custom-html-su .panel-group {

  margin-bottom: 20px;

}

#custom-html-su .panel-group .panel {

  margin-bottom: 0;

  border-radius: 4px;

}

#custom-html-su .panel-group .panel + .panel {

  margin-top: 5px;

}

#custom-html-su .panel-group .panel-heading {

  border-bottom: 0;

}

#custom-html-su .panel-group .panel-heading + .panel-collapse > .list-group,

#custom-html-su .panel-group .panel-heading + .panel-collapse > .panel-body {

  border-top: 1px solid #dddddd;

}

#custom-html-su .panel-group .panel-footer {

  border-top: 0;

}

#custom-html-su .panel-group .panel-footer + .panel-collapse .panel-body {

  border-bottom: 1px solid #dddddd;

}

#custom-html-su .panel-default {

  border-color: #dddddd;

}

#custom-html-su .panel-default > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-color: #dddddd;

}

#custom-html-su .panel-default > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #dddddd;

}

#custom-html-su .panel-default > .panel-heading .badge {

  color: #f5f5f5;

  background-color: #333333;

}

#custom-html-su .panel-default > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #dddddd;

}

#custom-html-su .panel-primary {

  border-color: #337ab7;

}

#custom-html-su .panel-primary > .panel-heading {

  color: #fff;

  background-color: #337ab7;

  border-color: #337ab7;

}

#custom-html-su .panel-primary > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #337ab7;

}

#custom-html-su .panel-primary > .panel-heading .badge {

  color: #337ab7;

  background-color: #ffffff;

}

#custom-html-su .panel-primary > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #337ab7;

}

#custom-html-su .panel-success {

  border-color: #d6e9c6;

}

#custom-html-su .panel-success > .panel-heading {

  color: #3c763d;

  background-color: #dff0d8;

  border-color: #d6e9c6;

}

#custom-html-su .panel-success > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #d6e9c6;

}

#custom-html-su .panel-success > .panel-heading .badge {

  color: #dff0d8;

  background-color: #3c763d;

}

#custom-html-su .panel-success > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #d6e9c6;

}

#custom-html-su .panel-info {

  border-color: #bce8f1;

}

#custom-html-su .panel-info > .panel-heading {

  color: #31708f;

  background-color: #d9edf7;

  border-color: #bce8f1;

}

#custom-html-su .panel-info > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #bce8f1;

}

#custom-html-su .panel-info > .panel-heading .badge {

  color: #d9edf7;

  background-color: #31708f;

}

#custom-html-su .panel-info > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #bce8f1;

}

#custom-html-su .panel-warning {

  border-color: #faebcc;

}

#custom-html-su .panel-warning > .panel-heading {

  color: #8a6d3b;

  background-color: #fcf8e3;

  border-color: #faebcc;

}

#custom-html-su .panel-warning > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #faebcc;

}

#custom-html-su .panel-warning > .panel-heading .badge {

  color: #fcf8e3;

  background-color: #8a6d3b;

}

#custom-html-su .panel-warning > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #faebcc;

}

#custom-html-su .panel-danger {

  border-color: #ebccd1;

}

#custom-html-su .panel-danger > .panel-heading {

  color: #a94442;

  background-color: #f2dede;

  border-color: #ebccd1;

}

#custom-html-su .panel-danger > .panel-heading + .panel-collapse > .panel-body {

  border-top-color: #ebccd1;

}

#custom-html-su .panel-danger > .panel-heading .badge {

  color: #f2dede;

  background-color: #a94442;

}

#custom-html-su .panel-danger > .panel-footer + .panel-collapse > .panel-body {

  border-bottom-color: #ebccd1;

}

#custom-html-su .embed-responsive {

  position: relative;

  display: block;

  height: 0;

  padding: 0;

  overflow: hidden;

}

#custom-html-su .embed-responsive .embed-responsive-item,

#custom-html-su .embed-responsive embed,

#custom-html-su .embed-responsive iframe,

#custom-html-su .embed-responsive object,

#custom-html-su .embed-responsive video {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border: 0;

}

#custom-html-su .embed-responsive-16by9 {

  padding-bottom: 56.25%;

}

#custom-html-su .embed-responsive-4by3 {

  padding-bottom: 75%;

}

#custom-html-su .well {

  min-height: 20px;

  padding: 19px;

  margin-bottom: 20px;

  background-color: #f5f5f5;

  border: 1px solid #e3e3e3;

  border-radius: 4px;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

}

#custom-html-su .well blockquote {

  border-color: #ddd;

  border-color: rgba(0, 0, 0, 0.15);

}

#custom-html-su .well-lg {

  padding: 24px;

  border-radius: 6px;

}

#custom-html-su .well-sm {

  padding: 9px;

  border-radius: 3px;

}

#custom-html-su .close {

  float: right;

  font-size: 21px;

  font-weight: 700;

  line-height: 1;

  color: #000;

  text-shadow: 0 1px 0 #fff;

  opacity: 0.2;

}

#custom-html-su .close:focus,

#custom-html-su .close:hover {

  color: #000;

  text-decoration: none;

  cursor: pointer;

  opacity: 0.5;

}

#custom-html-su button.close {

  -webkit-appearance: none;

  padding: 0;

  cursor: pointer;

  background: 0 0;

  border: 0;

}

#custom-html-su .modal-open {

  overflow: hidden;

}

#custom-html-su .modal {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1050;

  display: none;

  overflow: hidden;

  -webkit-overflow-scrolling: touch;

  outline: 0;

}

#custom-html-su .modal.fade .modal-dialog {

  -webkit-transition: -webkit-transform 0.3s ease-out;

  -o-transition: -o-transform 0.3s ease-out;

  transition: transform 0.3s ease-out;

  -webkit-transform: translate(0, -25%);

  -ms-transform: translate(0, -25%);

  -o-transform: translate(0, -25%);

  transform: translate(0, -25%);

}

#custom-html-su .modal.in .modal-dialog {

  -webkit-transform: translate(0, 0);

  -ms-transform: translate(0, 0);

  -o-transform: translate(0, 0);

  transform: translate(0, 0);

}

#custom-html-su .modal-open .modal {

  overflow-x: hidden;

  overflow-y: auto;

}

#custom-html-su .modal-dialog {

  position: relative;

  width: auto;

  margin: 10px;

}

#custom-html-su .modal-content {

  position: relative;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #999;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  outline: 0;

  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);

}

#custom-html-su .modal-backdrop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1040;

  background-color: #000000;

}

#custom-html-su .modal-backdrop.fade {

  opacity: 0;

}

#custom-html-su .modal-backdrop.in {

  opacity: 0.5;

}

#custom-html-su .modal-header {

  padding: 15px;

  border-bottom: 1px solid #e5e5e5;

}

#custom-html-su .modal-header .close {

  margin-top: -2px;

}

#custom-html-su .modal-title {

  margin: 0;

  line-height: 1.42857143;

}

#custom-html-su .modal-body {

  position: relative;

  padding: 15px;

}

#custom-html-su .modal-footer {

  padding: 15px;

  text-align: right;

  border-top: 1px solid #e5e5e5;

}

#custom-html-su .modal-footer .btn + .btn {

  margin-bottom: 0;

  margin-left: 5px;

}

#custom-html-su .modal-footer .btn-group .btn + .btn {

  margin-left: -1px;

}

#custom-html-su .modal-footer .btn-block + .btn-block {

  margin-left: 0;

}

#custom-html-su .modal-scrollbar-measure {

  position: absolute;

  top: -9999px;

  width: 50px;

  height: 50px;

  overflow: scroll;

}

@media (min-width: 768px) {

  #custom-html-su .modal-dialog {

    width: 600px;

    margin: 30px auto;

  }

  #custom-html-su .modal-content {

    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);

  }

  #custom-html-su .modal-sm {

    width: 300px;

  }

}

@media (min-width: 992px) {

  #custom-html-su .modal-lg {

    width: 900px;

  }

}

#custom-html-su .tooltip {

  position: absolute;

  z-index: 1070;

  display: block;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 12px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  opacity: 0;

  line-break: auto;

}

#custom-html-su .tooltip.in {

  opacity: 0.9;

}

#custom-html-su .tooltip.top {

  padding: 5px 0;

  margin-top: -3px;

}

#custom-html-su .tooltip.right {

  padding: 0 5px;

  margin-left: 3px;

}

#custom-html-su .tooltip.bottom {

  padding: 5px 0;

  margin-top: 3px;

}

#custom-html-su .tooltip.left {

  padding: 0 5px;

  margin-left: -3px;

}

#custom-html-su .tooltip-inner {

  max-width: 200px;

  padding: 3px 8px;

  color: #fff;

  text-align: center;

  background-color: #000;

  border-radius: 4px;

}

#custom-html-su .tooltip-arrow {

  position: absolute;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-su .tooltip.top .tooltip-arrow {

  bottom: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-su .tooltip.top-left .tooltip-arrow {

  right: 5px;

  bottom: 0;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-su .tooltip.top-right .tooltip-arrow {

  bottom: 0;

  left: 5px;

  margin-bottom: -5px;

  border-width: 5px 5px 0;

  border-top-color: #000000;

}

#custom-html-su .tooltip.right .tooltip-arrow {

  top: 50%;

  left: 0;

  margin-top: -5px;

  border-width: 5px 5px 5px 0;

  border-right-color: #000000;

}

#custom-html-su .tooltip.left .tooltip-arrow {

  top: 50%;

  right: 0;

  margin-top: -5px;

  border-width: 5px 0 5px 5px;

  border-left-color: #000000;

}

#custom-html-su .tooltip.bottom .tooltip-arrow {

  top: 0;

  left: 50%;

  margin-left: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-su .tooltip.bottom-left .tooltip-arrow {

  top: 0;

  right: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-su .tooltip.bottom-right .tooltip-arrow {

  top: 0;

  left: 5px;

  margin-top: -5px;

  border-width: 0 5px 5px;

  border-bottom-color: #000000;

}

#custom-html-su .popover {

  position: absolute;

  top: 0;

  left: 0;

  z-index: 1060;

  display: none;

  max-width: 276px;

  padding: 1px;

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 1.42857143;

  text-align: left;

  text-align: start;

  text-decoration: none;

  text-shadow: none;

  text-transform: none;

  letter-spacing: normal;

  word-break: normal;

  word-spacing: normal;

  word-wrap: normal;

  white-space: normal;

  background-color: #fff;

  -webkit-background-clip: padding-box;

  background-clip: padding-box;

  border: 1px solid #ccc;

  border: 1px solid rgba(0, 0, 0, 0.2);

  border-radius: 6px;

  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

  line-break: auto;

}

#custom-html-su .popover.top {

  margin-top: -10px;

}

#custom-html-su .popover.right {

  margin-left: 10px;

}

#custom-html-su .popover.bottom {

  margin-top: 10px;

}

#custom-html-su .popover.left {

  margin-left: -10px;

}

#custom-html-su .popover-title {

  padding: 8px 14px;

  margin: 0;

  font-size: 14px;

  background-color: #f7f7f7;

  border-bottom: 1px solid #ebebeb;

  border-radius: 5px 5px 0 0;

}

#custom-html-su .popover-content {

  padding: 9px 14px;

}

#custom-html-su .popover > .arrow,

#custom-html-su .popover > .arrow:after {

  position: absolute;

  display: block;

  width: 0;

  height: 0;

  border-color: transparent;

  border-style: solid;

}

#custom-html-su .popover > .arrow {

  border-width: 11px;

}

#custom-html-su .popover > .arrow:after {

  content: "";

  border-width: 10px;

}

#custom-html-su .popover.top > .arrow {

  bottom: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-color: #999;

  border-top-color: rgba(0, 0, 0, 0.25);

  border-bottom-width: 0;

}

#custom-html-su .popover.top > .arrow:after {

  bottom: 1px;

  margin-left: -10px;

  content: " ";

  border-top-color: #fff;

  border-bottom-width: 0;

}

#custom-html-su .popover.right > .arrow {

  top: 50%;

  left: -11px;

  margin-top: -11px;

  border-right-color: #999;

  border-right-color: rgba(0, 0, 0, 0.25);

  border-left-width: 0;

}

#custom-html-su .popover.right > .arrow:after {

  bottom: -10px;

  left: 1px;

  content: " ";

  border-right-color: #fff;

  border-left-width: 0;

}

#custom-html-su .popover.bottom > .arrow {

  top: -11px;

  left: 50%;

  margin-left: -11px;

  border-top-width: 0;

  border-bottom-color: #999;

  border-bottom-color: rgba(0, 0, 0, 0.25);

}

#custom-html-su .popover.bottom > .arrow:after {

  top: 1px;

  margin-left: -10px;

  content: " ";

  border-top-width: 0;

  border-bottom-color: #ffffff;

}

#custom-html-su .popover.left > .arrow {

  top: 50%;

  right: -11px;

  margin-top: -11px;

  border-right-width: 0;

  border-left-color: #999;

  border-left-color: rgba(0, 0, 0, 0.25);

}

#custom-html-su .popover.left > .arrow:after {

  right: 1px;

  bottom: -10px;

  content: " ";

  border-right-width: 0;

  border-left-color: #ffffff;

}

#custom-html-su .carousel {

  position: relative;

}

#custom-html-su .carousel-inner {

  position: relative;

  width: 100%;

  overflow: hidden;

}

#custom-html-su .carousel-inner > .item {

  position: relative;

  display: none;

  -webkit-transition: 0.6s ease-in-out left;

  -o-transition: 0.6s ease-in-out left;

  transition: 0.6s ease-in-out left;

}

#custom-html-su .carousel-inner > .item > a > img,

#custom-html-su .carousel-inner > .item > img {

  line-height: 1;

}

@media all and (transform-3d), (-webkit-transform-3d) {

  #custom-html-su .carousel-inner > .item {

    -webkit-transition: -webkit-transform 0.6s ease-in-out;

    -o-transition: -o-transform 0.6s ease-in-out;

    transition: transform 0.6s ease-in-out;

    -webkit-backface-visibility: hidden;

    backface-visibility: hidden;

    -webkit-perspective: 1000px;

    perspective: 1000px;

  }

  #custom-html-su .carousel-inner > .item.active.right,

  #custom-html-su .carousel-inner > .item.next {

    left: 0;

    -webkit-transform: translate3d(100%, 0, 0);

    transform: translate3d(100%, 0, 0);

  }

  #custom-html-su .carousel-inner > .item.active.left,

  #custom-html-su .carousel-inner > .item.prev {

    left: 0;

    -webkit-transform: translate3d(-100%, 0, 0);

    transform: translate3d(-100%, 0, 0);

  }

  #custom-html-su .carousel-inner > .item.active,

  #custom-html-su .carousel-inner > .item.next.left,

  #custom-html-su .carousel-inner > .item.prev.right {

    left: 0;

    -webkit-transform: translate3d(0, 0, 0);

    transform: translate3d(0, 0, 0);

  }

}

#custom-html-su .carousel-inner > .active,

#custom-html-su .carousel-inner > .next,

#custom-html-su .carousel-inner > .prev {

  display: block;

}

#custom-html-su .carousel-inner > .active {

  left: 0;

}

#custom-html-su .carousel-inner > .next,

#custom-html-su .carousel-inner > .prev {

  position: absolute;

  top: 0;

  width: 100%;

}

#custom-html-su .carousel-inner > .next {

  left: 100%;

}

#custom-html-su .carousel-inner > .prev {

  left: -100%;

}

#custom-html-su .carousel-inner > .next.left,

#custom-html-su .carousel-inner > .prev.right {

  left: 0;

}

#custom-html-su .carousel-inner > .active.left {

  left: -100%;

}

#custom-html-su .carousel-inner > .active.right {

  left: 100%;

}

#custom-html-su .carousel-control {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 15%;

  font-size: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

  background-color: rgba(0, 0, 0, 0);

  opacity: 0.5;

}

#custom-html-su .carousel-control.left {

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);

  background-repeat: repeat-x;

}

#custom-html-su .carousel-control.right {

  right: 0;

  left: auto;

  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));

  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);

  background-repeat: repeat-x;

}

#custom-html-su .carousel-control:focus,

#custom-html-su .carousel-control:hover {

  color: #fff;

  text-decoration: none;

  outline: 0;

  opacity: 0.9;

}

#custom-html-su .carousel-control .glyphicon-chevron-left,

#custom-html-su .carousel-control .glyphicon-chevron-right,

#custom-html-su .carousel-control .icon-next,

#custom-html-su .carousel-control .icon-prev {

  position: absolute;

  top: 50%;

  z-index: 5;

  display: inline-block;

  margin-top: -10px;

}

#custom-html-su .carousel-control .glyphicon-chevron-left,

#custom-html-su .carousel-control .icon-prev {

  left: 50%;

  margin-left: -10px;

}

#custom-html-su .carousel-control .glyphicon-chevron-right,

#custom-html-su .carousel-control .icon-next {

  right: 50%;

  margin-right: -10px;

}

#custom-html-su .carousel-control .icon-next,

#custom-html-su .carousel-control .icon-prev {

  width: 20px;

  height: 20px;

  font-family: serif;

  line-height: 1;

}

#custom-html-su .carousel-control .icon-prev:before {

  content: '\2039';

}

#custom-html-su .carousel-control .icon-next:before {

  content: '\203a';

}

#custom-html-su .carousel-indicators {

  position: absolute;

  bottom: 10px;

  left: 50%;

  z-index: 15;

  width: 60%;

  padding-left: 0;

  margin-left: -30%;

  text-align: center;

  list-style: none;

}

#custom-html-su .carousel-indicators li {

  display: inline-block;

  width: 10px;

  height: 10px;

  margin: 1px;

  text-indent: -999px;

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0);

  border: 1px solid #fff;

  border-radius: 10px;

}

#custom-html-su .carousel-indicators .active {

  width: 12px;

  height: 12px;

  margin: 0;

  background-color: #ffffff;

}

#custom-html-su .carousel-caption {

  position: absolute;

  right: 15%;

  bottom: 20px;

  left: 15%;

  z-index: 10;

  padding-top: 20px;

  padding-bottom: 20px;

  color: #fff;

  text-align: center;

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);

}

#custom-html-su .carousel-caption .btn {

  text-shadow: none;

}

@media screen and (min-width: 768px) {

  #custom-html-su .carousel-control .glyphicon-chevron-left,

  #custom-html-su .carousel-control .glyphicon-chevron-right,

  #custom-html-su .carousel-control .icon-next,

  #custom-html-su .carousel-control .icon-prev {

    width: 30px;

    height: 30px;

    margin-top: -10px;

    font-size: 30px;

  }

  #custom-html-su .carousel-control .glyphicon-chevron-left,

  #custom-html-su .carousel-control .icon-prev {

    margin-left: -10px;

  }

  #custom-html-su .carousel-control .glyphicon-chevron-right,

  #custom-html-su .carousel-control .icon-next {

    margin-right: -10px;

  }

  #custom-html-su .carousel-caption {

    right: 20%;

    left: 20%;

    padding-bottom: 30px;

  }

  #custom-html-su .carousel-indicators {

    bottom: 20px;

  }

}

#custom-html-su .btn-group-vertical > .btn-group:after,

#custom-html-su .btn-group-vertical > .btn-group:before,

#custom-html-su .btn-toolbar:after,

#custom-html-su .btn-toolbar:before,

#custom-html-su .clearfix:after,

#custom-html-su .clearfix:before,

#custom-html-su .container-fluid:after,

#custom-html-su .container-fluid:before,

#custom-html-su .container:after,

#custom-html-su .container:before,

#custom-html-su .dl-horizontal dd:after,

#custom-html-su .dl-horizontal dd:before,

#custom-html-su .form-horizontal .form-group:after,

#custom-html-su .form-horizontal .form-group:before,

#custom-html-su .modal-footer:after,

#custom-html-su .modal-footer:before,

#custom-html-su .modal-header:after,

#custom-html-su .modal-header:before,

#custom-html-su .nav:after,

#custom-html-su .nav:before,

#custom-html-su .navbar-collapse:after,

#custom-html-su .navbar-collapse:before,

#custom-html-su .navbar-header:after,

#custom-html-su .navbar-header:before,

#custom-html-su .navbar:after,

#custom-html-su .navbar:before,

#custom-html-su .pager:after,

#custom-html-su .pager:before,

#custom-html-su .panel-body:after,

#custom-html-su .panel-body:before,

#custom-html-su .row:after,

#custom-html-su .row:before {

  display: table;

  content: " ";

}

#custom-html-su .btn-group-vertical > .btn-group:after,

#custom-html-su .btn-toolbar:after,

#custom-html-su .clearfix:after,

#custom-html-su .container-fluid:after,

#custom-html-su .container:after,

#custom-html-su .dl-horizontal dd:after,

#custom-html-su .form-horizontal .form-group:after,

#custom-html-su .modal-footer:after,

#custom-html-su .modal-header:after,

#custom-html-su .nav:after,

#custom-html-su .navbar-collapse:after,

#custom-html-su .navbar-header:after,

#custom-html-su .navbar:after,

#custom-html-su .pager:after,

#custom-html-su .panel-body:after,

#custom-html-su .row:after {

  clear: both;

}

#custom-html-su .center-block {

  display: block;

  margin-right: auto;

  margin-left: auto;

}

#custom-html-su .pull-right {

  float: right !important;

}

#custom-html-su .pull-left {

  float: left !important;

}

#custom-html-su .hide {

  display: none !important;

}

#custom-html-su .show {

  display: block !important;

}

#custom-html-su .invisible {

  visibility: hidden;

}

#custom-html-su .text-hide {

  font: 0/0 a;

  color: transparent;

  text-shadow: none;

  background-color: transparent;

  border: 0;

}

#custom-html-su .hidden {

  display: none !important;

}

#custom-html-su .affix {

  position: fixed;

}

@-ms-viewport {

  width: device-width;

}

#custom-html-su .visible-lg,

#custom-html-su .visible-md,

#custom-html-su .visible-sm,

#custom-html-su .visible-xs {

  display: none !important;

}

#custom-html-su .visible-lg-block,

#custom-html-su .visible-lg-inline,

#custom-html-su .visible-lg-inline-block,

#custom-html-su .visible-md-block,

#custom-html-su .visible-md-inline,

#custom-html-su .visible-md-inline-block,

#custom-html-su .visible-sm-block,

#custom-html-su .visible-sm-inline,

#custom-html-su .visible-sm-inline-block,

#custom-html-su .visible-xs-block,

#custom-html-su .visible-xs-inline,

#custom-html-su .visible-xs-inline-block {

  display: none !important;

}

@media (max-width: 767px) {

  #custom-html-su .visible-xs {

    display: block !important;

  }

  #custom-html-su table.visible-xs {

    display: table !important;

  }

  #custom-html-su tr.visible-xs {

    display: table-row !important;

  }

  #custom-html-su td.visible-xs,

  #custom-html-su th.visible-xs {

    display: table-cell !important;

  }

}

@media (max-width: 767px) {

  #custom-html-su .visible-xs-block {

    display: block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-su .visible-xs-inline {

    display: inline !important;

  }

}

@media (max-width: 767px) {

  #custom-html-su .visible-xs-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-su .visible-sm {

    display: block !important;

  }

  #custom-html-su table.visible-sm {

    display: table !important;

  }

  #custom-html-su tr.visible-sm {

    display: table-row !important;

  }

  #custom-html-su td.visible-sm,

  #custom-html-su th.visible-sm {

    display: table-cell !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-su .visible-sm-block {

    display: block !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-su .visible-sm-inline {

    display: inline !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-su .visible-sm-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-su .visible-md {

    display: block !important;

  }

  #custom-html-su table.visible-md {

    display: table !important;

  }

  #custom-html-su tr.visible-md {

    display: table-row !important;

  }

  #custom-html-su td.visible-md,

  #custom-html-su th.visible-md {

    display: table-cell !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-su .visible-md-block {

    display: block !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-su .visible-md-inline {

    display: inline !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-su .visible-md-inline-block {

    display: inline-block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-su .visible-lg {

    display: block !important;

  }

  #custom-html-su table.visible-lg {

    display: table !important;

  }

  #custom-html-su tr.visible-lg {

    display: table-row !important;

  }

  #custom-html-su td.visible-lg,

  #custom-html-su th.visible-lg {

    display: table-cell !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-su .visible-lg-block {

    display: block !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-su .visible-lg-inline {

    display: inline !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-su .visible-lg-inline-block {

    display: inline-block !important;

  }

}

@media (max-width: 767px) {

  #custom-html-su .hidden-xs {

    display: none !important;

  }

}

@media (min-width: 768px) and (max-width: 991px) {

  #custom-html-su .hidden-sm {

    display: none !important;

  }

}

@media (min-width: 992px) and (max-width: 1199px) {

  #custom-html-su .hidden-md {

    display: none !important;

  }

}

@media (min-width: 1200px) {

  #custom-html-su .hidden-lg {

    display: none !important;

  }

}

#custom-html-su .visible-print {

  display: none !important;

}

@media print {

  #custom-html-su .visible-print {

    display: block !important;

  }

  #custom-html-su table.visible-print {

    display: table !important;

  }

  #custom-html-su tr.visible-print {

    display: table-row !important;

  }

  #custom-html-su td.visible-print,

  #custom-html-su th.visible-print {

    display: table-cell !important;

  }

}

#custom-html-su .visible-print-block {

  display: none !important;

}

@media print {

  #custom-html-su .visible-print-block {

    display: block !important;

  }

}

#custom-html-su .visible-print-inline {

  display: none !important;

}

@media print {

  #custom-html-su .visible-print-inline {

    display: inline !important;

  }

}

#custom-html-su .visible-print-inline-block {

  display: none !important;

}

@media print {

  #custom-html-su .visible-print-inline-block {

    display: inline-block !important;

  }

}

@media print {

  #custom-html-su .hidden-print {

    display: none !important;

  }

}

#custom-html-su .intl-tel-input {

  position: relative;

  display: inline-block;

}

#custom-html-su .intl-tel-input * {

  box-sizing: border-box;

  -moz-box-sizing: border-box;

}

#custom-html-su .intl-tel-input .hide {

  display: none;

}

#custom-html-su .intl-tel-input .v-hide {

  visibility: hidden;

}

#custom-html-su .intl-tel-input input,

#custom-html-su .intl-tel-input input[type=tel],

#custom-html-su .intl-tel-input input[type=text] {

  position: relative;

  z-index: 0;

  margin-top: 0!important;

  margin-bottom: 0!important;

  padding-right: 36px;

  margin-right: 0;

}

#custom-html-su .intl-tel-input .flag-container {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  padding: 1px;

}

#custom-html-su .intl-tel-input .selected-flag {

  z-index: 1;

  position: relative;

  width: 36px;

  height: 100%;

  padding: 0 0 0 8px;

}

#custom-html-su .intl-tel-input .selected-flag .iti-flag {

  position: absolute;

  top: 0;

  bottom: 0;

  margin: auto;

}

#custom-html-su .intl-tel-input .selected-flag .iti-arrow {

  position: absolute;

  top: 50%;

  margin-top: -2px;

  right: 6px;

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #555555;

}

#custom-html-su .intl-tel-input .selected-flag .iti-arrow.up {

  border-top: none;

  border-bottom: 4px solid #555555;

}

#custom-html-su .intl-tel-input .country-list {

  position: absolute;

  z-index: 2;

  list-style: none;

  text-align: left;

  padding: 0;

  margin: 0 0 0 -1px;

  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

  background-color: #fff;

  border: 1px solid #ccc;

  white-space: nowrap;

  max-height: 200px;

  overflow-y: scroll;

}

#custom-html-su .intl-tel-input .country-list.dropup {

  bottom: 100%;

  margin-bottom: -1px;

}

#custom-html-su .intl-tel-input .country-list .flag-box {

  display: inline-block;

  width: 20px;

}

@media (max-width: 500px) {

  #custom-html-su .intl-tel-input .country-list {

    white-space: normal;

  }

}

#custom-html-su .intl-tel-input .country-list .divider {

  padding-bottom: 5px;

  margin-bottom: 5px;

  border-bottom: 1px solid #cccccc;

}

#custom-html-su .intl-tel-input .country-list .country {

  padding: 5px 10px;

}

#custom-html-su .intl-tel-input .country-list .country .dial-code {

  color: #999999;

}

#custom-html-su .intl-tel-input .country-list .country.highlight {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-su .intl-tel-input .country-list .country-name,

#custom-html-su .intl-tel-input .country-list .dial-code,

#custom-html-su .intl-tel-input .country-list .flag-box {

  vertical-align: middle;

}

#custom-html-su .intl-tel-input .country-list .country-name,

#custom-html-su .intl-tel-input .country-list .flag-box {

  margin-right: 6px;

}

#custom-html-su .intl-tel-input.allow-dropdown input,

#custom-html-su .intl-tel-input.allow-dropdown input[type=tel],

#custom-html-su .intl-tel-input.allow-dropdown input[type=text],

#custom-html-su .intl-tel-input.separate-dial-code input,

#custom-html-su .intl-tel-input.separate-dial-code input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code input[type=text] {

  padding-right: 6px;

  padding-left: 52px;

  margin-left: 0;

}

#custom-html-su .intl-tel-input.allow-dropdown .flag-container,

#custom-html-su .intl-tel-input.separate-dial-code .flag-container {

  right: auto;

  left: 0;

}

#custom-html-su .intl-tel-input.allow-dropdown .selected-flag,

#custom-html-su .intl-tel-input.separate-dial-code .selected-flag {

  width: 46px;

}

#custom-html-su .intl-tel-input.allow-dropdown .flag-container:hover {

  cursor: pointer;

}

#custom-html-su .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

}

#custom-html-su .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover,

#custom-html-su .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {

  cursor: default;

}

#custom-html-su .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag,

#custom-html-su .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {

  background-color: transparent;

}

#custom-html-su .intl-tel-input.separate-dial-code .selected-flag {

  background-color: rgba(0, 0, 0, 0.05);

  display: table;

}

#custom-html-su .intl-tel-input.separate-dial-code .selected-dial-code {

  display: table-cell;

  vertical-align: middle;

  padding-left: 28px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-2 input,

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text] {

  padding-left: 66px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {

  width: 60px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input,

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {

  padding-left: 76px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {

  width: 70px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-3 input,

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text] {

  padding-left: 74px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {

  width: 68px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {

  padding-left: 84px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {

  width: 78px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-4 input,

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text] {

  padding-left: 82px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {

  width: 76px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input,

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text] {

  padding-left: 92px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {

  width: 86px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-5 input,

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text] {

  padding-left: 90px;

}

#custom-html-su .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {

  width: 84px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input,

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel],

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text] {

  padding-left: 100px;

}

#custom-html-su .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {

  width: 94px;

}

#custom-html-su .intl-tel-input.iti-container {

  position: absolute;

  top: -1000px;

  left: -1000px;

  z-index: 1060;

  padding: 1px;

}

#custom-html-su .intl-tel-input.iti-container:hover {

  cursor: pointer;

}

#custom-html-su .iti-mobile .intl-tel-input.iti-container {

  top: 30px;

  bottom: 30px;

  left: 30px;

  right: 30px;

  position: fixed;

}

#custom-html-su .iti-mobile .intl-tel-input .country-list {

  max-height: 100%;

  width: 100%;

}

#custom-html-su .iti-mobile .intl-tel-input .country-list .country {

  padding: 10px 10px;

  line-height: 1.5em;

}

#custom-html-su .iti-flag {

  width: 20px;

}

#custom-html-su .iti-flag.be {

  width: 18px;

}

#custom-html-su .iti-flag.ch {

  width: 15px;

}

#custom-html-su .iti-flag.mc {

  width: 19px;

}

#custom-html-su .iti-flag.ne {

  width: 18px;

}

#custom-html-su .iti-flag.np {

  width: 13px;

}

#custom-html-su .iti-flag.va {

  width: 15px;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-su .iti-flag {

    background-size: 5630px 15px;

  }

}

#custom-html-su .iti-flag.ac {

  height: 10px;

  background-position: 0 0;

}

#custom-html-su .iti-flag.ad {

  height: 14px;

  background-position: -22px 0;

}

#custom-html-su .iti-flag.ae {

  height: 10px;

  background-position: -44px 0;

}

#custom-html-su .iti-flag.af {

  height: 14px;

  background-position: -66px 0;

}

#custom-html-su .iti-flag.ag {

  height: 14px;

  background-position: -88px 0;

}

#custom-html-su .iti-flag.ai {

  height: 10px;

  background-position: -110px 0;

}

#custom-html-su .iti-flag.al {

  height: 15px;

  background-position: -132px 0;

}

#custom-html-su .iti-flag.am {

  height: 10px;

  background-position: -154px 0;

}

#custom-html-su .iti-flag.ao {

  height: 14px;

  background-position: -176px 0;

}

#custom-html-su .iti-flag.aq {

  height: 14px;

  background-position: -198px 0;

}

#custom-html-su .iti-flag.ar {

  height: 13px;

  background-position: -220px 0;

}

#custom-html-su .iti-flag.as {

  height: 10px;

  background-position: -242px 0;

}

#custom-html-su .iti-flag.at {

  height: 14px;

  background-position: -264px 0;

}

#custom-html-su .iti-flag.au {

  height: 10px;

  background-position: -286px 0;

}

#custom-html-su .iti-flag.aw {

  height: 14px;

  background-position: -308px 0;

}

#custom-html-su .iti-flag.ax {

  height: 13px;

  background-position: -330px 0;

}

#custom-html-su .iti-flag.az {

  height: 10px;

  background-position: -352px 0;

}

#custom-html-su .iti-flag.ba {

  height: 10px;

  background-position: -374px 0;

}

#custom-html-su .iti-flag.bb {

  height: 14px;

  background-position: -396px 0;

}

#custom-html-su .iti-flag.bd {

  height: 12px;

  background-position: -418px 0;

}

#custom-html-su .iti-flag.be {

  height: 15px;

  background-position: -440px 0;

}

#custom-html-su .iti-flag.bf {

  height: 14px;

  background-position: -460px 0;

}

#custom-html-su .iti-flag.bg {

  height: 12px;

  background-position: -482px 0;

}

#custom-html-su .iti-flag.bh {

  height: 12px;

  background-position: -504px 0;

}

#custom-html-su .iti-flag.bi {

  height: 12px;

  background-position: -526px 0;

}

#custom-html-su .iti-flag.bj {

  height: 14px;

  background-position: -548px 0;

}

#custom-html-su .iti-flag.bl {

  height: 14px;

  background-position: -570px 0;

}

#custom-html-su .iti-flag.bm {

  height: 10px;

  background-position: -592px 0;

}

#custom-html-su .iti-flag.bn {

  height: 10px;

  background-position: -614px 0;

}

#custom-html-su .iti-flag.bo {

  height: 14px;

  background-position: -636px 0;

}

#custom-html-su .iti-flag.bq {

  height: 14px;

  background-position: -658px 0;

}

#custom-html-su .iti-flag.br {

  height: 14px;

  background-position: -680px 0;

}

#custom-html-su .iti-flag.bs {

  height: 10px;

  background-position: -702px 0;

}

#custom-html-su .iti-flag.bt {

  height: 14px;

  background-position: -724px 0;

}

#custom-html-su .iti-flag.bv {

  height: 15px;

  background-position: -746px 0;

}

#custom-html-su .iti-flag.bw {

  height: 14px;

  background-position: -768px 0;

}

#custom-html-su .iti-flag.by {

  height: 10px;

  background-position: -790px 0;

}

#custom-html-su .iti-flag.bz {

  height: 14px;

  background-position: -812px 0;

}

#custom-html-su .iti-flag.ca {

  height: 10px;

  background-position: -834px 0;

}

#custom-html-su .iti-flag.cc {

  height: 10px;

  background-position: -856px 0;

}

#custom-html-su .iti-flag.cd {

  height: 15px;

  background-position: -878px 0;

}

#custom-html-su .iti-flag.cf {

  height: 14px;

  background-position: -900px 0;

}

#custom-html-su .iti-flag.cg {

  height: 14px;

  background-position: -922px 0;

}

#custom-html-su .iti-flag.ch {

  height: 15px;

  background-position: -944px 0;

}

#custom-html-su .iti-flag.ci {

  height: 14px;

  background-position: -961px 0;

}

#custom-html-su .iti-flag.ck {

  height: 10px;

  background-position: -983px 0;

}

#custom-html-su .iti-flag.cl {

  height: 14px;

  background-position: -1005px 0;

}

#custom-html-su .iti-flag.cm {

  height: 14px;

  background-position: -1027px 0;

}

#custom-html-su .iti-flag.cn {

  height: 14px;

  background-position: -1049px 0;

}

#custom-html-su .iti-flag.co {

  height: 14px;

  background-position: -1071px 0;

}

#custom-html-su .iti-flag.cp {

  height: 14px;

  background-position: -1093px 0;

}

#custom-html-su .iti-flag.cr {

  height: 12px;

  background-position: -1115px 0;

}

#custom-html-su .iti-flag.cu {

  height: 10px;

  background-position: -1137px 0;

}

#custom-html-su .iti-flag.cv {

  height: 12px;

  background-position: -1159px 0;

}

#custom-html-su .iti-flag.cw {

  height: 14px;

  background-position: -1181px 0;

}

#custom-html-su .iti-flag.cx {

  height: 10px;

  background-position: -1203px 0;

}

#custom-html-su .iti-flag.cy {

  height: 13px;

  background-position: -1225px 0;

}

#custom-html-su .iti-flag.cz {

  height: 14px;

  background-position: -1247px 0;

}

#custom-html-su .iti-flag.de {

  height: 12px;

  background-position: -1269px 0;

}

#custom-html-su .iti-flag.dg {

  height: 10px;

  background-position: -1291px 0;

}

#custom-html-su .iti-flag.dj {

  height: 14px;

  background-position: -1313px 0;

}

#custom-html-su .iti-flag.dk {

  height: 15px;

  background-position: -1335px 0;

}

#custom-html-su .iti-flag.dm {

  height: 10px;

  background-position: -1357px 0;

}

#custom-html-su .iti-flag.do {

  height: 13px;

  background-position: -1379px 0;

}

#custom-html-su .iti-flag.dz {

  height: 14px;

  background-position: -1401px 0;

}

#custom-html-su .iti-flag.ea {

  height: 14px;

  background-position: -1423px 0;

}

#custom-html-su .iti-flag.ec {

  height: 14px;

  background-position: -1445px 0;

}

#custom-html-su .iti-flag.ee {

  height: 13px;

  background-position: -1467px 0;

}

#custom-html-su .iti-flag.eg {

  height: 14px;

  background-position: -1489px 0;

}

#custom-html-su .iti-flag.eh {

  height: 10px;

  background-position: -1511px 0;

}

#custom-html-su .iti-flag.er {

  height: 10px;

  background-position: -1533px 0;

}

#custom-html-su .iti-flag.es {

  height: 14px;

  background-position: -1555px 0;

}

#custom-html-su .iti-flag.et {

  height: 10px;

  background-position: -1577px 0;

}

#custom-html-su .iti-flag.eu {

  height: 14px;

  background-position: -1599px 0;

}

#custom-html-su .iti-flag.fi {

  height: 12px;

  background-position: -1621px 0;

}

#custom-html-su .iti-flag.fj {

  height: 10px;

  background-position: -1643px 0;

}

#custom-html-su .iti-flag.fk {

  height: 10px;

  background-position: -1665px 0;

}

#custom-html-su .iti-flag.fm {

  height: 11px;

  background-position: -1687px 0;

}

#custom-html-su .iti-flag.fo {

  height: 15px;

  background-position: -1709px 0;

}

#custom-html-su .iti-flag.fr {

  height: 14px;

  background-position: -1731px 0;

}

#custom-html-su .iti-flag.ga {

  height: 15px;

  background-position: -1753px 0;

}

#custom-html-su .iti-flag.gb {

  height: 10px;

  background-position: -1775px 0;

}

#custom-html-su .iti-flag.gd {

  height: 12px;

  background-position: -1797px 0;

}

#custom-html-su .iti-flag.ge {

  height: 14px;

  background-position: -1819px 0;

}

#custom-html-su .iti-flag.gf {

  height: 14px;

  background-position: -1841px 0;

}

#custom-html-su .iti-flag.gg {

  height: 14px;

  background-position: -1863px 0;

}

#custom-html-su .iti-flag.gh {

  height: 14px;

  background-position: -1885px 0;

}

#custom-html-su .iti-flag.gi {

  height: 10px;

  background-position: -1907px 0;

}

#custom-html-su .iti-flag.gl {

  height: 14px;

  background-position: -1929px 0;

}

#custom-html-su .iti-flag.gm {

  height: 14px;

  background-position: -1951px 0;

}

#custom-html-su .iti-flag.gn {

  height: 14px;

  background-position: -1973px 0;

}

#custom-html-su .iti-flag.gp {

  height: 14px;

  background-position: -1995px 0;

}

#custom-html-su .iti-flag.gq {

  height: 14px;

  background-position: -2017px 0;

}

#custom-html-su .iti-flag.gr {

  height: 14px;

  background-position: -2039px 0;

}

#custom-html-su .iti-flag.gs {

  height: 10px;

  background-position: -2061px 0;

}

#custom-html-su .iti-flag.gt {

  height: 13px;

  background-position: -2083px 0;

}

#custom-html-su .iti-flag.gu {

  height: 11px;

  background-position: -2105px 0;

}

#custom-html-su .iti-flag.gw {

  height: 10px;

  background-position: -2127px 0;

}

#custom-html-su .iti-flag.gy {

  height: 12px;

  background-position: -2149px 0;

}

#custom-html-su .iti-flag.hk {

  height: 14px;

  background-position: -2171px 0;

}

#custom-html-su .iti-flag.hm {

  height: 10px;

  background-position: -2193px 0;

}

#custom-html-su .iti-flag.hn {

  height: 10px;

  background-position: -2215px 0;

}

#custom-html-su .iti-flag.hr {

  height: 10px;

  background-position: -2237px 0;

}

#custom-html-su .iti-flag.ht {

  height: 12px;

  background-position: -2259px 0;

}

#custom-html-su .iti-flag.hu {

  height: 10px;

  background-position: -2281px 0;

}

#custom-html-su .iti-flag.ic {

  height: 14px;

  background-position: -2303px 0;

}

#custom-html-su .iti-flag.id {

  height: 14px;

  background-position: -2325px 0;

}

#custom-html-su .iti-flag.ie {

  height: 10px;

  background-position: -2347px 0;

}

#custom-html-su .iti-flag.il {

  height: 15px;

  background-position: -2369px 0;

}

#custom-html-su .iti-flag.im {

  height: 10px;

  background-position: -2391px 0;

}

#custom-html-su .iti-flag.in {

  height: 14px;

  background-position: -2413px 0;

}

#custom-html-su .iti-flag.io {

  height: 10px;

  background-position: -2435px 0;

}

#custom-html-su .iti-flag.iq {

  height: 14px;

  background-position: -2457px 0;

}

#custom-html-su .iti-flag.ir {

  height: 12px;

  background-position: -2479px 0;

}

#custom-html-su .iti-flag.is {

  height: 15px;

  background-position: -2501px 0;

}

#custom-html-su .iti-flag.it {

  height: 14px;

  background-position: -2523px 0;

}

#custom-html-su .iti-flag.je {

  height: 12px;

  background-position: -2545px 0;

}

#custom-html-su .iti-flag.jm {

  height: 10px;

  background-position: -2567px 0;

}

#custom-html-su .iti-flag.jo {

  height: 10px;

  background-position: -2589px 0;

}

#custom-html-su .iti-flag.jp {

  height: 14px;

  background-position: -2611px 0;

}

#custom-html-su .iti-flag.ke {

  height: 14px;

  background-position: -2633px 0;

}

#custom-html-su .iti-flag.kg {

  height: 12px;

  background-position: -2655px 0;

}

#custom-html-su .iti-flag.kh {

  height: 13px;

  background-position: -2677px 0;

}

#custom-html-su .iti-flag.ki {

  height: 10px;

  background-position: -2699px 0;

}

#custom-html-su .iti-flag.km {

  height: 12px;

  background-position: -2721px 0;

}

#custom-html-su .iti-flag.kn {

  height: 14px;

  background-position: -2743px 0;

}

#custom-html-su .iti-flag.kp {

  height: 10px;

  background-position: -2765px 0;

}

#custom-html-su .iti-flag.kr {

  height: 14px;

  background-position: -2787px 0;

}

#custom-html-su .iti-flag.kw {

  height: 10px;

  background-position: -2809px 0;

}

#custom-html-su .iti-flag.ky {

  height: 10px;

  background-position: -2831px 0;

}

#custom-html-su .iti-flag.kz {

  height: 10px;

  background-position: -2853px 0;

}

#custom-html-su .iti-flag.la {

  height: 14px;

  background-position: -2875px 0;

}

#custom-html-su .iti-flag.lb {

  height: 14px;

  background-position: -2897px 0;

}

#custom-html-su .iti-flag.lc {

  height: 10px;

  background-position: -2919px 0;

}

#custom-html-su .iti-flag.li {

  height: 12px;

  background-position: -2941px 0;

}

#custom-html-su .iti-flag.lk {

  height: 10px;

  background-position: -2963px 0;

}

#custom-html-su .iti-flag.lr {

  height: 11px;

  background-position: -2985px 0;

}

#custom-html-su .iti-flag.ls {

  height: 14px;

  background-position: -3007px 0;

}

#custom-html-su .iti-flag.lt {

  height: 12px;

  background-position: -3029px 0;

}

#custom-html-su .iti-flag.lu {

  height: 12px;

  background-position: -3051px 0;

}

#custom-html-su .iti-flag.lv {

  height: 10px;

  background-position: -3073px 0;

}

#custom-html-su .iti-flag.ly {

  height: 10px;

  background-position: -3095px 0;

}

#custom-html-su .iti-flag.ma {

  height: 14px;

  background-position: -3117px 0;

}

#custom-html-su .iti-flag.mc {

  height: 15px;

  background-position: -3139px 0;

}

#custom-html-su .iti-flag.md {

  height: 10px;

  background-position: -3160px 0;

}

#custom-html-su .iti-flag.me {

  height: 10px;

  background-position: -3182px 0;

}

#custom-html-su .iti-flag.mf {

  height: 14px;

  background-position: -3204px 0;

}

#custom-html-su .iti-flag.mg {

  height: 14px;

  background-position: -3226px 0;

}

#custom-html-su .iti-flag.mh {

  height: 11px;

  background-position: -3248px 0;

}

#custom-html-su .iti-flag.mk {

  height: 10px;

  background-position: -3270px 0;

}

#custom-html-su .iti-flag.ml {

  height: 14px;

  background-position: -3292px 0;

}

#custom-html-su .iti-flag.mm {

  height: 14px;

  background-position: -3314px 0;

}

#custom-html-su .iti-flag.mn {

  height: 10px;

  background-position: -3336px 0;

}

#custom-html-su .iti-flag.mo {

  height: 14px;

  background-position: -3358px 0;

}

#custom-html-su .iti-flag.mp {

  height: 10px;

  background-position: -3380px 0;

}

#custom-html-su .iti-flag.mq {

  height: 14px;

  background-position: -3402px 0;

}

#custom-html-su .iti-flag.mr {

  height: 14px;

  background-position: -3424px 0;

}

#custom-html-su .iti-flag.ms {

  height: 10px;

  background-position: -3446px 0;

}

#custom-html-su .iti-flag.mt {

  height: 14px;

  background-position: -3468px 0;

}

#custom-html-su .iti-flag.mu {

  height: 14px;

  background-position: -3490px 0;

}

#custom-html-su .iti-flag.mv {

  height: 14px;

  background-position: -3512px 0;

}

#custom-html-su .iti-flag.mw {

  height: 14px;

  background-position: -3534px 0;

}

#custom-html-su .iti-flag.mx {

  height: 12px;

  background-position: -3556px 0;

}

#custom-html-su .iti-flag.my {

  height: 10px;

  background-position: -3578px 0;

}

#custom-html-su .iti-flag.mz {

  height: 14px;

  background-position: -3600px 0;

}

#custom-html-su .iti-flag.na {

  height: 14px;

  background-position: -3622px 0;

}

#custom-html-su .iti-flag.nc {

  height: 10px;

  background-position: -3644px 0;

}

#custom-html-su .iti-flag.ne {

  height: 15px;

  background-position: -3666px 0;

}

#custom-html-su .iti-flag.nf {

  height: 10px;

  background-position: -3686px 0;

}

#custom-html-su .iti-flag.ng {

  height: 10px;

  background-position: -3708px 0;

}

#custom-html-su .iti-flag.ni {

  height: 12px;

  background-position: -3730px 0;

}

#custom-html-su .iti-flag.nl {

  height: 14px;

  background-position: -3752px 0;

}

#custom-html-su .iti-flag.no {

  height: 15px;

  background-position: -3774px 0;

}

#custom-html-su .iti-flag.np {

  height: 15px;

  background-position: -3796px 0;

}

#custom-html-su .iti-flag.nr {

  height: 10px;

  background-position: -3811px 0;

}

#custom-html-su .iti-flag.nu {

  height: 10px;

  background-position: -3833px 0;

}

#custom-html-su .iti-flag.nz {

  height: 10px;

  background-position: -3855px 0;

}

#custom-html-su .iti-flag.om {

  height: 10px;

  background-position: -3877px 0;

}

#custom-html-su .iti-flag.pa {

  height: 14px;

  background-position: -3899px 0;

}

#custom-html-su .iti-flag.pe {

  height: 14px;

  background-position: -3921px 0;

}

#custom-html-su .iti-flag.pf {

  height: 14px;

  background-position: -3943px 0;

}

#custom-html-su .iti-flag.pg {

  height: 15px;

  background-position: -3965px 0;

}

#custom-html-su .iti-flag.ph {

  height: 10px;

  background-position: -3987px 0;

}

#custom-html-su .iti-flag.pk {

  height: 14px;

  background-position: -4009px 0;

}

#custom-html-su .iti-flag.pl {

  height: 13px;

  background-position: -4031px 0;

}

#custom-html-su .iti-flag.pm {

  height: 14px;

  background-position: -4053px 0;

}

#custom-html-su .iti-flag.pn {

  height: 10px;

  background-position: -4075px 0;

}

#custom-html-su .iti-flag.pr {

  height: 14px;

  background-position: -4097px 0;

}

#custom-html-su .iti-flag.ps {

  height: 10px;

  background-position: -4119px 0;

}

#custom-html-su .iti-flag.pt {

  height: 14px;

  background-position: -4141px 0;

}

#custom-html-su .iti-flag.pw {

  height: 13px;

  background-position: -4163px 0;

}

#custom-html-su .iti-flag.py {

  height: 11px;

  background-position: -4185px 0;

}

#custom-html-su .iti-flag.qa {

  height: 8px;

  background-position: -4207px 0;

}

#custom-html-su .iti-flag.re {

  height: 14px;

  background-position: -4229px 0;

}

#custom-html-su .iti-flag.ro {

  height: 14px;

  background-position: -4251px 0;

}

#custom-html-su .iti-flag.rs {

  height: 14px;

  background-position: -4273px 0;

}

#custom-html-su .iti-flag.ru {

  height: 14px;

  background-position: -4295px 0;

}

#custom-html-su .iti-flag.rw {

  height: 14px;

  background-position: -4317px 0;

}

#custom-html-su .iti-flag.sa {

  height: 14px;

  background-position: -4339px 0;

}

#custom-html-su .iti-flag.sb {

  height: 10px;

  background-position: -4361px 0;

}

#custom-html-su .iti-flag.sc {

  height: 10px;

  background-position: -4383px 0;

}

#custom-html-su .iti-flag.sd {

  height: 10px;

  background-position: -4405px 0;

}

#custom-html-su .iti-flag.se {

  height: 13px;

  background-position: -4427px 0;

}

#custom-html-su .iti-flag.sg {

  height: 14px;

  background-position: -4449px 0;

}

#custom-html-su .iti-flag.sh {

  height: 10px;

  background-position: -4471px 0;

}

#custom-html-su .iti-flag.si {

  height: 10px;

  background-position: -4493px 0;

}

#custom-html-su .iti-flag.sj {

  height: 15px;

  background-position: -4515px 0;

}

#custom-html-su .iti-flag.sk {

  height: 14px;

  background-position: -4537px 0;

}

#custom-html-su .iti-flag.sl {

  height: 14px;

  background-position: -4559px 0;

}

#custom-html-su .iti-flag.sm {

  height: 15px;

  background-position: -4581px 0;

}

#custom-html-su .iti-flag.sn {

  height: 14px;

  background-position: -4603px 0;

}

#custom-html-su .iti-flag.so {

  height: 14px;

  background-position: -4625px 0;

}

#custom-html-su .iti-flag.sr {

  height: 14px;

  background-position: -4647px 0;

}

#custom-html-su .iti-flag.ss {

  height: 10px;

  background-position: -4669px 0;

}

#custom-html-su .iti-flag.st {

  height: 10px;

  background-position: -4691px 0;

}

#custom-html-su .iti-flag.sv {

  height: 12px;

  background-position: -4713px 0;

}

#custom-html-su .iti-flag.sx {

  height: 14px;

  background-position: -4735px 0;

}

#custom-html-su .iti-flag.sy {

  height: 14px;

  background-position: -4757px 0;

}

#custom-html-su .iti-flag.sz {

  height: 14px;

  background-position: -4779px 0;

}

#custom-html-su .iti-flag.ta {

  height: 10px;

  background-position: -4801px 0;

}

#custom-html-su .iti-flag.tc {

  height: 10px;

  background-position: -4823px 0;

}

#custom-html-su .iti-flag.td {

  height: 14px;

  background-position: -4845px 0;

}

#custom-html-su .iti-flag.tf {

  height: 14px;

  background-position: -4867px 0;

}

#custom-html-su .iti-flag.tg {

  height: 13px;

  background-position: -4889px 0;

}

#custom-html-su .iti-flag.th {

  height: 14px;

  background-position: -4911px 0;

}

#custom-html-su .iti-flag.tj {

  height: 10px;

  background-position: -4933px 0;

}

#custom-html-su .iti-flag.tk {

  height: 10px;

  background-position: -4955px 0;

}

#custom-html-su .iti-flag.tl {

  height: 10px;

  background-position: -4977px 0;

}

#custom-html-su .iti-flag.tm {

  height: 14px;

  background-position: -4999px 0;

}

#custom-html-su .iti-flag.tn {

  height: 14px;

  background-position: -5021px 0;

}

#custom-html-su .iti-flag.to {

  height: 10px;

  background-position: -5043px 0;

}

#custom-html-su .iti-flag.tr {

  height: 14px;

  background-position: -5065px 0;

}

#custom-html-su .iti-flag.tt {

  height: 12px;

  background-position: -5087px 0;

}

#custom-html-su .iti-flag.tv {

  height: 10px;

  background-position: -5109px 0;

}

#custom-html-su .iti-flag.tw {

  height: 14px;

  background-position: -5131px 0;

}

#custom-html-su .iti-flag.tz {

  height: 14px;

  background-position: -5153px 0;

}

#custom-html-su .iti-flag.ua {

  height: 14px;

  background-position: -5175px 0;

}

#custom-html-su .iti-flag.ug {

  height: 14px;

  background-position: -5197px 0;

}

#custom-html-su .iti-flag.um {

  height: 11px;

  background-position: -5219px 0;

}

#custom-html-su .iti-flag.us {

  height: 11px;

  background-position: -5241px 0;

}

#custom-html-su .iti-flag.uy {

  height: 14px;

  background-position: -5263px 0;

}

#custom-html-su .iti-flag.uz {

  height: 10px;

  background-position: -5285px 0;

}

#custom-html-su .iti-flag.va {

  height: 15px;

  background-position: -5307px 0;

}

#custom-html-su .iti-flag.vc {

  height: 14px;

  background-position: -5324px 0;

}

#custom-html-su .iti-flag.ve {

  height: 14px;

  background-position: -5346px 0;

}

#custom-html-su .iti-flag.vg {

  height: 10px;

  background-position: -5368px 0;

}

#custom-html-su .iti-flag.vi {

  height: 14px;

  background-position: -5390px 0;

}

#custom-html-su .iti-flag.vn {

  height: 14px;

  background-position: -5412px 0;

}

#custom-html-su .iti-flag.vu {

  height: 12px;

  background-position: -5434px 0;

}

#custom-html-su .iti-flag.wf {

  height: 14px;

  background-position: -5456px 0;

}

#custom-html-su .iti-flag.ws {

  height: 10px;

  background-position: -5478px 0;

}

#custom-html-su .iti-flag.xk {

  height: 15px;

  background-position: -5500px 0;

}

#custom-html-su .iti-flag.ye {

  height: 14px;

  background-position: -5522px 0;

}

#custom-html-su .iti-flag.yt {

  height: 14px;

  background-position: -5544px 0;

}

#custom-html-su .iti-flag.za {

  height: 14px;

  background-position: -5566px 0;

}

#custom-html-su .iti-flag.zm {

  height: 14px;

  background-position: -5588px 0;

}

#custom-html-su .iti-flag.zw {

  height: 10px;

  background-position: -5610px 0;

}

#custom-html-su .iti-flag {

  width: 20px;

  height: 15px;

  box-shadow: 0 0 1px 0 #888;

  background-image: url(../../../assets/images/flags.png);

  background-repeat: no-repeat;

  background-color: #dbdbdb;

  background-position: 20px 0;

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {

  #custom-html-su .iti-flag {

    background-image: url(../../../assets/images/flags2x.png);

  }

}

#custom-html-su .iti-flag.np {

  background-color: transparent;

}

#custom-html-su body,

#custom-html-su button,

#custom-html-su input,

#custom-html-su select,

#custom-html-su textarea {

  font-family: "Open Sans", Verdana, Tahoma, serif;

  color: #333333;

}

#custom-html-su h1,

#custom-html-su h2,

#custom-html-su h3,

#custom-html-su h4,

#custom-html-su h5,

#custom-html-su h6 {

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-weight: 700;

}

#custom-html-su .container-fluid.without-padding {

  padding-left: 0;

  padding-right: 0;

  overflow-x: hidden;

}

#custom-html-su .navbar-main {

  margin-bottom: 0;

  background-color: #000;

  border: 0;

  min-height: 38px;

  font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;

  font-size: 15px;

}

#custom-html-su .navbar-main li.account {

  background-color: #000000;

}

#custom-html-su .navbar-main .navbar-nav > li > a {

  color: #ffffff;

}

#custom-html-su .navbar-main .navbar-nav > li > a {

  padding-top: 9px;

  padding-bottom: 9px;

}

#custom-html-su .navbar-main .navbar-nav > .active > a,

#custom-html-su .navbar-main .navbar-nav > .active > a:focus,

#custom-html-su .navbar-main .navbar-nav > .active > a:hover,

#custom-html-su .navbar-main .navbar-nav > .open > a,

#custom-html-su .navbar-main .navbar-nav > .open > a:focus,

#custom-html-su .navbar-main .navbar-nav > .open > a:hover,

#custom-html-su .navbar-main .navbar-nav > li > a:focus,

#custom-html-su .navbar-main .navbar-nav > li > a:hover {

  color: #eee;

  background-color: #000000;

}

#custom-html-su #main-menu .navbar-nav {

  margin-left: -15px;

  margin-right: -15px;

}

#custom-html-su .navbar-main .dropdown-menu {

  padding: 3px 0;

  border-top: 0;

  border-radius: 0;

}

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > .active > a,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > .active > a:focus,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > .active > a:hover,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > .open > a,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > .open > a:focus,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > .open > a:hover,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > li > a:focus,

#custom-html-su .navbar-main .navbar-nav .dropdown-menu > li > a:hover {

  color: #333;

  background-color: #eeeeee;

}

@media (max-width: 767px) {

  #custom-html-su .navbar-main .navbar-nav .open .dropdown-menu > li > a {

    color: #dddddd;

  }

  #custom-html-su .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover {

    color: #ffffff;

  }

}

@media (max-width: 991px) {

  #custom-html-su .navbar-header {

    float: none;

  }

  #custom-html-su .navbar-left,

  #custom-html-su .navbar-right {

    float: none !important;

  }

  #custom-html-su .navbar-toggle {

    display: block;

  }

  #custom-html-su .navbar-collapse {

    border-top: 1px solid transparent;

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);

  }

  #custom-html-su .navbar-fixed-top {

    top: 0;

    border-width: 0 0 1px;

  }

  #custom-html-su .navbar-collapse.collapse {

    display: none !important;

  }

  #custom-html-su .navbar-nav {

    float: none!important;

    margin-top: 7px;

  }

  #custom-html-su .navbar-nav > li {

    float: none;

  }

  #custom-html-su .navbar-nav > li > a {

    padding-top: 10px;

    padding-bottom: 10px;

  }

  #custom-html-su .collapse.in {

    display: block!important;

    margin-bottom: 10px;

  }

}

#custom-html-su .panel {

  font-size: 0.9em;

}

#custom-html-su .list-group {

  font-size: 0.9em;

}

#custom-html-su .list-group-item {

  border-color: #f5f5f5;

}

#custom-html-su .list-group-item .badge {

  background-color: transparent;

  color: #666666;

}

#custom-html-su a.list-group-item.active,

#custom-html-su a.list-group-item.active:focus,

#custom-html-su a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-su .pagination {

  font-size: 0.8em;

}

#custom-html-su .pagination > .active > a,

#custom-html-su .pagination > .active > a:focus,

#custom-html-su .pagination > .active > a:hover,

#custom-html-su .pagination > .active > span,

#custom-html-su .pagination > .active > span:focus,

#custom-html-su .pagination > .active > span:hover {

  color: #fff;

  background-color: #000;

  border-color: #000000;

}

#custom-html-su .dropdown-menu > li > a:focus,

#custom-html-su .navbar-main .dropdown-menu > li > a:hover {

  text-decoration: none;

  color: #fff;

  background-color: #000000;

}

#custom-html-su .label {

  border-radius: 0;

}

#custom-html-su input[type=file].form-control {

  height: inherit;

  margin-bottom: 5px;

}

#custom-html-su .list-group-item {

  padding: 7px 15px;

}

#custom-html-su .panel-body {

  padding: 10px 15px;

}

#custom-html-su .has-feedback label ~ .form-control-feedback {

  top: 27px !important;

}

#custom-html-su .list-group-item > i.far.fa-circle {

  color: grey;

}

#custom-html-su .btn {

  overflow: hidden;

}

#custom-html-su body,

#custom-html-su html {

  height: 100%;

}

#custom-html-su body {

  background-color: #f8f8f8;

}

#custom-html-su h1,

#custom-html-su h2,

#custom-html-su h3,

#custom-html-su h4,

#custom-html-su h5,

#custom-html-su h6 {

  font-weight: 400;

}

#custom-html-su a {

  color: #005588;

}

#custom-html-su section#header {

  margin: 0;

  padding: 10px 0;

  background-color: #fff;

  border-radius: 5px 5px 0 0;

}

#custom-html-su section#header .logo img {

  margin: 0;

  padding: 0;

  max-height: 50px;

  vertical-align: middle;

}

#custom-html-su section#header .logo-text {

  font-family: Raleway;

  font-weight: 400;

  font-size: 2.6em;

  white-space: nowrap;

}

#custom-html-su section#header .search {

  margin: 20px 0;

}

#custom-html-su section#header .search .form-control {

  border-color: #eee;

  box-shadow: none;

}

#custom-html-su section#header .search .btn {

  background-color: #eee;

  border-color: #eee;

  color: #888888;

}

#custom-html-su section#main-body {

  margin: 0;

  padding: 20px 0;

  min-height: 350px;

  background-image: url("https://siberianhuskywebdesignsinc.com/hosting/templates/huskywebdesigns/img/bodybackground.jpg");

  background-attachment: fixed;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-color: #ffffff;

}

#custom-html-su section#main-content {

  margin-bottom: 60px;

}

#custom-html-su .main-content {

  margin-bottom: 60px;

  min-height: 300px;

}

#custom-html-su section#footer {

  margin: 0;

  padding: 20px 10px;

  background-color: #f8f8f8;

  border-top: 1px solid #ddd;

  color: #666;

  font-size: 0.9em;

}

#custom-html-su section#footer p {

  margin: 0;

}

@media (min-width: 450px) {

  #custom-html-su section#footer {

    line-height: 32px;

  }

}

#custom-html-su section#footer .back-to-top {

  float: right;

}

#custom-html-su section#footer .back-to-top i {

  padding: 10px;

  background-color: #ddd;

  color: #888;

  border-radius: 3px;

  opacity: 0.7;

}

#custom-html-su .adminreturndiv {

  display: none !important;

}

#custom-html-su .alert-bordered-left {

  border: 0;

  border-left: 3px solid;

  border-radius: 0;

  text-align: left;

}

#custom-html-su .truncate {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-su .navbar-main > li.dropdown:hover > ul.dropdown-menu {

  display: block;

}

#custom-html-su .navbar-main .navbar-toggle {

  border-color: transparent;

}

#custom-html-su .navbar-main .navbar-toggle .icon-bar {

  background-color: #eeeeee;

}

#custom-html-su .navbar-main .navbar-toggle:focus,

#custom-html-su .navbar-main .navbar-toggle:hover {

  background-color: transparent;

}

#custom-html-su .navbar-main .navbar-toggle:focus .icon-bar,

#custom-html-su .navbar-main .navbar-toggle:hover .icon-bar {

  background-color: #bbbbbb;

}

@media (max-width: 991px) {

  #custom-html-su .navbar-main .navbar-nav > li > a {

    padding: 3px 20px;

  }

  #custom-html-su .navbar-main .open .dropdown-menu .dropdown-header,

  #custom-html-su .navbar-main .open .dropdown-menu > li > a {

    padding: 3px 25px;

  }

}

#custom-html-su div.header-lined h1 {

  margin-top: 0;

  margin-bottom: 15px;

  padding: 6px 0;

  border-bottom: 1px solid #ccc;

  font-weight: 400;

  color: #005588;

}

#custom-html-su div.header-lined .breadcrumb {

  margin-top: -15px;

  padding-left: 0;

  background: 0 0;

  font-size: .8em;

  border-radius: 0 0 4px 4px;

}

#custom-html-su div.header-lined .breadcrumb li a {

  color: #888888;

}

#custom-html-su div.header-lined .breadcrumb > .active {

  color: #000000;

}

#custom-html-su div.header-lined small {

  white-space: nowrap;

  overflow: hidden;

}

@media (max-width: 600px) {

  #custom-html-su .h1,

  #custom-html-su h1 {

    font-size: 26px;

  }

  #custom-html-su .h2,

  #custom-html-su h2 {

    font-size: 20px;

  }

  #custom-html-su .h3,

  #custom-html-su h3 {

    font-size: 16px;

  }

  #custom-html-su .h4,

  #custom-html-su h4 {

    font-size: 14px;

  }

  #custom-html-su .h5,

  #custom-html-su h5 {

    font-size: 12px;

  }

  #custom-html-su .h6,

  #custom-html-su h6 {

    font-size: 11px;

  }

  #custom-html-su div.header-lined small {

    display: none;

  }

}

@media (min-width: 380px) {

  #custom-html-su .btn-input-padded-responsive {

    padding-left: 20px;

    padding-right: 20px;

  }

}

@media (min-width: 500px) {

  #custom-html-su .btn-input-padded-responsive {

    padding-left: 35px;

    padding-right: 35px;

  }

}

#custom-html-su .margin-10 {

  margin: 10px;

}

#custom-html-su .margin-bottom {

  margin-bottom: 20px;

}

#custom-html-su .margin-top-5 {

  margin-top: 5px;

}

#custom-html-su .margin-bottom-5 {

  margin-bottom: 5px;

}

#custom-html-su .col-button-left {

  padding-left: 0;

  padding-right: 7px;

}

#custom-html-su .col-button-right {

  padding-left: 7px;

  padding-right: 0;

}

#custom-html-su .input-inline {

  display: inline-block;

}

#custom-html-su .input-inline-100 {

  width: 100px;

}

#custom-html-su .select-inline {

  display: inline-block;

  width: auto;

}

@media (min-width: 992px) {

  #custom-html-su .pull-md-left {

    float: left;

  }

  #custom-html-su .pull-md-right {

    float: right;

  }

}

@media (min-width: 768px) {

  #custom-html-su .pull-sm-left {

    float: left;

  }

  #custom-html-su .pull-sm-right {

    float: right;

  }

  #custom-html-su .text-right-sm {

    text-align: right;

  }

}

#custom-html-su .logincontainer {

  margin: 40px auto 100px auto;

  padding: 0 10px;

  max-width: 500px;

}

#custom-html-su .logincontainer.with-social {

  max-width: 650px;

}

#custom-html-su .logincontainer .social-signin-btns {

  padding: 23px 0;

}

@media (max-width: 500px) {

  #custom-html-su .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

@media (max-width: 600px) {

  #custom-html-su .logincontainer {

    margin: 0 auto 30px auto;

  }

}

@media (min-width: 768px) {

  #custom-html-su .logincontainer.with-social .login-form {

    padding-right: 29px;

    border-right: 1px solid #dddddd;

  }

  #custom-html-su .logincontainer .social-signin-btns .btn {

    display: block;

    width: 100%;

  }

}

#custom-html-su i.icon-rss {

  color: #ff6600;

}

#custom-html-su section#main-menu {

  background-color: #000000;

}

#custom-html-su section#home-banner {

  margin: 0;

  padding: 380px 0 60px;

  background-image: url("https://hosting.siberianhuskywebdesignsinc.com/templates/huskywebdesignsinc/img/banner.jpg");

  background-size: 100% 100%;

  background-repeat: no-repeat;

  color: #ffffff;

}

#custom-html-su section#home-banner.with-recaptcha {

  padding-bottom: 90px;

}

#custom-html-su section#home-banner .tooltip-inner {

  background-color: #00a3c6;

}

#custom-html-su section#home-banner .tooltip.left .tooltip-arrow {

  border-left-color: #00a3c6;

}

#custom-html-su section#home-banner .tooltip.bottom .tooltip-arrow {

  border-bottom-color: #00a3c6;

}

#custom-html-su section#home-banner .tooltip.right .tooltip-arrow {

  border-right-color: #00a3c6;

}

#custom-html-su section#home-banner h2 {

  margin: 0;

  padding: 0 25px 10px 25px;

}

#custom-html-su section#home-banner .form-control {

  border-radius: 0;

  border: 0;

  box-shadow: none;

  font-weight: 300;

}

#custom-html-su section#home-banner .btn {

  border-radius: 0;

  border: 0;

  font-weight: 300;

  color: #ffffff;

}

#custom-html-su section#home-banner .btn.search {

  background-color: #4ab98b;

}

#custom-html-su section#home-banner .btn.transfer {

  background-color: #bbbbbb;

}

@media (max-width: 992px) {

  #custom-html-su section#home-banner h2 {

    font-size: 26px;

  }

}

@media (max-width: 767px) {

  #custom-html-su section#home-banner h2 {

    font-size: 22px;

  }

}

#custom-html-su .home-shortcuts {

  margin: 0;

  background: #000;

  color: #ffffff;

}

#custom-html-su .home-shortcuts ul {

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-su .home-shortcuts li {

  float: left;

  width: 24%;

  padding: 5px 3px;

  border-right: 1px solid #000;

  font-size: .9em;

  text-align: center;

  cursor: pointer;

  overflow: hidden;

  white-space: nowrap;

}

#custom-html-su .home-shortcuts li:first-child {

  border-left: 1px solid #000000;

}

#custom-html-su .home-shortcuts li a {

  display: block;

  color: #fff;

  text-decoration: none;

}

#custom-html-su .home-shortcuts li i {

  font-size: 22px;

}

#custom-html-su .home-shortcuts li p {

  margin: 2px 0 0;

  text-transform: uppercase;

}

#custom-html-su .home-shortcuts li span {

  display: none;

}

#custom-html-su .home-shortcuts li:hover span {

  display: inline-block;

}

#custom-html-su .home-shortcuts .lead {

  margin: 0;

  line-height: 55px;

}

@media (max-width: 992px) {

  #custom-html-su .home-shortcuts ul {

    text-align: center;

  }

}

@media (max-width: 767px) {

  #custom-html-su .home-shortcuts li {

    display: block;

    float: none;

    width: 100%;

    border-right: 0;

    border-bottom: 1px solid #000000;

  }

  #custom-html-su .home-shortcuts li:first-child {

    border-left: 0;

  }

  #custom-html-su .home-shortcuts li:last-child {

    border: 0;

  }

  #custom-html-su .home-shortcuts ul:hover li {

    width: 100%;

  }

}

#custom-html-su .text-domain {

  font-size: 12px;

  color: #000000;

}

#custom-html-su .client-home-panels .panel > .panel-heading {

  background-color: #fff;

  border-bottom: 0;

  font-weight: 700;

}

#custom-html-su .client-home-panels .panel > .panel-heading .panel-title .btn {

  color: #fff;

  border: 0;

}

#custom-html-su .client-home-panels .panel > .panel-heading .panel-title .btn:hover {

  color: #000000;

}

#custom-html-su .client-home-panels .panel small {

  color: #888888;

}

#custom-html-su .client-home-panels .panel > .panel-body {

  padding: 0;

  max-height: 170px;

  overflow: auto;

}

#custom-html-su .client-home-panels .panel > .panel-footer {

  border-top: 0;

}

#custom-html-su .client-home-panels .panel > .panel-body p {

  padding: 10px 15px;

}

#custom-html-su .client-home-panels .panel > .list-group {

  max-height: 170px;

  overflow: auto;

  border-top: 1px solid #ddd;

  border-bottom: 1px solid #dddddd;

}

#custom-html-su .client-home-panels .panel > .list-group .list-group-item {

  padding: 4px 10px;

}

#custom-html-su .client-home-panels .panel > .list-group .list-group-item:last-child {

  border-bottom: 0;

}

#custom-html-su .home-kb-search {

  margin-bottom: 15px;

}

#custom-html-su .home-kb-search .form-control {

  padding-left: 50px;

  background-color: #fff;

  border: 1px solid #eee;

  color: #999;

  font-weight: 300;

}

#custom-html-su .home-kb-search .form-control:focus {

  border-color: #eee;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-su .home-kb-search i {

  float: left;

  margin-top: -30px;

  margin-left: 20px;

  color: #777777;

}

#custom-html-su .tiles {

  margin: 0 15px 15px 15px;

}

#custom-html-su .tiles .tile {

  padding: 12px 20px;

  background-color: #f8f8f8;

  border-right: 1px solid #cccccc;

}

#custom-html-su .tiles .tile a {

  text-decoration: none;

}

#custom-html-su .tiles .tile:hover {

  background-color: #f2f2f2;

  cursor: pointer;

}

#custom-html-su .tiles .tile .highlight {

  margin-top: 4px;

  height: 2px;

  border-radius: 2px;

}

#custom-html-su .tiles .tile:last-child {

  border: 0;

}

@media (max-width: 767px) {

  #custom-html-su .tiles .tile:nth-child(2) {

    border: 0;

  }

  #custom-html-su .tiles .tile:nth-child(1),

  #custom-html-su .tiles .tile:nth-child(2) {

    border-bottom: 1px solid #cccccc;

  }

}

#custom-html-su .tile .icon {

  position: absolute;

  top: 10px;

  right: 10px;

  font-size: 48px;

  line-height: 1;

  color: #cccccc;

}

#custom-html-su .tile .stat {

  margin-top: 20px;

  font-size: 40px;

  line-height: 1;

}

#custom-html-su .tile .title {

  font-weight: 700;

  color: #888;

  text-transform: uppercase;

  font-size: 12px;

}

#custom-html-su .panel.panel-accent-gold {

  border-top: 3px solid #f0ad4e;

}

#custom-html-su .panel.panel-accent-green {

  border-top: 3px solid #5cb85c;

}

#custom-html-su .panel.panel-accent-red {

  border-top: 3px solid #d9534f;

}

#custom-html-su .panel.panel-accent-blue {

  border-top: 3px solid #5bc0de;

}

#custom-html-su .panel.panel-accent-orange {

  border-top: 3px solid #f39c12;

}

#custom-html-su .panel.panel-accent-pink {

  border-top: 3px solid #e671b8;

}

#custom-html-su .panel.panel-accent-purple {

  border-top: 3px solid #7b4f9d;

}

#custom-html-su .panel.panel-accent-lime {

  border-top: 3px solid #8cbf26;

}

#custom-html-su .panel.panel-accent-magenta {

  border-top: 3px solid #ff0097;

}

#custom-html-su .panel.panel-accent-teal {

  border-top: 3px solid #00aba9;

}

#custom-html-su .panel.panel-accent-turquoise {

  border-top: 3px solid #1abc9c;

}

#custom-html-su .panel.panel-accent-emerald {

  border-top: 3px solid #2ecc71;

}

#custom-html-su .panel.panel-accent-amethyst {

  border-top: 3px solid #9b59b6;

}

#custom-html-su .panel.panel-accent-wet-asphalt {

  border-top: 3px solid #34495e;

}

#custom-html-su .panel.panel-accent-midnight-blue {

  border-top: 3px solid #2c3e50;

}

#custom-html-su .panel.panel-accent-sun-flower {

  border-top: 3px solid #f1c40f;

}

#custom-html-su .panel.panel-accent-pomegranate {

  border-top: 3px solid #c0392b;

}

#custom-html-su .panel.panel-accent-silver {

  border-top: 3px solid #bdc3c7;

}

#custom-html-su .panel.panel-accent-asbestos {

  border-top: 3px solid #7f8c8d;

}

#custom-html-su .bg-color-gold {

  background-color: #f0ad4e;

}

#custom-html-su .bg-color-green {

  background-color: #5cb85c;

}

#custom-html-su .bg-color-red {

  background-color: #d9534f;

}

#custom-html-su .bg-color-blue {

  background-color: #5bc0de;

}

#custom-html-su .bg-color-orange {

  background-color: #f39c12;

}

#custom-html-su .bg-color-pink {

  background-color: #e671b8;

}

#custom-html-su .bg-color-purple {

  background-color: #7b4f9d;

}

#custom-html-su .bg-color-lime {

  background-color: #8cbf26;

}

#custom-html-su .bg-color-magenta {

  background-color: #ff0097;

}

#custom-html-su .bg-color-teal {

  background-color: #00aba9;

}

#custom-html-su .bg-color-turquoise {

  background-color: #1abc9c;

}

#custom-html-su .bg-color-emerald {

  background-color: #2ecc71;

}

#custom-html-su .bg-color-amethyst {

  background-color: #9b59b6;

}

#custom-html-su .bg-color-wet-asphalt {

  background-color: #34495e;

}

#custom-html-su .bg-color-midnight-blue {

  background-color: #2c3e50;

}

#custom-html-su .bg-color-sun-flower {

  background-color: #f1c40f;

}

#custom-html-su .bg-color-pomegranate {

  background-color: #c0392b;

}

#custom-html-su .bg-color-silver {

  background-color: #bdc3c7;

}

#custom-html-su .bg-color-asbestos {

  background-color: #7f8c8d;

}

#custom-html-su ul.top-nav {

  float: right;

  margin-top: 8px;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  white-space: nowrap;

}

#custom-html-su ul.top-nav > li,

#custom-html-su ul.top-nav > li > a {

  display: inline-block;

  position: relative;

}

#custom-html-su ul.top-nav > li > a {

  padding: 6px 10px;

  color: #777;

  line-height: 20px;

  text-decoration: none;

}

#custom-html-su ul.top-nav > li:active > a,

#custom-html-su ul.top-nav > li:focus > a,

#custom-html-su ul.top-nav > li:hover > a,

#custom-html-su ul.top-nav > li > a:focus {

  color: #333;

  text-decoration: none;

  background: 0 0;

}

#custom-html-su ul.top-nav > li.primary-action {

  padding-left: 15px;

  margin-left: 5px;

  border-left: solid 1px #dddddd;

}

#custom-html-su ul.top-nav > li.primary-action > a.btn {

  padding: 6px 15px;

  background-color: #000;

  color: #fff;

  border-radius: 3px;

}

#custom-html-su ul.top-nav > li > a.btn-logged-in-admin {

  margin-left: 5px;

  font-size: 1.5em;

}

#custom-html-su ul.top-nav .tooltip-inner {

  margin-left: -200px;

  min-width: 250px;

  width: 250px;

}

@media (max-width: 991px) {

  #custom-html-su ul.top-nav {

    font-size: 0.9em;

  }

  #custom-html-su ul.top-nav > li.primary-action > a.btn {

    padding: 4px 12px;

    font-size: 1em;

  }

  #custom-html-su ul.top-nav > li > a.btn-logged-in-admin {

    margin-top: -2px;

  }

}

@media (max-width: 767px) {

  #custom-html-su ul.top-nav {

    margin: 0;

    font-size: 0.8em;

  }

  #custom-html-su ul.top-nav > li > a {

    padding: 6px;

  }

  #custom-html-su ul.top-nav > li.primary-action > a.btn {

    padding: 3px 12px;

    font-size: 1em;

  }

}

#custom-html-su div.home-twitter {

  margin-top: 20px;

  margin-bottom: 40px;

}

#custom-html-su div.tweet > i {

  color: #2babcf;

  float: left;

  margin-right: 15px;

}

#custom-html-su div.tweet span {

  font-size: 12px;

  color: #cccccc;

}

#custom-html-su div.domainresults div:not(.btn-group) {

  margin: 0;

  padding: 10px 25px;

  background-color: #ddd;

  color: #666;


  font-size: 1em;

  border-radius: 6px 6px 0 0;

}

#custom-html-su div.domainresults div:not(.btn-group) span {

  padding-left: 20px;

  font-size: 14px;

  color: #888888;

}

#custom-html-su div.domainresults table tr td {

  padding: 5px 30px;

  line-height: 40px;

}

#custom-html-su .domain-checker-container {

  margin: 20px 0;

  padding: 0;

  background-color: #ffce44;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

  background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffb201), to(#ffd960));

  background: -webkit-linear-gradient(top, #ffd960, #ffb201);

  background: -moz-linear-gradient(top, #ffd960, #ffb201);

  background: -ms-linear-gradient(top, #ffd960, #ffb201);

  background: -o-linear-gradient(top, #ffd960, #ffb201);

}

#custom-html-su .domain-checker-bg {

  margin: 0;

  padding: 80px 0;

  background-repeat: no-repeat;

  background-position: 110% -5px;

  background-image: url(../../../assets/images/globe.png);

}

@media (max-width: 992px) {

  #custom-html-su .domain-checker-bg {

    padding: 40px 0;

  }

}

#custom-html-su .domain-checker-container .input-group-box {

  margin: 0 auto;

  padding: 10px;

  width: 100%;

  background-color: #fff;

  -moz-border-radius: 10px;

  -webkit-border-radius: 10px;

  -o-border-radius: 10px;

  border-radius: 10px;

}

#custom-html-su .domain-bulk-options-box {

  position: absolute;

  top: 18px;

  right: 134px;

  z-index: 100;

}

@media (max-width: 767px) {

  #custom-html-su .domain-checker-container .input-group-box .input-group-btn {

    display: block;

    width: 100%;

  }

  #custom-html-su .domain-checker-container .input-group-box .input-group-btn .btn {

    width: 100%;

    border-radius: 6px;

  }

  #custom-html-su .domain-checker-container .input-group-box .form-control {

    border-radius: 6px!important;

    margin-bottom: 5px;

    float: none;

  }

}

#custom-html-su .domain-check-availability {

  width: 100px;

}

#custom-html-su .domain-step-options {

  min-height: 300px;

}

#custom-html-su .domain-checker-result-headline {

  margin: 20px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-su .domain-checker-available {

  color: #5cb85c;

}

#custom-html-su .domain-checker-invalid,

#custom-html-su .domain-checker-unavailable {

  color: #d9534f;

}

#custom-html-su div.domainresults div.domain-checkout-area {

  display: none;

  float: right;

  padding: 8px 40px 0;

}

#custom-html-su .domain-disclaimer-area {

  margin: 0 0 25px 0;

  font-size: 12px;

}

#custom-html-su .domain-bulk-domain-well {

  width: 60%;

}

#custom-html-su .domain-tld-pricing-table-responsive {

  border: 0;

  margin-bottom: 0;

}

#custom-html-su a.domain-tld-pricing-category {

  display: block;

  text-align: center;

}

#custom-html-su .featured-tlds-container {

  margin: 35px 0 15px;

}

#custom-html-su .featured-tld {

  margin: 0 0 20px 0;

  border-radius: 4px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

#custom-html-su .featured-tld .img-container {

  padding: 20px 0;

  height: 115px;

  line-height: 75px;

  overflow: hidden;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-su .featured-tld .img-container {

    height: 80px;

    line-height: 40px;

  }

}

#custom-html-su .featured-tld .img-container img {

  max-width: 70%;

  max-height: 100%;

}

#custom-html-su .featured-tld .price {

  padding: 5px;

  background-color: #f9f9f9;

  color: #555;

  font-weight: 400;

  line-height: 28px;

  text-align: center;

  border-radius: 0 0 4px 4px;

}

#custom-html-su .featured-tld .price.blog {

  background-color: #a0d5cb;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.club {

  background-color: #053796;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.com {

  background-color: #3aa4da;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.couk {

  background-color: #1d3774;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.host {

  background-color: #ed4d42;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.live {

  background-color: #ff9e19;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.name {

  background-color: #44b03e;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.net {

  background-color: #efc00e;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.online {

  background-color: #38ce6a;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.rocks {

  background-color: #fd563c;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.shop {

  background-color: #ff5900;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.social {

  background-color: #ff9a00;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.store {

  background-color: #0eadb3;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.tech {

  background-color: #0db04b;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.tv {

  background-color: #ea3438;

  color: #ffffff;

}

#custom-html-su .featured-tld .price.website {

  background-color: #2db9ea;

  color: #ffffff;

}

#custom-html-su .tld-filters {

  margin: 0 0 25px 0;

}

#custom-html-su .tld-filters a {

  display: inline-block;

  margin-bottom: 4px;

  padding: 5px 6px;

  font-size: 90%;

  font-weight: 400;

  border-radius: 2px;

}

#custom-html-su .domain-pricing .tld-row {

  padding-top: 3px;

  padding-bottom: 3px;

  border-bottom: 1px solid #f5f5f5;

}

#custom-html-su .domain-pricing .tld-row.highlighted {

  background: #f3f9fd;

}

#custom-html-su .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-su .domain-pricing .tld-pricing-header .col-xs-2 {

  height: 56px;

}

#custom-html-su .domain-pricing .tld-pricing-header .col-sm-2,

#custom-html-su .domain-pricing .tld-pricing-header .col-sm-4,

#custom-html-su .domain-pricing .tld-pricing-header .col-xs-2,

#custom-html-su .domain-pricing .tld-pricing-header .col-xs-4 {

  padding-top: 4px;

  padding-bottom: 4px;

  border-bottom: 6px solid #97b5d2;

  background-color: #efefef;

  border-radius: 4px 4px 0 0;

}

#custom-html-su .domain-pricing .no-bg {

  background-color: transparent !important;

}

#custom-html-su .domain-pricing .tld-pricing-header div:nth-child(odd) {

  border-color: #369;

  background-color: #f5f5f5;

}

#custom-html-su .domain-pricing .two-row-center {

  line-height: 28px;

  margin-top: 6px;

  margin-bottom: 6px;

  border-right: 2px solid #c7d7e6;

}

#custom-html-su .domain-pricing .tld-row.no-tlds {

  display: none;

}

#custom-html-su .tld-sale-group {

  padding: 1px 3px;

  color: #fff;

  font-size: 10px;

  text-transform: uppercase;

}

#custom-html-su .tld-sale-group-hot {

  background-color: #f9615a;

}

#custom-html-su .tld-sale-group-sale {

  background-color: #f7d458;

}

#custom-html-su .tld-sale-group-new {

  background-color: #2ad588;

}

#custom-html-su div.announcement-single {

  margin: 0 0 20px 0;

}

#custom-html-su div.announcement-single blockquote {

  margin-top: 30px;

}

#custom-html-su div.announcement-single .label {

  margin-right: 10px;

}

#custom-html-su .announcement-single {

  margin: 0 0 25px 0;

}

#custom-html-su .announcement-single .title {

  font-size: 1.5em;

  font-weight: 700;

}

#custom-html-su .announcement-single p {

  margin: 2px 0 10px;

}

#custom-html-su .announcement-single .article-items {

  font-size: .85em;

  color: #888888;

}

#custom-html-su div.product-details {

  margin: 0 0 20px 0;

}

#custom-html-su div.product-details div.product-icon {

  margin: 0;

  padding: 0;

  background-color: #efefef;

  border-radius: 10px;

  padding: 30px;

  font-size: 60px;

  line-height: 1em;

}

#custom-html-su .product-status {

  margin: 0 0 20px 0;

  padding: 0;

  border-radius: 10px;

}

#custom-html-su .product-status-pending {

  background-color: #f89406;

}

#custom-html-su .product-status-active {

  background-color: #46a546;

}

#custom-html-su .product-status-suspended {

  background-color: #0768b8;

}

#custom-html-su .product-status-cancelled,

#custom-html-su .product-status-terminated {

  background-color: #666666;

}

#custom-html-su .product-status-fraud {

  background-color: #000000;

}

#custom-html-su .product-status-text {

  padding: 5px;

  color: #fff;

  text-align: center;

  text-transform: uppercase;

}

#custom-html-su div.product-details-tab-container {

  margin: 0;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-su .module-client-area {

  padding: 15px 15px 0 15px;

}

#custom-html-su .ssl-inactive {

  cursor: pointer;

}

#custom-html-su .dataTables_wrapper .dataTables_info {

  margin: 0;

  padding: 9px 10px;

  background-color: #4f5360;

  border: 0;

  border-bottom: 1px solid #fff;

  font-size: .9em;

  color: #fff;

  border-radius: 0;

  text-align: left !important;

}

#custom-html-su div.dataTables_wrapper div.dataTables_info {

  padding: 21px 30px!important;

  font-weight: 300;

}

#custom-html-su .dataTables_wrapper table.table-list {

  margin-top: 0!important;

  margin-bottom: 6px!important;

  width: 100% !important;

}

#custom-html-su .dataTables_wrapper table.table-list thead th {

  border-bottom: 4px solid #a2d27a;

  font-weight: 400;

}

#custom-html-su .dataTables_wrapper table.table-list thead th:nth-child(even) {

  border-bottom: 4px solid #7bc144;

}

#custom-html-su .dataTables_wrapper table.table-list thead th.sorting_asc,

#custom-html-su .dataTables_wrapper table.table-list thead th.sorting_desc {

  background-color: #f6f6f6;

}

#custom-html-su .dataTables_wrapper .dataTables_filter {

  float: right;

}

#custom-html-su .dataTables_wrapper .dataTables_filter label {

  margin: 0;

  padding: 12px;

}

#custom-html-su .dataTables_wrapper .dataTables_filter label .form-control {

  background: url(../../../assets/img/search.png) #ffffff no-repeat 8px 5px;

  padding: 7px 10px 7px 45px!important;

  border: 1px solid #fff;

  height: auto;

  width: 200px;

  font-size: 13px;

  border-radius: 2px;

}

@media (max-width: 600px) {

  #custom-html-su .dataTables_wrapper .dataTables_info {

    padding: 9px 10px 40px;

  }

  #custom-html-su .dataTables_wrapper .dataTables_filter {

    float: right;

    margin-top: 30px;

    width: 100%;

  }

  #custom-html-su .dataTables_wrapper .dataTables_filter label {

    display: block;

    margin: 5px;

    padding: 0;

  }

  #custom-html-su .dataTables_wrapper .dataTables_filter label .form-control {

    margin: 0;

    width: 100%;

  }

}

#custom-html-su .dataTables_wrapper .dataTables_length {

  background-color: #f6f6f6;

  font-size: .8em;

  color: #888888;

}

#custom-html-su .dataTables_wrapper .dataTables_length label {

  padding: 10px 10px 0 30px;

}

#custom-html-su .dataTables_wrapper .dataTables_length label .form-control {

  display: inline-block;

  padding: 2px;

  height: 25px;

  width: auto;

  border: 0;

}

#custom-html-su .dataTables_wrapper .dataTables_paginate {

  float: right;

  padding: 6px 30px 0;

}

#custom-html-su .dataTables_wrapper .dataTables_paginate .pagination > li > a,

#custom-html-su .dataTables_wrapper .dataTables_paginate .pagination > li > span {

  padding: 4px 8px;

}

#custom-html-su .pagination > li > a,

#custom-html-su .pagination > li > span {

  color: #444444;

}

#custom-html-su .pagination > .active > a,

#custom-html-su .pagination > .active > a:focus,

#custom-html-su .pagination > .active > a:hover,

#custom-html-su .pagination > .active > span,

#custom-html-su .pagination > .active > span:focus,

#custom-html-su .pagination > .active > span:hover {

  background-color: #4f5360;

  border-color: #4f5360;

}

#custom-html-su table.dataTable.dtr-inline.collapsed tbody td:first-child:before,

#custom-html-su table.dataTable.dtr-inline.collapsed tbody th:first-child:before {

  top: inherit!important;

  box-shadow: none!important;

  line-height: 16px !important;

}

#custom-html-su .table-container {

  padding: 0 0 25px 0;

}

#custom-html-su table.table-list thead th {

  padding: 8px;

  background-color: #fff;

  border-bottom: 1px solid #ccc;

  color: #333;

  text-align: center;

}

#custom-html-su .table-list > tbody > tr:hover {

  cursor: pointer;

  cursor: hand;

}

#custom-html-su table.table-list tbody td {

  padding: 10px;

  vertical-align: middle;

  font-size: 0.94em;

}

#custom-html-su .table-list > tbody > tr > td a.border-left {

  border-left: 1px solid #eee;

  padding-left: 20px;

  display: block;

}

#custom-html-su .table-list > tbody > tr > td {

  background-color: #ffffff;

}

#custom-html-su .table-list > tbody > tr:nth-child(even) > td {

  background-color: #f8fcfd;

}

#custom-html-su table.dtr-inline .dtr-title:empty {

  display: none !important;

}

#custom-html-su table.dtr-inline .responsive-edit-button {

  display: none;

}

#custom-html-su table.dtr-inline.collapsed .responsive-edit-button {

  display: inherit;

}

#custom-html-su .status {

  display: block;

  font-size: .9em;

  line-height: 22px;

  border: 2px solid #ccc;

  border-radius: 3px;

  background-color: #fff;

  color: #333333;

}

#custom-html-su .status-custom {

  background-color: #fff;

  color: #000;

  border: 1px solid #000;

  padding: 1px;

}

#custom-html-su .status-pending {

  color: #d9534f;

}

#custom-html-su .status-pending.transfer {

  color: #a68500;

}

#custom-html-su .status-active,

#custom-html-su .status-completed,

#custom-html-su .status-open {

  color: #3fad46;

}

#custom-html-su .status-suspended {

  color: #f0ad4e;

}

#custom-html-su .status-customer-reply {

  color: #ff6600;

}

#custom-html-su .status-answered,

#custom-html-su .status-fraud {

  color: #000000;

}

#custom-html-su .status-expired,

#custom-html-su .status-transferred.away {

  color: #004258;

}

#custom-html-su .status-cancelled {

  color: #9fa29a;

}

#custom-html-su .status-terminated {

  color: #666666;

}

#custom-html-su .status-onhold {

  color: #224488;

}

#custom-html-su .status-inprogress {

  color: #cc0000;

}

#custom-html-su .status-closed {

  color: #888888;

}

#custom-html-su .status-paid {

  color: #498302;

}

#custom-html-su .status-unpaid {

  color: #ed3e48;

}

#custom-html-su .status-cancelled {

  color: #87939f;

}

#custom-html-su .status-collections {

  color: #9a141e;

}

#custom-html-su .status-refunded {

  color: #319fc3;

}

#custom-html-su .status-customer-reply {

  color: #ff6600;

}

#custom-html-su .status-delivered {

  color: #224488;

}

#custom-html-su .status-accepted {

  color: #498302;

}

#custom-html-su .status-dead,

#custom-html-su .status-lost {

  color: #000000;

}

#custom-html-su .affiliate-stat {

  margin: 0;

  padding: 15px;

  font-size: 1.6em;

  text-align: center;

}

#custom-html-su .affiliate-stat span {

  display: block;

  font-size: 2.4em;

}

#custom-html-su .affiliate-stat i {

  float: left;

  padding: 10px;

  font-size: 4em;

}

#custom-html-su .affiliate-referral-link {

  margin: 40px 0;

}

#custom-html-su .affiliate-referral-link span {

  display: block;

  margin: 0;

  padding: 10px;

  font-size: 1.4em;

  border-radius: 10px;

  border: 1px solid #ccc;

  overflow: hidden;

}

@media (max-width: 1200px) {

  #custom-html-su .affiliate-stat {

    font-size: 1.2em;

  }

  #custom-html-su .affiliate-stat span {

    font-size: 2.1em;

  }

  #custom-html-su .affiliate-stat i {

    font-size: 3.6em;

  }

}

@media (max-width: 992px) {

  #custom-html-su .affiliate-stat {

    font-size: 1em;

  }

  #custom-html-su .affiliate-stat span {

    font-size: 1.6em;

  }

  #custom-html-su .affiliate-stat i {

    font-size: 3em;

  }

}

#custom-html-su .ticket-number {

  display: block;

  font-size: 1.2em;

  font-style: italic;

  color: #2a9fbb;

}

#custom-html-su .ticket-subject.unread {

  font-weight: 700;

}

#custom-html-su .ticket-attachments-message {

  padding-top: 4px;

  font-size: 0.8em;

}

#custom-html-su .ticket-reply {

  margin: 10px 0;

  padding: 0;

  border: 1px solid #efefef;

  background-color: #ffffff;

}

#custom-html-su .ticket-reply.staff {

  border: 1px solid #cce4fc;

}

#custom-html-su .ticket-reply .date {

  float: right;

  padding: 8px 10px;

  font-size: 0.8em;

}

#custom-html-su .ticket-reply .user {

  padding: 5px 0;

  background-color: #f8f8f8;

}

#custom-html-su .ticket-reply.staff .user {

  background-color: #f2f9ff;

}

#custom-html-su .ticket-reply .user i {

  float: left;

  font-size: 2.2em;

  padding: 2px 15px;

}

#custom-html-su .ticket-reply .user .name {

  display: block;

  font-size: 0.9em;

}

#custom-html-su .ticket-reply .user .type {

  display: block;

  font-weight: 700;

  font-size: 0.8em;

}

#custom-html-su .ticket-reply .message {

  padding: 12px 15px;

}

#custom-html-su .ticket-reply .rating,

#custom-html-su .ticket-reply .rating-done {

  float: right;

  padding: 5px 10px;

  unicode-bidi: bidi-override;

  direction: rtl;

  font-size: 24px;

}

#custom-html-su .ticket-reply .rating span.star,

#custom-html-su .ticket-reply .rating-done span.star {

  font-family: "Font Awesome 5 Pro";

  font-weight: 400;

  font-style: normal;

  display: inline-block;

}

#custom-html-su .ticket-reply .rating-done .rated {

  display: inline-block;

  font-size: 12px;

  font-family: Tahoma;

}

#custom-html-su .ticket-reply .rating span.star:hover {

  cursor: pointer;

}

#custom-html-su .ticket-reply .rating span.star:before,

#custom-html-su .ticket-reply .rating-done span.star:before {

  content: "\f005";

  padding-right: 0;

  color: #999999;

}

#custom-html-su .ticket-reply .rating span.star:hover:before,

#custom-html-su .ticket-reply .rating span.star:hover ~ span.star:before,

#custom-html-su .ticket-reply .rating-done span.star.active:before {

  content: "\f005";

  color: #f2de88;

}

#custom-html-su .ticket-reply .attachments {

  margin: 0;

  padding: 10px 20px;

  border-top: 1px dashed #efefef;

  background-color: #f8f8f8;

  font-size: 0.8em;

}

#custom-html-su .ticket-reply .attachments ul {

  margin: 0;

  padding: 0 0 0 15px;

  list-style: none;

}

#custom-html-su .ticket-reply .clear {

  clear: both;

}

#custom-html-su .panel > .list-group .ticket-details-children {

  line-height: 20px;

}

#custom-html-su .panel > .list-group .ticket-details-children .title {

  font-size: .9em;

  color: #999999;

}

#custom-html-su .ticketfeedbackstaffcont {

  margin: 10px auto;

  padding: 15px;

  width: 90%;

  background-color: #efefef;

  -moz-border-radius: 6px;

  -webkit-border-radius: 6px;

  -o-border-radius: 6px;

  border-radius: 6px;

}

#custom-html-su .ticketfeedbackrating {

  padding: 0 100px;

}

#custom-html-su .ticketfeedbackrating .rate {

  float: left;

  padding: 0 10px;

  min-width: 30px;

  text-align: center;

}

#custom-html-su .popover-user-notifications {

  border-radius: 0;

  padding: 5px 10px;

  border-color: #ddd;

  min-width: 310px;

  font-family: 'Open Sans', sans-serif;

}

#custom-html-su .popover-user-notifications .popover-content {

  padding: 0;

}

#custom-html-su .popover-user-notifications ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

#custom-html-su .popover-user-notifications ul li {

  padding: 5px 0;

  min-height: 66px;

  border-bottom: 1px solid #dddddd;

}

#custom-html-su .popover-user-notifications ul li:last-child {

  border: 0;

}

#custom-html-su .popover-user-notifications ul li a {

  display: block;

  padding: 10px 15px 10px 12px;

  text-decoration: none;

  color: #555;

  font-size: 0.95em;

}

#custom-html-su .popover-user-notifications ul li a:hover {

  background-color: #f6f6f6;

}

#custom-html-su .popover-user-notifications ul li i.far,

#custom-html-su .popover-user-notifications ul li i.fas {

  float: left;

  padding-top: 6px;

  font-size: 21px;

}

#custom-html-su .popover-user-notifications ul li i.far.fa-check-circle,

#custom-html-su .popover-user-notifications ul li i.fas.fa-check-circle {

  color: #5cb85c;

}

#custom-html-su .popover-user-notifications ul li i.far.fa-warning,

#custom-html-su .popover-user-notifications ul li i.fas.fa-warning {

  color: #ecc317;

}

#custom-html-su .popover-user-notifications ul li i.far.fa-exclamation-circle,

#custom-html-su .popover-user-notifications ul li i.fas.fa-exclamation-circle {

  color: #ec2d45;

}

#custom-html-su .popover-user-notifications ul li .message {

  margin-left: 40px;

}

#custom-html-su .popover-user-notifications ul li.none {

  padding: 12px 0;

  min-height: auto;

  text-align: center;

  font-weight: 700;

}

#custom-html-su .captchaimage {

  margin: 0;

  padding: 3px 0 4px;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  text-align: right;

}

#custom-html-su div.credit-card {

  margin: 0 auto 30px;

  max-width: 400px;

  background-color: #f8f8f8;

  border: 1px solid #ccc;

  border-radius: 8px;

}

#custom-html-su div.credit-card div.card-type {

  float: right;

  padding: 10px 20px;

  font-size: 1.2em;

}

#custom-html-su div.credit-card div.card-icon {

  float: left;

  padding: 7px 7px;

  font-size: 1.2em;

}

#custom-html-su div.credit-card div.card-number {

  padding: 10px;

  background-color: #ccc;

  font-size: 1.6em;

  text-align: center;

  clear: both;

}

#custom-html-su div.credit-card div.card-start {

  float: left;

  padding: 20px 0 50px 50px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-su div.credit-card div.card-expiry {

  float: right;

  padding: 20px 50px 50px 0;

  height: 120px;

  font-size: 1.3em;

  text-align: right;

}

#custom-html-su div.credit-card div.end {

  clear: both;

}

@media (max-width: 600px) {

  #custom-html-su div.credit-card {

    max-width: 250px;

  }

  #custom-html-su div.credit-card div.card-type {

    font-size: 1em;

  }

  #custom-html-su div.credit-card div.card-icon {

    font-size: 1em;

  }

  #custom-html-su div.credit-card div.card-number {

    padding: 6px 10px;

    font-size: 1.2em;

  }

  #custom-html-su div.credit-card div.card-start {

    padding: 20px 0 30px 50px;

    font-size: 0.9em;

  }

  #custom-html-su div.credit-card div.card-expiry {

    padding: 20px 50px 30px 0;

    height: 80px;

    font-size: 0.9em;

  }

}

#custom-html-su .auth3d-area {

  border: 1px solid #ffffff;

}

#custom-html-su .submit-3d {

  width: 80%;

  border: 1px solid #ffffff;

}

#custom-html-su .invoice-summary {

  margin: 0 0 25px 0;

  padding: 15px;

  height: 500px;

  background-color: #f8f8f8;

  border: 4px dashed #efefef;

  border-radius: 10px;

}

#custom-html-su .invoice-summary-table {

  margin: 25px 0 25px 0;

  max-height: 300px;

  overflow: auto;

}

#custom-html-su .invoice-summary-table td {

  font-size: 0.8em;

}

#custom-html-su .invoice-summary-table td.total-row {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-su div.credit-card .logo-visa {

  color: #1a1f71;

}

#custom-html-su div.credit-card .logo-amex {

  color: #43abdf;

}

#custom-html-su div.credit-card .logo-mastercard {

  color: #ed0b00;

}

#custom-html-su div.credit-card .logo-discover {

  color: #000000;

}

#custom-html-su div.sidebar .list-group-item-selected {

  background-color: #319fc3;

  color: #ffffff;

}

#custom-html-su div.sidebar .list-group-item-selected .badge {

  background-color: #fff;

  color: #319fc3;

}

#custom-html-su .sidebar.sidebar-secondary {

  clear: left;

}

@media (max-width: 991px) {

  #custom-html-su .panel-actions {

    border: 0;

    box-shadow: none;

  }

  #custom-html-su .panel-actions > .panel-heading > .panel-title {

    display: inline;

  }

  #custom-html-su .panel-actions > .panel-heading {

    border-radius: 3px;

  }

  #custom-html-su .panel-actions > .list-group {

    padding: 10px;

    overflow-x: scroll;

    overflow-y: none;

    white-space: nowrap;

  }

  #custom-html-su .panel-actions > .list-group .list-group-item {

    display: inline-block;

    border: 1px solid #ddd!important;

    border-radius: 3px!important;

    white-space: nowrap;

    text-align: center;

    padding: 5px 25px;

    margin: 2px;

  }

  #custom-html-su .panel-actions > .list-group .list-group-item > .badge {

    float: none;

    margin: -2px 0 0 10px;

  }

}

#custom-html-su div#twofaactivation {

  margin: 0 auto;

  padding: 15px 30px;

  width: 85%;

  background-color: #efefef;

  border-radius: 10px;

}

#custom-html-su div#twofaactivation .errorbox {

  margin: 0 0 20px 0;

  padding: 10px 20px;

  background-color: #ff4f4f;

  text-shadow: none;

  color: #fff;

  text-align: center;

  -moz-border-radius: 5px;

  -webkit-border-radius: 5px;

  -o-border-radius: 5px;

  border-radius: 5px;

}

#custom-html-su div#twofaactivation p {

  margin: 15px 0;

}

#custom-html-su #popup-backdrop {

  background-color: #2e363f;

  padding: 15px;

  height: 100%;

}

#custom-html-su .popup-header-padding {

  margin-top: 5px;

  margin-bottom: 5px;

}

#custom-html-su .btn.btn-action {

  background-color: #72ca06;

  border-color: #498302;

}

#custom-html-su .kb-category {

  margin: 0 0 10px 0;

}

#custom-html-su .kb-category a {

  display: block;

  margin: 0 0 2px 0;

  font-weight: 700;

  text-decoration: none;

}

#custom-html-su .kb-category a small {

  color: #888888;

}

#custom-html-su .kbarticles {

  padding: 0 0 25px 0;

  font-size: 0.8em;

}

#custom-html-su .kbarticles a {

  font-size: 1.2em;

  font-weight: 700;

}

#custom-html-su .kbarticles a .glyphicon {

  color: #88ccee;

}

#custom-html-su .kbarticles a.admin-inline-edit,

#custom-html-su .kbcategories a.admin-inline-edit {

  font-size: 0.92em;

}

#custom-html-su h3.kb-alsoread {

  padding: 8px 15px;

  background-color: #eee;

  border-radius: 6px;

  font-size: 0.9em;

}

#custom-html-su .kb-article-title {

  margin: 0 0 22px 0;

  font-size: 1.6em;

}

#custom-html-su .kb-article-title h2 {

  margin: 0;

}

#custom-html-su .kb-article-title .btn-print {

  float: right;

  font-size: 1em;

}

#custom-html-su .kb-article-content {

  margin: 0 0 30px 0;

  font-size: 1.2em;

  line-height: 1.2em;

  font-weight: 200;

}

#custom-html-su .kb-rate-article {

  margin: 20px 0;

  padding: 15px 20px;

  background-color: #eff7ff;

  font-size: 1.4em;

  line-height: 38px;

  font-weight: 200;

  color: #4d7cab;

}

#custom-html-su .kb-rate-article .btn-lg {

  padding: 0 16px;

}

#custom-html-su .kb-article-details {

  color: #999;

  list-style: none;

  margin: 35px 5px;

  padding: 0;

  font-size: 0.9em;

}

#custom-html-su .kb-article-details li {

  float: left;

  padding-right: 30px;

}

#custom-html-su .kb-search .form-control {

  box-shadow: none;

  border-radius: 3px;

}

#custom-html-su .kb-search > .input-group-btn > .btn {

  border-radius: 0 3px 3px 0;

}

#custom-html-su #stepResults {

  font-size: 20px;

}

#custom-html-su #stepResults .label {

  font-size: 20px;

}

@media (max-width: 992px) {

  #custom-html-su #stepResults {

    font-size: 14px;

  }

  #custom-html-su #stepResults .label {

    font-size: 14px;

  }

  #custom-html-su div.domainresults table tr td {

    padding: 5px 5px;

  }

}

@media print {

  #custom-html-su #main-menu,

  #custom-html-su #top-nav,

  #custom-html-su .header-lined,

  #custom-html-su .sidebar {

    display: none;

  }

  #custom-html-su a[href]:after {

    content: "" !important;

  }

}

#custom-html-su h3.with-badge::after {

  content: '.';

  color: #ffffff;

}

#custom-html-su h3.with-badge i,

#custom-html-su h3.with-badge span {

  float: left;

  padding-right: 8px;

}

#custom-html-su h3.with-badge .badge {

  line-height: initial;

  margin-top: 3px;

}

@media (min-width: 992px) {

  #custom-html-su h3.with-badge .badge {

    padding: 3px 7px 3px 8px;

  }

  #custom-html-su .sidebar .list-group-item .badge {

    margin-top: -2px;

    padding: 3px 7px 3px 8px;

    line-height: initial;

    min-width: 36px;

  }

}

#custom-html-su .admin-masquerade-notice {

  margin: 25px 0 0 auto;

  padding: 4px 10px;

  max-width: 240px;

  font-family: Tahoma;

  font-size: .7em;

  text-align: right;

}

#custom-html-su .admin-masquerade-notice a {

  text-decoration: underline;

}

#custom-html-su a.admin-inline-edit {

  margin-left: 6px;

  font-weight: 400;

  color: #888888;

}

#custom-html-su a.admin-inline-edit:hover {

  color: #444;

  text-decoration: none;

}

#custom-html-su .language-popover {

  max-width: 450px;

  width: 100%;

  background-color: rgba(20, 20, 20, 0.98);

  background-image: url(../../../assets/images/worldmap.png);

  background-repeat: no-repeat;

  font-size: 0.8em;

}

#custom-html-su .language-popover.popover.bottom > .arrow:after {

  border-bottom-color: rgba(20, 20, 20, 0.97);

}

#custom-html-su .language-popover .popover-content ul {

  margin: 6px 0 14px 0;

  padding: 0;

  max-width: 400px;

  list-style-type: none;

  overflow: hidden;

}

#custom-html-su .language-popover .popover-content li {

  float: left;

  display: inline;

  padding: 0 20px 0 40px;

  width: 33.333%;

  line-height: 2em;

}

#custom-html-su .language-popover .popover-content li a {

  color: #f2f2f2;

}

@media (max-width: 480px) {

  #custom-html-su .language-popover {

    max-width: 250px;

    background-position: -50px 0;

  }

  #custom-html-su .language-popover .popover-content li {

    padding: 0 20px;

    width: 50%;

  }

}

#custom-html-su .login-popover {

  font-size: 12px;

}

#custom-html-su .login-popover .form-group {

  margin-bottom: 5px;

}

#custom-html-su .login-popover hr {

  margin: 5px 0;

}

#custom-html-su tr.masspay-invoice-detail td {

  font-size: 0.8em;

}

#custom-html-su tr.masspay-total td {

  background-color: #efefef;

  font-weight: 700;

}

#custom-html-su .error-container {

  text-align: center;

}

#custom-html-su .error-container h1 {

  margin-top: 40px;

}

#custom-html-su .error-container .buttons {

  margin: 25px 0;

}

#custom-html-su .error-container .buttons .btn {

  margin: 5px;

}

#custom-html-su .panel-collapsable > .panel-heading {

  cursor: pointer;

}

#custom-html-su .panel-collapsable > .panel-body-collapsed {

  display: none;

}

#custom-html-su .licensing-addon-latest-download h3 {

  margin-top: 0;

}

#custom-html-su #google-recaptcha-domainchecker {

  width: 304px;

  height: 78px;

  margin-top: 15px;

  margin-bottom: 15px;

}

#custom-html-su #default-captcha-domainchecker {

  margin-top: 15px;

  margin-bottom: -63px;

}

#custom-html-su #default-captcha-domainchecker #inputCaptcha {

  width: 100px;

  border-radius: 4px;

}

#custom-html-su .domainchecker-homepage-captcha #google-recaptcha-domainchecker {

  margin-bottom: -46px;

}

@media (max-width: 991px) {

  #custom-html-su #google-recaptcha-domainchecker {

    padding-left: 2.5%;

  }

  #custom-html-su #default-captcha-domainchecker {

    margin-bottom: -25px;

  }

}

@media (max-width: 736px) {

  #custom-html-su #google-recaptcha-domainchecker {

    transform: scale(0.935);

    transform-origin: 0 0;

    -webkit-transform: scale(0.935);

    -webkit-transform-origin: 0 0;

  }

}

@media (max-width: 384px) {

  #custom-html-su #google-recaptcha-domainchecker {

    transform: scale(0.96);

    transform-origin: 0 0;

  }

}

@media (max-width: 360px) {

  #custom-html-su #google-recaptcha-domainchecker {

    transform: scale(0.89);

    transform-origin: 0 0;

  }

}

@media (max-width: 320px) {

  #custom-html-su #google-recaptcha-domainchecker {

    padding-left: 13.5%;

    transform: scale(0.83);

    transform-origin: 0 0;

    -webkit-transform: scale(0.785);

    -webkit-transform-origin: 0 0;

  }

}

#custom-html-su .email-verification {

  margin: 0;

  padding: 10px;

  font-weight: 300;

  background-color: #f8f8f8;

  border-bottom: 1px solid #eee;

  color: #333333;

}

#custom-html-su .email-verification .text {

  display: block;

  padding: 6px 0;

}

#custom-html-su .email-verification .btn {

  margin: 3px 0;

  padding: 3px 10px;

  background-color: #50525f;

  border-color: #50525f;

  color: #fff;

  font-style: normal;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-su .email-verification .btn:active,

#custom-html-su .email-verification .btn[disabled]:hover {

  background-color: #50525f;

  border-color: #50525f;

  color: #ffffff;

}

#custom-html-su .email-verification .btn.close {

  margin-left: 10px;

  background-color: transparent;

  color: rgba(55, 55, 55, 0.5);

  font-size: 22px;

  opacity: 1;

}

#custom-html-su .email-verification .btn.close:hover {

  color: rgba(55, 55, 55, 0.8);

}

#custom-html-su .email-verification .far,

#custom-html-su .email-verification .fas {

  color: #666;

  float: left;

  padding: 2px 10px 0 0;

  font-size: 24px;

}

@media (min-width: 768px) {

  #custom-html-su .email-verification .text {

    padding-top: 9px;

    padding-bottom: 0;

  }

  #custom-html-su .email-verification .btn {

    margin: 0;

    padding: 9px 25px;

  }

  #custom-html-su .email-verification .button {

    float: right;

  }

  #custom-html-su .email-verification .far,

  #custom-html-su .email-verification .fas {

    font-size: 36px;

  }

}

#custom-html-su .email-verification.success {

  background-color: #ebfde4;

  border-bottom: 1px solid #e3f7d5;

  color: #5cb85c;

}

#custom-html-su .email-verification.success .far,

#custom-html-su .email-verification.success .fas {

  color: #6fbb51;

}

#custom-html-su .email-verification.failed {

  background-color: #fdf8e3;

  border-bottom: 1px solid #f7f3d0;

  color: #b3a879;

}

#custom-html-su .email-verification.failed .far,

#custom-html-su .email-verification.failed .fas {

  color: #b3a879;

}

#custom-html-su .md-editor {

  border: 1px solid #ddd;

  border-radius: 3px;

}

#custom-html-su .md-editor > .btn-toolbar {

  background-color: #ffffff !important;

}

#custom-html-su .md-editor > .md-preview,

#custom-html-su .md-editor > textarea.markdown-editor {

  padding: 15px!important;

  border-top: 1px solid #ddd!important;

  border-bottom: 1px solid #ddd!important;

  background-color: #ffffff !important;

}

#custom-html-su div.md-editor.active {

  display: block;

  border: 1px solid #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-su .markdown-editor-status {

  padding: 2px 10px;

  font-size: 9pt;

  color: #959694;

  text-align: right;

}

#custom-html-su .small-font {

  font-size: 0.9em;

}

#custom-html-su .markdown-content h1 {

  font-size: 1.6em;

  color: #333333;

}

#custom-html-su .markdown-content h2 {

  font-size: 1.4em;

  color: #333333;

}

#custom-html-su .markdown-content h3 {

  font-size: 1.2em;

  color: #333333;

}

#custom-html-su .markdown-content h4 {

  font-size: 1.1em;

  color: #333333;

}

#custom-html-su .markdown-content pre {

  padding: 15px;

  background-color: #444;

  color: #f8f8f8;

  border: 0;

}

#custom-html-su .markdown-content pre code {

  white-space: pre;

  word-break: normal;

  word-wrap: normal;

}

#custom-html-su .markdown-content blockquote {

  font-size: 1em;

}

#custom-html-su .markdown-content table {

  margin: 10px 0;

  background-color: #fff;

  border: 1px solid #dddddd;

}

#custom-html-su .markdown-content table > thead > tr > th {

  padding: 4px 10px;

  background-color: #f8f8f8;

  border: 1px solid #ddd;

  font-weight: 700;

  text-align: center;

}

#custom-html-su .markdown-content table > tbody > tr > td {

  padding: 3px 8px;

  border: 1px solid #dddddd;

}

#custom-html-su .panel-sidebar {

  border-color: #eee;

  font-size: 15px;

}

#custom-html-su .panel-sidebar > .panel-heading {

  color: #333;

  background-color: #f5f5f5;

  border-bottom: 0;

}

#custom-html-su .panel-heading i.fab,

#custom-html-su .panel-heading i.fal,

#custom-html-su .panel-heading i.far,

#custom-html-su .panel-heading i.fas {

  font-size: 0.85em;

}

#custom-html-su .panel-sidebar .panel-title {

  font-size: 1.1em;

  font-weight: 300;

  font-family: 'Open Sans', sans-serif;

  line-height: 26px;

  color: #555555;

}

#custom-html-su .panel-sidebar .panel-minimise {

  margin-top: 4px;

  color: #ddd;

  cursor: pointer;

  transition: transform 0.2s ease;

}

#custom-html-su .panel-sidebar .panel-minimise.minimised {

  transform: rotate(180deg);

  margin-top: 7px;

}

#custom-html-su .panel-sidebar > .panel-footer {

  color: #333;

  background-color: #f5f5f5;

  border-top: 0;

}

#custom-html-su .panel-sidebar .list-group-item {

  line-height: 24px;

}

#custom-html-su .panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle) {

  float: right;

  line-height: 24px;

  font-size: 16px;

  color: #cccccc;

}

#custom-html-su .panel-sidebar .list-group-item.disabled,

#custom-html-su .panel-sidebar .list-group-item.disabled:focus,

#custom-html-su .panel-sidebar .list-group-item.disabled:hover {

  background-color: transparent;

  opacity: 0.5;

}

#custom-html-su .panel-sidebar a.list-group-item:hover i.far,

#custom-html-su .panel-sidebar a.list-group-item:hover i.fas {

  color: #666666 !important;

}

#custom-html-su .panel-sidebar a.list-group-item.active,

#custom-html-su .panel-sidebar a.list-group-item.active:focus,

#custom-html-su .panel-sidebar a.list-group-item.active:hover {

  background-color: #465054;

  border-color: #465054;

}

#custom-html-su .panel-sidebar a.list-group-item.active i,

#custom-html-su .panel-sidebar a.list-group-item.active:focus i,

#custom-html-su .panel-sidebar a.list-group-item.active:hover i {

  color: #ffffff;

}

#custom-html-su .panel-sidebar.view-filter-btns .list-group-item.active,

#custom-html-su .panel-sidebar.view-filter-btns .list-group-item.active:focus,

#custom-html-su .panel-sidebar.view-filter-btns .list-group-item.active:hover {

  background-color: #eee;

  border-color: #eee;

  color: #555555;

}

#custom-html-su .panel-sidebar .recent-ticket {

  line-height: 20px;

}

#custom-html-su .store-order-container {

  margin: 20px 0;

  padding: 30px;

}

#custom-html-su .store-order-container h2 {

  margin-top: 0;

}

#custom-html-su .store-order-container .btn {

  padding: 10px 30px;

  font-size: 1.15em;

  font-weight: 300;

}

#custom-html-su .store-order-container .store-domain-tabs {

  margin-top: 20px;

}

#custom-html-su .store-order-container .store-domain-tabs li a {

  margin-right: 10px;

  padding: 7px 15px;

  background-color: #f9f9f9;

  border-bottom: 1px solid #dddddd;

}

#custom-html-su .store-order-container .store-domain-tabs li.active a {

  background-color: #fff;

  border-bottom: 1px solid transparent;

}

#custom-html-su .store-order-container .store-domain-tab-content {

  margin-bottom: 20px;

  padding: 20px;

  border: 1px solid #ddd;

  border-top: 0;

}

#custom-html-su .store-order-container .store-domain-tab-content a {

  text-decoration: underline;

}

#custom-html-su .store-order-container .store-domain-tab-content a:hover {

  text-decoration: none;

}

#custom-html-su .store-order-container .payment-term h4 {

  margin-top: 25px;

}

@media (min-width: 768px) {

  #custom-html-su .store-order-container .payment-term {

    float: right;

  }

  #custom-html-su .store-order-container .payment-term h4 {

    margin-top: 0;

  }

}

#custom-html-su .store-order-container .domain-validation {

  display: block;

  padding-top: 5px;

  font-size: 1.2em;

  font-weight: 300;

  color: #888888;

}

#custom-html-su .store-order-container .domain-validation.ok {

  color: #53a22d;

}

#custom-html-su .store-promoted-product {

  margin: 50px 0;

  padding: 30px 30px 50px 30px;

  background-color: #f6f6f6;

}

#custom-html-su .store-promoted-product .icon {

  height: 200px;

  line-height: 200px;

  text-align: center;

  overflow: hidden;

}

#custom-html-su .store-promoted-product .icon img {

  max-width: 100%;

  max-height: 100%;

}

#custom-html-su .store-promoted-product ul.features {

  margin: 20px 0;

  padding: 0;

  list-style: none;

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-su .store-promoted-product ul.features li {

  float: left;

  width: 50%;

  margin-bottom: 5px;

}

#custom-html-su .store-promoted-product ul.features li .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-su .store-promoted-product .btn {

  margin-top: 10px;

  padding: 10px 30px;

  font-size: 1.2em;

  font-weight: 300;

}

#custom-html-su .promo-banner {

  margin: 0;

  padding: 15px 10px 20px 10px;

  background-color: #fff;

  border: 1px solid #ddd;

  font-size: 1em;

  overflow: auto;

}

#custom-html-su .promo-banner .icon {

  float: left;

  margin: 0 20px 0 0;

}

#custom-html-su .promo-banner img {

  max-width: 300px;

  max-height: 200px;

}

#custom-html-su .promo-banner .icon-left {

  margin-bottom: 10px;

  text-align: center;

}

@media (max-width: 767px) {

  #custom-html-su .promo-banner form {

    text-align: center;

  }

}

@media (min-width: 768px) {

  #custom-html-su .promo-banner img {

    max-width: 100%;

    max-height: 100%;

  }

  #custom-html-su .promo-banner .icon-left {

    float: left;

    margin: 0;

    width: 155px;

  }

  #custom-html-su .promo-banner .content {

    margin-left: 185px;

  }

}

#custom-html-su .promo-banner h3 {

  margin: 0;

  padding: 0;

  font-size: 24px;

  font-weight: 300;

}

#custom-html-su .promo-banner h4 {

  font-size: 18px;

  font-weight: 300;

}

#custom-html-su .promo-banner p {

  margin: 5px 0;

}

#custom-html-su .promo-banner ul {

  margin: 0;

  padding: 0;

  list-style: none;

  font-size: 0.92em;

}

#custom-html-su .promo-banner ul li {

  margin-bottom: 4px;

}

@media (min-width: 1200px) {

  #custom-html-su .promo-banner ul li {

    float: left;

    width: 50%;

  }

}

#custom-html-su .promo-banner .fa:not(.fa-spinner) {

  font-size: 1.2em;

  color: #91c590;

  margin-left: 20px;

  margin-right: 10px;

}

#custom-html-su .promo-banner a {

  color: #f60;

  text-decoration: underline;

}

#custom-html-su .promo-banner .btn {

  margin: 6px 0 0 0;

  padding: 8px 30px;

  background-color: #f60;

  border: 0;

  color: #ffffff;

}

@media (max-width: 650px) {

  #custom-html-su .promo-banner .icon {

    width: 100%;

    margin-bottom: 15px;

  }

}

#custom-html-su .promo-banner-rounded {

  border-radius: 4px;

}

#custom-html-su .promo-banner-slim {

  padding: 10px;

}

#custom-html-su .promo-banner-slim .icon-left {

  width: 85px;

}

#custom-html-su .promo-banner-slim .content {

  margin-left: 110px;

}

#custom-html-su .promo-banner-slim h3 {

  font-size: 18px;

}

#custom-html-su .promo-banner-slim h4 {

  font-size: 14px;

}

#custom-html-su .promo-banner-slim .btn {

  margin: 0 20px 0 0;

  padding: 6px 20px;

}

#custom-html-su .promo-banner.ssl {

  border-top: 3px solid #4da24c;

}

#custom-html-su .promo-banner.ssl .btn {

  background-color: #4da24c;

}

#custom-html-su .promo-banner.weebly {

  border-top: 3px solid #2990ea;

}

#custom-html-su .promo-banner.weebly .btn {

  background-color: #2990ea;

}

#custom-html-su .promo-banner.spamexperts {

  border-top: 3px solid #589ed7;

}

#custom-html-su .promo-banner.spamexperts .btn {

  background-color: #589ed7;

}

#custom-html-su .promo-banner-slim.weebly .icon-left {

  width: 160px;

}

#custom-html-su .promo-banner-slim.weebly .content {

  margin-left: 185px;

}

#custom-html-su .promo-banner.sitelock {

  border-top: 3px solid #f2952d;

}

#custom-html-su .promo-banner.sitelock .btn {

  background-color: #f2952d;

}

#custom-html-su .promo-banner.codeguard {

  border-top: 3px solid #a9cc5f;

}

#custom-html-su .promo-banner.codeguard a {

  color: #a9cc5f;

}

#custom-html-su .promo-banner.codeguard .btn {

  background-color: #a9cc5f;

}

#custom-html-su .mc-panel-promo {

  font-size: 0.95em;

}

#custom-html-su .mc-panel-promo img {

  display: block;

  margin: 0 auto 6px;

  max-width: 90%;

  max-height: 87px;

}

#custom-html-su .panel-mc-sso {

  padding: 0 10px 10px 10px;

}

#custom-html-su .panel-mc-sso img {

  max-width: 100%;

  max-height: 120px;

}

#custom-html-su .panel-mc-sso .row {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-su .panel-mc-sso .col-sm-6 {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-su .panel-mc-sso .btn,

#custom-html-su .panel-mc-sso .form-control,

#custom-html-su .panel-mc-sso small {

  margin-top: 5px;

}

#custom-html-su .panel-mc-sso small {

  display: block;

}

#custom-html-su .social-signin-btns {

  text-align: center;

}

#custom-html-su .social-signin-btns .btn {

  margin-bottom: 5px;

}

#custom-html-su .btn-social {

  position: relative;

  padding-left: 44px;

  text-align: left;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

#custom-html-su .btn-social i.far,

#custom-html-su .btn-social i.fas {

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 32px;

  line-height: 34px;

  font-size: 1.6em;

  text-align: center;

  border-right: 1px solid rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-facebook {

  color: #fff;

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-facebook.active,

#custom-html-su .btn-facebook:active,

#custom-html-su .btn-facebook:focus,

#custom-html-su .btn-facebook:hover,

#custom-html-su .open .dropdown-toggle.btn-facebook {

  color: #fff;

  background-color: #30487b;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-facebook.active,

#custom-html-su .btn-facebook:active,

#custom-html-su .open .dropdown-toggle.btn-facebook {

  background-image: none;

}

#custom-html-su .btn-facebook.disabled,

#custom-html-su .btn-facebook.disabled.active,

#custom-html-su .btn-facebook.disabled:active,

#custom-html-su .btn-facebook.disabled:focus,

#custom-html-su .btn-facebook.disabled:hover,

#custom-html-su .btn-facebook[disabled],

#custom-html-su .btn-facebook[disabled].active,

#custom-html-su .btn-facebook[disabled]:active,

#custom-html-su .btn-facebook[disabled]:focus,

#custom-html-su .btn-facebook[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-facebook,

#custom-html-su fieldset[disabled] .btn-facebook.active,

#custom-html-su fieldset[disabled] .btn-facebook:active,

#custom-html-su fieldset[disabled] .btn-facebook:focus,

#custom-html-su fieldset[disabled] .btn-facebook:hover {

  background-color: #3b5998;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-google {

  color: #fff;

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-google.active,

#custom-html-su .btn-google:active,

#custom-html-su .btn-google:focus,

#custom-html-su .btn-google:hover,

#custom-html-su .open .dropdown-toggle.btn-google {

  color: #fff;

  background-color: #ca3523;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-google.active,

#custom-html-su .btn-google:active,

#custom-html-su .open .dropdown-toggle.btn-google {

  background-image: none;

}

#custom-html-su .btn-google-plus.disabled.active,

#custom-html-su .btn-google-plus.disabled:active,

#custom-html-su .btn-google-plus.disabled:focus,

#custom-html-su .btn-google-plus[disabled].active,

#custom-html-su .btn-google-plus[disabled]:active,

#custom-html-su .btn-google-plus[disabled]:focus,

#custom-html-su .btn-google-plus[disabled]:hover,

#custom-html-su .btn-google.disabled,

#custom-html-su .btn-google.disabled:hover,

#custom-html-su .btn-google[disabled],

#custom-html-su fieldset[disabled] .btn-google,

#custom-html-su fieldset[disabled] .btn-google-plus.active,

#custom-html-su fieldset[disabled] .btn-google-plus:active,

#custom-html-su fieldset[disabled] .btn-google-plus:focus,

#custom-html-su fieldset[disabled] .btn-google-plus:hover {

  background-color: #dd4b39;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-twitter {

  color: #fff;

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-twitter.active,

#custom-html-su .btn-twitter:active,

#custom-html-su .btn-twitter:focus,

#custom-html-su .btn-twitter:hover,

#custom-html-su .open .dropdown-toggle.btn-twitter {

  color: #fff;

  background-color: #1c92c7;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .btn-twitter.active,

#custom-html-su .btn-twitter:active,

#custom-html-su .open .dropdown-toggle.btn-twitter {

  background-image: none;

}

#custom-html-su .btn-twitter.disabled,

#custom-html-su .btn-twitter.disabled.active,

#custom-html-su .btn-twitter.disabled:active,

#custom-html-su .btn-twitter.disabled:focus,

#custom-html-su .btn-twitter.disabled:hover,

#custom-html-su .btn-twitter[disabled],

#custom-html-su .btn-twitter[disabled].active,

#custom-html-su .btn-twitter[disabled]:active,

#custom-html-su .btn-twitter[disabled]:focus,

#custom-html-su .btn-twitter[disabled]:hover,

#custom-html-su fieldset[disabled] .btn-twitter,

#custom-html-su fieldset[disabled] .btn-twitter.active,

#custom-html-su fieldset[disabled] .btn-twitter:active,

#custom-html-su fieldset[disabled] .btn-twitter:focus,

#custom-html-su fieldset[disabled] .btn-twitter:hover {

  background-color: #2ba9e1;

  border-color: rgba(0, 0, 0, 0.2);

}

#custom-html-su .providerPreLinking {

  min-height: 52px;

}

#custom-html-su .providerLinkingFeedback {

  display: none;

}

#custom-html-su #registration {

  margin: 0;

  padding: 0 0 40px 0;

}

#custom-html-su #registration .field-container {

  margin: 0 0 30px 0;

}

#custom-html-su #registration label {

  font-weight: 300;

  color: #666;

  font-size: 13px;

}

#custom-html-su #registration .info-text-sm {

  font-size: .85em;

  text-align: center;

}

#custom-html-su .marketing-email-optin {

  margin: 0 0 20px 0;

  padding: 10px 20px 20px;

  background-color: #f8f8f8;

  border-radius: 3px;

}

#custom-html-su #registration .sub-heading {

  height: 0;

  border-top: 1px solid #ddd;

  text-align: center;

  margin-top: 20px;

  margin-bottom: 30px;

}

#custom-html-su #registration .sub-heading span {

  display: inline-block;

  position: relative;

  padding: 0 17px;

  top: -11px;

  font-size: 16px;

  color: #058;

  background-color: #ffffff;

}

#custom-html-su #registration .prepend-icon {

  top: 0;

  left: 0;

  display: inline-block;

  vertical-align: top;

  position: relative;

  width: 100%;

  font-weight: 400;

}

#custom-html-su #registration .field,

#custom-html-su #registration .form-control {

  position: relative;

  vertical-align: top;

  border: 1px solid #ddd;

  display: -moz-inline-stack;

  display: inline-block;

  color: #626262;

  outline: 0;

  background: #fff;

  height: 36px;

  width: 100%;

  border-radius: 3px;

  font-size: 13px;

}

#custom-html-su #registration .input-group-lg > .form-control {

  height: 46px;

  padding: 10px 16px;

  font-size: 18px;

  line-height: 1.3333333;

  border-radius: 6px 0 0 6px;

}

#custom-html-su #registration .form-control-qty {

  width: 70px;

  text-align: center;

}

#custom-html-su #registration .form-control-static-inline {

  display: inline-block;

}

#custom-html-su #registration .form-control:focus {

  border-color: #ddd;

  outline: 0;

  -webkit-box-shadow: none;

  box-shadow: none;

}

#custom-html-su #registration textarea.field {

  height: auto;

}

#custom-html-su #registration .prepend-icon .field {

  -webkit-appearance: none;

  padding-left: 36px;

}

#custom-html-su #registration .prepend-icon .field-icon i {

  position: relative;

  font-size: 14px;

}

#custom-html-su #registration .prepend-icon .field-icon {

  top: 0;

  z-index: 4;

  width: 42px;

  height: 36px;

  color: inherit;

  line-height: 36px;

  position: absolute;

  text-align: center;

  -webkit-transition: all 0.5s ease-out;

  -moz-transition: all 0.5s ease-out;

  -ms-transition: all 0.5s ease-out;

  -o-transition: all 0.5s ease-out;

  transition: all 0.5s ease-out;

  pointer-events: none;

}

#custom-html-su #registration .field-icon i {

  color: #bbbbbb;

}

#custom-html-su #registration .field[disabled],

#custom-html-su #registration .field[readonly],

#custom-html-su #registration .form-control[disabled],

#custom-html-su #registration .form-control[readonly] {

  background-color: #f8f8f8;

  opacity: 1;

}

#custom-html-su #registration .field-help-text {

  display: block;

  margin-top: 5px;

  margin-bottom: 10px;

  color: #888;

  font-size: 12px;

}

#custom-html-su .upgrade .product-to-be-upgraded {

  margin: 20px 0;

  padding: 15px;

  background-color: #f8f8f8;

}

#custom-html-su .upgrade .product-to-be-upgraded h4,

#custom-html-su .upgrade .product-to-be-upgraded h5 {

  margin: 0;

}

#custom-html-su .upgrade .products {

  margin-left: -5px;

  margin-right: -5px;

}

#custom-html-su .upgrade .products .column {

  padding-left: 5px;

  padding-right: 5px;

}

#custom-html-su .upgrade .products .product {

  margin: 20px 0;

  padding: 0;

  background-color: #ffffff;

}

#custom-html-su .upgrade .products .product .current,

#custom-html-su .upgrade .products .product .recommended {

  padding: 5px;

  background-color: #ffbc00;

  color: #f5f5f5;

  font-weight: 700;

  text-align: center;

}

#custom-html-su .upgrade .products .product .recommended {

  background-color: #25ac2f;

}

#custom-html-su .upgrade .products .product ul {

  border-left: 1px solid #eee;

  border-right: 1px solid #eeeeee;

}

#custom-html-su .upgrade .products .product .footer {

  border: 1px solid #eee;

  border-top: 0;

}

#custom-html-su .upgrade .products .product .header {

  margin: 0;

  padding: 20px;

  background-color: #2b5580;

  color: #fff;

  min-height: 150px;

}

#custom-html-su .upgrade .products .product .header p {

  font-size: 1.1em;

  font-weight: 300;

}

#custom-html-su .upgrade .products .product ul {

  margin: 0;

  padding: 20px 25px;

  list-style: none;

}

#custom-html-su .upgrade .products .product ul li {

  line-height: 25px;

  font-size: .9em;

  text-align: right;

  color: #aaa;

  border-bottom: 1px solid #eeeeee;

}

#custom-html-su .upgrade .products .product ul li:last-child {

  border: 0;

}

#custom-html-su .upgrade .products .product ul li span {

  float: left;

  color: #444444;

}

#custom-html-su .upgrade .products .far,

#custom-html-su .upgrade .products .fas {

  font-size: 1.3em;

}

#custom-html-su .upgrade .products .fa-check {

  color: #23ad2e;

}

#custom-html-su .upgrade .products .product .footer {

  margin: 0;

  padding: 20px;

}

#custom-html-su .upgrade .products .product .footer select {

  margin-bottom: 10px;

}

#custom-html-su .upgrade .products .product .btn {

  background-color: #2b5580;

  color: #ffffff;

}

#custom-html-su .alert .fas.pull-left {

  margin: -3px 0 0 -3px;

}

#custom-html-su .alert .alert-text {

  margin-left: 56px;

}

#custom-html-su .intl-tel-input {

  width: 100%;

}

#custom-html-su .bootstrap-switch {

  display: inline-block;

  direction: ltr;

  cursor: pointer;

  border-radius: 4px;

  border: 1px solid;

  border-color: #ccc;

  position: relative;

  text-align: left;

  overflow: hidden;

  line-height: 8px;

  z-index: 0;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;

  vertical-align: middle;

  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-container {

  display: inline-block;

  top: 0;

  border-radius: 4px;

  -webkit-transform: translate3d(0, 0, 0);

  transform: translate3d(0, 0, 0);

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch .bootstrap-switch-label {

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  box-sizing: border-box;

  cursor: pointer;

  display: inline-block !important;

  height: 100%;

  padding: 6px 12px;

  font-size: 14px;

  line-height: 20px;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on {

  text-align: center;

  z-index: 1;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {

  color: #fff;

  background: #428bca;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {

  color: #fff;

  background: #5bc0de;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {

  color: #fff;

  background: #5cb85c;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {

  background: #f0ad4e;

  color: #ffffff;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {

  color: #fff;

  background: #d9534f;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {

  color: #000;

  background: #eeeeee;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-label {

  text-align: center;

  margin-top: -1px;

  margin-bottom: -1px;

  z-index: 100;

  color: #333;

  background: #ffffff;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-on {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-su .bootstrap-switch .bootstrap-switch-handle-off {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .bootstrap-switch input[type=checkbox],

#custom-html-su .bootstrap-switch input[type=radio] {

  position: absolute!important;

  top: 0;

  left: 0;

  opacity: 0;

  z-index: -1;

}

#custom-html-su .bootstrap-switch input[type=checkbox].form-control,

#custom-html-su .bootstrap-switch input[type=radio].form-control {

  height: auto;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {

  padding: 1px 5px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {

  padding: 5px 10px;

  font-size: 12px;

  line-height: 1.5;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {

  padding: 6px 16px;

  font-size: 18px;

  line-height: 1.33;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-disabled,

#custom-html-su .bootstrap-switch.bootstrap-switch-indeterminate,

#custom-html-su .bootstrap-switch.bootstrap-switch-readonly {

  cursor: default !important;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,

#custom-html-su .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,

#custom-html-su .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,

#custom-html-su .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,

#custom-html-su .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label {

  opacity: .5;

  cursor: default !important;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {

  -webkit-transition: margin-left 0.5s;

  transition: margin-left 0.5s;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {

  border-bottom-left-radius: 0;

  border-top-left-radius: 0;

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {

  border-bottom-right-radius: 0;

  border-top-right-radius: 0;

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-focused {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-su .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,

#custom-html-su .bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {

  border-bottom-right-radius: 3px;

  border-top-right-radius: 3px;

}

#custom-html-su .bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,

#custom-html-su .bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {

  border-bottom-left-radius: 3px;

  border-top-left-radius: 3px;

}

#custom-html-su .md-editor {

  display: block;

  border: 1px solid #dddddd;

}

#custom-html-su .md-editor .md-footer,

#custom-html-su .md-editor > .md-header {

  display: block;

  padding: 6px 4px;

  background: #f5f5f5;

}

#custom-html-su .md-editor > .md-header {

  margin: 0;

}

#custom-html-su .md-editor > .md-preview {

  background: #fff;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  min-height: 10px;

  overflow: auto;

}

#custom-html-su .md-editor > textarea {

  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;

  font-size: 14px;

  outline: 0;

  margin: 0;

  display: block;

  padding: 0;

  width: 100%;

  border: 0;

  border-top: 1px dashed #ddd;

  border-bottom: 1px dashed #ddd;

  border-radius: 0;

  box-shadow: none;

  background: #eeeeee;

}

#custom-html-su .md-editor > textarea:focus {

  box-shadow: none;

  background: #ffffff;

}

#custom-html-su .md-editor.active {

  border-color: #66afe9;

  outline: 0;

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);

}

#custom-html-su .md-editor .md-controls {

  float: right;

  padding: 3px;

}

#custom-html-su .md-editor .md-controls .md-control {

  right: 5px;

  color: #bebebe;

  padding: 3px 3px 3px 10px;

}

#custom-html-su .md-editor .md-controls .md-control:hover {

  color: #333333;

}

#custom-html-su .md-editor.md-fullscreen-mode {

  width: 100%;

  height: 100%;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 99999;

  padding: 60px 30px 15px;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-footer {

  display: none;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-input,

#custom-html-su .md-editor.md-fullscreen-mode .md-preview {

  margin: 0 auto!important;

  height: 100%!important;

  font-size: 20px!important;

  padding: 20px!important;

  color: #999;

  line-height: 1.6em!important;

  resize: none!important;

  box-shadow: none!important;

  background: #fff!important;

  border: 0 !important;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-preview {

  color: #333;

  overflow: auto;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-input:focus,

#custom-html-su .md-editor.md-fullscreen-mode .md-input:hover {

  color: #333;

  background: #ffffff !important;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-header {

  background: 0 0;

  text-align: center;

  position: fixed;

  width: 100%;

  top: 20px;

}

#custom-html-su .md-editor.md-fullscreen-mode .btn-group {

  float: none;

}

#custom-html-su .md-editor.md-fullscreen-mode .btn {

  border: 0;

  background: 0 0;

  color: #b3b3b3;

}

#custom-html-su .md-editor.md-fullscreen-mode .btn.active,

#custom-html-su .md-editor.md-fullscreen-mode .btn:active,

#custom-html-su .md-editor.md-fullscreen-mode .btn:focus,

#custom-html-su .md-editor.md-fullscreen-mode .btn:hover {

  box-shadow: none;

  color: #333333;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-fullscreen-controls {

  position: absolute;

  top: 20px;

  right: 20px;

  text-align: right;

  z-index: 1002;

  display: block;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-fullscreen-controls a {

  color: #b3b3b3;

  clear: right;

  margin: 10px;

  width: 30px;

  height: 30px;

  text-align: center;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover {

  color: #333;

  text-decoration: none;

}

#custom-html-su .md-editor.md-fullscreen-mode .md-editor {

  height: 100%!important;

  position: relative;

}

#custom-html-su .md-editor .md-fullscreen-controls {

  display: none;

}

#custom-html-su .md-nooverflow {

  overflow: hidden;

  position: fixed;

  width: 100%;

}

#custom-html-su table.dataTable {

  clear: both;

  margin-top: 6px!important;

  margin-bottom: 6px!important;

  max-width: none!important;

  border-collapse: separate !important;

}

#custom-html-su table.dataTable td,

#custom-html-su table.dataTable th {

  -webkit-box-sizing: content-box;

  -moz-box-sizing: content-box;

  box-sizing: content-box;

}

#custom-html-su table.dataTable td.dataTables_empty,

#custom-html-su table.dataTable th.dataTables_empty {

  text-align: center;

}

#custom-html-su table.dataTable.nowrap td,

#custom-html-su table.dataTable.nowrap th {

  white-space: nowrap;

}

#custom-html-su div.dataTables_wrapper div.dataTables_length label {

  font-weight: 400;

  text-align: left;

  white-space: nowrap;

}

#custom-html-su div.dataTables_wrapper div.dataTables_length select {

  width: 75px;

  display: inline-block;

}

#custom-html-su div.dataTables_wrapper div.dataTables_filter {

  text-align: right;

}

#custom-html-su div.dataTables_wrapper div.dataTables_filter label {

  font-weight: 400;

  white-space: nowrap;

  text-align: left;

}

#custom-html-su div.dataTables_wrapper div.dataTables_filter input {

  margin-left: .5em;

  display: inline-block;

  width: auto;

}

#custom-html-su div.dataTables_wrapper div.dataTables_info {

  padding-top: 8px;

  white-space: nowrap;

}

#custom-html-su div.dataTables_wrapper div.dataTables_paginate {

  margin: 0;

  white-space: nowrap;

  text-align: right;

}

#custom-html-su div.dataTables_wrapper div.dataTables_paginate ul.pagination {

  margin: 2px 0;

  white-space: nowrap;

}

#custom-html-su div.dataTables_wrapper div.dataTables_processing {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 200px;

  margin-left: -100px;

  margin-top: -26px;

  text-align: center;

  padding: 1em 0;

}

#custom-html-su table.dataTable thead > tr > td.sorting,

#custom-html-su table.dataTable thead > tr > td.sorting_asc,

#custom-html-su table.dataTable thead > tr > td.sorting_desc,

#custom-html-su table.dataTable thead > tr > th.sorting,

#custom-html-su table.dataTable thead > tr > th.sorting_asc,

#custom-html-su table.dataTable thead > tr > th.sorting_desc {

  padding-right: 30px;

}

#custom-html-su table.dataTable thead > tr > td:active,

#custom-html-su table.dataTable thead > tr > th:active {

  outline: 0;

}

#custom-html-su table.dataTable thead .sorting,

#custom-html-su table.dataTable thead .sorting_asc,

#custom-html-su table.dataTable thead .sorting_asc_disabled,

#custom-html-su table.dataTable thead .sorting_desc,

#custom-html-su table.dataTable thead .sorting_desc_disabled {

  cursor: pointer;

  position: relative;

}

#custom-html-su table.dataTable thead .sorting:after,

#custom-html-su table.dataTable thead .sorting_asc:after,

#custom-html-su table.dataTable thead .sorting_asc_disabled:after,

#custom-html-su table.dataTable thead .sorting_desc:after,

#custom-html-su table.dataTable thead .sorting_desc_disabled:after {

  position: absolute;

  bottom: 8px;

  right: 8px;

  display: block;

  font-family: 'Glyphicons Halflings';

  opacity: 0.5;

}

#custom-html-su table.dataTable thead .sorting:after {

  opacity: .2;

  content: "\e150";

}

#custom-html-su table.dataTable thead .sorting_asc:after {

  content: "\e155";

}

#custom-html-su table.dataTable thead .sorting_desc:after {

  content: "\e156";

}

#custom-html-su table.dataTable thead .sorting_asc_disabled:after,

#custom-html-su table.dataTable thead .sorting_desc_disabled:after {

  color: #eeeeee;

}

#custom-html-su div.dataTables_scrollHead table.dataTable {

  margin-bottom: 0 !important;

}

#custom-html-su div.dataTables_scrollBody table {

  border-top: none;

  margin-top: 0!important;

  margin-bottom: 0 !important;

}

#custom-html-su div.dataTables_scrollBody table thead .sorting:after,

#custom-html-su div.dataTables_scrollBody table thead .sorting_asc:after,

#custom-html-su div.dataTables_scrollBody table thead .sorting_desc:after {

  display: none;

}

#custom-html-su div.dataTables_scrollBody table tbody tr:first-child td,

#custom-html-su div.dataTables_scrollBody table tbody tr:first-child th {

  border-top: none;

}

#custom-html-su div.dataTables_scrollFoot table {

  margin-top: 0!important;

  border-top: none;

}

@media screen and (max-width: 767px) {

  #custom-html-su div.dataTables_wrapper div.dataTables_filter,

  #custom-html-su div.dataTables_wrapper div.dataTables_info,

  #custom-html-su div.dataTables_wrapper div.dataTables_length,

  #custom-html-su div.dataTables_wrapper div.dataTables_paginate {

    text-align: center;

  }

}

#custom-html-su table.dataTable.table-condensed > thead > tr > th {

  padding-right: 20px;

}

#custom-html-su table.dataTable.table-condensed .sorting:after,

#custom-html-su table.dataTable.table-condensed .sorting_asc:after,

#custom-html-su table.dataTable.table-condensed .sorting_desc:after {

  top: 6px;

  right: 6px;

}

#custom-html-su table.table-bordered.dataTable td,

#custom-html-su table.table-bordered.dataTable th {

  border-left-width: 0;

}

#custom-html-su table.table-bordered.dataTable td:last-child,

#custom-html-su table.table-bordered.dataTable th:last-child {

  border-right-width: 0;

}

#custom-html-su table.table-bordered.dataTable tbody td,

#custom-html-su table.table-bordered.dataTable tbody th {

  border-bottom-width: 0;

}

#custom-html-su div.dataTables_scrollHead table.table-bordered {

  border-bottom-width: 0;

}

#custom-html-su div.table-responsive > div.dataTables_wrapper > div.row {

  margin: 0;

}

#custom-html-su div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:first-child {

  padding-left: 0;

}

#custom-html-su div.table-responsive > div.dataTables_wrapper > div.row > div[class^=col-]:last-child {

  padding-right: 0;

}

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > th.child {

  cursor: default !important;

}

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before {

  display: none !important;

}

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {

  position: relative;

  padding-left: 30px;

  cursor: pointer;

}

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {

  top: 9px;

  left: 4px;

  height: 14px;

  width: 14px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-su table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {

  display: none;

}

#custom-html-su table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,

#custom-html-su table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {

  padding-left: 27px;

}

#custom-html-su table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,

#custom-html-su table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {

  top: 5px;

  left: 4px;

  height: 14px;

  width: 14px;

  border-radius: 14px;

  line-height: 14px;

  text-indent: 3px;

}

#custom-html-su table.dataTable.dtr-column > tbody > tr > td.control,

#custom-html-su table.dataTable.dtr-column > tbody > tr > th.control {

  position: relative;

  cursor: pointer;

}

#custom-html-su table.dataTable.dtr-column > tbody > tr > td.control:before,

#custom-html-su table.dataTable.dtr-column > tbody > tr > th.control:before {

  top: 50%;

  left: 50%;

  height: 16px;

  width: 16px;

  margin-top: -10px;

  margin-left: -10px;

  display: block;

  position: absolute;

  color: #fff;

  border: 2px solid #fff;

  border-radius: 14px;

  box-shadow: 0 0 3px #444;

  box-sizing: content-box;

  text-align: center;

  font-family: 'Courier New', Courier, monospace;

  line-height: 14px;

  content: '+';

  background-color: #337ab7;

}

#custom-html-su table.dataTable.dtr-column > tbody > tr.parent td.control:before,

#custom-html-su table.dataTable.dtr-column > tbody > tr.parent th.control:before {

  content: '-';

  background-color: #d33333;

}

#custom-html-su table.dataTable > tbody > tr.child {

  padding: 0.5em 1em;

}

#custom-html-su table.dataTable > tbody > tr.child:hover {

  background: 0 0 !important;

}

#custom-html-su table.dataTable > tbody > tr.child ul {

  display: inline-block;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-su table.dataTable > tbody > tr.child ul li {

  border-bottom: 1px solid #efefef;

  padding: 0.5em 0;

}

#custom-html-su table.dataTable > tbody > tr.child ul li:first-child {

  padding-top: 0;

}

#custom-html-su table.dataTable > tbody > tr.child ul li:last-child {

  border-bottom: none;

}

#custom-html-su table.dataTable > tbody > tr.child span.dtr-title {

  display: inline-block;

  min-width: 75px;

  font-weight: 700;

}

#custom-html-su div.dtr-modal {

  position: fixed;

  box-sizing: border-box;

  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  z-index: 100;

  padding: 10em 1em;

}

#custom-html-su div.dtr-modal div.dtr-modal-display {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  right: 0;

  width: 50%;

  height: 50%;

  margin: auto;

  z-index: 102;

  overflow: auto;

  background-color: #f5f5f7;

  border: 1px solid #000;

  border-radius: .5em;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

}

#custom-html-su div.dtr-modal div.dtr-modal-content {

  position: relative;

  padding: 1em;

}

#custom-html-su div.dtr-modal div.dtr-modal-close {

  position: absolute;

  top: 6px;

  right: 6px;

  width: 22px;

  height: 22px;

  border: 1px solid #eaeaea;

  background-color: #f9f9f9;

  text-align: center;

  border-radius: 3px;

  cursor: pointer;

  z-index: 12;

}

#custom-html-su div.dtr-modal div.dtr-modal-close:hover {

  background-color: #eaeaea;

}

#custom-html-su div.dtr-modal div.dtr-modal-background {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 101;

  background: rgba(0, 0, 0, 0.6);

}

@media screen and (max-width: 767px) {

  #custom-html-su div.dtr-modal div.dtr-modal-display {

    width: 95%;

  }

}

#custom-html-su div.dtr-bs-modal table.table tr:first-child td {

  border-top: none;

}

#custom-html-su .multiselect-container {

  position: absolute;

  list-style-type: none;

  margin: 0;

  padding: 0;

}

#custom-html-su .multiselect-container .input-group {

  margin: 5px;

}

#custom-html-su .multiselect-container > li {

  padding: 0;

}

#custom-html-su .multiselect-container > li > a.multiselect-all label {

  font-weight: 700;

}

#custom-html-su .multiselect-container > li.multiselect-group label {

  margin: 0;

  padding: 3px 20px 3px 20px;

  height: 100%;

  font-weight: 700;

}

#custom-html-su .multiselect-container > li.multiselect-group-clickable label {

  cursor: pointer;

}

#custom-html-su .multiselect-container > li > a {

  padding: 0;

}

#custom-html-su .multiselect-container > li > a > label {

  margin: 0;

  height: 100%;

  cursor: pointer;

  font-weight: 400;

  padding: 3px 20px 3px 40px;

}

#custom-html-su .multiselect-container > li > a > label.checkbox,

#custom-html-su .multiselect-container > li > a > label.radio {

  margin: 0;

}

#custom-html-su .multiselect-container > li > a > label > input[type=checkbox] {

  margin-bottom: 5px;

}

#custom-html-su .btn-group > .btn-group:nth-child(2) > .multiselect.btn {

  border-top-left-radius: 4px;

  border-bottom-left-radius: 4px;

}

#custom-html-su .form-inline .multiselect-container label.checkbox,

#custom-html-su .form-inline .multiselect-container label.radio {

  padding: 3px 20px 3px 40px;

}

#custom-html-su .form-inline .multiselect-container li a label.checkbox input[type=checkbox],

#custom-html-su .form-inline .multiselect-container li a label.radio input[type=radio] {

  margin-left: -20px;

  margin-right: 0;

}

.cid-sEWFz6CqHF {

  padding-top: 45px;

  padding-bottom: 30px;

  background-image: url("../../../assets/images/mbr-1920x1440.jpg");

}

.cid-sEWFz6CqHF P {

  color: #767676;

}

.cid-sEWFz6CqHF H1 {

  color: #ffffff;

}

.cid-sEWFz6CqHF .mbr-text,

.cid-sEWFz6CqHF .mbr-section-btn {

  color: #000000;

}

.cid-sEWFz6CqHF h1 {

  text-shadow: 2px 2px gray;

}

.cid-sF3cl15Nv4 .divider-top {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3cl15Nv4 .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3cl15Nv4 .divider-top::before,

.cid-sF3cl15Nv4 .divider-bottom::before,

.cid-sF3cl15Nv4 .divider-top::after,

.cid-sF3cl15Nv4 .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3cl15Nv4 .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3cl15Nv4 .divider-triangles::before {

  top: -50px;

}

.cid-sF3cl15Nv4 .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3cl15Nv4 .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3cl15Nv4 .divider-multitriangles::before,

.cid-sF3cl15Nv4 .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3cl15Nv4 .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #000000, 50px -50px 0 #000000;

}

.cid-sFf8pYGgMY {

  padding-top: 20px;

  padding-bottom: 30px;

  background-color: #efefef;

}

.cid-sFf8pYGgMY .container {

  backdrop-filter: blur(10px);

  border: 1px solid black;

  padding: 15px;

}

.cid-sFf8pYGgMY .mbr-overlay {

  background: linear-gradient(90deg, #149dcc, #b2ccd2);

}

.cid-sFf8pYGgMY .mbr-section-btn {

  margin-left: -0.8rem;

}

.cid-sFf8pYGgMY .text-content {

  padding-right: 1.5rem;

}

.cid-sFf8pYGgMY .mbr-text,

.cid-sFf8pYGgMY .mbr-section-btn {

  color: #000000;

}

.cid-sFf8pYGgMY .mbr-figure img {

  -webkit-box-shadow: 0px 0px 30px rgba(120, 120, 120, 0.3);

  box-shadow: 0px 0px 30px rgba(120, 120, 120, 0.3);

  border-radius: 30% 70% 70% 1% 30% 70% 70% !important;

}

.cid-sFf8pYGgMY .counter-container {

  padding: 1rem 0;

  position: relative;

}

.cid-sFf8pYGgMY .counter-container ul {

  margin-bottom: 0;

  padding-left: 1.5rem;

}

.cid-sFf8pYGgMY .counter-container ul li {

  margin-bottom: 1rem;

  list-style: none;

}

.cid-sFf8pYGgMY .counter-container ul li:before {

  font-family: MobiriseIcons !important;

  content: '\e966';

  position: absolute;

  left: 0px;

  padding-top: 2px;

  display: inline-block;

  text-align: center;

  margin: 4px 0px;

  line-height: 10px;

  transition: all .2s;

  width: 16px;

  height: 16px;

  font-size: 16px !important;

  font-weight: 500;

  background: none;

  color: #000000;

}

@media (max-width: 991px) {

  .cid-sFf8pYGgMY .main-row {

    margin: 0;

  }

  .cid-sFf8pYGgMY .mbr-section-title,

  .cid-sFf8pYGgMY .mbr-text,

  .cid-sFf8pYGgMY .list,

  .cid-sFf8pYGgMY .mbr-section-btn {

    text-align: center !important;

  }

  .cid-sFf8pYGgMY .text-content {

    padding: 0;

  }

}

.cid-sFf8pYGgMY .list {

  color: #000000;

}

.cid-sFf8pYGgMY .mbr-section-title {

  color: #000000;

}

.cid-sF3cuGNrlz .divider-top {

  position: relative;

  padding: 2.5em;

  background: #efefef;

}

.cid-sF3cuGNrlz .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3cuGNrlz .divider-top::before,

.cid-sF3cuGNrlz .divider-bottom::before,

.cid-sF3cuGNrlz .divider-top::after,

.cid-sF3cuGNrlz .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3cuGNrlz .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3cuGNrlz .divider-triangles::before {

  top: -50px;

}

.cid-sF3cuGNrlz .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3cuGNrlz .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3cuGNrlz .divider-multitriangles::before,

.cid-sF3cuGNrlz .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3cuGNrlz .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #efefef, 50px -50px 0 #efefef;

}

.cid-sEWGkP0f7i {

  padding-top: 15px;

  padding-bottom: 0px;

  background-color: #ffffff;

}

.cid-sEWGkP0f7i .mbr-overlay {

  background-color: #ffffff;

  opacity: 0.5;

}

.cid-sEWGkP0f7i .form-control,

.cid-sEWGkP0f7i .field-input {

  padding: 0.5rem;

  background-color: #ffffff;

  border-color: #cccccc;

  color: #000000;

  transition: 0.4s;

  box-shadow: none;

  outline: none;

}

.cid-sEWGkP0f7i .form-control::-webkit-input-placeholder,

.cid-sEWGkP0f7i .field-input::-webkit-input-placeholder,

.cid-sEWGkP0f7i .form-control::-webkit-input-placeholder,

.cid-sEWGkP0f7i .field-input::-webkit-input-placeholder {

  color: #c1c1c1;

}

.cid-sEWGkP0f7i .form-control:-moz-placeholder,

.cid-sEWGkP0f7i .field-input:-moz-placeholder,

.cid-sEWGkP0f7i .form-control:-moz-placeholder,

.cid-sEWGkP0f7i .field-input:-moz-placeholder {

  color: #c1c1c1;

}

.cid-sEWGkP0f7i .form-control:hover,

.cid-sEWGkP0f7i .field-input:hover,

.cid-sEWGkP0f7i .form-control:focus,

.cid-sEWGkP0f7i .field-input:focus {

  background-color: #efefef;

  border-color: #cccccc;

  color: #232323;

  box-shadow: none;

  outline: none;

}

.cid-sEWGkP0f7i .form-control:hover::-webkit-input-placeholder,

.cid-sEWGkP0f7i .field-input:hover::-webkit-input-placeholder,

.cid-sEWGkP0f7i .form-control:focus::-webkit-input-placeholder,

.cid-sEWGkP0f7i .field-input:focus::-webkit-input-placeholder,

.cid-sEWGkP0f7i .form-control:hover::-webkit-input-placeholder,

.cid-sEWGkP0f7i .field-input:hover::-webkit-input-placeholder,

.cid-sEWGkP0f7i .form-control:focus::-webkit-input-placeholder,

.cid-sEWGkP0f7i .field-input:focus::-webkit-input-placeholder {

  color: #c1c1c1;

}

.cid-sEWGkP0f7i .form-control:hover:-moz-placeholder,

.cid-sEWGkP0f7i .field-input:hover:-moz-placeholder,

.cid-sEWGkP0f7i .form-control:focus:-moz-placeholder,

.cid-sEWGkP0f7i .field-input:focus:-moz-placeholder,

.cid-sEWGkP0f7i .form-control:hover:-moz-placeholder,

.cid-sEWGkP0f7i .field-input:hover:-moz-placeholder,

.cid-sEWGkP0f7i .form-control:focus:-moz-placeholder,

.cid-sEWGkP0f7i .field-input:focus:-moz-placeholder {

  color: #c1c1c1;

}

.cid-sEWGkP0f7i .jq-number__spin:hover,

.cid-sEWGkP0f7i .jq-number__spin:focus {

  background-color: #efefef;

  border-color: #cccccc;

  color: #ffffff;

  box-shadow: none;

  outline: none;

}

.cid-sEWGkP0f7i .jq-number__spin {

  background-color: #ffffff;

  border-color: #cccccc;

  color: #000000;

  transition: 0.4s;

  box-shadow: none;

  outline: none;

}

.cid-sEWGkP0f7i .jq-selectbox li,

.cid-sEWGkP0f7i .jq-selectbox li {

  background-color: #ffffff;

  color: #000000;

}

.cid-sEWGkP0f7i .jq-selectbox li:hover,

.cid-sEWGkP0f7i .jq-selectbox li.selected {

  background-color: #efefef;

  color: #000000;

}

.cid-sEWGkP0f7i .jq-selectbox:hover .jq-selectbox__trigger-arrow,

.cid-sEWGkP0f7i .jq-number__spin.minus:hover:after,

.cid-sEWGkP0f7i .jq-number__spin.plus:hover:after {

  border-top-color: #ffffff;

  border-bottom-color: #ffffff;

}

.cid-sEWGkP0f7i .jq-selectbox .jq-selectbox__trigger-arrow,

.cid-sEWGkP0f7i .jq-number__spin.minus:after,

.cid-sEWGkP0f7i .jq-number__spin.plus:after {

  border-top-color: #efefef;

  border-bottom-color: #efefef;

}

.cid-sEWGkP0f7i input::-webkit-clear-button {

  display: none;

}

.cid-sEWGkP0f7i input::-webkit-inner-spin-button {

  display: none;

}

.cid-sEWGkP0f7i input::-webkit-outer-spin-button {

  display: none;

}

.cid-sEWGkP0f7i input::-webkit-calendar-picker-indicator {

  display: none;

}

.cid-sEWGkP0f7i H4 {

  color: #000000;

}

.cid-sF3d0y1npy .divider-top {

  position: relative;

  padding: 2.5em;

  background: #ffffff;

}

.cid-sF3d0y1npy .divider-bottom {

  position: relative;

  padding: 2.5em;

  background: #000000;

}

.cid-sF3d0y1npy .divider-top::before,

.cid-sF3d0y1npy .divider-bottom::before,

.cid-sF3d0y1npy .divider-top::after,

.cid-sF3d0y1npy .divider-bottom::after {

  position: absolute;

  content: '';

  pointer-events: none;

}

.cid-sF3d0y1npy .divider-triangles::after {

  left: 50%;

  width: 100px;

  height: 100px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

  bottom: -50px;

  z-index: 10;

  background: inherit;

}

.cid-sF3d0y1npy .divider-triangles::before {

  top: -50px;

}

.cid-sF3d0y1npy .divider-halfcircle::after {

  left: 50%;

  z-index: 10;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: inherit;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  bottom: -50px;

}

.cid-sF3d0y1npy .divider-halfcircle::before {

  top: -50px;

}

.cid-sF3d0y1npy .divider-multitriangles::before,

.cid-sF3d0y1npy .divider-multitriangles::after {

  left: 50%;

  width: 50px;

  height: 50px;

  -webkit-transform: translateX(-50%) rotate(45deg);

  transform: translateX(-50%) rotate(45deg);

}

.cid-sF3d0y1npy .divider-multitriangles::after {

  bottom: -25px;

  z-index: 10;

  background: inherit;

  box-shadow: -50px 50px 0 #ffffff, 50px -50px 0 #ffffff;

}

.cid-sEWFz7LLIE {

  padding-top: 30px;

  padding-bottom: 0px;

  background-color: #000000;

}

.cid-sEWFz7LLIE h4 {

  font-weight: 500;

  margin-bottom: 0;

  text-align: left;

}

.cid-sEWFz7LLIE p {

  color: #767676;

  text-align: left;

}

.cid-sEWFz7LLIE .card-box {

  padding-top: 2rem;

}

.cid-sEWFz7LLIE .card-wrapper {

  height: 100%;

}

.cid-sEWFz8DaWR {

  padding-top: 60px;

  padding-bottom: 60px;

  background-image: url("../../../assets/images/bodybackground-2000x740.jpg");

}

@media (max-width: 767px) {

  .cid-sEWFz8DaWR .content {

    text-align: center;

  }

  .cid-sEWFz8DaWR .content > div:not(:last-child) {

    margin-bottom: 2rem;

  }

}

@media (max-width: 767px) {

  .cid-sEWFz8DaWR .media-wrap {

    margin-bottom: 1rem;

  }

}

.cid-sEWFz8DaWR .media-wrap .mbr-iconfont-logo {

  font-size: 7.5rem;

  color: #f36;

}

.cid-sEWFz8DaWR .media-wrap img {

  height: 6rem;

}

@media (max-width: 767px) {

  .cid-sEWFz8DaWR .footer-lower .copyright {

    margin-bottom: 1rem;

    text-align: center;

  }

}

.cid-sEWFz8DaWR .footer-lower hr {

  margin: 1rem 0;

  border-color: #fff;

  opacity: .05;

}

.cid-sEWFz8DaWR .footer-lower .social-list {

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;

  display: flex;

  -webkit-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-justify-content: flex-end;

  justify-content: flex-end;

}

.cid-sEWFz8DaWR .footer-lower .social-list .mbr-iconfont-social {

  font-size: 1.3rem;

  color: #fff;

}

.cid-sEWFz8DaWR .footer-lower .social-list .soc-item {

  margin: 0 .5rem;

}

.cid-sEWFz8DaWR .footer-lower .social-list a {

  margin: 0;

  opacity: .5;

  -webkit-transition: .2s linear;

  transition: .2s linear;

}

.cid-sEWFz8DaWR .footer-lower .social-list a:hover {

  opacity: 1;

}

@media (max-width: 767px) {

  .cid-sEWFz8DaWR .footer-lower .social-list {

    -webkit-justify-content: center;

    justify-content: center;

  }

}

.cid-sEWFz8DaWR .copyright > p {

  text-align: left;

}

.cid-sEWFz8DaWR H5 {

  color: #000000;

}

.cid-sEWFz9FUU8 .float {

  position: fixed;

  width: 65px;

  height: 60px;

  bottom: 28px;

  right: 178px;

  background-color: #0342ff;

  color: #ffffff;

  border-radius: 60px;

  text-align: center;

  font-size: 30px;

  box-shadow: 2px 2px 3px #999;

  z-index: 100;

}

.cid-sEWFz9FUU8 .my-float {

  margin-top: 16px;

}

.cid-sEWFz9FUU8 P {

  color: #232323;

}

.cid-sEWFz9FUU8 DIV {

  color: #ffffff;

}

.cid-sEWFz9FUU8 H10 {

  color: #767676;

}

.cid-sEWFz9FUU8 .hidden {

  display: none;

}







